From 2665413b60158f2f4466448cd2384c39a9c4ad3a Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Mon, 2 Sep 2024 08:36:59 -0700 Subject: [PATCH] maint: Bump HACS to 2.0.0 --- custom_components/hacs/__init__.py | 157 ++----- custom_components/hacs/base.py | 392 +++++++----------- custom_components/hacs/config_flow.py | 57 +-- custom_components/hacs/const.py | 3 +- custom_components/hacs/diagnostics.py | 6 +- custom_components/hacs/entity.py | 48 ++- custom_components/hacs/enums.py | 23 +- custom_components/hacs/frontend.py | 62 +-- .../hacs/hacs_frontend/c.004a7b01.js | 1 - .../hacs/hacs_frontend/c.004a7b01.js.gz | Bin 2391 -> 0 bytes .../hacs/hacs_frontend/c.24bd2446.js | 1 - .../hacs/hacs_frontend/c.24bd2446.js.gz | Bin 2716 -> 0 bytes .../hacs/hacs_frontend/c.4a97632a.js | 1 - .../hacs/hacs_frontend/c.4a97632a.js.gz | Bin 144 -> 0 bytes .../hacs/hacs_frontend/c.743a15a1.js | 1 - .../hacs/hacs_frontend/c.743a15a1.js.gz | Bin 223 -> 0 bytes .../hacs/hacs_frontend/c.8e28b461.js | 1 - .../hacs/hacs_frontend/c.8e28b461.js.gz | Bin 227 -> 0 bytes .../hacs/hacs_frontend/c.99c1c4ba.js | 1 - .../hacs/hacs_frontend/c.99c1c4ba.js.gz | Bin 40063 -> 0 bytes .../hacs/hacs_frontend/c.ad739743.js | 1 - .../hacs/hacs_frontend/c.ad739743.js.gz | Bin 188403 -> 0 bytes .../hacs/hacs_frontend/c.bc53dda1.js | 1 - .../hacs/hacs_frontend/c.bc53dda1.js.gz | Bin 13543 -> 0 bytes .../hacs/hacs_frontend/c.e23b0d0b.js | 1 - .../hacs/hacs_frontend/c.e23b0d0b.js.gz | Bin 260 -> 0 bytes .../hacs/hacs_frontend/entrypoint.js | 11 +- .../hacs/hacs_frontend/entrypoint.js.gz | Bin 183 -> 0 bytes .../hacs/hacs_frontend/manifest.json | 3 - .../hacs/hacs_frontend/version.py | 2 +- custom_components/hacs/manifest.json | 5 +- .../hacs/repositories/__init__.py | 5 +- .../hacs/repositories/appdaemon.py | 3 +- custom_components/hacs/repositories/base.py | 323 +++++++++------ .../hacs/repositories/integration.py | 45 +- .../hacs/repositories/netdaemon.py | 104 ----- custom_components/hacs/repositories/plugin.py | 134 +++++- .../hacs/repositories/python_script.py | 3 +- custom_components/hacs/repositories/theme.py | 24 +- custom_components/hacs/sensor.py | 62 --- custom_components/hacs/system_health.py | 16 +- custom_components/hacs/translations/en.json | 20 +- custom_components/hacs/update.py | 89 ++-- custom_components/hacs/utils/backup.py | 33 +- .../hacs/utils/configuration_schema.py | 65 --- custom_components/hacs/utils/data.py | 74 ++-- custom_components/hacs/utils/decode.py | 1 + custom_components/hacs/utils/decorator.py | 4 +- .../hacs/utils/default.repositories | 1 - custom_components/hacs/utils/filters.py | 1 + custom_components/hacs/utils/logger.py | 1 + custom_components/hacs/utils/path.py | 36 +- custom_components/hacs/utils/queue_manager.py | 9 +- custom_components/hacs/utils/regex.py | 1 + custom_components/hacs/utils/store.py | 1 + custom_components/hacs/utils/template.py | 38 -- custom_components/hacs/utils/validate.py | 146 +++++++ custom_components/hacs/utils/version.py | 1 + custom_components/hacs/utils/workarounds.py | 32 +- custom_components/hacs/validate/archived.py | 8 +- custom_components/hacs/validate/base.py | 9 +- custom_components/hacs/validate/brands.py | 10 +- .../hacs/validate/description.py | 8 +- custom_components/hacs/validate/hacsjson.py | 2 +- custom_components/hacs/validate/images.py | 12 +- .../hacs/validate/information.py | 8 +- .../hacs/validate/integration_manifest.py | 14 +- custom_components/hacs/validate/issues.py | 8 +- custom_components/hacs/validate/manager.py | 32 +- custom_components/hacs/validate/topics.py | 8 +- 70 files changed, 1059 insertions(+), 1110 deletions(-) delete mode 100644 custom_components/hacs/hacs_frontend/c.004a7b01.js delete mode 100644 custom_components/hacs/hacs_frontend/c.004a7b01.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.24bd2446.js delete mode 100644 custom_components/hacs/hacs_frontend/c.24bd2446.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.4a97632a.js delete mode 100644 custom_components/hacs/hacs_frontend/c.4a97632a.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.743a15a1.js delete mode 100644 custom_components/hacs/hacs_frontend/c.743a15a1.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.8e28b461.js delete mode 100644 custom_components/hacs/hacs_frontend/c.8e28b461.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.99c1c4ba.js delete mode 100644 custom_components/hacs/hacs_frontend/c.99c1c4ba.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.ad739743.js delete mode 100644 custom_components/hacs/hacs_frontend/c.ad739743.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.bc53dda1.js delete mode 100644 custom_components/hacs/hacs_frontend/c.bc53dda1.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/c.e23b0d0b.js delete mode 100644 custom_components/hacs/hacs_frontend/c.e23b0d0b.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/entrypoint.js.gz delete mode 100644 custom_components/hacs/hacs_frontend/manifest.json delete mode 100644 custom_components/hacs/repositories/netdaemon.py delete mode 100644 custom_components/hacs/sensor.py delete mode 100644 custom_components/hacs/utils/default.repositories delete mode 100644 custom_components/hacs/utils/template.py diff --git a/custom_components/hacs/__init__.py b/custom_components/hacs/__init__.py index 755ec25..6af3f8f 100644 --- a/custom_components/hacs/__init__.py +++ b/custom_components/hacs/__init__.py @@ -1,80 +1,58 @@ -""" -HACS gives you a powerful UI to handle downloads of all your custom needs. +"""HACS gives you a powerful UI to handle downloads of all your custom needs. For more details about this integration, please refer to the documentation at https://hacs.xyz/ """ -from __future__ import annotations -import os -from typing import Any +from __future__ import annotations from aiogithubapi import AIOGitHubAPIException, GitHub, GitHubAPI from aiogithubapi.const import ACCEPT_HEADERS from awesomeversion import AwesomeVersion +from homeassistant.components.frontend import async_remove_panel from homeassistant.components.lovelace.system_health import system_health_info from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry from homeassistant.const import Platform, __version__ as HAVERSION from homeassistant.core import HomeAssistant from homeassistant.helpers.aiohttp_client import async_get_clientsession -from homeassistant.helpers.discovery import async_load_platform +from homeassistant.helpers.entity_registry import async_get as async_get_entity_registry from homeassistant.helpers.event import async_call_later -from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue from homeassistant.helpers.start import async_at_start from homeassistant.loader import async_get_integration -import voluptuous as vol from .base import HacsBase -from .const import DOMAIN, MINIMUM_HA_VERSION, STARTUP +from .const import DOMAIN, HACS_SYSTEM_ID, MINIMUM_HA_VERSION, STARTUP from .data_client import HacsDataClient -from .enums import ConfigurationType, HacsDisabledReason, HacsStage, LovelaceMode +from .enums import HacsDisabledReason, HacsStage, LovelaceMode from .frontend import async_register_frontend -from .utils.configuration_schema import hacs_config_combined from .utils.data import HacsData -from .utils.logger import LOGGER from .utils.queue_manager import QueueManager from .utils.version import version_left_higher_or_equal_then_right from .websocket import async_register_websocket_commands -CONFIG_SCHEMA = vol.Schema({DOMAIN: hacs_config_combined()}, extra=vol.ALLOW_EXTRA) +PLATFORMS = [Platform.SWITCH, Platform.UPDATE] -async def async_initialize_integration( +async def _async_initialize_integration( hass: HomeAssistant, - *, - config_entry: ConfigEntry | None = None, - config: dict[str, Any] | None = None, + config_entry: ConfigEntry, ) -> bool: """Initialize the integration""" hass.data[DOMAIN] = hacs = HacsBase() hacs.enable_hacs() - if config is not None: - if DOMAIN not in config: - return True - if hacs.configuration.config_type == ConfigurationType.CONFIG_ENTRY: - return True - hacs.configuration.update_from_dict( - { - "config_type": ConfigurationType.YAML, - **config[DOMAIN], - "config": config[DOMAIN], - } - ) + if config_entry.source == SOURCE_IMPORT: + # Import is not supported + hass.async_create_task(hass.config_entries.async_remove(config_entry.entry_id)) + return False - if config_entry is not None: - if config_entry.source == SOURCE_IMPORT: - hass.async_create_task(hass.config_entries.async_remove(config_entry.entry_id)) - return False - - hacs.configuration.update_from_dict( - { - "config_entry": config_entry, - "config_type": ConfigurationType.CONFIG_ENTRY, - **config_entry.data, - **config_entry.options, - } - ) + hacs.configuration.update_from_dict( + { + "config_entry": config_entry, + **config_entry.data, + **config_entry.options, + }, + ) integration = await async_get_integration(hass, DOMAIN) @@ -104,7 +82,6 @@ async def async_initialize_integration( except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except # If this happens, the users YAML is not valid, we assume YAML mode pass - hacs.log.debug("Configuration type: %s", hacs.configuration.config_type) hacs.core.config_path = hacs.hass.config.path() if hacs.core.ha_version is None: @@ -131,19 +108,18 @@ async def async_initialize_integration( """HACS startup tasks.""" hacs.enable_hacs() - for location in ( - hass.config.path("custom_components/custom_updater.py"), - hass.config.path("custom_components/custom_updater/__init__.py"), - ): - if os.path.exists(location): - hacs.log.critical( - "This cannot be used with custom_updater. " - "To use this you need to remove custom_updater form %s", - location, - ) + try: + import custom_components.custom_updater + except ImportError: + pass + else: + hacs.log.critical( + "HACS cannot be used with custom_updater. " + "To use HACS you need to remove custom_updater from `custom_components`", + ) - hacs.disable_hacs(HacsDisabledReason.CONSTRAINS) - return False + hacs.disable_hacs(HacsDisabledReason.CONSTRAINS) + return False if not version_left_higher_or_equal_then_right( hacs.core.ha_version.string, @@ -160,39 +136,23 @@ async def async_initialize_integration( hacs.disable_hacs(HacsDisabledReason.RESTORE) return False - if not hacs.configuration.experimental: - can_update = await hacs.async_can_update() - hacs.log.debug("Can update %s repositories", can_update) - hacs.set_active_categories() async_register_websocket_commands(hass) - async_register_frontend(hass, hacs) + await async_register_frontend(hass, hacs) - if hacs.configuration.config_type == ConfigurationType.YAML: - hass.async_create_task( - async_load_platform(hass, Platform.SENSOR, DOMAIN, {}, hacs.configuration.config) - ) - hacs.log.info("Update entities are only supported when using UI configuration") - - else: - await hass.config_entries.async_forward_entry_setups( - config_entry, - [Platform.SENSOR, Platform.UPDATE] - if hacs.configuration.experimental - else [Platform.SENSOR], - ) + await hass.config_entries.async_forward_entry_setups(config_entry, PLATFORMS) hacs.set_stage(HacsStage.SETUP) if hacs.system.disabled: return False - # Schedule startup tasks - async_at_start(hass=hass, at_start_cb=hacs.startup_tasks) - hacs.set_stage(HacsStage.WAITING) hacs.log.info("Setup complete, waiting for Home Assistant before startup tasks starts") + # Schedule startup tasks + async_at_start(hass=hass, at_start_cb=hacs.startup_tasks) + return not hacs.system.disabled async def async_try_startup(_=None): @@ -202,10 +162,7 @@ async def async_initialize_integration( except AIOGitHubAPIException: startup_result = False if not startup_result: - if ( - hacs.configuration.config_type == ConfigurationType.YAML - or hacs.system.disabled_reason != HacsDisabledReason.INVALID_TOKEN - ): + if hacs.system.disabled_reason != HacsDisabledReason.INVALID_TOKEN: hacs.log.info("Could not setup HACS, trying again in 15 min") async_call_later(hass, 900, async_try_startup) return @@ -213,37 +170,19 @@ async def async_initialize_integration( await async_try_startup() + # Remove old (v0-v1) sensor if it exists, can be removed in v3 + er = async_get_entity_registry(hass) + if old_sensor := er.async_get_entity_id("sensor", DOMAIN, HACS_SYSTEM_ID): + er.async_remove(old_sensor) + # Mischief managed! return True -async def async_setup(hass: HomeAssistant, config: dict[str, Any]) -> bool: - """Set up this integration using yaml.""" - if DOMAIN in config: - async_create_issue( - hass, - DOMAIN, - "deprecated_yaml_configuration", - is_fixable=False, - issue_domain=DOMAIN, - severity=IssueSeverity.WARNING, - translation_key="deprecated_yaml_configuration", - learn_more_url="https://hacs.xyz/docs/configuration/options", - ) - LOGGER.warning( - "YAML configuration of HACS is deprecated and will be " - "removed in version 2.0.0, there will be no automatic " - "import of this. " - "Please remove it from your configuration, " - "restart Home Assistant and use the UI to configure it instead." - ) - return await async_initialize_integration(hass=hass, config=config) - - async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: """Set up this integration using UI.""" config_entry.async_on_unload(config_entry.add_update_listener(async_reload_entry)) - setup_result = await async_initialize_integration(hass=hass, config_entry=config_entry) + setup_result = await _async_initialize_integration(hass=hass, config_entry=config_entry) hacs: HacsBase = hass.data[DOMAIN] return setup_result and not hacs.system.disabled @@ -259,7 +198,7 @@ async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> # Clear out pending queue hacs.queue.clear() - for task in hacs.recuring_tasks: + for task in hacs.recurring_tasks: # Cancel all pending tasks task() @@ -269,15 +208,11 @@ async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> try: if hass.data.get("frontend_panels", {}).get("hacs"): hacs.log.info("Removing sidepanel") - hass.components.frontend.async_remove_panel("hacs") + async_remove_panel(hass, "hacs") except AttributeError: pass - platforms = ["sensor"] - if hacs.configuration.experimental: - platforms.append("update") - - unload_ok = await hass.config_entries.async_unload_platforms(config_entry, platforms) + unload_ok = await hass.config_entries.async_unload_platforms(config_entry, PLATFORMS) hacs.set_stage(None) hacs.disable_hacs(HacsDisabledReason.REMOVED) diff --git a/custom_components/hacs/base.py b/custom_components/hacs/base.py index 76c7785..a29e43d 100644 --- a/custom_components/hacs/base.py +++ b/custom_components/hacs/base.py @@ -1,16 +1,17 @@ """Base HACS class.""" + from __future__ import annotations import asyncio +from collections.abc import Awaitable, Callable from dataclasses import asdict, dataclass, field from datetime import timedelta import gzip -import logging import math import os import pathlib import shutil -from typing import TYPE_CHECKING, Any, Awaitable, Callable +from typing import TYPE_CHECKING, Any from aiogithubapi import ( AIOGitHubAPIException, @@ -24,23 +25,22 @@ from aiogithubapi import ( from aiogithubapi.objects.repository import AIOGitHubAPIRepository from aiohttp.client import ClientSession, ClientTimeout from awesomeversion import AwesomeVersion -from homeassistant.config_entries import ConfigEntry, ConfigEntryState +from homeassistant.components.persistent_notification import ( + async_create as async_create_persistent_notification, +) +from homeassistant.config_entries import ConfigEntry from homeassistant.const import EVENT_HOMEASSISTANT_FINAL_WRITE, Platform from homeassistant.core import HomeAssistant, callback from homeassistant.helpers.dispatcher import async_dispatcher_send +from homeassistant.helpers.event import async_track_time_interval from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue from homeassistant.loader import Integration from homeassistant.util import dt -from custom_components.hacs.repositories.base import ( - HACS_MANIFEST_KEYS_TO_EXPORT, - REPOSITORY_KEYS_TO_EXPORT, -) - from .const import DOMAIN, TV, URL_BASE +from .coordinator import HacsUpdateCoordinator from .data_client import HacsDataClient from .enums import ( - ConfigurationType, HacsCategory, HacsDisabledReason, HacsDispatchEvent, @@ -58,12 +58,14 @@ from .exceptions import ( HacsRepositoryExistException, HomeAssistantCoreRepositoryException, ) -from .repositories import RERPOSITORY_CLASSES -from .utils.decode import decode_content +from .repositories import REPOSITORY_CLASSES +from .repositories.base import HACS_MANIFEST_KEYS_TO_EXPORT, REPOSITORY_KEYS_TO_EXPORT +from .utils.file_system import async_exists from .utils.json import json_loads from .utils.logger import LOGGER from .utils.queue_manager import QueueManager from .utils.store import async_load_from_store, async_save_to_store +from .utils.workarounds import async_register_static_path if TYPE_CHECKING: from .repositories.base import HacsRepository @@ -113,15 +115,11 @@ class HacsConfiguration: appdaemon: bool = False config: dict[str, Any] = field(default_factory=dict) config_entry: ConfigEntry | None = None - config_type: ConfigurationType | None = None country: str = "ALL" debug: bool = False dev: bool = False - experimental: bool = False frontend_repo_url: str = "" frontend_repo: str = "" - netdaemon_path: str = "netdaemon/apps/" - netdaemon: bool = False plugin_path: str = "www/community/" python_script_path: str = "python_scripts/" python_script: bool = False @@ -142,6 +140,8 @@ class HacsConfiguration: raise HacsException("Configuration is not valid.") for key in data: + if key in {"experimental", "netdaemon", "release_limit", "debug"}: + continue self.__setattr__(key, data[key]) @@ -355,9 +355,6 @@ class HacsRepositories: class HacsBase: """Base HACS class.""" - common = HacsCommon() - configuration = HacsConfiguration() - core = HacsCore() data: HacsData | None = None data_client: HacsDataClient | None = None frontend_version: str | None = None @@ -365,18 +362,25 @@ class HacsBase: githubapi: GitHubAPI | None = None hass: HomeAssistant | None = None integration: Integration | None = None - log: logging.Logger = LOGGER queue: QueueManager | None = None - recuring_tasks = [] - repositories: HacsRepositories = HacsRepositories() repository: AIOGitHubAPIRepository | None = None session: ClientSession | None = None stage: HacsStage | None = None - status = HacsStatus() - system = HacsSystem() validation: ValidationManager | None = None version: AwesomeVersion | None = None + def __init__(self) -> None: + """Initialize.""" + self.common = HacsCommon() + self.configuration = HacsConfiguration() + self.coordinators: dict[HacsCategory, HacsUpdateCoordinator] = {} + self.core = HacsCore() + self.log = LOGGER + self.recurring_tasks: list[Callable[[], None]] = [] + self.repositories = HacsRepositories() + self.status = HacsStatus() + self.system = HacsSystem() + @property def integration_dir(self) -> pathlib.Path: """Return the HACS integration dir.""" @@ -401,12 +405,7 @@ class HacsBase: if reason != HacsDisabledReason.REMOVED: self.log.error("HACS is disabled - %s", reason) - if ( - reason == HacsDisabledReason.INVALID_TOKEN - and self.configuration.config_type == ConfigurationType.CONFIG_ENTRY - ): - self.configuration.config_entry.state = ConfigEntryState.SETUP_ERROR - self.configuration.config_entry.reason = "Authentication failed" + if reason == HacsDisabledReason.INVALID_TOKEN: self.hass.add_job(self.configuration.config_entry.async_start_reauth, self.hass) def enable_hacs(self) -> None: @@ -420,12 +419,14 @@ class HacsBase: if category not in self.common.categories: self.log.info("Enable category: %s", category) self.common.categories.add(category) + self.coordinators[category] = HacsUpdateCoordinator() def disable_hacs_category(self, category: HacsCategory) -> None: """Disable HACS category.""" if category in self.common.categories: self.log.info("Disabling category: %s", category) self.common.categories.pop(category) + self.coordinators.pop(category) async def async_save_file(self, file_path: str, content: Any) -> bool: """Save a file.""" @@ -458,12 +459,13 @@ class HacsBase: try: await self.hass.async_add_executor_job(_write_file) except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as error: self.log.error("Could not write data to %s - %s", file_path, error) return False - return os.path.exists(file_path) + return await async_exists(self.hass, file_path) async def async_can_update(self) -> int: """Helper to calculate the number of repositories we can fetch data for.""" @@ -479,24 +481,13 @@ class HacsBase: ) self.disable_hacs(HacsDisabledReason.RATE_LIMIT) except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: self.log.exception(exception) return 0 - async def async_github_get_hacs_default_file(self, filename: str) -> list: - """Get the content of a default file.""" - response = await self.async_github_api_method( - method=self.githubapi.repos.contents.get, - repository=HacsGitHubRepo.DEFAULT, - path=filename, - ) - if response is None: - return [] - - return json_loads(decode_content(response.data.content)) - async def async_github_api_method( self, method: Callable[[], Awaitable[TV]], @@ -520,7 +511,8 @@ class HacsBase: except GitHubException as exception: _exception = exception except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: self.log.exception(exception) _exception = exception @@ -552,7 +544,7 @@ class HacsBase: ): raise AddonRepositoryException() - if category not in RERPOSITORY_CLASSES: + if category not in REPOSITORY_CLASSES: self.log.warning( "%s is not a valid repository category, %s will not be registered.", category, @@ -563,7 +555,7 @@ class HacsBase: if (renamed := self.common.renamed_repositories.get(repository_full_name)) is not None: repository_full_name = renamed - repository: HacsRepository = RERPOSITORY_CLASSES[category](self, repository_full_name) + repository: HacsRepository = REPOSITORY_CLASSES[category](self, repository_full_name) if check: try: await repository.async_registration(ref) @@ -573,7 +565,8 @@ class HacsBase: self.log.error("Validation for %s failed.", repository_full_name) if self.system.action: raise HacsException( - f"::error:: Validation for {repository_full_name} failed." + f"::error:: Validation for { + repository_full_name} failed." ) return repository.validate.errors if self.system.action: @@ -589,7 +582,8 @@ class HacsBase: except AIOGitHubAPIException as exception: self.common.skip.add(repository.data.full_name) raise HacsException( - f"Validation for {repository_full_name} failed with {exception}." + f"Validation for { + repository_full_name} failed with {exception}." ) from exception if self.status.new: @@ -620,79 +614,64 @@ class HacsBase: for repo in critical: if not repo["acknowledged"]: self.log.critical("URGENT!: Check the HACS panel!") - self.hass.components.persistent_notification.create( - title="URGENT!", message="**Check the HACS panel!**" + async_create_persistent_notification( + self.hass, title="URGENT!", message="**Check the HACS panel!**" ) break - if not self.configuration.experimental: - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_update_downloaded_repositories, timedelta(hours=48) - ) - ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_update_all_repositories, - timedelta(hours=96), - ) - ) - else: - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_load_hacs_from_github, - timedelta(hours=48), - ) - ) - - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_update_downloaded_custom_repositories, timedelta(hours=48) + self.recurring_tasks.append( + async_track_time_interval( + self.hass, + self.async_load_hacs_from_github, + timedelta(hours=48), ) ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_get_all_category_repositories, timedelta(hours=6) + self.recurring_tasks.append( + async_track_time_interval( + self.hass, self.async_update_downloaded_custom_repositories, timedelta(hours=48) ) ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_check_rate_limit, timedelta(minutes=5) - ) - ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_prosess_queue, timedelta(minutes=10) + self.recurring_tasks.append( + async_track_time_interval( + self.hass, self.async_get_all_category_repositories, timedelta(hours=6) ) ) - self.recuring_tasks.append( - self.hass.helpers.event.async_track_time_interval( - self.async_handle_critical_repositories, timedelta(hours=6) + self.recurring_tasks.append( + async_track_time_interval(self.hass, self.async_check_rate_limit, timedelta(minutes=5)) + ) + self.recurring_tasks.append( + async_track_time_interval(self.hass, self.async_process_queue, timedelta(minutes=10)) + ) + + self.recurring_tasks.append( + async_track_time_interval( + self.hass, self.async_handle_critical_repositories, timedelta(hours=6) ) ) - self.hass.bus.async_listen_once( + unsub = self.hass.bus.async_listen_once( EVENT_HOMEASSISTANT_FINAL_WRITE, self.data.async_force_write ) + if config_entry := self.configuration.config_entry: + config_entry.async_on_unload(unsub) - self.log.debug("There are %s scheduled recurring tasks", len(self.recuring_tasks)) + self.log.debug("There are %s scheduled recurring tasks", len(self.recurring_tasks)) self.status.startup = False self.async_dispatch(HacsDispatchEvent.STATUS, {}) await self.async_handle_removed_repositories() await self.async_get_all_category_repositories() - await self.async_update_downloaded_repositories() self.set_stage(HacsStage.RUNNING) self.async_dispatch(HacsDispatchEvent.RELOAD, {"force": True}) await self.async_handle_critical_repositories() - await self.async_prosess_queue() + await self.async_process_queue() self.async_dispatch(HacsDispatchEvent.STATUS, {}) @@ -728,9 +707,10 @@ class HacsBase: return await request.read() raise HacsException( - f"Got status code {request.status} when trying to download {url}" + f"Got status code { + request.status} when trying to download {url}" ) - except asyncio.TimeoutError: + except TimeoutError: self.log.warning( "A timeout of 60! seconds was encountered while downloading %s, " "using over 60 seconds to download a single file is not normal. " @@ -746,7 +726,8 @@ class HacsBase: continue except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: if not nolog: self.log.exception("Download failed - %s", exception) @@ -755,15 +736,24 @@ class HacsBase: async def async_recreate_entities(self) -> None: """Recreate entities.""" - if self.configuration == ConfigurationType.YAML or not self.configuration.experimental: - return + platforms = [Platform.UPDATE] - platforms = [Platform.SENSOR, Platform.UPDATE] - - await self.hass.config_entries.async_unload_platforms( - entry=self.configuration.config_entry, - platforms=platforms, - ) + # Workaround for core versions without https://github.com/home-assistant/core/pull/117084 + if self.core.ha_version < AwesomeVersion("2024.6.0"): + unload_platforms_lock = asyncio.Lock() + async with unload_platforms_lock: + on_unload = self.configuration.config_entry._on_unload + self.configuration.config_entry._on_unload = [] + await self.hass.config_entries.async_unload_platforms( + entry=self.configuration.config_entry, + platforms=platforms, + ) + self.configuration.config_entry._on_unload = on_unload + else: + await self.hass.config_entries.async_unload_platforms( + entry=self.configuration.config_entry, + platforms=platforms, + ) await self.hass.config_entries.async_forward_entry_setups( self.configuration.config_entry, platforms ) @@ -776,12 +766,9 @@ class HacsBase: def set_active_categories(self) -> None: """Set the active categories.""" self.common.categories = set() - for category in (HacsCategory.INTEGRATION, HacsCategory.PLUGIN): + for category in (HacsCategory.INTEGRATION, HacsCategory.PLUGIN, HacsCategory.TEMPLATE): self.enable_hacs_category(HacsCategory(category)) - if self.configuration.experimental: - self.enable_hacs_category(HacsCategory.TEMPLATE) - if ( HacsCategory.PYTHON_SCRIPT in self.hass.config.components or self.repositories.category_downloaded(HacsCategory.PYTHON_SCRIPT) @@ -795,30 +782,24 @@ class HacsBase: if self.configuration.appdaemon: self.enable_hacs_category(HacsCategory.APPDAEMON) - if self.configuration.netdaemon: - if self.repositories.category_downloaded(HacsCategory.NETDAEMON): - self.log.warning( - "NetDaemon in HACS is deprectaded. It will stop working in the future. " - "Please remove all your current NetDaemon repositories from HACS " - "and download them manually if you want to continue using them." - ) - self.enable_hacs_category(HacsCategory.NETDAEMON) async def async_load_hacs_from_github(self, _=None) -> None: """Load HACS from GitHub.""" - if self.configuration.experimental and self.status.inital_fetch_done: + if self.status.inital_fetch_done: return try: repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) + should_recreate_entities = False if repository is None: + should_recreate_entities = True await self.async_register_repository( repository_full_name=HacsGitHubRepo.INTEGRATION, category=HacsCategory.INTEGRATION, default=True, ) repository = self.repositories.get_by_full_name(HacsGitHubRepo.INTEGRATION) - elif self.configuration.experimental and not self.status.startup: + elif not self.status.startup: self.log.error("Scheduling update of hacs/integration") self.queue.add(repository.common_update()) if repository is None: @@ -829,6 +810,9 @@ class HacsBase: repository.data.new = False repository.data.releases = True + if should_recreate_entities: + await self.async_recreate_entities() + self.repository = repository.repository_object self.repositories.mark_default(repository) except HacsException as exception: @@ -848,8 +832,6 @@ class HacsBase: await asyncio.gather( *[ self.async_get_category_repositories_experimental(category) - if self.configuration.experimental - else self.async_get_category_repositories(HacsCategory(category)) for category in self.common.categories or [] ] ) @@ -858,7 +840,7 @@ class HacsBase: """Update all category repositories.""" self.log.debug("Fetching updated content for %s", category) try: - category_data = await self.data_client.get_data(category) + category_data = await self.data_client.get_data(category, validate=True) except HacsNotModifiedException: self.log.debug("No updates for %s", category) return @@ -869,14 +851,14 @@ class HacsBase: await self.data.register_unknown_repositories(category_data, category) for repo_id, repo_data in category_data.items(): - repo = repo_data["full_name"] - if self.common.renamed_repositories.get(repo): - repo = self.common.renamed_repositories[repo] - if self.repositories.is_removed(repo): + repo_name = repo_data["full_name"] + if self.common.renamed_repositories.get(repo_name): + repo_name = self.common.renamed_repositories[repo_name] + if self.repositories.is_removed(repo_name): continue - if repo in self.common.archived_repositories: + if repo_name in self.common.archived_repositories: continue - if repository := self.repositories.get_by_full_name(repo): + if repository := self.repositories.get_by_full_name(repo_name): self.repositories.set_repository_id(repository, repo_id) self.repositories.mark_default(repository) if repository.data.last_fetched is None or ( @@ -904,51 +886,7 @@ class HacsBase: self.repositories.unregister(repository) self.async_dispatch(HacsDispatchEvent.REPOSITORY, {}) - - async def async_get_category_repositories(self, category: HacsCategory) -> None: - """Get repositories from category.""" - if self.system.disabled: - return - try: - repositories = await self.async_github_get_hacs_default_file(category) - except HacsException: - return - - for repo in repositories: - if self.common.renamed_repositories.get(repo): - repo = self.common.renamed_repositories[repo] - if self.repositories.is_removed(repo): - continue - if repo in self.common.archived_repositories: - continue - repository = self.repositories.get_by_full_name(repo) - if repository is not None: - self.repositories.mark_default(repository) - if self.status.new and self.configuration.dev: - # Force update for new installations - self.queue.add(repository.common_update()) - continue - - self.queue.add( - self.async_register_repository( - repository_full_name=repo, - category=category, - default=True, - ) - ) - - async def async_update_all_repositories(self, _=None) -> None: - """Update all repositories.""" - if self.system.disabled: - return - self.log.debug("Starting recurring background task for all repositories") - - for repository in self.repositories.list_all: - if repository.data.category in self.common.categories: - self.queue.add(repository.common_update()) - - self.async_dispatch(HacsDispatchEvent.REPOSITORY, {"action": "reload"}) - self.log.debug("Recurring background task for all repositories done") + self.coordinators[category].async_update_listeners() async def async_check_rate_limit(self, _=None) -> None: """Check rate limit.""" @@ -960,9 +898,9 @@ class HacsBase: self.log.debug("Ratelimit indicate we can update %s", can_update) if can_update > 0: self.enable_hacs() - await self.async_prosess_queue() + await self.async_process_queue() - async def async_prosess_queue(self, _=None) -> None: + async def async_process_queue(self, _=None) -> None: """Process the queue.""" if self.system.disabled: self.log.debug("HACS is disabled") @@ -1002,12 +940,7 @@ class HacsBase: self.log.info("Loading removed repositories") try: - if self.configuration.experimental: - removed_repositories = await self.data_client.get_data("removed") - else: - removed_repositories = await self.async_github_get_hacs_default_file( - HacsCategory.REMOVED - ) + removed_repositories = await self.data_client.get_data("removed", validate=True) except HacsException: return @@ -1022,21 +955,20 @@ class HacsBase: continue if repository.data.installed: if removed.removal_type != "critical": - if self.configuration.experimental: - async_create_issue( - hass=self.hass, - domain=DOMAIN, - issue_id=f"removed_{repository.data.id}", - is_fixable=False, - issue_domain=DOMAIN, - severity=IssueSeverity.WARNING, - translation_key="removed", - translation_placeholders={ - "name": repository.data.full_name, - "reason": removed.reason, - "repositry_id": repository.data.id, - }, - ) + async_create_issue( + hass=self.hass, + domain=DOMAIN, + issue_id=f"removed_{repository.data.id}", + is_fixable=False, + issue_domain=DOMAIN, + severity=IssueSeverity.WARNING, + translation_key="removed", + translation_placeholders={ + "name": repository.data.full_name, + "reason": removed.reason, + "repositry_id": repository.data.id, + }, + ) self.log.warning( "You have '%s' installed with HACS " "this repository has been removed from HACS, please consider removing it. " @@ -1051,30 +983,43 @@ class HacsBase: if need_to_save: await self.data.async_write() - async def async_update_downloaded_repositories(self, _=None) -> None: - """Execute the task.""" - if self.system.disabled or self.configuration.experimental: - return - self.log.info("Starting recurring background task for downloaded repositories") - - for repository in self.repositories.list_downloaded: - if repository.data.category in self.common.categories: - self.queue.add(repository.update_repository(ignore_issues=True)) - - self.log.debug("Recurring background task for downloaded repositories done") - async def async_update_downloaded_custom_repositories(self, _=None) -> None: """Execute the task.""" - if self.system.disabled or not self.configuration.experimental: + if self.system.disabled: return self.log.info("Starting recurring background task for downloaded custom repositories") + repositories_to_update = 0 + repositories_updated = asyncio.Event() + + async def update_repository(repository: HacsRepository) -> None: + """Update a repository""" + nonlocal repositories_to_update + await repository.update_repository(ignore_issues=True) + repositories_to_update -= 1 + if not repositories_to_update: + repositories_updated.set() + for repository in self.repositories.list_downloaded: if ( repository.data.category in self.common.categories and not self.repositories.is_default(repository.data.id) ): - self.queue.add(repository.update_repository(ignore_issues=True)) + repositories_to_update += 1 + self.queue.add(update_repository(repository)) + + async def update_coordinators() -> None: + """Update all coordinators.""" + await repositories_updated.wait() + for coordinator in self.coordinators.values(): + coordinator.async_update_listeners() + + if config_entry := self.configuration.config_entry: + config_entry.async_create_background_task( + self.hass, update_coordinators(), "update_coordinators" + ) + else: + self.hass.async_create_background_task(update_coordinators(), "update_coordinators") self.log.debug("Recurring background task for downloaded custom repositories done") @@ -1086,10 +1031,7 @@ class HacsBase: was_installed = False try: - if self.configuration.experimental: - critical = await self.data_client.get_data("critical") - else: - critical = await self.async_github_get_hacs_default_file("critical") + critical = await self.data_client.get_data("critical", validate=True) except (GitHubNotModifiedException, HacsNotModifiedException): return except HacsException: @@ -1143,11 +1085,10 @@ class HacsBase: self.log.critical("Restarting Home Assistant") self.hass.async_create_task(self.hass.async_stop(100)) - @callback - def async_setup_frontend_endpoint_plugin(self) -> None: + async def async_setup_frontend_endpoint_plugin(self) -> None: """Setup the http endpoints for plugins if its not already handled.""" - if self.status.active_frontend_endpoint_plugin or not os.path.exists( - self.hass.config.path("www/community") + if self.status.active_frontend_endpoint_plugin or not await async_exists( + self.hass, self.hass.config.path("www/community") ): return @@ -1159,26 +1100,11 @@ class HacsBase: use_cache, ) - self.hass.http.register_static_path( + await async_register_static_path( + self.hass, URL_BASE, self.hass.config.path("www/community"), cache_headers=use_cache, ) self.status.active_frontend_endpoint_plugin = True - - @callback - def async_setup_frontend_endpoint_themes(self) -> None: - """Setup the http endpoints for themes if its not already handled.""" - if ( - self.configuration.experimental - or self.status.active_frontend_endpoint_theme - or not os.path.exists(self.hass.config.path("themes")) - ): - return - - self.log.info("Setting up themes endpoint") - # Register themes - self.hass.http.register_static_path(f"{URL_BASE}/themes", self.hass.config.path("themes")) - - self.status.active_frontend_endpoint_theme = True diff --git a/custom_components/hacs/config_flow.py b/custom_components/hacs/config_flow.py index 583f0f0..6c368c6 100644 --- a/custom_components/hacs/config_flow.py +++ b/custom_components/hacs/config_flow.py @@ -1,4 +1,5 @@ """Adds config flow for HACS.""" + from __future__ import annotations import asyncio @@ -23,14 +24,9 @@ import voluptuous as vol from .base import HacsBase from .const import CLIENT_ID, DOMAIN, LOCALE, MINIMUM_HA_VERSION -from .enums import ConfigurationType from .utils.configuration_schema import ( APPDAEMON, COUNTRY, - DEBUG, - EXPERIMENTAL, - NETDAEMON, - RELEASE_LIMIT, SIDEPANEL_ICON, SIDEPANEL_TITLE, ) @@ -75,15 +71,9 @@ class HacsFlowHandler(ConfigFlow, domain=DOMAIN): return await self.async_step_device(user_input) - ## Initial form + # Initial form return await self._show_config_form(user_input) - @callback - def async_remove(self): - """Cleanup.""" - if self.activation_task and not self.activation_task.done(): - self.activation_task.cancel() - async def async_step_device(self, _user_input): """Handle device steps.""" @@ -97,8 +87,6 @@ class HacsFlowHandler(ConfigFlow, domain=DOMAIN): with suppress(UnknownFlow): await self.hass.config_entries.flow.async_configure(flow_id=self.flow_id) - self.hass.async_create_task(_progress()) - if not self.device: integration = await async_get_integration(self.hass, DOMAIN) self.device = GitHubDeviceAPI( @@ -122,14 +110,16 @@ class HacsFlowHandler(ConfigFlow, domain=DOMAIN): return self.async_show_progress_done(next_step_id="could_not_register") return self.async_show_progress_done(next_step_id="device_done") - return self.async_show_progress( - step_id="device", - progress_action="wait_for_device", - description_placeholders={ + show_progress_kwargs = { + "step_id": "device", + "progress_action": "wait_for_device", + "description_placeholders": { "url": OAUTH_USER_LOGIN, "code": self._registration.user_code, }, - ) + "progress_task": self.activation_task, + } + return self.async_show_progress(**show_progress_kwargs) async def _show_config_form(self, user_input): """Show the configuration form to edit location data.""" @@ -152,9 +142,6 @@ class HacsFlowHandler(ConfigFlow, domain=DOMAIN): "acc_untested", default=user_input.get("acc_untested", False) ): bool, vol.Required("acc_disable", default=user_input.get("acc_disable", False)): bool, - vol.Optional( - "experimental", default=user_input.get("experimental", False) - ): bool, } ), errors=self._errors, @@ -176,7 +163,7 @@ class HacsFlowHandler(ConfigFlow, domain=DOMAIN): "token": self._activation.access_token, }, options={ - "experimental": self._user_input.get("experimental", False), + "experimental": True, }, ) @@ -219,10 +206,7 @@ class HacsOptionsFlowHandler(OptionsFlow): """Handle a flow initialized by the user.""" hacs: HacsBase = self.hass.data.get(DOMAIN) if user_input is not None: - limit = int(user_input.get(RELEASE_LIMIT, 5)) - if limit <= 0 or limit > 100: - return self.async_abort(reason="release_limit_value") - return self.async_create_entry(title="", data=user_input) + return self.async_create_entry(title="", data={**user_input, "experimental": True}) if hacs is None or hacs.configuration is None: return self.async_abort(reason="not_setup") @@ -230,18 +214,11 @@ class HacsOptionsFlowHandler(OptionsFlow): if hacs.queue.has_pending_tasks: return self.async_abort(reason="pending_tasks") - if hacs.configuration.config_type == ConfigurationType.YAML: - schema = {vol.Optional("not_in_use", default=""): str} - else: - schema = { - vol.Optional(SIDEPANEL_TITLE, default=hacs.configuration.sidepanel_title): str, - vol.Optional(SIDEPANEL_ICON, default=hacs.configuration.sidepanel_icon): str, - vol.Optional(RELEASE_LIMIT, default=hacs.configuration.release_limit): int, - vol.Optional(COUNTRY, default=hacs.configuration.country): vol.In(LOCALE), - vol.Optional(APPDAEMON, default=hacs.configuration.appdaemon): bool, - vol.Optional(NETDAEMON, default=hacs.configuration.netdaemon): bool, - vol.Optional(DEBUG, default=hacs.configuration.debug): bool, - vol.Optional(EXPERIMENTAL, default=hacs.configuration.experimental): bool, - } + schema = { + vol.Optional(SIDEPANEL_TITLE, default=hacs.configuration.sidepanel_title): str, + vol.Optional(SIDEPANEL_ICON, default=hacs.configuration.sidepanel_icon): str, + vol.Optional(COUNTRY, default=hacs.configuration.country): vol.In(LOCALE), + vol.Optional(APPDAEMON, default=hacs.configuration.appdaemon): bool, + } return self.async_show_form(step_id="user", data_schema=vol.Schema(schema)) diff --git a/custom_components/hacs/const.py b/custom_components/hacs/const.py index 85fda91..271484b 100644 --- a/custom_components/hacs/const.py +++ b/custom_components/hacs/const.py @@ -1,4 +1,5 @@ """Constants for HACS""" + from typing import TypeVar from aiogithubapi.common.const import ACCEPT_HEADERS @@ -6,7 +7,7 @@ from aiogithubapi.common.const import ACCEPT_HEADERS NAME_SHORT = "HACS" DOMAIN = "hacs" CLIENT_ID = "395a8e669c5de9f7c6e8" -MINIMUM_HA_VERSION = "2023.6.0" +MINIMUM_HA_VERSION = "2024.4.1" URL_BASE = "/hacsfiles" diff --git a/custom_components/hacs/diagnostics.py b/custom_components/hacs/diagnostics.py index f2991bd..fb88fa2 100644 --- a/custom_components/hacs/diagnostics.py +++ b/custom_components/hacs/diagnostics.py @@ -1,4 +1,5 @@ """Diagnostics support for HACS.""" + from __future__ import annotations from typing import Any @@ -10,7 +11,6 @@ from homeassistant.core import HomeAssistant from .base import HacsBase from .const import DOMAIN -from .utils.configuration_schema import TOKEN async def async_get_config_entry_diagnostics( @@ -48,8 +48,6 @@ async def async_get_config_entry_diagnostics( "country", "debug", "dev", - "experimental", - "netdaemon", "python_script", "release_limit", "theme", @@ -79,4 +77,4 @@ async def async_get_config_entry_diagnostics( except GitHubException as exception: data["rate_limit"] = str(exception) - return async_redact_data(data, (TOKEN,)) + return async_redact_data(data, ("token",)) diff --git a/custom_components/hacs/entity.py b/custom_components/hacs/entity.py index 870d80a..6d5d2b8 100644 --- a/custom_components/hacs/entity.py +++ b/custom_components/hacs/entity.py @@ -1,4 +1,5 @@ """HACS Base entities.""" + from __future__ import annotations from typing import TYPE_CHECKING, Any @@ -7,8 +8,10 @@ from homeassistant.core import callback from homeassistant.helpers.device_registry import DeviceEntryType from homeassistant.helpers.dispatcher import async_dispatcher_connect from homeassistant.helpers.entity import Entity +from homeassistant.helpers.update_coordinator import BaseCoordinatorEntity from .const import DOMAIN, HACS_SYSTEM_ID, NAME_SHORT +from .coordinator import HacsUpdateCoordinator from .enums import HacsDispatchEvent, HacsGitHubRepo if TYPE_CHECKING: @@ -39,6 +42,10 @@ class HacsBaseEntity(Entity): """Initialize.""" self.hacs = hacs + +class HacsDispatcherEntity(HacsBaseEntity): + """Base HACS entity listening to dispatcher signals.""" + async def async_added_to_hass(self) -> None: """Register for status events.""" self.async_on_remove( @@ -64,7 +71,7 @@ class HacsBaseEntity(Entity): self.async_write_ha_state() -class HacsSystemEntity(HacsBaseEntity): +class HacsSystemEntity(HacsDispatcherEntity): """Base system entity.""" _attr_icon = "hacs:hacs" @@ -76,7 +83,7 @@ class HacsSystemEntity(HacsBaseEntity): return system_info(self.hacs) -class HacsRepositoryEntity(HacsBaseEntity): +class HacsRepositoryEntity(BaseCoordinatorEntity[HacsUpdateCoordinator], HacsBaseEntity): """Base repository entity.""" def __init__( @@ -85,9 +92,11 @@ class HacsRepositoryEntity(HacsBaseEntity): repository: HacsRepository, ) -> None: """Initialize.""" - super().__init__(hacs=hacs) + BaseCoordinatorEntity.__init__(self, hacs.coordinators[repository.data.category]) + HacsBaseEntity.__init__(self, hacs=hacs) self.repository = repository self._attr_unique_id = str(repository.data.id) + self._repo_last_fetched = repository.data.last_fetched @property def available(self) -> bool: @@ -100,20 +109,35 @@ class HacsRepositoryEntity(HacsBaseEntity): if self.repository.data.full_name == HacsGitHubRepo.INTEGRATION: return system_info(self.hacs) + def _manufacturer(): + if authors := self.repository.data.authors: + return ", ".join(author.replace("@", "") for author in authors) + return self.repository.data.full_name.split("/")[0] + return { "identifiers": {(DOMAIN, str(self.repository.data.id))}, "name": self.repository.display_name, "model": self.repository.data.category, - "manufacturer": ", ".join( - author.replace("@", "") for author in self.repository.data.authors - ), - "configuration_url": "homeassistant://hacs", + "manufacturer": _manufacturer(), + "configuration_url": f"homeassistant://hacs/repository/{self.repository.data.id}", "entry_type": DeviceEntryType.SERVICE, } @callback - def _update_and_write_state(self, data: dict) -> None: - """Update the entity and write state.""" - if data.get("repository_id") == self.repository.data.id: - self._update() - self.async_write_ha_state() + def _handle_coordinator_update(self) -> None: + """Handle updated data from the coordinator.""" + if ( + self._repo_last_fetched is not None + and self.repository.data.last_fetched is not None + and self._repo_last_fetched >= self.repository.data.last_fetched + ): + return + + self._repo_last_fetched = self.repository.data.last_fetched + self.async_write_ha_state() + + async def async_update(self) -> None: + """Update the entity. + + Only used by the generic entity update service. + """ diff --git a/custom_components/hacs/enums.py b/custom_components/hacs/enums.py index 1454422..dd947e1 100644 --- a/custom_components/hacs/enums.py +++ b/custom_components/hacs/enums.py @@ -1,20 +1,7 @@ """Helper constants.""" + # pylint: disable=missing-class-docstring -import sys - -if sys.version_info.minor >= 11: - # Needs Python 3.11 - from enum import StrEnum # # pylint: disable=no-name-in-module -else: - try: - # https://github.com/home-assistant/core/blob/dev/homeassistant/backports/enum.py - # Considered internal to Home Assistant, can be removed whenever. - from homeassistant.backports.enum import StrEnum - except ImportError: - from enum import Enum - - class StrEnum(str, Enum): - pass +from enum import StrEnum class HacsGitHubRepo(StrEnum): @@ -29,7 +16,6 @@ class HacsCategory(StrEnum): INTEGRATION = "integration" LOVELACE = "lovelace" PLUGIN = "plugin" # Kept for legacy purposes - NETDAEMON = "netdaemon" PYTHON_SCRIPT = "python_script" TEMPLATE = "template" THEME = "theme" @@ -59,11 +45,6 @@ class RepositoryFile(StrEnum): MAINIFEST_JSON = "manifest.json" -class ConfigurationType(StrEnum): - YAML = "yaml" - CONFIG_ENTRY = "config_entry" - - class LovelaceMode(StrEnum): """Lovelace Modes.""" diff --git a/custom_components/hacs/frontend.py b/custom_components/hacs/frontend.py index 6557517..7038f3c 100644 --- a/custom_components/hacs/frontend.py +++ b/custom_components/hacs/frontend.py @@ -1,71 +1,53 @@ -""""Starting setup task: Frontend".""" +"""Starting setup task: Frontend.""" + from __future__ import annotations import os from typing import TYPE_CHECKING -from homeassistant.core import HomeAssistant, callback +from homeassistant.components.frontend import ( + add_extra_js_url, + async_register_built_in_panel, +) from .const import DOMAIN, URL_BASE from .hacs_frontend import VERSION as FE_VERSION, locate_dir -from .hacs_frontend_experimental import ( - VERSION as EXPERIMENTAL_FE_VERSION, - locate_dir as experimental_locate_dir, -) - -try: - from homeassistant.components.frontend import add_extra_js_url -except ImportError: - - def add_extra_js_url(hass: HomeAssistant, url: str, es5: bool = False) -> None: - hacs: HacsBase = hass.data.get(DOMAIN) - hacs.log.error("Could not import add_extra_js_url from frontend.") - if "frontend_extra_module_url" not in hass.data: - hass.data["frontend_extra_module_url"] = set() - hass.data["frontend_extra_module_url"].add(url) - +from .utils.workarounds import async_register_static_path if TYPE_CHECKING: + from homeassistant.core import HomeAssistant + from .base import HacsBase -@callback -def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: +async def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: """Register the frontend.""" - # Setup themes endpoint if needed - hacs.async_setup_frontend_endpoint_themes() - # Register frontend if hacs.configuration.dev and (frontend_path := os.getenv("HACS_FRONTEND_DIR")): hacs.log.warning( " Frontend development mode enabled. Do not run in production!" ) - hass.http.register_static_path( - f"{URL_BASE}/frontend", f"{frontend_path}/hacs_frontend", cache_headers=False - ) - elif hacs.configuration.experimental: - hacs.log.info(" Using experimental frontend") - hass.http.register_static_path( - f"{URL_BASE}/frontend", experimental_locate_dir(), cache_headers=False + await async_register_static_path( + hass, f"{URL_BASE}/frontend", f"{frontend_path}/hacs_frontend", cache_headers=False ) + hacs.frontend_version = "dev" else: - # - hass.http.register_static_path(f"{URL_BASE}/frontend", locate_dir(), cache_headers=False) + await async_register_static_path( + hass, f"{URL_BASE}/frontend", locate_dir(), cache_headers=False + ) + hacs.frontend_version = FE_VERSION # Custom iconset - hass.http.register_static_path( - f"{URL_BASE}/iconset.js", str(hacs.integration_dir / "iconset.js") + await async_register_static_path( + hass, f"{URL_BASE}/iconset.js", str(hacs.integration_dir / "iconset.js") ) add_extra_js_url(hass, f"{URL_BASE}/iconset.js") - hacs.frontend_version = ( - FE_VERSION if not hacs.configuration.experimental else EXPERIMENTAL_FE_VERSION - ) - # Add to sidepanel if needed if DOMAIN not in hass.data.get("frontend_panels", {}): - hass.components.frontend.async_register_built_in_panel( + async_register_built_in_panel( + hass, component_name="custom", sidebar_title=hacs.configuration.sidepanel_title, sidebar_icon=hacs.configuration.sidepanel_icon, @@ -82,4 +64,4 @@ def async_register_frontend(hass: HomeAssistant, hacs: HacsBase) -> None: ) # Setup plugin endpoint if needed - hacs.async_setup_frontend_endpoint_plugin() + await hacs.async_setup_frontend_endpoint_plugin() diff --git a/custom_components/hacs/hacs_frontend/c.004a7b01.js b/custom_components/hacs/hacs_frontend/c.004a7b01.js deleted file mode 100644 index 15e9b3d..0000000 --- a/custom_components/hacs/hacs_frontend/c.004a7b01.js +++ /dev/null @@ -1 +0,0 @@ -var t=function(){if("undefined"!=typeof Map)return Map;function t(t,e){var n=-1;return t.some((function(t,r){return t[0]===e&&(n=r,!0)})),n}return function(){function e(){this.__entries__=[]}return Object.defineProperty(e.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),e.prototype.get=function(e){var n=t(this.__entries__,e),r=this.__entries__[n];return r&&r[1]},e.prototype.set=function(e,n){var r=t(this.__entries__,e);~r?this.__entries__[r][1]=n:this.__entries__.push([e,n])},e.prototype.delete=function(e){var n=this.__entries__,r=t(n,e);~r&&n.splice(r,1)},e.prototype.has=function(e){return!!~t(this.__entries__,e)},e.prototype.clear=function(){this.__entries__.splice(0)},e.prototype.forEach=function(t,e){void 0===e&&(e=null);for(var n=0,r=this.__entries__;n0},t.prototype.connect_=function(){e&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),o?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},t.prototype.disconnect_=function(){e&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},t.prototype.onTransitionEnd_=function(t){var e=t.propertyName,n=void 0===e?"":e;i.some((function(t){return!!~n.indexOf(t)}))&&this.refresh()},t.getInstance=function(){return this.instance_||(this.instance_=new t),this.instance_},t.instance_=null,t}(),a=function(t,e){for(var n=0,r=Object.keys(e);n0},e}(),y="undefined"!=typeof WeakMap?new WeakMap:new t,g=function t(e){if(!(this instanceof t))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=s.getInstance(),r=new m(e,n,this);y.set(this,r)};["observe","unobserve","disconnect"].forEach((function(t){g.prototype[t]=function(){var e;return(e=y.get(this))[t].apply(e,arguments)}}));var w=void 0!==n.ResizeObserver?n.ResizeObserver:g;export{w as default}; diff --git a/custom_components/hacs/hacs_frontend/c.004a7b01.js.gz b/custom_components/hacs/hacs_frontend/c.004a7b01.js.gz deleted file mode 100644 index 691a52b0c5fdf4760cf3bf8b4c1dfa5eac5731ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2391 zcmV-d38?lTiwFP!000021ML~tcH_A9JzpX5K?@wijGP{E5pVCk@A~NYK;)H#ECnb4 zXph&!`Sx58Y@%SNzh!quBrkA#1?Enend93^VKrZ}T&u0zRo!<@*@#8DgOMS7n>aEh&VVw*r_dX< z?u=&^3v+X|u1~1j6Y5L_`X)|4du6WA7??E@g0F=0UWhzQ`SL%%@7mM&rKNW6|Nd9phK&u#*g>t)C z_}>!@4_G}Xe0ZMV1kmce&fdu=%@Rs{_$Qq+65bIs@V5%AdsE4S@GI{bae(V6G~FNv zqUeyyuFqu)?i+akT{%J`nNHpj4pOD>38gh<$e_}pmc z^Z{Q=*!u5#S-3qu_YgLOvV!pNy=Iz6t7qjJ;XmJ4Fn3^><*_Q~x}eUrQjj|+Zu$I* zHK0RF;@vw?&c0a`u|?Z4xNYJ&Eb10!eZ_1+>Kh}Jl?_3Kgrd-3WxqrNnt`nWJ58jJ zFDQ!iKbkLx?qE?N<;#2{DO#M##UjU)=ywS38e&I~oCK1N51z`fE2*Y8xl8@}Z`w|j zA;V=2r3KG_8TgOfFML7L+;v?dugO@Av3kE*(r%X;SiD6gFmU;Gpjy!aZ0A_=F8p97bYfuh8z$RYZk_n9ZTBU5mv; zlon7(`?NH{^V8~E9Sh-lDJ|j!S{=fa&UF8nU~u}>dRtjKFoZ-h-K9I>_F&$`g*zaW zIp1HpubR?f8fja=6J$0B_VZqb6-Xk=B6% zLlV~~8mJDJ74tLut(vXk(yz}{|Ux&?~>OyWM6chcPtAoo)dIi|2<3f1H zeD{p&LK^-j-iuP0IPiHFpn&m(kxJxg^C132o&U)4ktXwedz!SfiC3m}i&Z+@9!C1l z!~vM%!{~OMBrC||*=b`mS*lT0tZB49?ZADgtP?5+{>0%xw(D57$q69jmZR(xie!h6 z)=qv96qDw8I&ikALsnQD$g=HOqOd zN}}OXeXlUJLol5KyfmUJ-FFi1U%pf|+w+nvS@S;~hJtED^(c&m_ew2X(>j;K7=Z2? ztOI^>QTz%mBFwH~X2+I+8+D0in|^I{nDV`=sB$3W^z_s%U!XWQIOmxH%w=++E|SYI z0K6jJR_L%Gg;Z19Tc-sw;iLvf=_J-G{+Hf)$h z0J6pJz>W#TGHGKU%8KSAOv25C)>(0*UnHD!lj6(Q@)u-_71bXMQll$X5OJaDJe<44 zCEpSgwCJ^?xXwoViwo=bD_@tx{$PyG2o%>To5zBd^I-F?0QN8Mmf#;XE(T*A`9#7? zV0U~X#ih!w<~%^f#*!lqIvgoGf#1;}>s@c*k_6kb#-dEHg4Tg;?7Z;xckjP%#Bnck z+X{Le({9#P7({8*Jjbh7|14sQuvkQnW=)BF>n;7F9@6-3L=diz_;npC-7O;Nhp|u+ zAVd*^E`YozR)zoB4=GprBFWTncl7vT<=DdtScAP%EMTup-B|PXiDQ)u<7z+Xg~Y|g zI)#Sx?ZCNK4wU=K4-BJ178ac_s2O*$Q-f@0(DUK;j*O6di=1kP(=jCqeE*p zT#u=6(qe~2PyAe{GxnWaF_X1&#SPa<#atb_-6nQaWQIwmnPoZKvx*bLiQ+)h7ff=M zJ}}Ky%fxckQOu)xf|HAv_$v^_=c;_To_w!Dmt^~{vE~MZ1CkHMp-hlH!>}?KRN?3ngb|FC@cs_JK#)o@SzPEPD)|T{$+g=c>Z)$__k!ui1vT+=kE) z2=9)4!fzR$+Q-l^cCbEK2crOWd!z4Xe#18ide<0jNb=1dX8ww5Bl4eTsQ;ZTpqL5k zd$2fw12emtNjp>8&BUxDn8YtLoQ@NQ&XU~?X6XjHV< zB1S|+&vllxm`VB?%|cl`cW2hzjW$CNX)b$-W1ht=g6NsS#}^aCFGjZX6E3Y!uR|;K zkG$}IFJSxbuD|gM&F7D6SazpI4(F*;R|I><&YjcilW?UyTwk2Y6E@(|KgIZz?f7ma zUi7nnN`}bY3DC!(%QaU%vAPv5zJS)$OBU-#Q{jd(IJ(CfB%V|l7CabbeGtdkaj=P( z4RLJ;X702%Hdn&adgtH59O5WDv)I(xqqV8Gqk_i&$zsqyejbg}8t$vWH{XY7%lsb1 z&!39pHCm#3Uxik($%pp{n9LGqlcblC}ya49zsW580Zm0},e.prototype.connect_=function(){if(t&&!this.connected_){if(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),i){this.mutationsObserver_=new MutationObserver(this.refresh);var e={attributes:!0,childList:!0,characterData:!0,subtree:!0};if(this.mutationsObserver_.observe(document,e),o){var n=this;!function t(r){var i=r.shadowRoot;i&&(n.mutationsObserver_.observe(i,e),t(i));for(var o=r.firstElementChild;o;)t(o),o=o.nextElementSibling}(document),HTMLElement.prototype.attachShadow=function(){for(var t=[],r=0;r=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}}}var c=function(t,e){var n,r;try{for(var i=a(Object.keys(e)),o=i.next();!o.done;o=i.next()){var s=o.value;Object.defineProperty(t,s,{value:e[s],enumerable:!1,writable:!1,configurable:!0})}}catch(t){n={error:t}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}return t},h=function(t){var n;return(null===(n=null==t?void 0:t.ownerDocument)||void 0===n?void 0:n.defaultView)||e},u=_(0,0,0,0);function f(t){return"number"==typeof t?t:parseFloat(t)||0}function d(t){for(var e=[],n=1;n0},t}(),g=function(){function t(e){if(!(this instanceof t))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=s.getInstance();this.observer_=new w(e,n,this)}return t.prototype.observe=function(t){this.observer_.observe(t)},t.prototype.unobserve=function(t){this.observer_.unobserve(t)},t.prototype.disconnect=function(){this.observer_.disconnect()},t}(),E=void 0!==e.ResizeObserver?e.ResizeObserver:g;export{E as default}; diff --git a/custom_components/hacs/hacs_frontend/c.24bd2446.js.gz b/custom_components/hacs/hacs_frontend/c.24bd2446.js.gz deleted file mode 100644 index 0e07652650f3a85f1a29c044e0a859c373017efc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2716 zcmV;N3S;#jiwFP!000021MN9ick?LP_usFuec^!X z7jVirdVl*q2qeoge#^G2O_hMBcYH6*$nnWmm9Ufw%E_3!rw!=k=s~JdKTM~oy;2w3 zH7GZohErL)z&URp86?r(ReB++=`{S$z7cMPK>pulSemDxEL6+s)c-wz@C)(;O|?o?gJ&)!tZ=)#2RQs zl-$e~NR|N2T};sGmv2EQKOZYJ@=1o&=Y!Q6vk znxn-(fAP)NpH$#YoNbJD+MmvZbD~&Xtwf{t^NTU(uRoYMedUZ)cZ6mV=|6sl+P+pu z^d3fqF5zZEFJF&luC`UhY~O6{;|TD@TQ)1SQcyT3Z~6FwHB0L#-zWEo+kQ}%sZHBT zf6G0Yu&Lvkz2(<8aY?-}LRr}$REQ|K8r;Bd(Ew&(X~3@bygLST7tD&RNdHIkS>6d` zQ6Mv&l4jcxN|~Ha3qtGeguoMu*xpKkDRvm*2V|Jy&|@QisisrN?52_h5XCMi8$(usx^t`PbihhnD5X8g z&Cv4EQMa2?xQQ%_4$Lfeg)1$?SN1+kLQX1=GTK>ojlk1#1qLBlxGX;MY|X7ErQ(3)u}Q>n+v2m#7}_ zeQ2-w=)_9&%~wzBg|3jr>+qCG2Szw;ZkWQzZW+3StPoX&sOCGLO6JE*V+5%8xa-O< zaZziOA^BJ&(Ylr~W>g7wOrSJ-D_v3>3Pp5sM1>yI>DSy7n1eYANrw zac@@Bx-Nt(R$je|@4y&s<|q=PM@>ELJo6Y!k+G&flv&Ufx`YY(l(ajKWkpf9GWr2C zVS}x%Th-QVb>yWg8i#nBqh}Ju!;`xVdY`*YKPaqWZJK|6?%Y_lXOvfn*jDb35+3jb z)NIRd$&5AMJvUnJU3`K%T7cO*k-K#BjW8BIt+a5&Q<~KsWQhx%8Nt^K#V>MoTr%Oagq!*P$ zLVxlnnd;s@Zw4`6>&JjbR5ViA#sSZp-AD09dcD~?D6ia81-Qm!DxE|Tc1~~RO9I!E z4Hhn}!RNSu>@nks9qu$selLuUhnr!|?^duJ0Qwa#a!pK#5WjFHvj!ovxPV0QJ>X!1 zFNw(-MNw8XFJUNc=8;yN3;l@Z<|f03EBQ0hL5KFkduH@jl|-CrI_4a3Rh;vZm~PSy za!}l7z4OJH_2(6yFT(jaFh|KK?o&2SHL{!s<+l~4dx!WF;HS4w4(ue9P?u9#<_CX_v;Yc-QhGs^^9u`MUYS0kX=Ba>WZPfT+a ziCC^$j3OB)*cu|o$h9cHQ`OVu;C&v-I9u^p&kF;>0TFxUP*#u?L$@;MRx-MkZr#c< zpM+&hx#mo_3D%y;kWEcZ*^1^xm``@WvUA6J`b3AOHCqp+P)-QI$7MuNTd7i29+x+m&2%k9PF?haBt z-w<`IH2OIG^>>6?2(82f!6*xGS_ehLJ0V)v2&bqziGHf``tc2~M>y05PF$SWNZ@*V!zuic{snb!HH>y^)>Z0#3UMtHc;E#ted1XmlNT!(d6pNV_-TZe zxtArBBVk7yVZ<67n9;>Z+L6+3B)a5~O=!I1h@ieQb>+h7s`67du!A!nxkuzLQ5T~K z(DQ>v^v(fJ@P09B8~o<88EK$oqs7*ZG^Y5`48;M9o1WPdd9`b8;zO_f30W;LGA753 zQG}pL*4{~I4*@;Z(Ii4nvUl1`#A7?=O++>`5NT2jam6nJShs@NLG4_H)Qwm-zZ0Qgj>-a|(+VOp#uTP3n5B z@s}s!V#CecVJqx|gbp)Y^VB3}N7=E)2F8wiL%B{d+OLp(G_Cxp`@NI6+7Dx5uYGr- z#y}ffh^HT4CxUA7kx)L6yc)0+6qT?R3&o%+c#Ojk8}k3RUw=D{~$ zECj(D)|o>r?Gx^t%#x>pyF5O>{A^-q{!Bmd` diff --git a/custom_components/hacs/hacs_frontend/c.4a97632a.js b/custom_components/hacs/hacs_frontend/c.4a97632a.js deleted file mode 100644 index b7cf595..0000000 --- a/custom_components/hacs/hacs_frontend/c.4a97632a.js +++ /dev/null @@ -1 +0,0 @@ -function t(t){const a=t.language||"en";return t.translationMetadata.translations[a]&&t.translationMetadata.translations[a].isRTL||!1}function a(a){return t(a)?"rtl":"ltr"}export{a,t as c}; diff --git a/custom_components/hacs/hacs_frontend/c.4a97632a.js.gz b/custom_components/hacs/hacs_frontend/c.4a97632a.js.gz deleted file mode 100644 index 83c264887b4b2ce304cdde4777de357a38f59e7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 144 zcmV;B0B`>viwFP!000021B{M=1_D7CgkNR*aqh?wKqtLGK>`xSwVh-Amw)Go-F^2i zlmG!^d}F@*tUbp`9cwnJpES~8$2LHR8H3MRyh>-Dvn^0dgT{dO}L4NlIPYEGtEZqPRhE>)l*iuhSz0!6nG+7t*|~0FA?`_+$+o8 Z1!da1ewp{qtsC2M0RX007=sX0reQ diff --git a/custom_components/hacs/hacs_frontend/c.8e28b461.js b/custom_components/hacs/hacs_frontend/c.8e28b461.js deleted file mode 100644 index 651bea4..0000000 --- a/custom_components/hacs/hacs_frontend/c.8e28b461.js +++ /dev/null @@ -1 +0,0 @@ -const r=r=>(s,o)=>{if(s.constructor._observers){if(!s.constructor.hasOwnProperty("_observers")){const r=s.constructor._observers;s.constructor._observers=new Map,r.forEach(((r,o)=>s.constructor._observers.set(o,r)))}}else{s.constructor._observers=new Map;const r=s.updated;s.updated=function(s){r.call(this,s),s.forEach(((r,s)=>{const o=this.constructor._observers.get(s);void 0!==o&&o.call(this,this[s],r)}))}}s.constructor._observers.set(o,r)};export{r as o}; diff --git a/custom_components/hacs/hacs_frontend/c.8e28b461.js.gz b/custom_components/hacs/hacs_frontend/c.8e28b461.js.gz deleted file mode 100644 index 127a09c3e20900057ba930f3c2afef87c21fef57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 227 zcmV<90381xiwFP!000021B6etas)99{giMb%^dX}UzaXahnIH)mPb#=x8ELSG+Xc> zlK@*)uYO4A2>aopDG9x&xQ;Rt?OjNULdS)IACqgJvvq>QNjOr8h1!hP->cV|7q9rg zA-dlZJ`|JH{Umm@SBmZ?SxrRxr0};Meg2Sz8r0?Math.floor(t):Math.ceil(t)};function I(t,i,e){return t instanceof B?t:g(t)?new B(t[0],t[1]):null==t?t:"object"==typeof t&&"x"in t&&"y"in t?new B(t.x,t.y):new B(t,i,e)}function O(t,i){if(t)for(var e=i?[t,i]:t,n=0,o=e.length;n=this.min.x&&e.x<=this.max.x&&i.y>=this.min.y&&e.y<=this.max.y},intersects:function(t){t=R(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>=i.x&&n.x<=e.x,r=o.y>=i.y&&n.y<=e.y;return s&&r},overlaps:function(t){t=R(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>i.x&&n.xi.y&&n.y=n.lat&&e.lat<=o.lat&&i.lng>=n.lng&&e.lng<=o.lng},intersects:function(t){t=D(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>=i.lat&&n.lat<=e.lat,r=o.lng>=i.lng&&n.lng<=e.lng;return s&&r},overlaps:function(t){t=D(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>i.lat&&n.lati.lng&&n.lng1,St=function(){var t=!1;try{var i=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("testPassiveEventSupport",u,i),window.removeEventListener("testPassiveEventSupport",u,i)}catch(t){}return t}(),kt=!!document.createElement("canvas").getContext,Et=!(!document.createElementNS||!J("svg").createSVGRect),Bt=!!Et&&((Q=document.createElement("div")).innerHTML="","http://www.w3.org/2000/svg"===(Q.firstChild&&Q.firstChild.namespaceURI)),At=!Et&&function(){try{var t=document.createElement("div");t.innerHTML='';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(t){return!1}}();function It(t){return navigator.userAgent.toLowerCase().indexOf(t)>=0}var Ot={ie:it,ielt9:et,edge:nt,webkit:ot,android:st,android23:rt,androidStock:ht,opera:ut,chrome:lt,gecko:ct,safari:_t,phantom:dt,opera12:pt,win:mt,ie3d:ft,webkit3d:gt,gecko3d:vt,any3d:yt,mobile:xt,mobileWebkit:wt,mobileWebkit3d:Pt,msPointer:bt,pointer:Lt,touch:zt,touchNative:Tt,mobileOpera:Mt,mobileGecko:Ct,retina:Zt,passiveEvents:St,canvas:kt,svg:Et,vml:At,inlineSvg:Bt},Rt=Ot.msPointer?"MSPointerDown":"pointerdown",Nt=Ot.msPointer?"MSPointerMove":"pointermove",Dt=Ot.msPointer?"MSPointerUp":"pointerup",jt=Ot.msPointer?"MSPointerCancel":"pointercancel",Ht={touchstart:Rt,touchmove:Nt,touchend:Dt,touchcancel:jt},Wt={touchstart:$t,touchmove:Jt,touchend:Jt,touchcancel:Jt},Ft={},Ut=!1;function Vt(t,i,e){return"touchstart"===i&&Xt(),Wt[i]?(e=Wt[i].bind(this,e),t.addEventListener(Ht[i],e,!1),e):(console.warn("wrong event specified:",i),L.Util.falseFn)}function qt(t,i,e){Ht[i]?t.removeEventListener(Ht[i],e,!1):console.warn("wrong event specified:",i)}function Gt(t){Ft[t.pointerId]=t}function Kt(t){Ft[t.pointerId]&&(Ft[t.pointerId]=t)}function Yt(t){delete Ft[t.pointerId]}function Xt(){Ut||(document.addEventListener(Rt,Gt,!0),document.addEventListener(Nt,Kt,!0),document.addEventListener(Dt,Yt,!0),document.addEventListener(jt,Yt,!0),Ut=!0)}function Jt(t,i){if(i.pointerType!==(i.MSPOINTER_TYPE_MOUSE||"mouse")){for(var e in i.touches=[],Ft)i.touches.push(Ft[e]);i.changedTouches=[i],t(i)}}function $t(t,i){i.MSPOINTER_TYPE_TOUCH&&i.pointerType===i.MSPOINTER_TYPE_TOUCH&&Gi(i),Jt(t,i)}function Qt(t){var i,e,n={};for(e in t)i=t[e],n[e]=i&&i.bind?i.bind(t):i;return t=n,n.type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}var ti=200;function ii(t,i){t.addEventListener("dblclick",i);var e,n=0;function o(t){if(1===t.detail){if("mouse"!==t.pointerType&&(!t.sourceCapabilities||t.sourceCapabilities.firesTouchEvents)){var o=Date.now();o-n<=ti?2==++e&&i(Qt(t)):e=1,n=o}}else e=t.detail}return t.addEventListener("click",o),{dblclick:i,simDblclick:o}}function ei(t,i){t.removeEventListener("dblclick",i.dblclick),t.removeEventListener("click",i.simDblclick)}var ni,oi,si,ri,ai,hi=Ti(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),ui=Ti(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),li="webkitTransition"===ui||"OTransition"===ui?ui+"End":"transitionend";function ci(t){return"string"==typeof t?document.getElementById(t):t}function _i(t,i){var e=t.style[i]||t.currentStyle&&t.currentStyle[i];if((!e||"auto"===e)&&document.defaultView){var n=document.defaultView.getComputedStyle(t,null);e=n?n[i]:null}return"auto"===e?null:e}function di(t,i,e){var n=document.createElement(t);return n.className=i||"",e&&e.appendChild(n),n}function pi(t){var i=t.parentNode;i&&i.removeChild(t)}function mi(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function fi(t){var i=t.parentNode;i&&i.lastChild!==t&&i.appendChild(t)}function gi(t){var i=t.parentNode;i&&i.firstChild!==t&&i.insertBefore(t,i.firstChild)}function vi(t,i){if(void 0!==t.classList)return t.classList.contains(i);var e=Pi(t);return e.length>0&&new RegExp("(^|\\s)"+i+"(\\s|$)").test(e)}function yi(t,i){if(void 0!==t.classList)for(var e=_(i),n=0,o=e.length;nthis.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,i){this._enforcingBounds=!0;var e=this.getCenter(),n=this._limitCenter(e,this._zoom,D(t));return e.equals(n)||this.panTo(n,i),this._enforcingBounds=!1,this},panInside:function(t,i){var e=I((i=i||{}).paddingTopLeft||i.padding||[0,0]),n=I(i.paddingBottomRight||i.padding||[0,0]),o=this.project(this.getCenter()),s=this.project(t),r=this.getPixelBounds(),a=R([r.min.add(e),r.max.subtract(n)]),h=a.getSize();if(!a.contains(s)){this._enforcingBounds=!0;var u=s.subtract(a.getCenter()),l=a.extend(s).getSize().subtract(h);o.x+=u.x<0?-l.x:l.x,o.y+=u.y<0?-l.y:l.y,this.panTo(this.unproject(o),i),this._enforcingBounds=!1}return this},invalidateSize:function(t){if(!this._loaded)return this;t=e({animate:!1,pan:!0},!0===t?{animate:!0}:t);var i=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var n=this.getSize(),s=i.divideBy(2).round(),r=n.divideBy(2).round(),a=s.subtract(r);return a.x||a.y?(t.animate&&t.pan?this.panBy(a):(t.pan&&this._rawPanBy(a),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(o(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:i,newSize:n})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=e({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var i=o(this._handleGeolocationResponse,this),n=o(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(i,n,t):navigator.geolocation.getCurrentPosition(i,n,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 i=t.code,e=t.message||(1===i?"permission denied":2===i?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:i,message:"Geolocation error: "+e+"."})}},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var i=new j(t.coords.latitude,t.coords.longitude),e=i.toBounds(2*t.coords.accuracy),n=this._locateOptions;if(n.setView){var o=this.getBoundsZoom(e);this.setView(i,n.maxZoom?Math.min(o,n.maxZoom):o)}var s={latlng:i,bounds:e,timestamp:t.timestamp};for(var r in t.coords)"number"==typeof t.coords[r]&&(s[r]=t.coords[r]);this.fire("locationfound",s)}},addHandler:function(t,i){if(!i)return this;var e=this[t]=new i(this);return this._handlers.push(e),this.options[t]&&e.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(t){this._container._leaflet_id=void 0,this._containerId=void 0}var t;for(t in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),pi(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(M(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[t].remove();for(t in this._panes)pi(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,i){var e=di("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),i||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new N(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,i,e){t=D(t),e=I(e||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),a=t.getSouthEast(),h=this.getSize().subtract(e),u=R(this.project(a,n),this.project(r,n)).getSize(),l=Ot.any3d?this.options.zoomSnap:1,c=h.x/u.x,_=h.y/u.y,d=i?Math.max(c,_):Math.min(c,_);return n=this.getScaleZoom(d,n),l&&(n=Math.round(n/(l/100))*(l/100),n=i?Math.ceil(n/l)*l:Math.floor(n/l)*l),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new B(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,i){var e=this._getTopLeftPoint(t,i);return new O(e,e.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,i){var e=this.options.crs;return i=void 0===i?this._zoom:i,e.scale(t)/e.scale(i)},getScaleZoom:function(t,i){var e=this.options.crs;i=void 0===i?this._zoom:i;var n=e.zoom(t*e.scale(i));return isNaN(n)?1/0:n},project:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.latLngToPoint(H(t),i)},unproject:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.pointToLatLng(I(t),i)},layerPointToLatLng:function(t){var i=I(t).add(this.getPixelOrigin());return this.unproject(i)},latLngToLayerPoint:function(t){return this.project(H(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(H(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(D(t))},distance:function(t,i){return this.options.crs.distance(H(t),H(i))},containerPointToLayerPoint:function(t){return I(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return I(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var i=this.containerPointToLayerPoint(I(t));return this.layerPointToLatLng(i)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(H(t)))},mouseEventToContainerPoint:function(t){return Yi(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 i=this._container=ci(t);if(!i)throw new Error("Map container not found.");if(i._leaflet_id)throw new Error("Map container is already initialized.");Ri(i,"scroll",this._onScroll,this),this._containerId=r(i)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&Ot.any3d,yi(t,"leaflet-container"+(Ot.touch?" leaflet-touch":"")+(Ot.retina?" leaflet-retina":"")+(Ot.ielt9?" leaflet-oldie":"")+(Ot.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var i=_i(t,"position");"absolute"!==i&&"relative"!==i&&"fixed"!==i&&(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),Mi(this._mapPane,new B(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(yi(t.markerPane,"leaflet-zoom-hide"),yi(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,i){Mi(this._mapPane,new B(0,0));var e=!this._loaded;this._loaded=!0,i=this._limitZoom(i),this.fire("viewprereset");var n=this._zoom!==i;this._moveStart(n,!1)._move(t,i)._moveEnd(n),this.fire("viewreset"),e&&this.fire("load")},_moveStart:function(t,i){return t&&this.fire("zoomstart"),i||this.fire("movestart"),this},_move:function(t,i,e,n){void 0===i&&(i=this._zoom);var o=this._zoom!==i;return this._zoom=i,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?e&&e.pinch&&this.fire("zoom",e):((o||e&&e.pinch)&&this.fire("zoom",e),this.fire("move",e)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return M(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Mi(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[r(this._container)]=this;var i=t?Di:Ri;i(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&i(window,"resize",this._onResize,this),Ot.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){M(this._resizeRequest),this._resizeRequest=z((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,i){for(var e,n=[],o="mouseout"===i||"mouseover"===i,s=t.target||t.srcElement,a=!1;s;){if((e=this._targets[r(s)])&&("click"===i||"preclick"===i)&&this._draggableMoved(e)){a=!0;break}if(e&&e.listens(i,!0)){if(o&&!$i(s,t))break;if(n.push(e),o)break}if(s===this._container)break;s=s.parentNode}return n.length||a||o||!this.listens(i,!0)||(n=[this]),n},_isClickDisabled:function(t){for(;t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var i=t.target||t.srcElement;if(!(!this._loaded||i._leaflet_disable_events||"click"===t.type&&this._isClickDisabled(i))){var e=t.type;"mousedown"===e&&Ei(i),this._fireDOMEvent(t,e)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,i,n){if("click"===t.type){var o=e({},t);o.type="preclick",this._fireDOMEvent(o,o.type,n)}var s=this._findEventTargets(t,i);if(n){for(var r=[],a=0;a0?Math.round(t-i)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(i))},_limitZoom:function(t){var i=this.getMinZoom(),e=this.getMaxZoom(),n=Ot.any3d?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(i,Math.min(e,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){xi(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,i){var e=this._getCenterOffset(t)._trunc();return!(!0!==(i&&i.animate)&&!this.getSize().contains(e)||(this.panBy(e,i),0))},_createAnimProxy:function(){var t=this._proxy=di("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",(function(t){var i=hi,e=this._proxy.style[i];zi(this._proxy,this.project(t.center,t.zoom),this.getZoomScale(t.zoom,1)),e===this._proxy.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()}),this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){pi(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var t=this.getCenter(),i=this.getZoom();zi(this._proxy,this.project(t,i),this.getZoomScale(i,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,i,e){if(this._animatingZoom)return!0;if(e=e||{},!this._zoomAnimated||!1===e.animate||this._nothingToAnimate()||Math.abs(i-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(i),o=this._getCenterOffset(t)._divideBy(1-1/n);return!(!0!==e.animate&&!this.getSize().contains(o)||(z((function(){this._moveStart(!0,!1)._animateZoom(t,i,!0)}),this),0))},_animateZoom:function(t,i,e,n){this._mapPane&&(e&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=i,yi(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:i,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(o(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&xi(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 ee(t,i){return new ie(t,i)}var ne=Z.extend({options:{position:"topright"},initialize:function(t){d(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var i=this._map;return i&&i.removeControl(this),this.options.position=t,i&&i.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var i=this._container=this.onAdd(t),e=this.getPosition(),n=t._controlCorners[e];return yi(i,"leaflet-control"),-1!==e.indexOf("bottom")?n.insertBefore(i,n.firstChild):n.appendChild(i),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(pi(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()}}),oe=function(t){return new ne(t)};ie.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){var t=this._controlCorners={},i="leaflet-",e=this._controlContainer=di("div",i+"control-container",this._container);function n(n,o){var s=i+n+" "+i+o;t[n+o]=di("div",s,e)}n("top","left"),n("top","right"),n("bottom","left"),n("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)pi(this._controlCorners[t]);pi(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var se=ne.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,i,e,n){return e1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=i&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var i=this._getLayer(r(t.target)),e=i.overlay?"add"===t.type?"overlayadd":"overlayremove":"add"===t.type?"baselayerchange":null;e&&this._map.fire(e,i)},_createRadioElement:function(t,i){var e='",n=document.createElement("div");return n.innerHTML=e,n.firstChild},_addItem:function(t){var i,e=document.createElement("label"),n=this._map.hasLayer(t.layer);t.overlay?((i=document.createElement("input")).type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=n):i=this._createRadioElement("leaflet-base-layers_"+r(this),n),this._layerControlInputs.push(i),i.layerId=r(t.layer),Ri(i,"click",this._onInputClick,this);var o=document.createElement("span");o.innerHTML=" "+t.name;var s=document.createElement("span");return e.appendChild(s),s.appendChild(i),s.appendChild(o),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){var t,i,e=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=e.length-1;s>=0;s--)t=e[s],i=this._getLayer(t.layerId).layer,t.checked?n.push(i):t.checked||o.push(i);for(s=0;s=0;o--)t=e[o],i=this._getLayer(t.layerId).layer,t.disabled=void 0!==i.options.minZoom&&ni.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this}}),re=function(t,i,e){return new se(t,i,e)},ae=ne.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var i="leaflet-control-zoom",e=di("div",i+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,i+"-in",e,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,i+"-out",e,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),e},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,i,e,n,o){var s=di("a",e,n);return s.innerHTML=t,s.href="#",s.title=i,s.setAttribute("role","button"),s.setAttribute("aria-label",i),qi(s),Ri(s,"click",Ki),Ri(s,"click",o,this),Ri(s,"click",this._refocusOnMap,this),s},_updateDisabled:function(){var t=this._map,i="leaflet-disabled";xi(this._zoomInButton,i),xi(this._zoomOutButton,i),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||t._zoom===t.getMinZoom())&&(yi(this._zoomOutButton,i),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||t._zoom===t.getMaxZoom())&&(yi(this._zoomInButton,i),this._zoomInButton.setAttribute("aria-disabled","true"))}});ie.mergeOptions({zoomControl:!0}),ie.addInitHook((function(){this.options.zoomControl&&(this.zoomControl=new ae,this.addControl(this.zoomControl))}));var he=function(t){return new ae(t)},ue=ne.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var i="leaflet-control-scale",e=di("div",i),n=this.options;return this._addScales(n,i+"-line",e),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),e},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,i,e){t.metric&&(this._mScale=di("div",i,e)),t.imperial&&(this._iScale=di("div",i,e))},_update:function(){var t=this._map,i=t.getSize().y/2,e=t.distance(t.containerPointToLatLng([0,i]),t.containerPointToLatLng([this.options.maxWidth,i]));this._updateScales(e)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var i=this._getRoundNum(t),e=i<1e3?i+" m":i/1e3+" km";this._updateScale(this._mScale,e,i/t)},_updateImperial:function(t){var i,e,n,o=3.2808399*t;o>5280?(i=o/5280,e=this._getRoundNum(i),this._updateScale(this._iScale,e+" mi",e/i)):(n=this._getRoundNum(o),this._updateScale(this._iScale,n+" ft",n/o))},_updateScale:function(t,i,e){t.style.width=Math.round(this.options.maxWidth*e)+"px",t.innerHTML=i},_getRoundNum:function(t){var i=Math.pow(10,(Math.floor(t)+"").length-1),e=t/i;return i*(e=e>=10?10:e>=5?5:e>=3?3:e>=2?2:1)}}),le=function(t){return new ue(t)},ce='',_e=ne.extend({options:{position:"bottomright",prefix:''+(Ot.inlineSvg?ce+" ":"")+"Leaflet"},initialize:function(t){d(this,t),this._attributions={}},onAdd:function(t){for(var i in t.attributionControl=this,this._container=di("div","leaflet-control-attribution"),qi(this._container),t._layers)t._layers[i].getAttribution&&this.addAttribution(t._layers[i].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 i in this._attributions)this._attributions[i]&&t.push(i);var e=[];this.options.prefix&&e.push(this.options.prefix),t.length&&e.push(t.join(", ")),this._container.innerHTML=e.join(' ')}}});ie.mergeOptions({attributionControl:!0}),ie.addInitHook((function(){this.options.attributionControl&&(new _e).addTo(this)}));var de=function(t){return new _e(t)};ne.Layers=se,ne.Zoom=ae,ne.Scale=ue,ne.Attribution=_e,oe.layers=re,oe.zoom=he,oe.scale=le,oe.attribution=de;var pe=Z.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});pe.addTo=function(t,i){return t.addHandler(i,this),this};var me,fe={Events:k},ge=Ot.touch?"touchstart mousedown":"mousedown",ve=E.extend({options:{clickTolerance:3},initialize:function(t,i,e,n){d(this,n),this._element=t,this._dragStartTarget=i||t,this._preventOutline=e},enable:function(){this._enabled||(Ri(this._dragStartTarget,ge,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(ve._dragging===this&&this.finishDrag(!0),Di(this._dragStartTarget,ge,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(this._enabled&&(this._moved=!1,!vi(this._element,"leaflet-zoom-anim")))if(t.touches&&1!==t.touches.length)ve._dragging===this&&this.finishDrag();else if(!(ve._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||(ve._dragging=this,this._preventOutline&&Ei(this._element),Si(),ni(),this._moving))){this.fire("down");var i=t.touches?t.touches[0]:t,e=Ai(this._element);this._startPoint=new B(i.clientX,i.clientY),this._startPos=Ci(this._element),this._parentScale=Ii(e);var n="mousedown"===t.type;Ri(document,n?"mousemove":"touchmove",this._onMove,this),Ri(document,n?"mouseup":"touchend touchcancel",this._onUp,this)}},_onMove:function(t){if(this._enabled)if(t.touches&&t.touches.length>1)this._moved=!0;else{var i=t.touches&&1===t.touches.length?t.touches[0]:t,e=new B(i.clientX,i.clientY)._subtract(this._startPoint);(e.x||e.y)&&(Math.abs(e.x)+Math.abs(e.y)h&&(s=r,h=a);h>e&&(i[s]=1,be(t,i,e,n,s),be(t,i,e,s,o))}function Le(t,i){for(var e=[t[0]],n=1,o=0,s=t.length;ni&&(e.push(t[n]),o=n);return oi.max.x&&(e|=2),t.yi.max.y&&(e|=8),e}function Ce(t,i){var e=i.x-t.x,n=i.y-t.y;return e*e+n*n}function Ze(t,i,e,n){var o,s=i.x,r=i.y,a=e.x-s,h=e.y-r,u=a*a+h*h;return u>0&&((o=((t.x-s)*a+(t.y-r)*h)/u)>1?(s=e.x,r=e.y):o>0&&(s+=a*o,r+=h*o)),a=t.x-s,h=t.y-r,n?a*a+h*h:new B(s,r)}function Se(t){return!g(t[0])||"object"!=typeof t[0][0]&&void 0!==t[0][0]}function ke(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),Se(t)}var Ee={__proto__:null,simplify:ye,pointToSegmentDistance:xe,closestPointOnSegment:we,clipSegment:Te,_getEdgeIntersection:ze,_getBitCode:Me,_sqClosestPointOnSegment:Ze,isFlat:Se,_flat:ke};function Be(t,i,e){var n,o,s,r,a,h,u,l,c,_=[1,4,2,8];for(o=0,u=t.length;o1e-7;h++)i=s*Math.sin(a),i=Math.pow((1-i)/(1+i),s/2),a+=u=Math.PI/2-2*Math.atan(r*i)-a;return new j(a*e,t.x*e/n)}},Re={__proto__:null,LonLat:Ie,Mercator:Oe,SphericalMercator:q},Ne=e({},U,{code:"EPSG:3395",projection:Oe,transformation:function(){var t=.5/(Math.PI*Oe.R);return K(t,.5,-t,.5)}()}),De=e({},U,{code:"EPSG:4326",projection:Ie,transformation:K(1/180,1,-1/180,.5)}),je=e({},F,{projection:Ie,transformation:K(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,i){var e=i.lng-t.lng,n=i.lat-t.lat;return Math.sqrt(e*e+n*n)},infinite:!0});F.Earth=U,F.EPSG3395=Ne,F.EPSG3857=Y,F.EPSG900913=X,F.EPSG4326=De,F.Simple=je;var He=E.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[r(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[r(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var i=t.target;if(i.hasLayer(this)){if(this._map=i,this._zoomAnimated=i._zoomAnimated,this.getEvents){var e=this.getEvents();i.on(e,this),this.once("remove",(function(){i.off(e,this)}),this)}this.onAdd(i),this.fire("add"),i.fire("layeradd",{layer:this})}}});ie.include({addLayer:function(t){if(!t._layerAdd)throw new Error("The provided object is not a Layer.");var i=r(t);return this._layers[i]||(this._layers[i]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t)),this},removeLayer:function(t){var i=r(t);return this._layers[i]?(this._loaded&&t.onRemove(this),delete this._layers[i],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return r(t)in this._layers},eachLayer:function(t,i){for(var e in this._layers)t.call(i,this._layers[e]);return this},_addLayers:function(t){for(var i=0,e=(t=t?g(t)?t:[t]:[]).length;ithis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()i)return r=(n-i)/e,this._map.layerPointToLatLng([s.x-r*(s.x-o.x),s.y-r*(s.y-o.y)])},getBounds:function(){return this._bounds},addLatLng:function(t,i){return i=i||this._defaultShape(),t=H(t),i.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new N,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return Se(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var i=[],e=Se(t),n=0,o=t.length;n=2&&i[0]instanceof j&&i[0].equals(i[e-1])&&i.pop(),i},_setLatLngs:function(t){on.prototype._setLatLngs.call(this,t),Se(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return Se(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,i=this.options.weight,e=new B(i,i);if(t=new O(t.min.subtract(e),t.max.add(e)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else for(var n,o=0,s=this._rings.length;ot.y!=n.y>t.y&&t.x<(n.x-e.x)*(t.y-e.y)/(n.y-e.y)+e.x&&(u=!u);return u||on.prototype._containsPoint.call(this,t,!0)}});function an(t,i){return new rn(t,i)}var hn=Ue.extend({initialize:function(t,i){d(this,i),this._layers={},t&&this.addData(t)},addData:function(t){var i,e,n,o=g(t)?t:t.features;if(o){for(i=0,e=o.length;i0?n:[i.src]}else{g(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(i.style,"objectFit")&&(i.style.objectFit="fill"),i.autoplay=!!this.options.autoplay,i.loop=!!this.options.loop,i.muted=!!this.options.muted,i.playsInline=!!this.options.playsInline;for(var r=0;ro?(i.height=o+"px",yi(t,s)):xi(t,s),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),e=this._getAnchor();Mi(this._container,i.add(e))},_adjustPan:function(t){if(this.options.autoPan){this._map._panAnim&&this._map._panAnim.stop();var i=this._map,e=parseInt(_i(this._container,"marginBottom"),10)||0,n=this._container.offsetHeight+e,o=this._containerWidth,s=new B(this._containerLeft,-n-this._containerBottom);s._add(Ci(this._container));var r=i.layerPointToContainerPoint(s),a=I(this.options.autoPanPadding),h=I(this.options.autoPanPaddingTopLeft||a),u=I(this.options.autoPanPaddingBottomRight||a),l=i.getSize(),c=0,_=0;r.x+o+u.x>l.x&&(c=r.x+o-l.x+u.x),r.x-c-h.x<0&&(c=r.x-h.x),r.y+n+u.y>l.y&&(_=r.y+n-l.y+u.y),r.y-_-h.y<0&&(_=r.y-h.y),(c||_)&&i.fire("autopanstart").panBy([c,_],{animate:t&&"moveend"===t.type})}},_getAnchor:function(){return I(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),Cn=function(t,i){return new Mn(t,i)};ie.mergeOptions({closePopupOnClick:!0}),ie.include({openPopup:function(t,i,e){return this._initOverlay(Mn,t,i,e).openOn(this),this},closePopup:function(t){return(t=arguments.length?t:this._popup)&&t.close(),this}}),He.include({bindPopup:function(t,i){return this._popup=this._initOverlay(Mn,this._popup,t,i),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._popup._prepareOpen(t)&&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()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){if(this._popup&&this._map){Ki(t);var i=t.layer||t.target;this._popup._source!==i||i instanceof $e?(this._popup._source=i,this.openPopup(t.latlng)):this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng)}},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}});var Zn=zn.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){zn.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){zn.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=zn.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=di("div",t)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var i,e,n=this._map,o=this._container,s=n.latLngToContainerPoint(n.getCenter()),r=n.layerPointToContainerPoint(t),a=this.options.direction,h=o.offsetWidth,u=o.offsetHeight,l=I(this.options.offset),c=this._getAnchor();"top"===a?(i=h/2,e=u):"bottom"===a?(i=h/2,e=0):"center"===a?(i=h/2,e=u/2):"right"===a?(i=0,e=u/2):"left"===a?(i=h,e=u/2):r.xthis.options.maxZoom||en&&this._retainParent(o,s,r,n))},_retainChildren:function(t,i,e,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*i;s<2*i+2;s++){var r=new B(o,s);r.z=e+1;var a=this._tileCoordsToKey(r),h=this._tiles[a];h&&h.active?h.retain=!0:(h&&h.loaded&&(h.retain=!0),e+1this.options.maxZoom||void 0!==this.options.minZoom&&o1)this._setView(t,e);else{for(var c=o.min.y;c<=o.max.y;c++)for(var _=o.min.x;_<=o.max.x;_++){var d=new B(_,c);if(d.z=this._tileZoom,this._isValidTile(d)){var p=this._tiles[this._tileCoordsToKey(d)];p?p.current=!0:r.push(d)}}if(r.sort((function(t,i){return t.distanceTo(s)-i.distanceTo(s)})),0!==r.length){this._loading||(this._loading=!0,this.fire("loading"));var m=document.createDocumentFragment();for(_=0;_e.max.x)||!i.wrapLat&&(t.ye.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return D(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var i=this._map,e=this.getTileSize(),n=t.scaleBy(e),o=n.add(e);return[i.unproject(n,t.z),i.unproject(o,t.z)]},_tileCoordsToBounds:function(t){var i=this._tileCoordsToNwSe(t),e=new N(i[0],i[1]);return this.options.noWrap||(e=this._map.wrapLatLngBounds(e)),e},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var i=t.split(":"),e=new B(+i[0],+i[1]);return e.z=+i[2],e},_removeTile:function(t){var i=this._tiles[t];i&&(pi(i.el),delete this._tiles[t],this.fire("tileunload",{tile:i.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){yi(t,"leaflet-tile");var i=this.getTileSize();t.style.width=i.x+"px",t.style.height=i.y+"px",t.onselectstart=u,t.onmousemove=u,Ot.ielt9&&this.options.opacity<1&&bi(t,this.options.opacity)},_addTile:function(t,i){var e=this._getTilePos(t),n=this._tileCoordsToKey(t),s=this.createTile(this._wrapCoords(t),o(this._tileReady,this,t));this._initTile(s),this.createTile.length<2&&z(o(this._tileReady,this,t,null,s)),Mi(s,e),this._tiles[n]={el:s,coords:t,current:!0},i.appendChild(s),this.fire("tileloadstart",{tile:s,coords:t})},_tileReady:function(t,i,e){i&&this.fire("tileerror",{error:i,tile:e,coords:t});var n=this._tileCoordsToKey(t);(e=this._tiles[n])&&(e.loaded=+new Date,this._map._fadeAnimated?(bi(e.el,0),M(this._fadeFrame),this._fadeFrame=z(this._updateOpacity,this)):(e.active=!0,this._pruneTiles()),i||(yi(e.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:e.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Ot.ielt9||!this._map._fadeAnimated?z(this._pruneTiles,this):setTimeout(o(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var i=new B(this._wrapX?h(t.x,this._wrapX):t.x,this._wrapY?h(t.y,this._wrapY):t.y);return i.z=t.z,i},_pxBoundsToTileRange:function(t){var i=this.getTileSize();return new O(t.min.unscaleBy(i).floor(),t.max.unscaleBy(i).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});function An(t){return new Bn(t)}var In=Bn.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,i){this._url=t,(i=d(this,i)).detectRetina&&Ot.retina&&i.maxZoom>0&&(i.tileSize=Math.floor(i.tileSize/2),i.zoomReverse?(i.zoomOffset--,i.minZoom++):(i.zoomOffset++,i.maxZoom--),i.minZoom=Math.max(0,i.minZoom)),"string"==typeof i.subdomains&&(i.subdomains=i.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(t,i){return this._url===t&&void 0===i&&(i=!0),this._url=t,i||this.redraw(),this},createTile:function(t,i){var e=document.createElement("img");return Ri(e,"load",o(this._tileOnLoad,this,i,e)),Ri(e,"error",o(this._tileOnError,this,i,e)),(this.options.crossOrigin||""===this.options.crossOrigin)&&(e.crossOrigin=!0===this.options.crossOrigin?"":this.options.crossOrigin),"string"==typeof this.options.referrerPolicy&&(e.referrerPolicy=this.options.referrerPolicy),e.alt="",e.setAttribute("role","presentation"),e.src=this.getTileUrl(t),e},getTileUrl:function(t){var i={r:Ot.retina?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var n=this._globalTileRange.max.y-t.y;this.options.tms&&(i.y=n),i["-y"]=n}return f(this._url,e(i,this.options))},_tileOnLoad:function(t,i){Ot.ielt9?setTimeout(o(t,this,null,i),0):t(null,i)},_tileOnError:function(t,i,e){var n=this.options.errorTileUrl;n&&i.getAttribute("src")!==n&&(i.src=n),t(e,i)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,i=this.options.maxZoom;return this.options.zoomReverse&&(t=i-t),t+this.options.zoomOffset},_getSubdomain:function(t){var i=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[i]},_abortLoading:function(){var t,i;for(t in this._tiles)if(this._tiles[t].coords.z!==this._tileZoom&&((i=this._tiles[t].el).onload=u,i.onerror=u,!i.complete)){i.src=y;var e=this._tiles[t].coords;pi(i),delete this._tiles[t],this.fire("tileabort",{tile:i,coords:e})}},_removeTile:function(t){var i=this._tiles[t];if(i)return i.el.setAttribute("src",y),Bn.prototype._removeTile.call(this,t)},_tileReady:function(t,i,e){if(this._map&&(!e||e.getAttribute("src")!==y))return Bn.prototype._tileReady.call(this,t,i,e)}});function On(t,i){return new In(t,i)}var Rn=In.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,i){this._url=t;var n=e({},this.defaultWmsParams);for(var o in i)o in this.options||(n[o]=i[o]);var s=(i=d(this,i)).detectRetina&&Ot.retina?2:1,r=this.getTileSize();n.width=r.x*s,n.height=r.y*s,this.wmsParams=n},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var i=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[i]=this._crs.code,In.prototype.onAdd.call(this,t)},getTileUrl:function(t){var i=this._tileCoordsToNwSe(t),e=this._crs,n=R(e.project(i[0]),e.project(i[1])),o=n.min,s=n.max,r=(this._wmsVersion>=1.3&&this._crs===De?[o.y,o.x,s.y,s.x]:[o.x,o.y,s.x,s.y]).join(","),a=In.prototype.getTileUrl.call(this,t);return a+p(this.wmsParams,a,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+r},setParams:function(t,i){return e(this.wmsParams,t),i||this.redraw(),this}});function Nn(t,i){return new Rn(t,i)}In.WMS=Rn,On.wms=Nn;var Dn=He.extend({options:{padding:.1},initialize:function(t){d(this,t),r(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&yi(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,i){var e=this._map.getZoomScale(i,this._zoom),n=this._map.getSize().multiplyBy(.5+this.options.padding),o=this._map.project(this._center,i),s=n.multiplyBy(-e).add(o).subtract(this._map._getNewPixelOrigin(t,i));Ot.any3d?zi(this._container,s,e):Mi(this._container,s)},_reset:function(){for(var t in this._update(),this._updateTransform(this._center,this._zoom),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,i=this._map.getSize(),e=this._map.containerPointToLayerPoint(i.multiplyBy(-t)).round();this._bounds=new O(e,e.add(i.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),jn=Dn.extend({options:{tolerance:0},getEvents:function(){var t=Dn.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){Dn.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");Ri(t,"mousemove",this._onMouseMove,this),Ri(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),Ri(t,"mouseout",this._handleMouseOut,this),t._leaflet_disable_events=!0,this._ctx=t.getContext("2d")},_destroyContainer:function(){M(this._redrawRequest),delete this._ctx,pi(this._container),Di(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){for(var t in this._redrawBounds=null,this._layers)this._layers[t]._update();this._redraw()}},_update:function(){if(!this._map._animatingZoom||!this._bounds){Dn.prototype._update.call(this);var t=this._bounds,i=this._container,e=t.getSize(),n=Ot.retina?2:1;Mi(i,t.min),i.width=n*e.x,i.height=n*e.y,i.style.width=e.x+"px",i.style.height=e.y+"px",Ot.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update")}},_reset:function(){Dn.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t),this._layers[r(t)]=t;var i=t._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=i),this._drawLast=i,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var i=t._order,e=i.next,n=i.prev;e?e.prev=n:this._drawLast=n,n?n.next=e:this._drawFirst=e,delete t._order,delete this._layers[r(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("string"==typeof t.options.dashArray){var i,e,n=t.options.dashArray.split(/[, ]+/),o=[];for(e=0;e')}}catch(t){}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),Fn={_initContainer:function(){this._container=di("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Dn.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var i=t._container=Wn("shape");yi(i,"leaflet-vml-shape "+(this.options.className||"")),i.coordsize="1 1",t._path=Wn("path"),i.appendChild(t._path),this._updateStyle(t),this._layers[r(t)]=t},_addPath:function(t){var i=t._container;this._container.appendChild(i),t.options.interactive&&t.addInteractiveTarget(i)},_removePath:function(t){var i=t._container;pi(i),t.removeInteractiveTarget(i),delete this._layers[r(t)]},_updateStyle:function(t){var i=t._stroke,e=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(i||(i=t._stroke=Wn("stroke")),o.appendChild(i),i.weight=n.weight+"px",i.color=n.color,i.opacity=n.opacity,n.dashArray?i.dashStyle=g(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):i.dashStyle="",i.endcap=n.lineCap.replace("butt","flat"),i.joinstyle=n.lineJoin):i&&(o.removeChild(i),t._stroke=null),n.fill?(e||(e=t._fill=Wn("fill")),o.appendChild(e),e.color=n.fillColor||n.color,e.opacity=n.fillOpacity):e&&(o.removeChild(e),t._fill=null)},_updateCircle:function(t){var i=t._point.round(),e=Math.round(t._radius),n=Math.round(t._radiusY||e);this._setPath(t,t._empty()?"M0 0":"AL "+i.x+","+i.y+" "+e+","+n+" 0,23592600")},_setPath:function(t,i){t._path.v=i},_bringToFront:function(t){fi(t._container)},_bringToBack:function(t){gi(t._container)}},Un=Ot.vml?Wn:J,Vn=Dn.extend({_initContainer:function(){this._container=Un("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=Un("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){pi(this._container),Di(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!this._map._animatingZoom||!this._bounds){Dn.prototype._update.call(this);var t=this._bounds,i=t.getSize(),e=this._container;this._svgSize&&this._svgSize.equals(i)||(this._svgSize=i,e.setAttribute("width",i.x),e.setAttribute("height",i.y)),Mi(e,t.min),e.setAttribute("viewBox",[t.min.x,t.min.y,i.x,i.y].join(" ")),this.fire("update")}},_initPath:function(t){var i=t._path=Un("path");t.options.className&&yi(i,t.options.className),t.options.interactive&&yi(i,"leaflet-interactive"),this._updateStyle(t),this._layers[r(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){pi(t._path),t.removeInteractiveTarget(t._path),delete this._layers[r(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var i=t._path,e=t.options;i&&(e.stroke?(i.setAttribute("stroke",e.color),i.setAttribute("stroke-opacity",e.opacity),i.setAttribute("stroke-width",e.weight),i.setAttribute("stroke-linecap",e.lineCap),i.setAttribute("stroke-linejoin",e.lineJoin),e.dashArray?i.setAttribute("stroke-dasharray",e.dashArray):i.removeAttribute("stroke-dasharray"),e.dashOffset?i.setAttribute("stroke-dashoffset",e.dashOffset):i.removeAttribute("stroke-dashoffset")):i.setAttribute("stroke","none"),e.fill?(i.setAttribute("fill",e.fillColor||e.color),i.setAttribute("fill-opacity",e.fillOpacity),i.setAttribute("fill-rule",e.fillRule||"evenodd")):i.setAttribute("fill","none"))},_updatePoly:function(t,i){this._setPath(t,$(t._parts,i))},_updateCircle:function(t){var i=t._point,e=Math.max(Math.round(t._radius),1),n="a"+e+","+(Math.max(Math.round(t._radiusY),1)||e)+" 0 1,0 ",o=t._empty()?"M0 0":"M"+(i.x-e)+","+i.y+n+2*e+",0 "+n+2*-e+",0 ";this._setPath(t,o)},_setPath:function(t,i){t._path.setAttribute("d",i)},_bringToFront:function(t){fi(t._path)},_bringToBack:function(t){gi(t._path)}});function qn(t){return Ot.svg||Ot.vml?new Vn(t):null}Ot.vml&&Vn.include(Fn),ie.include({getRenderer:function(t){var i=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return i||(i=this._renderer=this._createRenderer()),this.hasLayer(i)||this.addLayer(i),i},_getPaneRenderer:function(t){if("overlayPane"===t||void 0===t)return!1;var i=this._paneRenderers[t];return void 0===i&&(i=this._createRenderer({pane:t}),this._paneRenderers[t]=i),i},_createRenderer:function(t){return this.options.preferCanvas&&Hn(t)||qn(t)}});var Gn=rn.extend({initialize:function(t,i){rn.prototype.initialize.call(this,this._boundsToLatLngs(t),i)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=D(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});function Kn(t,i){return new Gn(t,i)}Vn.create=Un,Vn.pointsToPath=$,hn.geometryToLayer=un,hn.coordsToLatLng=cn,hn.coordsToLatLngs=_n,hn.latLngToCoords=dn,hn.latLngsToCoords=pn,hn.getFeature=mn,hn.asFeature=fn,ie.mergeOptions({boxZoom:!0});var Yn=pe.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(){Ri(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){Di(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){pi(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),ni(),Si(),this._startPoint=this._map.mouseEventToContainerPoint(t),Ri(document,{contextmenu:Ki,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=di("div","leaflet-zoom-box",this._container),yi(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var i=new O(this._point,this._startPoint),e=i.getSize();Mi(this._box,i.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(pi(this._box),xi(this._container,"leaflet-crosshair")),oi(),ki(),Di(document,{contextmenu:Ki,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(o(this._resetState,this),0);var i=new N(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(i).fire("boxzoomend",{boxZoomBounds:i})}},_onKeyDown:function(t){27===t.keyCode&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});ie.addInitHook("addHandler","boxZoom",Yn),ie.mergeOptions({doubleClickZoom:!0});var Xn=pe.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var i=this._map,e=i.getZoom(),n=i.options.zoomDelta,o=t.originalEvent.shiftKey?e-n:e+n;"center"===i.options.doubleClickZoom?i.setZoom(o):i.setZoomAround(t.containerPoint,o)}});ie.addInitHook("addHandler","doubleClickZoom",Xn),ie.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var Jn=pe.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new ve(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))}yi(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){xi(this._map._container,"leaflet-grab"),xi(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 i=D(this._map.options.maxBounds);this._offsetLimit=R(this._map.latLngToContainerPoint(i.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(i.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 i=this._lastTime=+new Date,e=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(e),this._times.push(i),this._prunePositions(i)}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),i=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=i.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,i){return t-(t-i)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var t=this._draggable._newPos.subtract(this._draggable._startPos),i=this._offsetLimit;t.xi.max.x&&(t.x=this._viscousLimit(t.x,i.max.x)),t.y>i.max.y&&(t.y=this._viscousLimit(t.y,i.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,i=Math.round(t/2),e=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-i+e)%t+i-e,s=(n+i+e)%t-i-e,r=Math.abs(o+e)0?s:-s))-i;this._delta=0,this._startTime=null,r&&("center"===t.options.scrollWheelZoom?t.setZoom(i+r):t.setZoomAround(this._lastMousePos,i+r))}});ie.addInitHook("addHandler","scrollWheelZoom",Qn);var to=600;ie.mergeOptions({tapHold:Ot.touchNative&&Ot.safari&&Ot.mobile,tapTolerance:15});var io=pe.extend({addHooks:function(){Ri(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){Di(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(clearTimeout(this._holdTimeout),1===t.touches.length){var i=t.touches[0];this._startPos=this._newPos=new B(i.clientX,i.clientY),this._holdTimeout=setTimeout(o((function(){this._cancel(),this._isTapValid()&&(Ri(document,"touchend",Gi),Ri(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",i))}),this),to),Ri(document,"touchend touchcancel contextmenu",this._cancel,this),Ri(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function t(){Di(document,"touchend",Gi),Di(document,"touchend touchcancel",t)},_cancel:function(){clearTimeout(this._holdTimeout),Di(document,"touchend touchcancel contextmenu",this._cancel,this),Di(document,"touchmove",this._onMove,this)},_onMove:function(t){var i=t.touches[0];this._newPos=new B(i.clientX,i.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(t,i){var e=new MouseEvent(t,{bubbles:!0,cancelable:!0,view:window,screenX:i.screenX,screenY:i.screenY,clientX:i.clientX,clientY:i.clientY});e._simulated=!0,i.target.dispatchEvent(e)}});ie.addInitHook("addHandler","tapHold",io),ie.mergeOptions({touchZoom:Ot.touch,bounceAtZoomLimits:!0});var eo=pe.extend({addHooks:function(){yi(this._map._container,"leaflet-touch-zoom"),Ri(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){xi(this._map._container,"leaflet-touch-zoom"),Di(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var e=i.mouseEventToContainerPoint(t.touches[0]),n=i.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=i.getSize()._divideBy(2),this._startLatLng=i.containerPointToLatLng(this._centerPoint),"center"!==i.options.touchZoom&&(this._pinchStartLatLng=i.containerPointToLatLng(e.add(n)._divideBy(2))),this._startDist=e.distanceTo(n),this._startZoom=i.getZoom(),this._moved=!1,this._zooming=!0,i._stop(),Ri(document,"touchmove",this._onTouchMove,this),Ri(document,"touchend touchcancel",this._onTouchEnd,this),Gi(t)}},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var i=this._map,e=i.mouseEventToContainerPoint(t.touches[0]),n=i.mouseEventToContainerPoint(t.touches[1]),s=e.distanceTo(n)/this._startDist;if(this._zoom=i.getScaleZoom(s,this._startZoom),!i.options.bounceAtZoomLimits&&(this._zoomi.getMaxZoom()&&s>1)&&(this._zoom=i._limitZoom(this._zoom)),"center"===i.options.touchZoom){if(this._center=this._startLatLng,1===s)return}else{var r=e._add(n)._divideBy(2)._subtract(this._centerPoint);if(1===s&&0===r.x&&0===r.y)return;this._center=i.unproject(i.project(this._pinchStartLatLng,this._zoom).subtract(r),this._zoom)}this._moved||(i._moveStart(!0,!1),this._moved=!0),M(this._animRequest);var a=o(i._move,i,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=z(a,this,!0),Gi(t)}},_onTouchEnd:function(){this._moved&&this._zooming?(this._zooming=!1,M(this._animRequest),Di(document,"touchmove",this._onTouchMove,this),Di(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))):this._zooming=!1}});ie.addInitHook("addHandler","touchZoom",eo),ie.BoxZoom=Yn,ie.DoubleClickZoom=Xn,ie.Drag=Jn,ie.Keyboard=$n,ie.ScrollWheelZoom=Qn,ie.TapHold=io,ie.TouchZoom=eo,t.Bounds=O,t.Browser=Ot,t.CRS=F,t.Canvas=jn,t.Circle=en,t.CircleMarker=Qe,t.Class=Z,t.Control=ne,t.DivIcon=kn,t.DivOverlay=zn,t.DomEvent=Qi,t.DomUtil=Oi,t.Draggable=ve,t.Evented=E,t.FeatureGroup=Ue,t.GeoJSON=hn,t.GridLayer=Bn,t.Handler=pe,t.Icon=qe,t.ImageOverlay=xn,t.LatLng=j,t.LatLngBounds=N,t.Layer=He,t.LayerGroup=We,t.LineUtil=Ee,t.Map=ie,t.Marker=Xe,t.Mixin=fe,t.Path=$e,t.Point=B,t.PolyUtil=Ae,t.Polygon=rn,t.Polyline=on,t.Popup=Mn,t.PosAnimation=te,t.Projection=Re,t.Rectangle=Gn,t.Renderer=Dn,t.SVG=Vn,t.SVGOverlay=Ln,t.TileLayer=In,t.Tooltip=Zn,t.Transformation=G,t.Util=C,t.VideoOverlay=Pn,t.bind=o,t.bounds=R,t.canvas=Hn,t.circle=nn,t.circleMarker=tn,t.control=oe,t.divIcon=En,t.extend=e,t.featureGroup=Ve,t.geoJSON=vn,t.geoJson=yn,t.gridLayer=An,t.icon=Ge,t.imageOverlay=wn,t.latLng=H,t.latLngBounds=D,t.layerGroup=Fe,t.map=ee,t.marker=Je,t.point=I,t.polygon=an,t.polyline=sn,t.popup=Cn,t.rectangle=Kn,t.setOptions=d,t.stamp=r,t.svg=qn,t.svgOverlay=Tn,t.tileLayer=On,t.tooltip=Sn,t.transformation=K,t.version=i,t.videoOverlay=bn;var no=window.L;t.noConflict=function(){return window.L=no,this},window.L=t}(i)}));export{e as __moduleExports,e as default}; diff --git a/custom_components/hacs/hacs_frontend/c.99c1c4ba.js.gz b/custom_components/hacs/hacs_frontend/c.99c1c4ba.js.gz deleted file mode 100644 index dac926418353f914f0107d0d836f46b683a81c86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40063 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 z 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 diff --git a/custom_components/hacs/hacs_frontend/c.ad739743.js b/custom_components/hacs/hacs_frontend/c.ad739743.js deleted file mode 100644 index a1d0bcf..0000000 --- a/custom_components/hacs/hacs_frontend/c.ad739743.js +++ /dev/null @@ -1 +0,0 @@ -"DateTimeFormat"in Intl&&Intl.DateTimeFormat.__addTZData&&Intl.DateTimeFormat.__addTZData({zones:["Africa/Accra|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Addis_Ababa|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Algiers|,0,6,0|-154gb8d,0,6,0|-154gb8c,5,7,0|-uozn3m,5,7,0|-uozn3l,6,1,0|-ry2lg1,6,1,0|-ry2lg0,7,8,1|-rsgqs1,7,8,1|-rsgqs0,6,1,0|-rjiis1,6,1,0|-rjiis0,7,8,1|-r9dpg1,7,8,1|-r9dpg0,6,1,0|-r1idg1,6,1,0|-r1idg0,7,8,1|-qqnms1,7,8,1|-qqnms0,6,1,0|-qj59g1,6,1,0|-qj59g0,7,8,1|-q7xk41,7,8,1|-q7xk40,6,1,0|-q15441,6,1,0|-q15440,7,8,1|-po6g41,7,8,1|-po6g40,6,1,0|-pgvhg1,6,1,0|-pgvhg0,7,8,1|-pbs5g1,7,8,1|-pbs5g0,6,1,0|-fte841,6,1,0|-fte840,7,8,1|-fpw801,7,8,1|-fpw800,6,1,0|-fkul41,6,1,0|-fkul40,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d62o01,9,9,1|-d62o00,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cofk41,9,9,1|-cofk40,8,8,0|-c4kqs1,8,8,0|-c4kqs0,6,1,0|-79mio1,6,1,0|-79mio0,8,8,0|-3i8is1,8,8,0|-3i8is0,6,1,0|oot7z,6,1,0|oot80,7,8,1|wlzvz,7,8,1|wlzw0,6,1,0|3tynzz,6,1,0|3tyo00,7,8,1|42lp7z,7,8,1|42lp80,8,8,0|4aiynz,8,8,0|4aiyo0,9,9,1|4jw2rz,9,9,1|4jw2s0,8,8,0|54et7z,8,8,0|54et80,6,1,0|5drxbz,6,1,0|5drxc0,7,8,1|5ni03z,7,8,1|5ni040,6,1,0|5wuynz,6,1,0|5wuyo0,8,8,0|NaN,8,8,0","Africa/Asmara|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Bamako|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Bangui|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Banjul|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Bissau|,0,12,0|-u9rek1,0,12,0|-u9rek0,12,13,0|2lxk3z,12,13,0|2lxk40,1,1,0|NaN,1,1,0","Africa/Blantyre|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Brazzaville|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Bujumbura|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Cairo|,0,15,0|-1054wgm,0,15,0|-1054wgl,14,9,0|-fdls81,14,9,0|-fdls80,15,4,1|-f9lf01,15,4,1|-f9lf00,14,9,0|-ezidk1,14,9,0|-ezidk0,15,4,1|-erl9o1,15,4,1|-erl9o0,14,9,0|-ehgdk1,14,9,0|-ehgdk0,15,4,1|-e6pf01,15,4,1|-e6pf00,14,9,0|-dyog81,14,9,0|-dyog80,15,4,1|-dno8c1,15,4,1|-dno8c0,14,9,0|-dfuo81,14,9,0|-dfuo80,15,4,1|-d4ugc1,15,4,1|-d4ugc0,14,9,0|-cwayw1,14,9,0|-cwayw0,15,4,1|-cm2j01,15,4,1|-cm2j00,14,9,0|-6lluw1,14,9,0|-6lluw0,15,4,1|-6e79o1,15,4,1|-6e79o0,14,9,0|-63alk1,14,9,0|-63alk0,15,4,1|-5vfcc1,15,4,1|-5vfcc0,14,9,0|-5kilg1,14,9,0|-5kilg0,15,4,1|-5cp1c1,15,4,1|-5cp1c0,14,9,0|-51otg1,14,9,0|-51otg0,15,4,1|-4tv9c1,15,4,1|-4tv9c0,14,9,0|-4iww41,14,9,0|-4iww40,15,4,1|-4b3c01,15,4,1|-4b3c00,14,9,0|-404ys1,14,9,0|-404ys0,15,4,1|-3sbeo1,15,4,1|-3sbeo0,14,9,0|-3hd1g1,14,9,0|-3hd1g0,15,4,1|-39jhc1,15,4,1|-39jhc0,14,9,0|-2yj9g1,14,9,0|-2yj9g0,15,4,1|-2qppc1,15,4,1|-2qppc0,14,9,0|-2frc41,14,9,0|-2frc40,15,4,1|-27xs01,15,4,1|-27xs00,14,9,0|-1wzes1,14,9,0|-1wzes0,15,4,1|-1p4001,15,4,1|-1p4000,14,9,0|-1e7hg1,14,9,0|-1e7hg0,15,4,1|-16c2o1,15,4,1|-16c2o0,14,9,0|-vdpg1,14,9,0|-vdpg0,15,4,1|-niao1,15,4,1|-niao0,14,9,0|-cls41,14,9,0|-cls40,15,4,1|-4qdc1,15,4,1|-4qdc0,14,9,0|6657z,14,9,0|66580,15,4,1|e1jzz,15,4,1|e1k00,14,9,0|oy2jz,14,9,0|oy2k0,15,4,1|wthbz,15,4,1|wthc0,14,9,0|17rujz,14,9,0|17ruk0,15,4,1|1fn9bz,15,4,1|1fn9c0,14,9,0|1qjrvz,14,9,0|1qjrw0,15,4,1|1yf6nz,15,4,1|1yf6o0,14,9,0|29bp7z,14,9,0|29bp80,15,4,1|2h73zz,15,4,1|2h7400,14,9,0|2s3mjz,14,9,0|2s3mk0,15,4,1|2zz1bz,15,4,1|2zz1c0,14,9,0|3axejz,14,9,0|3axek0,15,4,1|3istbz,15,4,1|3istc0,14,9,0|3tpbvz,14,9,0|3tpbw0,15,4,1|41kqnz,15,4,1|41kqo0,14,9,0|4ch97z,14,9,0|4ch980,15,4,1|4kcnzz,15,4,1|4kco00,14,9,0|4v96jz,14,9,0|4v96k0,15,4,1|534lbz,15,4,1|534lc0,14,9,0|5e2yjz,14,9,0|5e2yk0,15,4,1|5lydbz,15,4,1|5lydc0,14,9,0|5wuvvz,14,9,0|5wuvw0,15,4,1|64qanz,15,4,1|64qao0,14,9,0|6k07vz,14,9,0|6k07w0,15,4,1|6ni7zz,15,4,1|6ni800,14,9,0|7242jz,14,9,0|7242k0,15,4,1|76a5bz,15,4,1|76a5c0,14,9,0|7h8ijz,14,9,0|7h8ik0,15,4,1|7p3xbz,15,4,1|7p3xc0,14,9,0|800fvz,14,9,0|800fw0,15,4,1|87vunz,15,4,1|87vuo0,14,9,0|8isd7z,14,9,0|8isd80,15,4,1|8qnrzz,15,4,1|8qns00,14,9,0|91kajz,14,9,0|91kak0,15,4,1|99fpbz,15,4,1|99fpc0,14,9,0|9ke2jz,14,9,0|9ke2k0,15,4,1|9s9hbz,15,4,1|9s9hc0,14,9,0|a3f97z,14,9,0|a3f980,15,4,1|ab1enz,15,4,1|ab1eo0,14,9,0|alxx7z,14,9,0|alxx80,15,4,1|attbzz,15,4,1|attc00,14,9,0|b4pujz,14,9,0|b4puk0,15,4,1|bcl9bz,15,4,1|bcl9c0,14,9,0|bnjmjz,14,9,0|bnjmk0,15,4,1|bvf1bz,15,4,1|bvf1c0,14,9,0|c6bjvz,14,9,0|c6bjw0,15,4,1|ce6ynz,15,4,1|ce6yo0,14,9,0|cp3h7z,14,9,0|cp3h80,15,4,1|cwyvzz,15,4,1|cwyw00,14,9,0|d7prrz,14,9,0|d7prs0,15,4,1|dfmvnz,15,4,1|dfmvo0,14,9,0|dqfufz,14,9,0|dqfug0,15,4,1|dycybz,15,4,1|dycyc0,14,9,0|e95x3z,14,9,0|e95x40,15,4,1|eh30zz,15,4,1|eh3100,14,9,0|ervzrz,14,9,0|ervzs0,15,4,1|ezt3nz,15,4,1|ezt3o0,14,9,0|faz13z,14,9,0|faz140,15,4,1|fiw4zz,15,4,1|fiw500,14,9,0|ftp3rz,14,9,0|ftp3s0,15,4,1|g1m7nz,15,4,1|g1m7o0,14,9,0|gcf6fz,14,9,0|gcf6g0,15,4,1|gkcabz,15,4,1|gkcac0,14,9,0|gv593z,14,9,0|gv5940,15,4,1|h32czz,15,4,1|h32d00,14,9,0|hdvbrz,14,9,0|hdvbs0,15,4,1|hlsfnz,15,4,1|hlsfo0,14,9,0|hwyd3z,14,9,0|hwyd40,15,4,1|i4vgzz,15,4,1|i4vh00,14,9,0|ifofrz,14,9,0|ifofs0,15,4,1|inljnz,15,4,1|inljo0,14,9,0|iyeifz,14,9,0|iyeig0,15,4,1|j5ynnz,15,4,1|j5yno0,14,9,0|jh4l3z,14,9,0|jh4l40,15,4,1|jnyszz,15,4,1|jnyt00,14,9,0|jzunrz,14,9,0|jzuns0,15,4,1|k6bwzz,15,4,1|k6bx00,14,9,0|kikqfz,14,9,0|kikqg0,15,4,1|kop0zz,15,4,1|kop100,14,9,0|l1nrrz,14,9,0|l1nrs0,15,4,1|l6yfnz,15,4,1|l6yfo0,14,9,0|l8i2fz,14,9,0|l8i2g0,15,4,1|l9kvnz,15,4,1|l9kvo0,14,9,0|n5myfz,14,9,0|n5myg0,15,4,1|n7snnz,15,4,1|n7sno0,14,9,0|n9ljrz,14,9,0|n9ljs0,15,4,1|nch6bz,15,4,1|nch6c0,14,9,0|NaN,14,9,0","Africa/Casablanca|,0,16,0|-tblt9h,0,16,0|-tblt9g,16,1,0|-fte5c1,16,1,0|-fte5c0,17,8,1|-fpwas1,17,8,1|-fpwas0,16,1,0|-fkuqo1,16,1,0|-fkuqo0,17,8,1|-cl6w41,17,8,1|-cl6w40,16,1,0|-a7hmo1,16,1,0|-a7hmo0,17,8,1|-a0ag41,17,8,1|-a0ag40,16,1,0|-1chdc1,16,1,0|-1chdc0,17,8,1|-16c5g1,17,8,1|-16c5g0,16,1,0|2c3rzz,16,1,0|2c3s00,17,8,1|2fnh7z,17,8,1|2fnh80,16,1,0|3axhbz,16,1,0|3axhc0,17,8,1|3fnrvz,17,8,1|3fnrw0,16,1,0|3tpenz,16,1,0|3tpeo0,17,8,1|41f3vz,17,8,1|41f3w0,16,1,0|4e2qnz,16,1,0|4e2qo0,17,8,1|4hd6jz,17,8,1|4hd6k0,16,1,0|7evenz,16,1,0|7eveo0,17,8,0|8cm57z,17,8,0|8cm580,16,1,0|k1rbzz,16,1,0|k1rc00,17,8,1|k6hmjz,17,8,1|k6hmk0,16,1,0|kkj9bz,16,1,0|kkj9c0,17,8,1|kop6jz,17,8,1|kop6k0,16,1,0|l1rmnz,16,1,0|l1rmo0,17,8,1|l6t17z,17,8,1|l6t180,16,1,0|lj1unz,16,1,0|lj1uo0,17,8,1|lp657z,17,8,1|lp6580,16,1,0|m37xjz,16,1,0|m37xk0,17,8,1|m7fs7z,17,8,1|m7fs80,16,1,0|m916vz,16,1,0|m916w0,17,8,1|mb547z,17,8,1|mb5480,16,1,0|mly07z,16,1,0|mly080,17,8,1|mpjmvz,17,8,1|mpjmw0,16,1,0|mraljz,16,1,0|mralk0,17,8,1|mvb1jz,17,8,1|mvb1k0,16,1,0|n3887z,16,1,0|n38880,17,8,1|n7uw7z,17,8,1|n7uw80,16,1,0|n9npjz,16,1,0|n9npk0,17,8,1|ne147z,17,8,1|ne1480,16,1,0|nlyavz,16,1,0|nlyaw0,17,8,1|npww7z,17,8,1|npww80,16,1,0|nrppjz,16,1,0|nrppk0,17,8,1|nwr6vz,17,8,1|nwr6w0,16,1,0|o4odjz,16,1,0|o4odk0,17,8,1|o8a07z,17,8,1|o8a080,16,1,0|oa2tjz,16,1,0|oa2tk0,17,8,1|ofu87z,17,8,1|ofu880,16,1,0|oneg7z,16,1,0|oneg80,17,8,1|oqa5jz,17,8,1|oqa5k0,16,1,0|osfxjz,16,1,0|osfxk0,17,8,1|oykavz,17,8,1|oykaw0,16,1,0|p64ivz,16,1,0|p64iw0,17,8,1|p8n9jz,17,8,1|p8n9k0,16,1,0|pag2vz,16,1,0|pag2w0,17,8,1|phadjz,17,8,1|phadk0,17,8,0|pr0djz,17,8,0|pr0dk0,16,1,1|pst6vz,16,1,1|pst6w0,17,8,0|q90ivz,17,8,0|q90iw0,16,1,1|qb6avz,16,1,1|qb6aw0,17,8,0|qrdmvz,17,8,0|qrdmw0,16,1,1|qt6g7z,16,1,1|qt6g80,17,8,0|r9ds7z,17,8,0|r9ds80,16,1,1|rbjk7z,16,1,1|rbjk80,17,8,0|rrqw7z,17,8,0|rrqw80,16,1,1|rtwo7z,16,1,1|rtwo80,17,8,0|sa407z,17,8,0|sa4080,16,1,1|sbwtjz,16,1,1|sbwtk0,17,8,0|ss45jz,17,8,0|ss45k0,16,1,1|su9xjz,16,1,1|su9xk0,17,8,0|tah9jz,17,8,0|tah9k0,16,1,1|tca2vz,16,1,1|tca2w0,17,8,0|tsudjz,17,8,0|tsudk0,16,1,1|tun6vz,16,1,1|tun6w0,17,8,0|uauivz,17,8,0|uauiw0,16,1,1|ud0avz,16,1,1|ud0aw0,17,8,0|ut7mvz,17,8,0|ut7mw0,16,1,1|uv0g7z,16,1,1|uv0g80,17,8,0|vb7s7z,17,8,0|vb7s80,16,1,1|vddk7z,16,1,1|vddk80,17,8,0|vtkw7z,17,8,0|vtkw80,16,1,1|vvqo7z,16,1,1|vvqo80,17,8,0|wby07z,17,8,0|wby080,16,1,1|wdqtjz,16,1,1|wdqtk0,17,8,0|wty5jz,17,8,0|wty5k0,16,1,1|ww3xjz,16,1,1|ww3xk0,17,8,0|xcb9jz,17,8,0|xcb9k0,16,1,1|xe42vz,16,1,1|xe42w0,17,8,0|xubevz,17,8,0|xubew0,16,1,1|xwh6vz,16,1,1|xwh6w0,17,8,0|ycoivz,17,8,0|ycoiw0,16,1,1|yeuavz,16,1,1|yeuaw0,17,8,0|yv1mvz,17,8,0|yv1mw0,16,1,1|ywug7z,16,1,1|ywug80,17,8,0|zd1s7z,17,8,0|zd1s80,16,1,1|zf7k7z,16,1,1|zf7k80,17,8,0|zvew7z,17,8,0|zvew80,16,1,1|zxko7z,16,1,1|zxko80,17,8,0|10ds07z,17,8,0|10ds080,16,1,1|10fktjz,16,1,1|10fktk0,17,8,0|10vs5jz,17,8,0|10vs5k0,16,1,1|10xxxjz,16,1,1|10xxxk0,17,8,0|11e59jz,17,8,0|11e59k0,16,1,1|11fy2vz,16,1,1|11fy2w0,17,8,0|11w5evz,17,8,0|11w5ew0,16,1,1|11yb6vz,16,1,1|11yb6w0,17,8,0|12eiivz,17,8,0|12eiiw0,16,1,1|12goavz,16,1,1|12goaw0,17,8,0|12wvmvz,17,8,0|12wvmw0,16,1,1|12yog7z,16,1,1|12yog80,17,8,0|13evs7z,17,8,0|13evs80,16,1,1|13h1k7z,16,1,1|13h1k80,17,8,0|13x8w7z,17,8,0|13x8w80,16,1,1|13zeo7z,16,1,1|13zeo80,17,8,0|14fm07z,17,8,0|14fm080,16,1,1|14hetjz,16,1,1|14hetk0,17,8,0|14xm5jz,17,8,0|14xm5k0,16,1,1|14zrxjz,16,1,1|14zrxk0,17,8,0|15fz9jz,17,8,0|15fz9k0,16,1,1|15hs2vz,16,1,1|15hs2w0,17,8,0|15xzevz,17,8,0|15xzew0,16,1,1|16056vz,16,1,1|16056w0,17,8,0|16gcivz,17,8,0|16gciw0,16,1,1|16iiavz,16,1,1|16iiaw0,17,8,0|16ypmvz,17,8,0|16ypmw0,16,1,1|170ig7z,16,1,1|170ig80,17,8,0|17gps7z,17,8,0|17gps80,16,1,1|17ivk7z,16,1,1|17ivk80,17,8,0|17z2w7z,17,8,0|17z2w80,16,1,1|1818o7z,16,1,1|1818o80,17,8,0|18hg07z,17,8,0|18hg080,16,1,1|18j8tjz,16,1,1|18j8tk0,17,8,0|18zg5jz,17,8,0|18zg5k0,16,1,1|191lxjz,16,1,1|191lxk0,17,8,0|19ht9jz,17,8,0|19ht9k0,16,1,1|19jm2vz,16,1,1|19jm2w0,17,8,0|19ztevz,17,8,0|19ztew0,16,1,1|1a1z6vz,16,1,1|1a1z6w0,17,8,0|1ai6ivz,17,8,0|1ai6iw0,16,1,1|1akcavz,16,1,1|1akcaw0,17,8,0|1b0jmvz,17,8,0|1b0jmw0,16,1,1|1b2cg7z,16,1,1|1b2cg80,17,8,0|1bijs7z,17,8,0|1bijs80,16,1,1|1bkpk7z,16,1,1|1bkpk80,17,8,0|1c0ww7z,17,8,0|1c0ww80,16,1,1|1c32o7z,16,1,1|1c32o80,17,8,0|1cja07z,17,8,0|1cja080,16,1,1|1cl2tjz,16,1,1|1cl2tk0,17,8,0|1d1a5jz,17,8,0|1d1a5k0,16,1,1|1d3fxjz,16,1,1|1d3fxk0,17,8,0|1djn9jz,17,8,0|1djn9k0,16,1,1|1dlg2vz,16,1,1|1dlg2w0,17,8,0|1e1nevz,17,8,0|1e1new0,16,1,1|1e3t6vz,16,1,1|1e3t6w0,17,8,0|1ek0ivz,17,8,0|1ek0iw0,16,1,1|1em6avz,16,1,1|1em6aw0,17,8,0|1f2dmvz,17,8,0|1f2dmw0,16,1,1|1f46g7z,16,1,1|1f46g80,17,8,0|1fkds7z,17,8,0|1fkds80,16,1,1|1fmjk7z,16,1,1|1fmjk80,17,8,0|1g2qw7z,17,8,0|1g2qw80,16,1,1|1g4wo7z,16,1,1|1g4wo80,17,8,0|1gl407z,17,8,0|1gl4080,16,1,1|1gmwtjz,16,1,1|1gmwtk0,17,8,0|1h345jz,17,8,0|1h345k0,16,1,1|1h59xjz,16,1,1|1h59xk0,17,8,0|1hlh9jz,17,8,0|1hlh9k0,16,1,1|1hna2vz,16,1,1|1hna2w0,17,8,0|1i3hevz,17,8,0|1i3hew0,16,1,1|1i5n6vz,16,1,1|1i5n6w0,17,8,0|1iluivz,17,8,0|1iluiw0,16,1,1|1io0avz,16,1,1|1io0aw0,17,8,0|1j47mvz,17,8,0|1j47mw0,16,1,1|1j60g7z,16,1,1|1j60g80,17,8,0|1jm7s7z,17,8,0|1jm7s80,16,1,1|1jodk7z,16,1,1|1jodk80,17,8,0|1k4kw7z,17,8,0|1k4kw80,16,1,1|1k6qo7z,16,1,1|1k6qo80,17,8,0|1kmy07z,17,8,0|1kmy080,16,1,1|1koqtjz,16,1,1|1koqtk0,17,8,0|1l4y5jz,17,8,0|1l4y5k0,16,1,1|1l73xjz,16,1,1|1l73xk0,17,8,0|1lnb9jz,17,8,0|1lnb9k0,16,1,1|1lp42vz,16,1,1|1lp42w0,17,8,0|1m5bevz,17,8,0|1m5bew0,16,1,1|1m7h6vz,16,1,1|1m7h6w0,17,8,0|1mnoivz,17,8,0|1mnoiw0,16,1,1|1mpuavz,16,1,1|1mpuaw0,17,8,0|1n61mvz,17,8,0|1n61mw0,16,1,1|1n7ug7z,16,1,1|1n7ug80,17,8,0|1no1s7z,17,8,0|1no1s80,16,1,1|1nq7k7z,16,1,1|1nq7k80,17,8,0|1o6ew7z,17,8,0|1o6ew80,16,1,1|1o8ko7z,16,1,1|1o8ko80,17,8,0|1oos07z,17,8,0|1oos080,16,1,1|1oqktjz,16,1,1|1oqktk0,17,8,0|1p6s5jz,17,8,0|1p6s5k0,16,1,1|1p8xxjz,16,1,1|1p8xxk0,17,8,0|NaN,17,8,0","Africa/Ceuta|,0,17,0|-100edc1,0,17,0|-100edc0,6,1,0|-qyiys1,6,1,0|-qyiys0,7,8,1|-qqluw1,7,8,1|-qqluw0,6,1,0|-nusqs1,6,1,0|-nusqs0,7,8,1|-nm0001,7,8,1|-nm0000,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjuo1,7,8,1|-mkjuo0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1ts01,7,8,1|-m1ts00,6,1,0|-lrqtc1,6,1,0|-lrqtc0,7,8,1|-liqqo1,7,8,1|-liqqo0,6,1,0|-1chdc1,6,1,0|-1chdc0,7,8,1|-16c5g1,7,8,1|-16c5g0,6,1,0|2c3rzz,6,1,0|2c3s00,7,8,1|2fnh7z,7,8,1|2fnh80,6,1,0|3axhbz,6,1,0|3axhc0,7,8,1|3fnrvz,7,8,1|3fnrw0,6,1,0|3tpenz,6,1,0|3tpeo0,7,8,1|41f3vz,7,8,1|41f3w0,6,1,0|4e2qnz,6,1,0|4e2qo0,7,8,1|4hd6jz,7,8,1|4hd6k0,6,1,0|7evenz,6,1,0|7eveo0,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Africa/Conakry|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Dakar|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Dar_es_Salaam|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Djibouti|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Douala|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/El_Aaiun|,0,18,0|-isdxk1,0,18,0|-isdxk0,12,13,0|3a22rz,12,13,0|3a22s0,16,1,0|3axhbz,16,1,0|3axhc0,17,8,1|3fnrvz,17,8,1|3fnrw0,16,1,0|3tpenz,16,1,0|3tpeo0,17,8,1|41f3vz,17,8,1|41f3w0,16,1,0|4e2qnz,16,1,0|4e2qo0,17,8,1|4hd6jz,17,8,1|4hd6k0,16,1,0|k1rbzz,16,1,0|k1rc00,17,8,1|k6hmjz,17,8,1|k6hmk0,16,1,0|kkj9bz,16,1,0|kkj9c0,17,8,1|kop6jz,17,8,1|kop6k0,16,1,0|l1rmnz,16,1,0|l1rmo0,17,8,1|l6t17z,17,8,1|l6t180,16,1,0|lj1unz,16,1,0|lj1uo0,17,8,1|lp657z,17,8,1|lp6580,16,1,0|m37xjz,16,1,0|m37xk0,17,8,1|m7fs7z,17,8,1|m7fs80,16,1,0|m916vz,16,1,0|m916w0,17,8,1|mb547z,17,8,1|mb5480,16,1,0|mly07z,16,1,0|mly080,17,8,1|mpjmvz,17,8,1|mpjmw0,16,1,0|mraljz,16,1,0|mralk0,17,8,1|mvb1jz,17,8,1|mvb1k0,16,1,0|n3887z,16,1,0|n38880,17,8,1|n7uw7z,17,8,1|n7uw80,16,1,0|n9npjz,16,1,0|n9npk0,17,8,1|ne147z,17,8,1|ne1480,16,1,0|nlyavz,16,1,0|nlyaw0,17,8,1|npww7z,17,8,1|npww80,16,1,0|nrppjz,16,1,0|nrppk0,17,8,1|nwr6vz,17,8,1|nwr6w0,16,1,0|o4odjz,16,1,0|o4odk0,17,8,1|o8a07z,17,8,1|o8a080,16,1,0|oa2tjz,16,1,0|oa2tk0,17,8,1|ofu87z,17,8,1|ofu880,16,1,0|oneg7z,16,1,0|oneg80,17,8,1|oqa5jz,17,8,1|oqa5k0,16,1,0|osfxjz,16,1,0|osfxk0,17,8,1|oykavz,17,8,1|oykaw0,16,1,0|p64ivz,16,1,0|p64iw0,17,8,1|p8n9jz,17,8,1|p8n9k0,16,1,0|pag2vz,16,1,0|pag2w0,17,8,1|phadjz,17,8,1|phadk0,17,8,0|pr0djz,17,8,0|pr0dk0,16,1,1|pst6vz,16,1,1|pst6w0,17,8,0|q90ivz,17,8,0|q90iw0,16,1,1|qb6avz,16,1,1|qb6aw0,17,8,0|qrdmvz,17,8,0|qrdmw0,16,1,1|qt6g7z,16,1,1|qt6g80,17,8,0|r9ds7z,17,8,0|r9ds80,16,1,1|rbjk7z,16,1,1|rbjk80,17,8,0|rrqw7z,17,8,0|rrqw80,16,1,1|rtwo7z,16,1,1|rtwo80,17,8,0|sa407z,17,8,0|sa4080,16,1,1|sbwtjz,16,1,1|sbwtk0,17,8,0|ss45jz,17,8,0|ss45k0,16,1,1|su9xjz,16,1,1|su9xk0,17,8,0|tah9jz,17,8,0|tah9k0,16,1,1|tca2vz,16,1,1|tca2w0,17,8,0|tsudjz,17,8,0|tsudk0,16,1,1|tun6vz,16,1,1|tun6w0,17,8,0|uauivz,17,8,0|uauiw0,16,1,1|ud0avz,16,1,1|ud0aw0,17,8,0|ut7mvz,17,8,0|ut7mw0,16,1,1|uv0g7z,16,1,1|uv0g80,17,8,0|vb7s7z,17,8,0|vb7s80,16,1,1|vddk7z,16,1,1|vddk80,17,8,0|vtkw7z,17,8,0|vtkw80,16,1,1|vvqo7z,16,1,1|vvqo80,17,8,0|wby07z,17,8,0|wby080,16,1,1|wdqtjz,16,1,1|wdqtk0,17,8,0|wty5jz,17,8,0|wty5k0,16,1,1|ww3xjz,16,1,1|ww3xk0,17,8,0|xcb9jz,17,8,0|xcb9k0,16,1,1|xe42vz,16,1,1|xe42w0,17,8,0|xubevz,17,8,0|xubew0,16,1,1|xwh6vz,16,1,1|xwh6w0,17,8,0|ycoivz,17,8,0|ycoiw0,16,1,1|yeuavz,16,1,1|yeuaw0,17,8,0|yv1mvz,17,8,0|yv1mw0,16,1,1|ywug7z,16,1,1|ywug80,17,8,0|zd1s7z,17,8,0|zd1s80,16,1,1|zf7k7z,16,1,1|zf7k80,17,8,0|zvew7z,17,8,0|zvew80,16,1,1|zxko7z,16,1,1|zxko80,17,8,0|10ds07z,17,8,0|10ds080,16,1,1|10fktjz,16,1,1|10fktk0,17,8,0|10vs5jz,17,8,0|10vs5k0,16,1,1|10xxxjz,16,1,1|10xxxk0,17,8,0|11e59jz,17,8,0|11e59k0,16,1,1|11fy2vz,16,1,1|11fy2w0,17,8,0|11w5evz,17,8,0|11w5ew0,16,1,1|11yb6vz,16,1,1|11yb6w0,17,8,0|12eiivz,17,8,0|12eiiw0,16,1,1|12goavz,16,1,1|12goaw0,17,8,0|12wvmvz,17,8,0|12wvmw0,16,1,1|12yog7z,16,1,1|12yog80,17,8,0|13evs7z,17,8,0|13evs80,16,1,1|13h1k7z,16,1,1|13h1k80,17,8,0|13x8w7z,17,8,0|13x8w80,16,1,1|13zeo7z,16,1,1|13zeo80,17,8,0|14fm07z,17,8,0|14fm080,16,1,1|14hetjz,16,1,1|14hetk0,17,8,0|14xm5jz,17,8,0|14xm5k0,16,1,1|14zrxjz,16,1,1|14zrxk0,17,8,0|15fz9jz,17,8,0|15fz9k0,16,1,1|15hs2vz,16,1,1|15hs2w0,17,8,0|15xzevz,17,8,0|15xzew0,16,1,1|16056vz,16,1,1|16056w0,17,8,0|16gcivz,17,8,0|16gciw0,16,1,1|16iiavz,16,1,1|16iiaw0,17,8,0|16ypmvz,17,8,0|16ypmw0,16,1,1|170ig7z,16,1,1|170ig80,17,8,0|17gps7z,17,8,0|17gps80,16,1,1|17ivk7z,16,1,1|17ivk80,17,8,0|17z2w7z,17,8,0|17z2w80,16,1,1|1818o7z,16,1,1|1818o80,17,8,0|18hg07z,17,8,0|18hg080,16,1,1|18j8tjz,16,1,1|18j8tk0,17,8,0|18zg5jz,17,8,0|18zg5k0,16,1,1|191lxjz,16,1,1|191lxk0,17,8,0|19ht9jz,17,8,0|19ht9k0,16,1,1|19jm2vz,16,1,1|19jm2w0,17,8,0|19ztevz,17,8,0|19ztew0,16,1,1|1a1z6vz,16,1,1|1a1z6w0,17,8,0|1ai6ivz,17,8,0|1ai6iw0,16,1,1|1akcavz,16,1,1|1akcaw0,17,8,0|1b0jmvz,17,8,0|1b0jmw0,16,1,1|1b2cg7z,16,1,1|1b2cg80,17,8,0|1bijs7z,17,8,0|1bijs80,16,1,1|1bkpk7z,16,1,1|1bkpk80,17,8,0|1c0ww7z,17,8,0|1c0ww80,16,1,1|1c32o7z,16,1,1|1c32o80,17,8,0|1cja07z,17,8,0|1cja080,16,1,1|1cl2tjz,16,1,1|1cl2tk0,17,8,0|1d1a5jz,17,8,0|1d1a5k0,16,1,1|1d3fxjz,16,1,1|1d3fxk0,17,8,0|1djn9jz,17,8,0|1djn9k0,16,1,1|1dlg2vz,16,1,1|1dlg2w0,17,8,0|1e1nevz,17,8,0|1e1new0,16,1,1|1e3t6vz,16,1,1|1e3t6w0,17,8,0|1ek0ivz,17,8,0|1ek0iw0,16,1,1|1em6avz,16,1,1|1em6aw0,17,8,0|1f2dmvz,17,8,0|1f2dmw0,16,1,1|1f46g7z,16,1,1|1f46g80,17,8,0|1fkds7z,17,8,0|1fkds80,16,1,1|1fmjk7z,16,1,1|1fmjk80,17,8,0|1g2qw7z,17,8,0|1g2qw80,16,1,1|1g4wo7z,16,1,1|1g4wo80,17,8,0|1gl407z,17,8,0|1gl4080,16,1,1|1gmwtjz,16,1,1|1gmwtk0,17,8,0|1h345jz,17,8,0|1h345k0,16,1,1|1h59xjz,16,1,1|1h59xk0,17,8,0|1hlh9jz,17,8,0|1hlh9k0,16,1,1|1hna2vz,16,1,1|1hna2w0,17,8,0|1i3hevz,17,8,0|1i3hew0,16,1,1|1i5n6vz,16,1,1|1i5n6w0,17,8,0|1iluivz,17,8,0|1iluiw0,16,1,1|1io0avz,16,1,1|1io0aw0,17,8,0|1j47mvz,17,8,0|1j47mw0,16,1,1|1j60g7z,16,1,1|1j60g80,17,8,0|1jm7s7z,17,8,0|1jm7s80,16,1,1|1jodk7z,16,1,1|1jodk80,17,8,0|1k4kw7z,17,8,0|1k4kw80,16,1,1|1k6qo7z,16,1,1|1k6qo80,17,8,0|1kmy07z,17,8,0|1kmy080,16,1,1|1koqtjz,16,1,1|1koqtk0,17,8,0|1l4y5jz,17,8,0|1l4y5k0,16,1,1|1l73xjz,16,1,1|1l73xk0,17,8,0|1lnb9jz,17,8,0|1lnb9k0,16,1,1|1lp42vz,16,1,1|1lp42w0,17,8,0|1m5bevz,17,8,0|1m5bew0,16,1,1|1m7h6vz,16,1,1|1m7h6w0,17,8,0|1mnoivz,17,8,0|1mnoiw0,16,1,1|1mpuavz,16,1,1|1mpuaw0,17,8,0|1n61mvz,17,8,0|1n61mw0,16,1,1|1n7ug7z,16,1,1|1n7ug80,17,8,0|1no1s7z,17,8,0|1no1s80,16,1,1|1nq7k7z,16,1,1|1nq7k80,17,8,0|1o6ew7z,17,8,0|1o6ew80,16,1,1|1o8ko7z,16,1,1|1o8ko80,17,8,0|1oos07z,17,8,0|1oos080,16,1,1|1oqktjz,16,1,1|1oqktk0,17,8,0|1p6s5jz,17,8,0|1p6s5k0,16,1,1|1p8xxjz,16,1,1|1p8xxk0,17,8,0|NaN,17,8,0","Africa/Freetown|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Gaborone|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Harare|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Johannesburg|,0,19,0|-14nj6ip,0,19,0|-14nj6io,18,20,0|-yvtdi1,18,20,0|-yvtdi0,18,9,0|-e8lpc1,18,9,0|-e8lpc0,18,4,1|-dz8qs1,18,4,1|-dz8qs0,18,9,0|-dpvmo1,18,9,0|-dpvmo0,18,4,1|-dgio41,18,4,1|-dgio40,18,9,0|NaN,18,9,0","Africa/Juba|,0,21,0|-kcrsit,0,21,0|-kcrsis,13,9,0|662fz,13,9,0|662g0,19,4,1|er8zz,19,4,1|er900,13,9,0|ow53z,13,9,0|ow540,19,4,1|xj6bz,19,4,1|xj6c0,13,9,0|17px3z,13,9,0|17px40,19,4,1|1gcybz,19,4,1|1gcyc0,13,9,0|1qfzrz,13,9,0|1qfzs0,19,4,1|1z4vnz,19,4,1|1z4vo0,13,9,0|2962fz,13,9,0|2962g0,19,4,1|2hwszz,19,4,1|2hwt00,13,9,0|2rw53z,13,9,0|2rw540,19,4,1|30oqbz,19,4,1|30oqc0,13,9,0|3am7rz,13,9,0|3am7s0,19,4,1|3jiibz,19,4,1|3jiic0,13,9,0|3tcafz,13,9,0|3tcag0,19,4,1|42afnz,19,4,1|42afo0,13,9,0|4cfbrz,13,9,0|4cfbs0,19,4,1|4l2czz,19,4,1|4l2d00,13,9,0|4v5efz,13,9,0|4v5eg0,19,4,1|53uabz,19,4,1|53uac0,13,9,0|5dvh3z,13,9,0|5dvh40,19,4,1|5mo2bz,19,4,1|5mo2c0,13,9,0|5wljrz,13,9,0|5wljs0,19,4,1|65fznz,19,4,1|65fzo0,13,9,0|6fbmfz,13,9,0|6fbmg0,19,4,1|6o7wzz,19,4,1|6o7x00,13,9,0|6y1p3z,13,9,0|6y1p40,19,4,1|76zubz,19,4,1|76zuc0,13,9,0|7h4qfz,13,9,0|7h4qg0,19,4,1|7ptmbz,19,4,1|7ptmc0,13,9,0|7zut3z,13,9,0|7zut40,19,4,1|88ljnz,19,4,1|88ljo0,13,9,0|fodfrz,13,9,0|fodfs0,3,4,0|qntgzz,3,4,0|qnth00,13,9,0|NaN,13,9,0","Africa/Kampala|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Khartoum|,0,22,0|-kcrsox,0,22,0|-kcrsow,13,9,0|662fz,13,9,0|662g0,19,4,1|er8zz,19,4,1|er900,13,9,0|ow53z,13,9,0|ow540,19,4,1|xj6bz,19,4,1|xj6c0,13,9,0|17px3z,13,9,0|17px40,19,4,1|1gcybz,19,4,1|1gcyc0,13,9,0|1qfzrz,13,9,0|1qfzs0,19,4,1|1z4vnz,19,4,1|1z4vo0,13,9,0|2962fz,13,9,0|2962g0,19,4,1|2hwszz,19,4,1|2hwt00,13,9,0|2rw53z,13,9,0|2rw540,19,4,1|30oqbz,19,4,1|30oqc0,13,9,0|3am7rz,13,9,0|3am7s0,19,4,1|3jiibz,19,4,1|3jiic0,13,9,0|3tcafz,13,9,0|3tcag0,19,4,1|42afnz,19,4,1|42afo0,13,9,0|4cfbrz,13,9,0|4cfbs0,19,4,1|4l2czz,19,4,1|4l2d00,13,9,0|4v5efz,13,9,0|4v5eg0,19,4,1|53uabz,19,4,1|53uac0,13,9,0|5dvh3z,13,9,0|5dvh40,19,4,1|5mo2bz,19,4,1|5mo2c0,13,9,0|5wljrz,13,9,0|5wljs0,19,4,1|65fznz,19,4,1|65fzo0,13,9,0|6fbmfz,13,9,0|6fbmg0,19,4,1|6o7wzz,19,4,1|6o7x00,13,9,0|6y1p3z,13,9,0|6y1p40,19,4,1|76zubz,19,4,1|76zuc0,13,9,0|7h4qfz,13,9,0|7h4qg0,19,4,1|7ptmbz,19,4,1|7ptmc0,13,9,0|7zut3z,13,9,0|7zut40,19,4,1|88ljnz,19,4,1|88ljo0,13,9,0|fodfrz,13,9,0|fodfs0,3,4,0|oypgzz,3,4,0|oyph00,13,9,0|NaN,13,9,0","Africa/Kigali|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Kinshasa|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Lagos|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Libreville|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Lome|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Luanda|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Lubumbashi|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Lusaka|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Malabo|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Maputo|,0,14,0|-yvtfd9,0,14,0|-yvtfd8,13,9,0|NaN,13,9,0","Africa/Maseru|,0,19,0|-14nj6ip,0,19,0|-14nj6io,18,20,0|-yvtdi1,18,20,0|-yvtdi0,18,9,0|-e8lpc1,18,9,0|-e8lpc0,18,4,1|-dz8qs1,18,4,1|-dz8qs0,18,9,0|-dpvmo1,18,9,0|-dpvmo0,18,4,1|-dgio41,18,4,1|-dgio40,18,9,0|NaN,18,9,0","Africa/Mbabane|,0,19,0|-14nj6ip,0,19,0|-14nj6io,18,20,0|-yvtdi1,18,20,0|-yvtdi0,18,9,0|-e8lpc1,18,9,0|-e8lpc0,18,4,1|-dz8qs1,18,4,1|-dz8qs0,18,9,0|-dpvmo1,18,9,0|-dpvmo0,18,4,1|-dgio41,18,4,1|-dgio40,18,9,0|NaN,18,9,0","Africa/Mogadishu|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Monrovia|,0,23,0|-19xcbc5,0,23,0|-19xcbc4,20,23,0|-qj6zc5,20,23,0|-qj6zc4,20,24,0|11v0q5,20,24,0|11v0q6,1,1,0|NaN,1,1,0","Africa/Nairobi|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Africa/Ndjamena|,0,25,0|-u9rk4d,0,25,0|-u9rk4c,11,8,0|53sl7z,11,8,0|53sl80,21,9,1|5bavrz,21,9,1|5bavs0,11,8,0|NaN,11,8,0","Africa/Niamey|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Nouakchott|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Ouagadougou|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Africa/Porto-Novo|,0,10,0|-xnxnao,0,10,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,10,0|-t85smo,0,10,0|-t85smn,10,11,0|-q9qc21,10,11,0|-q9qc20,11,8,0|NaN,11,8,0","Africa/Sao_Tome|,0,26,0|-18vsjwx,0,26,0|-18vsjww,0,27,0|-u9rhc1,0,27,0|-u9rhc0,1,1,0|p1uqrz,1,1,0|p1uqs0,11,8,0|pkmo3z,11,8,0|pkmo40,1,1,0|NaN,1,1,0","Africa/Tripoli|,0,28,0|-q3gfrx,0,28,0|-q3gfrw,8,8,0|-9ia581,8,8,0|-9ia580,9,9,1|-9e82w1,9,9,1|-9e82w0,8,8,0|-8gxp81,8,8,0|-8gxp80,9,9,1|-8cmdk1,9,9,1|-8cmdk0,8,8,0|-7fuo41,8,8,0|-7fuo40,9,9,1|-7b2iw1,9,9,1|-7b2iw0,8,8,0|-5qotg1,8,8,0|-5qotg0,14,9,0|69gifz,14,9,0|69gig0,8,8,0|6e397z,8,8,0|6e3980,9,9,1|6ni2fz,9,9,1|6ni2g0,8,8,0|6wv6jz,8,8,0|6wv6k0,9,9,1|769zrz,9,9,1|769zs0,8,8,0|7foyjz,8,8,0|7foyk0,9,9,1|7p3rrz,9,9,1|7p3rs0,8,8,0|7yq57z,8,8,0|7yq580,9,9,1|87vp3z,9,9,1|87vp40,8,8,0|8hed7z,8,8,0|8hed80,9,9,1|8qrbrz,9,9,1|8qrbs0,8,8,0|900qjz,8,8,0|900qk0,9,9,1|99fjrz,9,9,1|99fjs0,8,8,0|9iuijz,8,8,0|9iuik0,9,9,1|9s9brz,9,9,1|9s9bs0,8,8,0|a1mfvz,8,8,0|a1mfw0,9,9,1|ab193z,9,9,1|ab1940,8,8,0|am3h7z,8,8,0|am3h80,14,9,0|dyil3z,14,9,0|dyil40,8,8,0|e833vz,8,8,0|e833w0,9,9,1|ehhx3z,9,9,1|ehhx40,14,9,0|md8vzz,14,9,0|md8w00,8,8,0|mkeanz,8,8,0|mkeao0,9,9,1|mv76nz,9,9,1|mv76o0,14,9,0|NaN,14,9,0","Africa/Tunis|,0,29,0|-1a9dr7x,0,29,0|-1a9dr7w,5,7,0|-uozn3m,5,7,0|-uozn3l,8,8,0|-g12881,8,8,0|-g12880,9,9,1|-fpwdk1,9,9,1|-fpwdk0,8,8,0|-fkt1k1,8,8,0|-fkt1k0,9,9,1|-eqk5k1,9,9,1|-eqk5k0,8,8,0|-eimw41,8,8,0|-eimw40,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dxuo01,9,9,1|-dxuo00,8,8,0|-dxfrw1,8,8,0|-dxfrw0,9,9,1|-dp3uo1,9,9,1|-dp3uo0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d62tk1,9,9,1|-d62tk0,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cofmw1,9,9,1|-cofmw0,8,8,0|3tnh7z,8,8,0|3tnh80,9,9,1|417p7z,9,9,1|417p80,8,8,0|4ch97z,8,8,0|4ch980,9,9,1|4kcl7z,9,9,1|4kcl80,8,8,0|9lzh7z,8,8,0|9lzh80,9,9,1|9ryajz,9,9,1|9ryak0,8,8,0|a1bbvz,8,8,0|a1bbw0,9,9,1|aaod7z,9,9,1|aaod80,8,8,0|alxx7z,8,8,0|alxx80,9,9,1|atrejz,9,9,1|atrek0,8,8,0|ifs7vz,8,8,0|ifs7w0,9,9,1|inlrzz,9,9,1|inls00,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|NaN,8,8,0","Africa/Windhoek|,0,30,0|-14nj4i1,0,30,0|-14nj4i0,22,20,0|-yvtdi1,22,20,0|-yvtdi0,18,9,0|-e8lpc1,18,9,0|-e8lpc0,18,4,1|-dz8qs1,18,4,1|-dz8qs0,18,9,0|ajtx3z,18,9,0|ajtx40,13,9,0|cmzh3z,13,9,0|cmzh40,11,8,1|cvkyrz,11,8,1|cvkys0,13,9,0|d6drzz,13,9,0|d6ds00,11,8,1|deb1fz,11,8,1|deb1g0,13,9,0|dpgtbz,13,9,0|dpgtc0,11,8,1|dx143z,11,8,1|dx1440,13,9,0|e86vzz,13,9,0|e86w00,11,8,1|eg45fz,11,8,1|eg45g0,13,9,0|eqwynz,13,9,0|eqwyo0,11,8,1|eyu83z,11,8,1|eyu840,13,9,0|f9n1bz,13,9,0|f9n1c0,11,8,1|fhkarz,11,8,1|fhkas0,13,9,0|fsd3zz,13,9,0|fsd400,11,8,1|g0adfz,11,8,1|g0adg0,13,9,0|gb36nz,13,9,0|gb36o0,11,8,1|gj0g3z,11,8,1|gj0g40,13,9,0|gu67zz,13,9,0|gu6800,11,8,1|h1qirz,11,8,1|h1qis0,13,9,0|hcwanz,13,9,0|hcwao0,11,8,1|hktk3z,11,8,1|hktk40,13,9,0|hvmdbz,13,9,0|hvmdc0,11,8,1|i3jmrz,11,8,1|i3jms0,13,9,0|iecfzz,13,9,0|iecg00,11,8,1|im9pfz,11,8,1|im9pg0,13,9,0|ix2inz,13,9,0|ix2io0,11,8,1|j4zs3z,11,8,1|j4zs40,13,9,0|jfslbz,13,9,0|jfslc0,11,8,1|jnpurz,11,8,1|jnpus0,13,9,0|jyvmnz,13,9,0|jyvmo0,11,8,1|k6sw3z,11,8,1|k6sw40,13,9,0|khlpbz,13,9,0|khlpc0,11,8,1|kpiyrz,11,8,1|kpiys0,13,9,0|l0brzz,13,9,0|l0bs00,11,8,1|l891fz,11,8,1|l891g0,13,9,0|lj1unz,13,9,0|lj1uo0,11,8,1|lqz43z,11,8,1|lqz440,13,9,0|m1rxbz,13,9,0|m1rxc0,11,8,1|m9p6rz,11,8,1|m9p6s0,13,9,0|mkuynz,13,9,0|mkuyo0,11,8,1|msf9fz,11,8,1|msf9g0,13,9,0|n3l1bz,13,9,0|n3l1c0,11,8,1|nbiarz,11,8,1|nbias0,13,9,0|nmb3zz,13,9,0|nmb400,11,8,1|nu8dfz,11,8,1|nu8dg0,13,9,0|o516nz,13,9,0|o516o0,11,8,1|ocyg3z,11,8,1|ocyg40,13,9,0|onr9bz,13,9,0|onr9c0,11,8,1|ovoirz,11,8,1|ovois0,13,9,0|NaN,13,9,0","America/Adak|,0,31,0|-1hc7qk0,0,31,0|-1hc7qjz,0,32,0|-1078omb,0,32,0|-1078oma,23,33,0|-ek1nw1,23,33,0|-ek1nw0,24,34,1|-cq2tg1,24,34,1|-cq2tg0,25,34,1|-cnomo1,25,34,1|-cnomo0,23,33,0|-1fq441,23,33,0|-1fq440,26,33,0|-cs3w1,26,33,0|-cs3w0,27,34,1|-3f5c1,27,34,1|-3f5c0,26,33,0|5xyrz,26,33,0|5xys0,27,34,1|faxbz,27,34,1|faxc0,26,33,0|oo1fz,26,33,0|oo1g0,27,34,1|ydynz,27,34,1|ydyo0,26,33,0|17r2rz,26,33,0|17r2s0,27,34,1|1h41bz,27,34,1|1h41c0,26,33,0|1qh5fz,26,33,0|1qh5g0,27,34,1|1zu3zz,27,34,1|1zu400,26,33,0|23ftfz,26,33,0|23ftg0,27,34,1|2ik6nz,27,34,1|2ik6o0,26,33,0|2oomrz,26,33,0|2ooms0,27,34,1|31a9bz,27,34,1|31a9c0,26,33,0|3andfz,26,33,0|3andg0,27,34,1|3kdanz,27,34,1|3kdao0,26,33,0|3tdg3z,26,33,0|3tdg40,27,34,1|433dbz,27,34,1|433dc0,26,33,0|4cghfz,26,33,0|4cghg0,27,34,1|4ltfzz,27,34,1|4ltg00,26,33,0|4v6k3z,26,33,0|4v6k40,27,34,1|54jinz,27,34,1|54jio0,26,33,0|5dwmrz,26,33,0|5dwms0,27,34,1|5n9lbz,27,34,1|5n9lc0,26,33,0|5wmpfz,26,33,0|5wmpg0,27,34,1|65znzz,27,34,1|65zo00,26,33,0|6fcs3z,26,33,0|6fcs40,27,34,1|6p2pbz,27,34,1|6p2pc0,26,33,0|6y2urz,26,33,0|6y2us0,27,34,1|77srzz,27,34,1|77ss00,28,34,0|79e13z,28,34,0|79e140,29,34,0|7h5tbz,29,34,0|7h5tc0,30,35,1|7qirvz,30,35,1|7qirw0,29,34,0|7zvvzz,29,34,0|7zvw00,30,35,1|898ujz,30,35,1|898uk0,29,34,0|8ilynz,29,34,0|8ilyo0,30,35,1|8ryx7z,30,35,1|8ryx80,29,34,0|9095bz,29,34,0|9095c0,30,35,1|9aozvz,30,35,1|9aozw0,29,34,0|9iz7zz,29,34,0|9iz800,30,35,1|9ts17z,30,35,1|9ts180,29,34,0|a1panz,29,34,0|a1pao0,30,35,1|aci3vz,30,35,1|aci3w0,29,34,0|akfdbz,29,34,0|akfdc0,30,35,1|av86jz,30,35,1|av86k0,29,34,0|b3ienz,29,34,0|b3ieo0,30,35,1|bdy97z,30,35,1|bdy980,29,34,0|bm8hbz,29,34,0|bm8hc0,30,35,1|bwobvz,30,35,1|bwobw0,29,34,0|c4yjzz,29,34,0|c4yk00,30,35,1|cfrd7z,30,35,1|cfrd80,29,34,0|cnomnz,29,34,0|cnomo0,30,35,1|cyhfvz,30,35,1|cyhfw0,29,34,0|d6epbz,29,34,0|d6epc0,30,35,1|dh7ijz,30,35,1|dh7ik0,29,34,0|dphqnz,29,34,0|dphqo0,30,35,1|dzxl7z,30,35,1|dzxl80,29,34,0|e87tbz,29,34,0|e87tc0,30,35,1|einnvz,30,35,1|einnw0,29,34,0|eqxvzz,29,34,0|eqxw00,30,35,1|f1dqjz,30,35,1|f1dqk0,29,34,0|f9nynz,29,34,0|f9nyo0,30,35,1|fkgrvz,30,35,1|fkgrw0,29,34,0|fse1bz,29,34,0|fse1c0,30,35,1|g36ujz,30,35,1|g36uk0,29,34,0|gb43zz,29,34,0|gb4400,30,35,1|glwx7z,30,35,1|glwx80,29,34,0|gu75bz,29,34,0|gu75c0,30,35,1|h4mzvz,30,35,1|h4mzw0,29,34,0|hcx7zz,29,34,0|hcx800,30,35,1|hnd2jz,30,35,1|hnd2k0,29,34,0|hvnanz,29,34,0|hvnao0,30,35,1|i6g3vz,30,35,1|i6g3w0,29,34,0|ieddbz,29,34,0|ieddc0,30,35,1|ip66jz,30,35,1|ip66k0,29,34,0|ix3fzz,29,34,0|ix3g00,30,35,1|j7w97z,30,35,1|j7w980,29,34,0|jeqmnz,29,34,0|jeqmo0,30,35,1|jqzajz,30,35,1|jqzak0,29,34,0|jxgpbz,29,34,0|jxgpc0,30,35,1|k9pd7z,30,35,1|k9pd80,29,34,0|kg6rzz,29,34,0|kg6s00,30,35,1|ksffvz,30,35,1|ksffw0,29,34,0|kz9tbz,29,34,0|kz9tc0,30,35,1|lbih7z,30,35,1|lbih80,29,34,0|lhzvzz,29,34,0|lhzw00,30,35,1|lu8jvz,30,35,1|lu8jw0,29,34,0|m0pynz,29,34,0|m0pyo0,30,35,1|mcymjz,30,35,1|mcymk0,29,34,0|mjg1bz,29,34,0|mjg1c0,30,35,1|mvop7z,30,35,1|mvop80,29,34,0|n263zz,29,34,0|n26400,30,35,1|neervz,30,35,1|neerw0,29,34,0|nkw6nz,29,34,0|nkw6o0,30,35,1|nx4ujz,30,35,1|nx4uk0,29,34,0|o3z7zz,29,34,0|o3z800,30,35,1|og7vvz,30,35,1|og7vw0,29,34,0|ompanz,29,34,0|ompao0,30,35,1|oyxyjz,30,35,1|oyxyk0,29,34,0|p5fdbz,29,34,0|p5fdc0,30,35,1|pho17z,30,35,1|pho180,29,34,0|po5fzz,29,34,0|po5g00,30,35,1|q0e3vz,30,35,1|q0e3w0,29,34,0|q6vinz,29,34,0|q6vio0,30,35,1|qj46jz,30,35,1|qj46k0,29,34,0|qpyjzz,29,34,0|qpyk00,30,35,1|r277vz,30,35,1|r277w0,29,34,0|r8omnz,29,34,0|r8omo0,30,35,1|rkxajz,30,35,1|rkxak0,29,34,0|rrepbz,29,34,0|rrepc0,30,35,1|s3nd7z,30,35,1|s3nd80,29,34,0|sa4rzz,29,34,0|sa4s00,30,35,1|smdfvz,30,35,1|smdfw0,29,34,0|ssuunz,29,34,0|ssuuo0,30,35,1|t53ijz,30,35,1|t53ik0,29,34,0|tbkxbz,29,34,0|tbkxc0,30,35,1|tntl7z,30,35,1|tntl80,29,34,0|tunynz,29,34,0|tunyo0,30,35,1|u6wmjz,30,35,1|u6wmk0,29,34,0|ude1bz,29,34,0|ude1c0,30,35,1|upmp7z,30,35,1|upmp80,29,34,0|uw43zz,29,34,0|uw4400,30,35,1|v8crvz,30,35,1|v8crw0,29,34,0|veu6nz,29,34,0|veu6o0,30,35,1|vr2ujz,30,35,1|vr2uk0,29,34,0|vxk9bz,29,34,0|vxk9c0,30,35,1|w9sx7z,30,35,1|w9sx80,29,34,0|wgnanz,29,34,0|wgnao0,30,35,1|wsvyjz,30,35,1|wsvyk0,29,34,0|wzddbz,29,34,0|wzddc0,30,35,1|xbm17z,30,35,1|xbm180,29,34,0|xi3fzz,29,34,0|xi3g00,30,35,1|xuc3vz,30,35,1|xuc3w0,29,34,0|y0tinz,29,34,0|y0tio0,30,35,1|yd26jz,30,35,1|yd26k0,29,34,0|yjjlbz,29,34,0|yjjlc0,30,35,1|yvs97z,30,35,1|yvs980,29,34,0|z29nzz,29,34,0|z29o00,30,35,1|zeibvz,30,35,1|zeibw0,29,34,0|zlcpbz,29,34,0|zlcpc0,30,35,1|zxld7z,30,35,1|zxld80,29,34,0|1042rzz,29,34,0|1042s00,30,35,1|10gbfvz,30,35,1|10gbfw0,29,34,0|10msunz,29,34,0|10msuo0,30,35,1|10z1ijz,30,35,1|10z1ik0,29,34,0|115ixbz,29,34,0|115ixc0,30,35,1|11hrl7z,30,35,1|11hrl80,29,34,0|11o8zzz,29,34,0|11o9000,30,35,1|120hnvz,30,35,1|120hnw0,29,34,0|126z2nz,29,34,0|126z2o0,30,35,1|12j7qjz,30,35,1|12j7qk0,29,34,0|12q23zz,29,34,0|12q2400,30,35,1|132arvz,30,35,1|132arw0,29,34,0|138s6nz,29,34,0|138s6o0,30,35,1|13l0ujz,30,35,1|13l0uk0,29,34,0|13ri9bz,29,34,0|13ri9c0,30,35,1|143qx7z,30,35,1|143qx80,29,34,0|14a8bzz,29,34,0|14a8c00,30,35,1|14mgzvz,30,35,1|14mgzw0,29,34,0|14syenz,29,34,0|14syeo0,30,35,1|15572jz,30,35,1|15572k0,29,34,0|15c1fzz,29,34,0|15c1g00,30,35,1|15oa3vz,30,35,1|15oa3w0,29,34,0|15urinz,29,34,0|15urio0,30,35,1|16706jz,30,35,1|16706k0,29,34,0|16dhlbz,29,34,0|16dhlc0,30,35,1|16pq97z,30,35,1|16pq980,29,34,0|16w7nzz,29,34,0|16w7o00,30,35,1|178gbvz,30,35,1|178gbw0,29,34,0|17exqnz,29,34,0|17exqo0,30,35,1|17r6ejz,30,35,1|17r6ek0,29,34,0|17xntbz,29,34,0|17xntc0,30,35,1|189wh7z,30,35,1|189wh80,29,34,0|18gqunz,29,34,0|18gquo0,30,35,1|18szijz,30,35,1|18szik0,29,34,0|18zgxbz,29,34,0|18zgxc0,30,35,1|19bpl7z,30,35,1|19bpl80,29,34,0|19i6zzz,29,34,0|19i7000,30,35,1|19ufnvz,30,35,1|19ufnw0,29,34,0|1a0x2nz,29,34,0|1a0x2o0,30,35,1|1ad5qjz,30,35,1|1ad5qk0,29,34,0|1ajn5bz,29,34,0|1ajn5c0,30,35,1|1avvt7z,30,35,1|1avvt80,29,34,0|1b2q6nz,29,34,0|1b2q6o0,30,35,1|1beyujz,30,35,1|1beyuk0,29,34,0|1blg9bz,29,34,0|1blg9c0,30,35,1|1bxox7z,30,35,1|1bxox80,29,34,0|1c46bzz,29,34,0|1c46c00,30,35,1|1cgezvz,30,35,1|1cgezw0,29,34,0|1cmwenz,29,34,0|1cmweo0,30,35,1|1cz52jz,30,35,1|1cz52k0,29,34,0|1d5mhbz,29,34,0|1d5mhc0,30,35,1|1dhv57z,30,35,1|1dhv580,29,34,0|1docjzz,29,34,0|1dock00,30,35,1|1e0l7vz,30,35,1|1e0l7w0,29,34,0|1e7flbz,29,34,0|1e7flc0,30,35,1|1ejo97z,30,35,1|1ejo980,29,34,0|1eq5nzz,29,34,0|1eq5o00,30,35,1|1f2ebvz,30,35,1|1f2ebw0,29,34,0|1f8vqnz,29,34,0|1f8vqo0,30,35,1|1fl4ejz,30,35,1|1fl4ek0,29,34,0|1frltbz,29,34,0|1frltc0,30,35,1|1g3uh7z,30,35,1|1g3uh80,29,34,0|1gabvzz,29,34,0|1gabw00,30,35,1|1gmkjvz,30,35,1|1gmkjw0,29,34,0|1gt1ynz,29,34,0|1gt1yo0,30,35,1|1h5amjz,30,35,1|1h5amk0,29,34,0|1hc4zzz,29,34,0|1hc5000,30,35,1|1hodnvz,30,35,1|1hodnw0,29,34,0|1huv2nz,29,34,0|1huv2o0,30,35,1|1i73qjz,30,35,1|1i73qk0,29,34,0|1idl5bz,29,34,0|1idl5c0,30,35,1|1iptt7z,30,35,1|1iptt80,29,34,0|1iwb7zz,29,34,0|1iwb800,30,35,1|1j8jvvz,30,35,1|1j8jvw0,29,34,0|1jf1anz,29,34,0|1jf1ao0,30,35,1|1jr9yjz,30,35,1|1jr9yk0,29,34,0|1jy4bzz,29,34,0|1jy4c00,30,35,1|1kaczvz,30,35,1|1kaczw0,29,34,0|1kguenz,29,34,0|1kgueo0,30,35,1|1kt32jz,30,35,1|1kt32k0,29,34,0|1kzkhbz,29,34,0|1kzkhc0,30,35,1|1lbt57z,30,35,1|1lbt580,29,34,0|1liajzz,29,34,0|1liak00,30,35,1|1luj7vz,30,35,1|1luj7w0,29,34,0|1m10mnz,29,34,0|1m10mo0,30,35,1|1md9ajz,30,35,1|1md9ak0,29,34,0|1mjqpbz,29,34,0|1mjqpc0,30,35,1|1mvzd7z,30,35,1|1mvzd80,29,34,0|1n2tqnz,29,34,0|1n2tqo0,30,35,1|1nf2ejz,30,35,1|1nf2ek0,29,34,0|1nljtbz,29,34,0|1nljtc0,30,35,1|1nxsh7z,30,35,1|1nxsh80,29,34,0|1o49vzz,29,34,0|1o49w00,30,35,1|1ogijvz,30,35,1|1ogijw0,29,34,0|1omzynz,29,34,0|1omzyo0,30,35,1|1oz8mjz,30,35,1|1oz8mk0,29,34,0|1p5q1bz,29,34,0|1p5q1c0,30,35,1|1phyp7z,30,35,1|1phyp80,29,34,0|1pot2nz,29,34,0|1pot2o0,30,35,1|1q11qjz,30,35,1|1q11qk0,29,34,0|1q7j5bz,29,34,0|1q7j5c0,30,35,1|1qjrt7z,30,35,1|1qjrt80,29,34,0|1qq97zz,29,34,0|1qq9800,30,35,1|1r2hvvz,30,35,1|1r2hvw0,29,34,0|1r8zanz,29,34,0|1r8zao0,30,35,1|1rl7yjz,30,35,1|1rl7yk0,29,34,0|1rrpdbz,29,34,0|1rrpdc0,30,35,1|1s3y17z,30,35,1|1s3y180,29,34,0|1saffzz,29,34,0|1safg00,30,35,1|1smo3vz,30,35,1|1smo3w0,29,34,0|1stihbz,29,34,0|1stihc0,30,35,1|1t5r57z,30,35,1|1t5r580,29,34,0|1tc8jzz,29,34,0|1tc8k00,30,35,1|1toh7vz,30,35,1|1toh7w0,29,34,0|1tuymnz,29,34,0|1tuymo0,30,35,1|1u77ajz,30,35,1|1u77ak0,29,34,0|1udopbz,29,34,0|1udopc0,30,35,1|1upxd7z,30,35,1|1upxd80,29,34,0|1uwerzz,29,34,0|1uwes00,30,35,1|1v8nfvz,30,35,1|1v8nfw0,29,34,0|1vf4unz,29,34,0|1vf4uo0,30,35,1|1vrdijz,30,35,1|1vrdik0,29,34,0|NaN,29,34,0","America/Anchorage|,0,36,0|-1hc7qk0,0,36,0|-1hc7qjz,0,37,0|-1078tkp,0,37,0|-1078tko,31,34,0|-ek1qo1,31,34,0|-ek1qo0,32,35,1|-cq2tg1,32,35,1|-cq2tg0,33,35,1|-cnopg1,33,35,1|-cnopg0,31,34,0|-1fq6w1,31,34,0|-1fq6w0,28,34,0|-cs6o1,28,34,0|-cs6o0,34,35,1|-3f841,34,35,1|-3f840,28,34,0|5xvzz,28,34,0|5xw00,34,35,1|faujz,34,35,1|fauk0,28,34,0|onynz,28,34,0|onyo0,34,35,1|ydvvz,34,35,1|ydvw0,28,34,0|17qzzz,28,34,0|17r000,34,35,1|1h3yjz,34,35,1|1h3yk0,28,34,0|1qh2nz,28,34,0|1qh2o0,34,35,1|1zu17z,34,35,1|1zu180,28,34,0|23fqnz,28,34,0|23fqo0,34,35,1|2ik3vz,34,35,1|2ik3w0,28,34,0|2oojzz,28,34,0|2ook00,34,35,1|31a6jz,34,35,1|31a6k0,28,34,0|3ananz,28,34,0|3anao0,34,35,1|3kd7vz,34,35,1|3kd7w0,28,34,0|3tddbz,28,34,0|3tddc0,34,35,1|433ajz,34,35,1|433ak0,28,34,0|4cgenz,28,34,0|4cgeo0,34,35,1|4ltd7z,34,35,1|4ltd80,28,34,0|4v6hbz,28,34,0|4v6hc0,34,35,1|54jfvz,34,35,1|54jfw0,28,34,0|5dwjzz,28,34,0|5dwk00,34,35,1|5n9ijz,34,35,1|5n9ik0,28,34,0|5wmmnz,28,34,0|5wmmo0,34,35,1|65zl7z,34,35,1|65zl80,28,34,0|6fcpbz,28,34,0|6fcpc0,34,35,1|6p2mjz,34,35,1|6p2mk0,28,34,0|6y2rzz,28,34,0|6y2s00,34,35,1|77sp7z,34,35,1|77sp80,35,35,0|79dybz,35,35,0|79dyc0,36,35,0|7h5qjz,36,35,0|7h5qk0,37,38,1|7qip3z,37,38,1|7qip40,36,35,0|7zvt7z,36,35,0|7zvt80,37,38,1|898rrz,37,38,1|898rs0,36,35,0|8ilvvz,36,35,0|8ilvw0,37,38,1|8ryufz,37,38,1|8ryug0,36,35,0|9092jz,36,35,0|9092k0,37,38,1|9aox3z,37,38,1|9aox40,36,35,0|9iz57z,36,35,0|9iz580,37,38,1|9tryfz,37,38,1|9tryg0,36,35,0|a1p7vz,36,35,0|a1p7w0,37,38,1|aci13z,37,38,1|aci140,36,35,0|akfajz,36,35,0|akfak0,37,38,1|av83rz,37,38,1|av83s0,36,35,0|b3ibvz,36,35,0|b3ibw0,37,38,1|bdy6fz,37,38,1|bdy6g0,36,35,0|bm8ejz,36,35,0|bm8ek0,37,38,1|bwo93z,37,38,1|bwo940,36,35,0|c4yh7z,36,35,0|c4yh80,37,38,1|cfrafz,37,38,1|cfrag0,36,35,0|cnojvz,36,35,0|cnojw0,37,38,1|cyhd3z,37,38,1|cyhd40,36,35,0|d6emjz,36,35,0|d6emk0,37,38,1|dh7frz,37,38,1|dh7fs0,36,35,0|dphnvz,36,35,0|dphnw0,37,38,1|dzxifz,37,38,1|dzxig0,36,35,0|e87qjz,36,35,0|e87qk0,37,38,1|einl3z,37,38,1|einl40,36,35,0|eqxt7z,36,35,0|eqxt80,37,38,1|f1dnrz,37,38,1|f1dns0,36,35,0|f9nvvz,36,35,0|f9nvw0,37,38,1|fkgp3z,37,38,1|fkgp40,36,35,0|fsdyjz,36,35,0|fsdyk0,37,38,1|g36rrz,37,38,1|g36rs0,36,35,0|gb417z,36,35,0|gb4180,37,38,1|glwufz,37,38,1|glwug0,36,35,0|gu72jz,36,35,0|gu72k0,37,38,1|h4mx3z,37,38,1|h4mx40,36,35,0|hcx57z,36,35,0|hcx580,37,38,1|hnczrz,37,38,1|hnczs0,36,35,0|hvn7vz,36,35,0|hvn7w0,37,38,1|i6g13z,37,38,1|i6g140,36,35,0|iedajz,36,35,0|iedak0,37,38,1|ip63rz,37,38,1|ip63s0,36,35,0|ix3d7z,36,35,0|ix3d80,37,38,1|j7w6fz,37,38,1|j7w6g0,36,35,0|jeqjvz,36,35,0|jeqjw0,37,38,1|jqz7rz,37,38,1|jqz7s0,36,35,0|jxgmjz,36,35,0|jxgmk0,37,38,1|k9pafz,37,38,1|k9pag0,36,35,0|kg6p7z,36,35,0|kg6p80,37,38,1|ksfd3z,37,38,1|ksfd40,36,35,0|kz9qjz,36,35,0|kz9qk0,37,38,1|lbiefz,37,38,1|lbieg0,36,35,0|lhzt7z,36,35,0|lhzt80,37,38,1|lu8h3z,37,38,1|lu8h40,36,35,0|m0pvvz,36,35,0|m0pvw0,37,38,1|mcyjrz,37,38,1|mcyjs0,36,35,0|mjfyjz,36,35,0|mjfyk0,37,38,1|mvomfz,37,38,1|mvomg0,36,35,0|n2617z,36,35,0|n26180,37,38,1|neep3z,37,38,1|neep40,36,35,0|nkw3vz,36,35,0|nkw3w0,37,38,1|nx4rrz,37,38,1|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/Anguilla|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Antigua|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Araguaina|,0,42,0|-t85j2p,0,42,0|-t85j2o,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|dggyzz,38,41,0|dggz00,39,43,1|dml9jz,39,43,1|dml9k0,38,41,0|dyu2zz,38,41,0|dyu300,39,43,1|e5oavz,39,43,1|e5oaw0,38,41,0|ehm0bz,38,41,0|ehm0c0,39,43,1|ep4avz,39,43,1|ep4aw0,38,41,0|f0n6zz,38,41,0|f0n700,39,43,1|f7hevz,39,43,1|f7hew0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g8xk7z,39,43,1|g8xk80,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|h4zcbz,38,41,0|h4zcc0,39,43,1|hadpjz,39,43,1|hadpk0,38,41,0|mc82zz,38,41,0|mc8300,39,43,1|micdjz,39,43,1|micdk0,38,41,0|NaN,38,41,0","America/Argentina/Buenos_Aires|,0,44,0|-138aaid,0,44,0|-138aaic,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|k8ytnz,38,41,0|k8yto0,39,43,1|kgiyvz,39,43,1|kgiyw0,38,41,0|NaN,38,41,0","America/Argentina/Catamarca|,0,46,0|-138a95h,0,46,0|-138a95g,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,41,40,0|bdkr3z,41,40,0|bdkr40,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hym0bz,38,41,0|hym0c0,41,40,0|hzl9rz,41,40,0|hzl9s0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/Cordoba|,0,45,0|-138a9g1,0,45,0|-138a9g0,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,41,40,0|bdkr3z,41,40,0|bdkr40,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|k8ytnz,38,41,0|k8yto0,39,43,1|kgiyvz,39,43,1|kgiyw0,38,41,0|NaN,38,41,0","America/Argentina/Jujuy|,0,47,0|-138a98p,0,47,0|-138a98o,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,41,40,0|av7n3z,41,40,0|av7n40,38,41,1|b2etnz,38,41,1|b2eto0,41,40,0|bcutrz,41,40,0|bcuts0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/La_Rioja|,0,48,0|-138a8yd,0,48,0|-138a8yc,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1l47z,39,43,1|b1l480,41,40,0|b51cfz,41,40,0|b51cg0,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hym0bz,38,41,0|hym0c0,41,40,0|hzl9rz,41,40,0|hzl9s0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/Mendoza|,0,49,0|-138a8l9,0,49,0|-138a8l8,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,41,40,0|aujkfz,41,40,0|aujkg0,38,41,1|b1l6zz,38,41,1|b1l700,41,40,0|bdbhrz,41,40,0|bdbhs0,38,41,1|bkeyzz,38,41,1|bkez00,41,40,0|bwatrz,41,40,0|bwats0,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hy5cbz,38,41,0|hy5cc0,41,40,0|i4mr3z,41,40,0|i4mr40,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/Rio_Gallegos|,0,50,0|-138a8il,0,50,0|-138a8ik,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hym0bz,38,41,0|hym0c0,41,40,0|hzl9rz,41,40,0|hzl9s0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/Salta|,0,51,0|-138a97x,0,51,0|-138a97w,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,41,40,0|bdkr3z,41,40,0|bdkr40,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/San_Juan|,0,52,0|-138a8n9,0,52,0|-138a8n8,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1l47z,39,43,1|b1l480,41,40,0|b51cfz,41,40,0|b51cg0,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hyk5nz,38,41,0|hyk5o0,41,40,0|i1e33z,41,40,0|i1e340,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Argentina/San_Luis|,0,53,0|-138a91p,0,53,0|-138a91o,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ajh9jz,39,43,1|ajh9k0,41,40,0|aujkfz,41,40,0|aujkg0,38,41,1|b1l6zz,38,41,1|b1l700,41,40,0|b6bn3z,41,40,0|b6bn40,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hyk5nz,38,41,0|hyk5o0,41,40,0|i1e33z,41,40,0|i1e340,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|juz1jz,39,43,1|juz1k0,38,41,1|jxg0bz,38,41,1|jxg0c0,41,40,0|k8lxrz,41,40,0|k8lxs0,38,41,1|kg62zz,38,41,1|kg6300,41,40,0|krc0fz,41,40,0|krc0g0,38,41,0|NaN,38,41,0","America/Argentina/Tucuman|,0,54,0|-138a999,0,54,0|-138a998,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,41,40,0|bdkr3z,41,40,0|bdkr40,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hym0bz,38,41,0|hym0c0,41,40,0|hz8b3z,41,40,0|hz8b40,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|k8ytnz,38,41,0|k8yto0,39,43,1|kgiyvz,39,43,1|kgiyw0,38,41,0|NaN,38,41,0","America/Argentina/Ushuaia|,0,55,0|-138a8op,0,55,0|-138a8oo,40,45,0|-px7ys1,40,45,0|-px7ys0,41,40,0|-kecq81,41,40,0|-kecq80,38,41,1|-k84qc1,38,41,1|-k84qc0,41,40,0|-jxzu81,41,40,0|-jxzu80,38,41,1|-jqwd01,38,41,1|-jqwd00,41,40,0|-jeakw1,41,40,0|-jeakw0,38,41,1|-j84fo1,38,41,1|-j84fo0,41,40,0|-ivink1,41,40,0|-ivink0,38,41,1|-ipcic1,38,41,1|-ipcic0,41,40,0|-icqq81,41,40,0|-icqq80,38,41,1|-i6kl01,38,41,1|-i6kl00,41,40,0|-htysw1,41,40,0|-htysw0,38,41,1|-hnqt01,38,41,1|-hnqt00,41,40,0|-hb50w1,41,40,0|-hb50w0,38,41,1|-h4yvo1,38,41,1|-h4yvo0,41,40,0|-gsd3k1,41,40,0|-gsd3k0,38,41,1|-gm6yc1,38,41,1|-gm6yc0,41,40,0|-g9l681,41,40,0|-g9l680,38,41,1|-g3f101,38,41,1|-g3f100,41,40,0|-fqt8w1,41,40,0|-fqt8w0,38,41,1|-fkl901,38,41,1|-fkl900,41,40,0|-feb8w1,41,40,0|-feb8w0,38,41,1|-ewd101,38,41,1|-ewd100,41,40,0|-eq30w1,41,40,0|-eq30w0,38,41,1|-dse501,38,41,1|-dse500,41,40,0|-doj681,41,40,0|-doj680,38,41,1|-cfvuc1,38,41,1|-cfvuc0,41,40,0|-c4vgw1,41,40,0|-c4vgw0,38,41,1|-39hec1,38,41,1|-39hec0,41,40,0|-35mfk1,41,40,0|-35mfk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2pxm81,41,40,0|-2pxm80,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|9veobz,38,41,0|9veoc0,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|aiyqvz,39,43,1|aiyqw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c3hxjz,39,43,1|c3hxk0,38,41,0|fj0azz,38,41,0|fj0b00,38,41,1|fqtsbz,38,41,1|fqtsc0,38,41,0|hyiazz,38,41,0|hyib00,41,40,0|hzl9rz,41,40,0|hzl9s0,38,41,0|jtudnz,38,41,0|jtudo0,39,43,1|jxsw7z,39,43,1|jxsw80,38,41,0|NaN,38,41,0","America/Aruba|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Asuncion|,0,56,0|-15r0ynl,0,56,0|-15r0ynk,42,56,0|-jy93zl,42,56,0|-jy93zk,41,40,0|1fnkfz,41,40,0|1fnkg0,38,41,0|27sgbz,38,41,0|27sgc0,41,40,0|2zzcfz,41,40,0|2zzcg0,38,41,1|37sqzz,38,41,1|37sr00,41,40,0|3it4fz,41,40,0|3it4g0,38,41,1|3qkobz,38,41,1|3qkoc0,41,40,0|41l1rz,41,40,0|41l1s0,38,41,1|49clnz,38,41,1|49clo0,41,40,0|4kcz3z,41,40,0|4kcz40,38,41,1|4tpxnz,38,41,1|4tpxo0,41,40,0|534wfz,41,40,0|534wg0,38,41,1|5cjpnz,38,41,1|5cjpo0,41,40,0|5lyofz,41,40,0|5lyog0,38,41,1|5vbmzz,38,41,1|5vbn00,41,40,0|64qlrz,41,40,0|64qls0,38,41,1|6e3kbz,38,41,1|6e3kc0,41,40,0|6nij3z,41,40,0|6nij40,38,41,1|6wvhnz,38,41,1|6wvho0,41,40,0|76agfz,41,40,0|76agg0,38,41,1|7fp9nz,38,41,1|7fp9o0,41,40,0|7p48fz,41,40,0|7p48g0,38,41,1|7yh6zz,38,41,1|7yh700,41,40,0|87w5rz,41,40,0|87w5s0,38,41,1|8h94bz,38,41,1|8h94c0,41,40,0|8qo33z,41,40,0|8qo340,38,41,1|9011nz,38,41,1|9011o0,41,40,0|99g0fz,41,40,0|99g0g0,38,41,1|9iutnz,38,41,1|9iuto0,41,40,0|9s9sfz,41,40,0|9s9sg0,38,41,1|a1mqzz,38,41,1|a1mr00,41,40,0|ac4lrz,41,40,0|ac4ls0,38,41,1|akeobz,38,41,1|akeoc0,41,40,0|attn3z,41,40,0|attn40,38,41,1|b36lnz,38,41,1|b36lo0,41,40,0|bcutrz,41,40,0|bcuts0,38,41,1|bkeyzz,38,41,1|bkez00,41,40,0|bvmr3z,41,40,0|bvmr40,38,41,1|c4qgbz,38,41,1|c4qgc0,41,40,0|ce79rz,41,40,0|ce79s0,38,41,1|clv4bz,38,41,1|clv4c0,41,40,0|cwz73z,41,40,0|cwz740,38,41,1|d4l6zz,38,41,1|d4l700,41,40,0|dfr4fz,41,40,0|dfr4g0,38,41,1|dnkizz,38,41,1|dnkj00,41,40,0|dyu5rz,41,40,0|dyu5s0,38,41,1|e61cbz,38,41,1|e61cc0,41,40,0|ehk8fz,41,40,0|ehk8g0,38,41,1|ep4dnz,38,41,1|ep4do0,41,40,0|f0ab3z,41,40,0|f0ab40,38,41,1|f87ezz,38,41,1|f87f00,41,40,0|fj0drz,41,40,0|fj0ds0,38,41,1|fqxhnz,38,41,1|fqxho0,41,40,0|g1qgfz,41,40,0|g1qgg0,38,41,1|g9nkbz,38,41,1|g9nkc0,41,40,0|gkthrz,41,40,0|gkths0,38,41,1|gu6gbz,38,41,1|gu6gc0,41,40,0|h1qr3z,41,40,0|h1qr40,38,41,1|hcwizz,38,41,1|hcwj00,41,40,0|hktsfz,41,40,0|hktsg0,38,41,1|hvmlnz,38,41,1|hvmlo0,41,40,0|i5pn3z,41,40,0|i5pn40,38,41,1|id9sbz,38,41,1|id9sc0,41,40,0|iofprz,41,40,0|iofps0,38,41,1|ivzuzz,38,41,1|ivzv00,41,40,0|j75sfz,41,40,0|j75sg0,38,41,1|jepxnz,38,41,1|jepxo0,41,40,0|jq8trz,41,40,0|jq8ts0,38,41,1|jxg0bz,38,41,1|jxg0c0,41,40,0|k8ywfz,41,40,0|k8ywg0,38,41,1|kg62zz,38,41,1|kg6300,41,40,0|kroz3z,41,40,0|kroz40,38,41,1|l0oyzz,38,41,1|l0oz00,41,40,0|l9p4fz,41,40,0|l9p4g0,38,41,1|ljf1nz,38,41,1|ljf1o0,41,40,0|lsf73z,41,40,0|lsf740,38,41,1|m254bz,38,41,1|m254c0,41,40,0|mbi8fz,41,40,0|mbi8g0,38,41,1|mk59nz,38,41,1|mk59o0,41,40,0|mu8b3z,41,40,0|mu8b40,38,41,1|n2vcbz,38,41,1|n2vcc0,41,40,0|ncydrz,41,40,0|ncyds0,38,41,1|nllezz,38,41,1|nllf00,41,40,0|nvogfz,41,40,0|nvogg0,38,41,1|o4ogbz,38,41,1|o4ogc0,41,40,0|oeej3z,41,40,0|oeej40,38,41,1|oneizz,38,41,1|onej00,41,40,0|ox4lrz,41,40,0|ox4ls0,38,41,1|p64lnz,38,41,1|p64lo0,41,40,0|pg7n3z,41,40,0|pg7n40,38,41,1|pouobz,38,41,1|pouoc0,41,40,0|pyxprz,41,40,0|pyxps0,38,41,1|q7kqzz,38,41,1|q7kr00,41,40,0|qhnsfz,41,40,0|qhnsg0,38,41,1|qqnsbz,38,41,1|qqnsc0,41,40,0|r0dv3z,41,40,0|r0dv40,38,41,1|r9duzz,38,41,1|r9dv00,41,40,0|rj3xrz,41,40,0|rj3xs0,38,41,1|rs3xnz,38,41,1|rs3xo0,41,40,0|s1u0fz,41,40,0|s1u0g0,38,41,1|sau0bz,38,41,1|sau0c0,41,40,0|skx1rz,41,40,0|skx1s0,38,41,1|stk2zz,38,41,1|stk300,41,40,0|t3n4fz,41,40,0|t3n4g0,38,41,1|tca5nz,38,41,1|tca5o0,41,40,0|tmd73z,41,40,0|tmd740,38,41,1|tvd6zz,38,41,1|tvd700,41,40,0|u539rz,41,40,0|u539s0,38,41,1|ue39nz,38,41,1|ue39o0,41,40,0|untcfz,41,40,0|untcg0,38,41,1|uwtcbz,38,41,1|uwtcc0,41,40,0|v6wdrz,41,40,0|v6wds0,38,41,1|vfjezz,38,41,1|vfjf00,41,40,0|vpmgfz,41,40,0|vpmgg0,38,41,1|vy9hnz,38,41,1|vy9ho0,41,40,0|w8cj3z,41,40,0|w8cj40,38,41,1|whcizz,38,41,1|whcj00,41,40,0|wr2lrz,41,40,0|wr2ls0,38,41,1|x02lnz,38,41,1|x02lo0,41,40,0|x9sofz,41,40,0|x9sog0,38,41,1|xisobz,38,41,1|xisoc0,41,40,0|xsir3z,41,40,0|xsir40,38,41,1|y1iqzz,38,41,1|y1ir00,41,40,0|yblsfz,41,40,0|yblsg0,38,41,1|yk8tnz,38,41,1|yk8to0,41,40,0|yubv3z,41,40,0|yubv40,38,41,1|z2ywbz,38,41,1|z2ywc0,41,40,0|zd1xrz,41,40,0|zd1xs0,38,41,1|zm1xnz,38,41,1|zm1xo0,41,40,0|zvs0fz,41,40,0|zvs0g0,38,41,1|104s0bz,38,41,1|104s0c0,41,40,0|10ei33z,41,40,0|10ei340,38,41,1|10ni2zz,38,41,1|10ni300,41,40,0|10xl4fz,41,40,0|10xl4g0,38,41,1|11685nz,38,41,1|11685o0,41,40,0|11gb73z,41,40,0|11gb740,38,41,1|11oy8bz,38,41,1|11oy8c0,41,40,0|11z19rz,41,40,0|11z19s0,38,41,1|127oazz,38,41,1|127ob00,41,40,0|12hrcfz,41,40,0|12hrcg0,38,41,1|12qrcbz,38,41,1|12qrcc0,41,40,0|130hf3z,41,40,0|130hf40,38,41,1|139hezz,38,41,1|139hf00,41,40,0|13j7hrz,41,40,0|13j7hs0,38,41,1|13s7hnz,38,41,1|13s7ho0,41,40,0|142aj3z,41,40,0|142aj40,38,41,1|14axkbz,38,41,1|14axkc0,41,40,0|14l0lrz,41,40,0|14l0ls0,38,41,1|14tnmzz,38,41,1|14tnn00,41,40,0|153qofz,41,40,0|153qog0,38,41,1|15cqobz,38,41,1|15cqoc0,41,40,0|15mgr3z,41,40,0|15mgr40,38,41,1|15vgqzz,38,41,1|15vgr00,41,40,0|1656trz,41,40,0|1656ts0,38,41,1|16e6tnz,38,41,1|16e6to0,41,40,0|16nwwfz,41,40,0|16nwwg0,38,41,1|16wwwbz,38,41,1|16wwwc0,41,40,0|176zxrz,41,40,0|176zxs0,38,41,1|17fmyzz,38,41,1|17fmz00,41,40,0|17pq0fz,41,40,0|17pq0g0,38,41,1|17yd1nz,38,41,1|17yd1o0,41,40,0|188g33z,41,40,0|188g340,38,41,1|18hg2zz,38,41,1|18hg300,41,40,0|18r65rz,41,40,0|18r65s0,38,41,1|19065nz,38,41,1|19065o0,41,40,0|199w8fz,41,40,0|199w8g0,38,41,1|19iw8bz,38,41,1|19iw8c0,41,40,0|19sz9rz,41,40,0|19sz9s0,38,41,1|1a1mazz,38,41,1|1a1mb00,41,40,0|1abpcfz,41,40,0|1abpcg0,38,41,1|1akcdnz,38,41,1|1akcdo0,41,40,0|1auff3z,41,40,0|1auff40,38,41,1|1b3fezz,38,41,1|1b3ff00,41,40,0|1bd5hrz,41,40,0|1bd5hs0,38,41,1|1bm5hnz,38,41,1|1bm5ho0,41,40,0|1bvvkfz,41,40,0|1bvvkg0,38,41,1|1c4vkbz,38,41,1|1c4vkc0,41,40,0|1celn3z,41,40,0|1celn40,38,41,1|1cnlmzz,38,41,1|1cnln00,41,40,0|1cxoofz,41,40,0|1cxoog0,38,41,1|1d6bpnz,38,41,1|1d6bpo0,41,40,0|1dger3z,41,40,0|1dger40,38,41,1|1dp1sbz,38,41,1|1dp1sc0,41,40,0|1dz4trz,41,40,0|1dz4ts0,38,41,1|1e84tnz,38,41,1|1e84to0,41,40,0|1ehuwfz,41,40,0|1ehuwg0,38,41,1|1equwbz,38,41,1|1equwc0,41,40,0|1f0kz3z,41,40,0|1f0kz40,38,41,1|1f9kyzz,38,41,1|1f9kz00,41,40,0|1fjo0fz,41,40,0|1fjo0g0,38,41,1|1fsb1nz,38,41,1|1fsb1o0,41,40,0|1g2e33z,41,40,0|1g2e340,38,41,1|1gb14bz,38,41,1|1gb14c0,41,40,0|1gl45rz,41,40,0|1gl45s0,38,41,1|1gtr6zz,38,41,1|1gtr700,41,40,0|1h3u8fz,41,40,0|1h3u8g0,38,41,1|1hcu8bz,38,41,1|1hcu8c0,41,40,0|1hmkb3z,41,40,0|1hmkb40,38,41,1|1hvkazz,38,41,1|1hvkb00,41,40,0|1i5adrz,41,40,0|1i5ads0,38,41,1|1ieadnz,38,41,1|1ieado0,41,40,0|1iodf3z,41,40,0|1iodf40,38,41,1|1ix0gbz,38,41,1|1ix0gc0,41,40,0|1j73hrz,41,40,0|1j73hs0,38,41,1|1jfqizz,38,41,1|1jfqj00,41,40,0|1jptkfz,41,40,0|1jptkg0,38,41,1|1jytkbz,38,41,1|1jytkc0,41,40,0|1k8jn3z,41,40,0|1k8jn40,38,41,1|1khjmzz,38,41,1|1khjn00,41,40,0|1kr9prz,41,40,0|1kr9ps0,38,41,1|1l09pnz,38,41,1|1l09po0,41,40,0|1l9zsfz,41,40,0|1l9zsg0,38,41,1|1lizsbz,38,41,1|1lizsc0,41,40,0|1lt2trz,41,40,0|1lt2ts0,38,41,1|1m1puzz,38,41,1|1m1pv00,41,40,0|1mbswfz,41,40,0|1mbswg0,38,41,1|1mkfxnz,38,41,1|1mkfxo0,41,40,0|1muiz3z,41,40,0|1muiz40,38,41,1|1n3iyzz,38,41,1|1n3iz00,41,40,0|1nd91rz,41,40,0|1nd91s0,38,41,1|1nm91nz,38,41,1|1nm91o0,41,40,0|1nvz4fz,41,40,0|1nvz4g0,38,41,1|1o4z4bz,38,41,1|1o4z4c0,41,40,0|1of25rz,41,40,0|1of25s0,38,41,1|1onp6zz,38,41,1|1onp700,41,40,0|1oxs8fz,41,40,0|1oxs8g0,38,41,1|1p6f9nz,38,41,1|1p6f9o0,41,40,0|1pgib3z,41,40,0|1pgib40,38,41,1|1ppiazz,38,41,1|1ppib00,41,40,0|1pz8drz,41,40,0|1pz8ds0,38,41,1|1q88dnz,38,41,1|1q88do0,41,40,0|1qhygfz,41,40,0|1qhygg0,38,41,1|1qqygbz,38,41,1|1qqygc0,41,40,0|1r0oj3z,41,40,0|1r0oj40,38,41,1|1r9oizz,38,41,1|1r9oj00,41,40,0|1rjrkfz,41,40,0|1rjrkg0,38,41,1|1rselnz,38,41,1|1rselo0,41,40,0|1s2hn3z,41,40,0|1s2hn40,38,41,1|1sb4obz,38,41,1|1sb4oc0,41,40,0|1sl7prz,41,40,0|1sl7ps0,38,41,1|1su7pnz,38,41,1|1su7po0,41,40,0|1t3xsfz,41,40,0|1t3xsg0,38,41,1|1tcxsbz,38,41,1|1tcxsc0,41,40,0|1tmnv3z,41,40,0|1tmnv40,38,41,1|1tvnuzz,38,41,1|1tvnv00,41,40,0|1u5qwfz,41,40,0|1u5qwg0,38,41,1|1uedxnz,38,41,1|1uedxo0,41,40,0|1uogz3z,41,40,0|1uogz40,38,41,1|1ux40bz,38,41,1|1ux40c0,41,40,0|1v771rz,41,40,0|1v771s0,38,41,1|1vfu2zz,38,41,1|1vfu300,41,40,0|1vpx4fz,41,40,0|1vpx4g0,38,41,1|NaN,38,41,1","America/Atikokan|,0,57,0|-15r0ult,0,57,0|-15r0uls,40,58,0|-w757vd,40,58,0|-w757vc,43,59,0|NaN,43,59,0","America/Bahia|,0,60,0|-t85kv9,0,60,0|-t85kv8,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b0yw7z,39,43,1|b0yw80,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bjc07z,39,43,1|bjc080,38,41,0|bwnpnz,38,41,0|bwnpo0,39,43,1|c1p47z,39,43,1|c1p480,38,41,0|cf0tnz,38,41,0|cf0to0,39,43,1|cli2vz,39,43,1|cli2w0,38,41,0|cxqwbz,38,41,0|cxqwc0,39,43,1|d485jz,39,43,1|d485k0,38,41,0|dggyzz,38,41,0|dggz00,39,43,1|dml9jz,39,43,1|dml9k0,38,41,0|dyu2zz,38,41,0|dyu300,39,43,1|e5oavz,39,43,1|e5oaw0,38,41,0|ehm0bz,38,41,0|ehm0c0,39,43,1|ep4avz,39,43,1|ep4aw0,38,41,0|f0n6zz,38,41,0|f0n700,39,43,1|f7hevz,39,43,1|f7hew0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g8xk7z,39,43,1|g8xk80,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|h4zcbz,38,41,0|h4zcc0,39,43,1|hadpjz,39,43,1|hadpk0,38,41,0|lt51nz,38,41,0|lt51o0,39,43,1|lzz9jz,39,43,1|lzz9k0,38,41,0|NaN,38,41,0","America/Bahia_Banderas|,0,61,0|-p1u4k1,0,61,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|-eg9601,45,63,0|-eg9600,44,62,0|-axv381,44,62,0|-axv380,46,38,0|m7z,46,38,0|m80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gcwozz,44,62,0|gcwp00,47,63,1|gkgu7z,47,63,1|gkgu80,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jftabz,44,62,0|jftac0,47,63,1|jqm3jz,47,63,1|jqm3k0,44,62,0|jywbnz,44,62,0|jywbo0,47,63,1|k9c67z,47,63,1|k9c680,44,62,0|khmebz,44,62,0|khmec0,47,63,1|ks28vz,47,63,1|ks28w0,44,62,0|l0cgzz,44,62,0|l0ch00,48,59,1|lb57fz,48,59,1|lb57g0,45,63,0|lj2gvz,45,63,0|lj2gw0,48,59,1|ltva3z,48,59,1|ltva40,45,63,0|m1sjjz,45,63,0|m1sjk0,48,59,1|mclcrz,48,59,1|mclcs0,45,63,0|mkvkvz,45,63,0|mkvkw0,48,59,1|mvbffz,48,59,1|mvbfg0,45,63,0|n3lnjz,45,63,0|n3lnk0,48,59,1|ne1i3z,48,59,1|ne1i40,45,63,0|nmbq7z,45,63,0|nmbq80,48,59,1|nwrkrz,48,59,1|nwrks0,45,63,0|o51svz,45,63,0|o51sw0,48,59,1|ofum3z,48,59,1|ofum40,45,63,0|onrvjz,45,63,0|onrvk0,48,59,1|oykorz,48,59,1|oykos0,45,63,0|p6hy7z,45,63,0|p6hy80,48,59,1|pharfz,48,59,1|pharg0,45,63,0|ppkzjz,45,63,0|ppkzk0,48,59,1|q00u3z,48,59,1|q00u40,45,63,0|q8b27z,45,63,0|q8b280,48,59,1|qiqwrz,48,59,1|qiqws0,45,63,0|qr14vz,45,63,0|qr14w0,48,59,1|r1ty3z,48,59,1|r1ty40,45,63,0|r9r7jz,45,63,0|r9r7k0,48,59,1|rkk0rz,48,59,1|rkk0s0,45,63,0|rsha7z,45,63,0|rsha80,48,59,1|s3a3fz,48,59,1|s3a3g0,45,63,0|sbkbjz,45,63,0|sbkbk0,48,59,1|sm063z,48,59,1|sm0640,45,63,0|suae7z,45,63,0|suae80,48,59,1|t4q8rz,48,59,1|t4q8s0,45,63,0|td0gvz,45,63,0|td0gw0,48,59,1|tngbfz,48,59,1|tngbg0,45,63,0|tvqjjz,45,63,0|tvqjk0,48,59,1|u6jcrz,48,59,1|u6jcs0,45,63,0|uegm7z,45,63,0|uegm80,48,59,1|up9ffz,48,59,1|up9fg0,45,63,0|ux6ovz,45,63,0|ux6ow0,48,59,1|v7zi3z,48,59,1|v7zi40,45,63,0|vg9q7z,45,63,0|vg9q80,48,59,1|vqpkrz,48,59,1|vqpks0,45,63,0|vyzsvz,45,63,0|vyzsw0,48,59,1|w9fnfz,48,59,1|w9fng0,45,63,0|whpvjz,45,63,0|whpvk0,48,59,1|wsiorz,48,59,1|wsios0,45,63,0|x0fy7z,45,63,0|x0fy80,48,59,1|xb8rfz,48,59,1|xb8rg0,45,63,0|xj60vz,45,63,0|xj60w0,48,59,1|xtyu3z,48,59,1|xtyu40,45,63,0|y1w3jz,45,63,0|y1w3k0,48,59,1|ycowrz,48,59,1|ycows0,45,63,0|ykz4vz,45,63,0|ykz4w0,48,59,1|yvezfz,48,59,1|yvezg0,45,63,0|z3p7jz,45,63,0|z3p7k0,48,59,1|ze523z,48,59,1|ze5240,45,63,0|zmfa7z,45,63,0|zmfa80,48,59,1|zx83fz,48,59,1|zx83g0,45,63,0|1055cvz,45,63,0|1055cw0,48,59,1|10fy63z,48,59,1|10fy640,45,63,0|10nvfjz,45,63,0|10nvfk0,48,59,1|10yo8rz,48,59,1|10yo8s0,45,63,0|116ygvz,45,63,0|116ygw0,48,59,1|11hebfz,48,59,1|11hebg0,45,63,0|11pojjz,45,63,0|11pojk0,48,59,1|1204e3z,48,59,1|1204e40,45,63,0|128em7z,45,63,0|128em80,48,59,1|12iugrz,48,59,1|12iugs0,45,63,0|12r4ovz,45,63,0|12r4ow0,48,59,1|131xi3z,48,59,1|131xi40,45,63,0|139urjz,45,63,0|139urk0,48,59,1|13knkrz,48,59,1|13knks0,45,63,0|13sku7z,45,63,0|13sku80,48,59,1|143dnfz,48,59,1|143dng0,45,63,0|14bnvjz,45,63,0|14bnvk0,48,59,1|14m3q3z,48,59,1|14m3q40,45,63,0|14udy7z,45,63,0|14udy80,48,59,1|154tsrz,48,59,1|154tss0,45,63,0|15d40vz,45,63,0|15d40w0,48,59,1|15nwu3z,48,59,1|15nwu40,45,63,0|15vu3jz,45,63,0|15vu3k0,48,59,1|166mwrz,48,59,1|166mws0,45,63,0|16ek67z,45,63,0|16ek680,48,59,1|16pczfz,48,59,1|16pczg0,45,63,0|16xn7jz,45,63,0|16xn7k0,48,59,1|178323z,48,59,1|1783240,45,63,0|17gda7z,45,63,0|17gda80,48,59,1|17qt4rz,48,59,1|17qt4s0,45,63,0|17z3cvz,45,63,0|17z3cw0,48,59,1|189j7fz,48,59,1|189j7g0,45,63,0|18htfjz,45,63,0|18htfk0,48,59,1|18sm8rz,48,59,1|18sm8s0,45,63,0|190ji7z,45,63,0|190ji80,48,59,1|19bcbfz,48,59,1|19bcbg0,45,63,0|19j9kvz,45,63,0|19j9kw0,48,59,1|19u2e3z,48,59,1|19u2e40,45,63,0|1a2cm7z,45,63,0|1a2cm80,48,59,1|1acsgrz,48,59,1|1acsgs0,45,63,0|1al2ovz,45,63,0|1al2ow0,48,59,1|1avijfz,48,59,1|1avijg0,45,63,0|1b3srjz,45,63,0|1b3srk0,48,59,1|1belkrz,48,59,1|1belks0,45,63,0|1bmiu7z,45,63,0|1bmiu80,48,59,1|1bxbnfz,48,59,1|1bxbng0,45,63,0|1c58wvz,45,63,0|1c58ww0,48,59,1|1cg1q3z,48,59,1|1cg1q40,45,63,0|1cnyzjz,45,63,0|1cnyzk0,48,59,1|1cyrsrz,48,59,1|1cyrss0,45,63,0|1d720vz,45,63,0|1d720w0,48,59,1|1dhhvfz,48,59,1|1dhhvg0,45,63,0|1dps3jz,45,63,0|1dps3k0,48,59,1|1e07y3z,48,59,1|1e07y40,45,63,0|1e8i67z,45,63,0|1e8i680,48,59,1|1ejazfz,48,59,1|1ejazg0,45,63,0|1er88vz,45,63,0|1er88w0,48,59,1|1f2123z,48,59,1|1f21240,45,63,0|1f9ybjz,45,63,0|1f9ybk0,48,59,1|1fkr4rz,48,59,1|1fkr4s0,45,63,0|1ft1cvz,45,63,0|1ft1cw0,48,59,1|1g3h7fz,48,59,1|1g3h7g0,45,63,0|1gbrfjz,45,63,0|1gbrfk0,48,59,1|1gm7a3z,48,59,1|1gm7a40,45,63,0|1guhi7z,45,63,0|1guhi80,48,59,1|1h4xcrz,48,59,1|1h4xcs0,45,63,0|1hd7kvz,45,63,0|1hd7kw0,48,59,1|1ho0e3z,48,59,1|1ho0e40,45,63,0|1hvxnjz,45,63,0|1hvxnk0,48,59,1|1i6qgrz,48,59,1|1i6qgs0,45,63,0|1ienq7z,45,63,0|1ienq80,48,59,1|1ipgjfz,48,59,1|1ipgjg0,45,63,0|1ixqrjz,45,63,0|1ixqrk0,48,59,1|1j86m3z,48,59,1|1j86m40,45,63,0|1jggu7z,45,63,0|1jggu80,48,59,1|1jqworz,48,59,1|1jqwos0,45,63,0|1jz6wvz,45,63,0|1jz6ww0,48,59,1|1k9zq3z,48,59,1|1k9zq40,45,63,0|1khwzjz,45,63,0|1khwzk0,48,59,1|1kspsrz,48,59,1|1kspss0,45,63,0|1l0n27z,45,63,0|1l0n280,48,59,1|1lbfvfz,48,59,1|1lbfvg0,45,63,0|1ljq3jz,45,63,0|1ljq3k0,48,59,1|1lu5y3z,48,59,1|1lu5y40,45,63,0|1m2g67z,45,63,0|1m2g680,48,59,1|1mcw0rz,48,59,1|1mcw0s0,45,63,0|1ml68vz,45,63,0|1ml68w0,48,59,1|1mvm3fz,48,59,1|1mvm3g0,45,63,0|1n3wbjz,45,63,0|1n3wbk0,48,59,1|1nep4rz,48,59,1|1nep4s0,45,63,0|1nmme7z,45,63,0|1nmme80,48,59,1|1nxf7fz,48,59,1|1nxf7g0,45,63,0|1o5cgvz,45,63,0|1o5cgw0,48,59,1|1og5a3z,48,59,1|1og5a40,45,63,0|1oofi7z,45,63,0|1oofi80,48,59,1|1oyvcrz,48,59,1|1oyvcs0,45,63,0|1p75kvz,45,63,0|1p75kw0,48,59,1|1phlffz,48,59,1|1phlfg0,45,63,0|1ppvnjz,45,63,0|1ppvnk0,48,59,1|1q0ogrz,48,59,1|1q0ogs0,45,63,0|1q8lq7z,45,63,0|1q8lq80,48,59,1|1qjejfz,48,59,1|1qjejg0,45,63,0|1qrbsvz,45,63,0|1qrbsw0,48,59,1|1r24m3z,48,59,1|1r24m40,45,63,0|1ra1vjz,45,63,0|1ra1vk0,48,59,1|1rkuorz,48,59,1|1rkuos0,45,63,0|1rt4wvz,45,63,0|1rt4ww0,48,59,1|1s3krfz,48,59,1|1s3krg0,45,63,0|1sbuzjz,45,63,0|1sbuzk0,48,59,1|1smau3z,48,59,1|1smau40,45,63,0|1sul27z,45,63,0|1sul280,48,59,1|1t5dvfz,48,59,1|1t5dvg0,45,63,0|1tdb4vz,45,63,0|1tdb4w0,48,59,1|1to3y3z,48,59,1|1to3y40,45,63,0|1tw17jz,45,63,0|1tw17k0,48,59,1|1u6u0rz,48,59,1|1u6u0s0,45,63,0|1uf48vz,45,63,0|1uf48w0,48,59,1|1upk3fz,48,59,1|1upk3g0,45,63,0|1uxubjz,45,63,0|1uxubk0,48,59,1|1v8a63z,48,59,1|1v8a640,45,63,0|1vgke7z,45,63,0|1vgke80,48,59,1|1vr08rz,48,59,1|1vr08s0,45,63,0|NaN,45,63,0","America/Barbados|,0,64,0|-ug8iak,0,64,0|-ug8iaj,31,40,0|-egii41,31,40,0|-egii40,49,41,1|-e9ma01,49,41,1|-e9ma00,31,40,0|-dx2i41,31,40,0|-dx2i40,49,41,1|-dql3c1,49,41,1|-dql3c0,31,40,0|-dfdgs1,31,40,0|-dfdgs0,50,65,1|-d7i201,50,65,1|-d7i200,31,40,0|3vvnbz,31,40,0|3vvnc0,49,41,1|41mz7z,49,41,1|41mz80,31,40,0|4bq0nz,31,40,0|4bq0o0,49,41,1|4kd1vz,49,41,1|4kd1w0,31,40,0|4ug3bz,31,40,0|4ug3c0,49,41,1|5334jz,49,41,1|5334k0,31,40,0|5dj4nz,31,40,0|5dj4o0,49,41,1|5lnn7z,49,41,1|5lnn80,31,40,0|NaN,31,40,0","America/Belem|,0,66,0|-t85j0t,0,66,0|-t85j0s,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|NaN,38,41,0","America/Belize|,0,67,0|-u52ic1,0,67,0|-u52ic0,45,63,0|-qqoy01,45,63,0|-qqoy00,51,68,1|-qk7ne1,51,68,1|-qk7ne0,45,63,0|-q7yvc1,45,63,0|-q7yvc0,51,68,1|-q14m21,51,68,1|-q14m20,45,63,0|-pp8so1,45,63,0|-pp8so0,51,68,1|-pieje1,51,68,1|-pieje0,45,63,0|-p6iq01,45,63,0|-p6iq00,51,68,1|-ozogq1,51,68,1|-ozogq0,45,63,0|-onfoo1,45,63,0|-onfoo0,51,68,1|-ogye21,51,68,1|-ogye20,45,63,0|-o4pm01,45,63,0|-o4pm00,51,68,1|-ny8be1,51,68,1|-ny8be0,45,63,0|-nlzjc1,45,63,0|-nlzjc0,51,68,1|-nf5a21,51,68,1|-nf5a20,45,63,0|-n39go1,45,63,0|-n39go0,51,68,1|-mwf7e1,51,68,1|-mwf7e0,45,63,0|-mkje01,45,63,0|-mkje00,51,68,1|-mdp4q1,51,68,1|-mdp4q0,45,63,0|-m1tbc1,45,63,0|-m1tbc0,51,68,1|-luz221,51,68,1|-luz220,45,63,0|-liqa01,45,63,0|-liqa00,51,68,1|-lc8ze1,51,68,1|-lc8ze0,45,63,0|-l007c1,45,63,0|-l007c0,51,68,1|-ktiwq1,51,68,1|-ktiwq0,45,63,0|-kha4o1,45,63,0|-kha4o0,51,68,1|-kafve1,51,68,1|-kafve0,45,63,0|-jyk201,45,63,0|-jyk200,51,68,1|-jrpsq1,51,68,1|-jrpsq0,45,63,0|-jftzc1,45,63,0|-jftzc0,51,68,1|-j8zq21,51,68,1|-j8zq20,45,63,0|-iwqy01,45,63,0|-iwqy00,51,68,1|-iq9ne1,51,68,1|-iq9ne0,45,63,0|-ie0vc1,45,63,0|-ie0vc0,51,68,1|-i7jkq1,51,68,1|-i7jkq0,45,63,0|-hvaso1,45,63,0|-hvaso0,51,68,1|-hoti21,51,68,1|-hoti20,45,63,0|-hckq01,45,63,0|-hckq00,51,68,1|-h5qgq1,51,68,1|-h5qgq0,45,63,0|-gtunc1,45,63,0|-gtunc0,51,68,1|-gn0e21,51,68,1|-gn0e20,45,63,0|-gb4ko1,45,63,0|-gb4ko0,51,68,1|-g4abe1,51,68,1|-g4abe0,45,63,0|-fs1jc1,45,63,0|-fs1jc0,51,68,1|-flk8q1,51,68,1|-flk8q0,45,63,0|-f9bgo1,45,63,0|-f9bgo0,51,68,1|-f2u621,51,68,1|-f2u620,45,63,0|-eqle01,45,63,0|-eqle00,51,68,1|-ejr4q1,51,68,1|-ejr4q0,45,63,0|-ecwso1,45,63,0|-ecwso0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cjqks1,53,59,1|-cjqks0,45,63,0|-blvzc1,45,63,0|-blvzc0,51,68,1|-bf1q21,51,68,1|-bf1q20,45,63,0|-b35wo1,45,63,0|-b35wo0,51,68,1|-awbne1,51,68,1|-awbne0,45,63,0|-akfu01,45,63,0|-akfu00,51,68,1|-adlkq1,51,68,1|-adlkq0,45,63,0|-a1cso1,45,63,0|-a1cso0,51,68,1|-9uvi21,51,68,1|-9uvi20,45,63,0|-9imq01,45,63,0|-9imq00,51,68,1|-9c5fe1,51,68,1|-9c5fe0,45,63,0|-8zwnc1,45,63,0|-8zwnc0,51,68,1|-8t2e21,51,68,1|-8t2e20,45,63,0|-8h6ko1,45,63,0|-8h6ko0,51,68,1|-8acbe1,51,68,1|-8acbe0,45,63,0|-7ygi01,45,63,0|-7ygi00,51,68,1|-7rm8q1,51,68,1|-7rm8q0,45,63,0|-7fqfc1,45,63,0|-7fqfc0,51,68,1|-78w621,51,68,1|-78w620,45,63,0|-6wne01,45,63,0|-6wne00,51,68,1|-6q63e1,51,68,1|-6q63e0,45,63,0|-6dxbc1,45,63,0|-6dxbc0,51,68,1|-67g0q1,51,68,1|-67g0q0,45,63,0|-5v78o1,45,63,0|-5v78o0,51,68,1|-5ocze1,51,68,1|-5ocze0,45,63,0|-5ch601,45,63,0|-5ch600,51,68,1|-55mwq1,51,68,1|-55mwq0,45,63,0|-4tr3c1,45,63,0|-4tr3c0,51,68,1|-4mwu21,51,68,1|-4mwu20,45,63,0|-4ao201,45,63,0|-4ao200,51,68,1|-446re1,51,68,1|-446re0,45,63,0|-3rxzc1,45,63,0|-3rxzc0,51,68,1|-3lgoq1,51,68,1|-3lgoq0,45,63,0|-397wo1,45,63,0|-397wo0,51,68,1|-32qm21,51,68,1|-32qm20,45,63,0|-2qhu01,45,63,0|-2qhu00,51,68,1|-2jnkq1,51,68,1|-2jnkq0,45,63,0|-27rrc1,45,63,0|-27rrc0,51,68,1|-20xi21,51,68,1|-20xi20,45,63,0|-1p1oo1,45,63,0|-1p1oo0,51,68,1|-1i7fe1,51,68,1|-1i7fe0,45,63,0|-15ync1,45,63,0|-15ync0,51,68,1|-zhcq1,51,68,1|-zhcq0,45,63,0|21s0nz,45,63,0|21s0o0,48,59,1|2565vz,48,59,1|2565w0,45,63,0|6rj4nz,45,63,0|6rj4o0,48,59,1|6uer7z,48,59,1|6uer80,45,63,0|NaN,45,63,0","America/Blanc-Sablon|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Boa_Vista|,0,69,0|-t85grl,0,69,0|-t85grk,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|fj0drz,41,40,0|fj0ds0,38,41,1|fqkizz,38,41,1|fqkj00,41,40,0|g23f3z,41,40,0|g23f40,38,41,1|g2gazz,38,41,1|g2gb00,41,40,0|NaN,41,40,0","America/Bogota|,0,70,0|-18s2sy9,0,70,0|-18s2sy8,54,70,0|-srdoy9,54,70,0|-srdoy8,55,59,0|bnnsjz,55,59,0|bnnsk0,41,40,1|c4xxrz,41,40,1|c4xxs0,55,59,0|NaN,55,59,0","America/Boise|,0,71,0|-18y0gg1,0,71,0|-18y0gg0,46,38,0|-r0emw1,46,38,0|-r0emw0,56,62,1|-qplto1,56,62,1|-qplto0,46,38,0|-qhok81,46,38,0|-qhok80,56,62,1|-q6vr01,56,62,1|-q6vr00,46,38,0|-oc9iw1,46,38,0|-oc9iw0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|-viho1,44,62,0|-viho0,47,63,1|-m5j41,47,63,1|-m5j40,44,62,0|-csf01,44,62,0|-csf00,47,63,1|-3fgg1,47,63,1|-3fgg0,44,62,0|5xnnz,44,62,0|5xno0,47,63,1|fam7z,47,63,1|fam80,44,62,0|onqbz,44,62,0|onqc0,47,63,1|ydnjz,47,63,1|ydnk0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|24vczz,44,62,0|24vd00,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2oobnz,44,62,0|2oobo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Cambridge_Bay|,59,1,0|-q3gdc1,59,1,0|-q3gdc0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-2g1tw1,44,62,0|-2g1tw0,60,59,1|-26btw1,60,59,1|-26btw0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|g3jcjz,43,59,0|g3jck0,45,63,0|gb3vnz,45,63,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Campo_Grande|,0,72,0|-t85hvx,0,72,0|-t85hvw,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|9t1kfz,41,40,0|9t1kg0,38,41,1|9yfxnz,38,41,1|9yfxo0,41,40,0|abrn3z,41,40,0|abrn40,38,41,1|ahvxnz,38,41,1|ahvxo0,41,40,0|auuofz,41,40,0|auuog0,38,41,1|b0yyzz,38,41,1|b0yz00,41,40,0|bdkr3z,41,40,0|bdkr40,38,41,1|bjc2zz,38,41,1|bjc300,41,40,0|bwnsfz,41,40,0|bwnsg0,38,41,1|c1p6zz,38,41,1|c1p700,41,40,0|cf0wfz,41,40,0|cf0wg0,38,41,1|cli5nz,38,41,1|cli5o0,41,40,0|cxqz3z,41,40,0|cxqz40,38,41,1|d488bz,38,41,1|d488c0,41,40,0|dgh1rz,41,40,0|dgh1s0,38,41,1|dmlcbz,38,41,1|dmlcc0,41,40,0|dyu5rz,41,40,0|dyu5s0,38,41,1|e5odnz,38,41,1|e5odo0,41,40,0|ehm33z,41,40,0|ehm340,38,41,1|ep4dnz,38,41,1|ep4do0,41,40,0|f0n9rz,41,40,0|f0n9s0,38,41,1|f7hhnz,38,41,1|f7hho0,41,40,0|fj0drz,41,40,0|fj0ds0,38,41,1|fqkizz,38,41,1|fqkj00,41,40,0|g23f3z,41,40,0|g23f40,38,41,1|g8xmzz,38,41,1|g8xn00,41,40,0|gl6gfz,41,40,0|gl6gg0,38,41,1|grnpnz,38,41,1|grnpo0,41,40,0|h4zf3z,41,40,0|h4zf40,38,41,1|hadsbz,38,41,1|hadsc0,41,40,0|hmzkfz,41,40,0|hmzkg0,38,41,1|ht3uzz,38,41,1|ht3v00,41,40,0|i6j9rz,41,40,0|i6j9s0,38,41,1|ic6wbz,38,41,1|ic6wc0,41,40,0|iofprz,41,40,0|iofps0,38,41,1|iuwyzz,38,41,1|iuwz00,41,40,0|j88ofz,41,40,0|j88og0,38,41,1|je00bz,38,41,1|je00c0,41,40,0|jpvv3z,41,40,0|jpvv40,38,41,1|jwd4bz,38,41,1|jwd4c0,41,40,0|k8ywfz,41,40,0|k8ywg0,38,41,1|kf36zz,38,41,1|kf3700,41,40,0|kroz3z,41,40,0|kroz40,38,41,1|ky68bz,38,41,1|ky68c0,41,40,0|laf1rz,41,40,0|laf1s0,38,41,1|lgwazz,38,41,1|lgwb00,41,40,0|lt54fz,41,40,0|lt54g0,38,41,1|lzzcbz,38,41,1|lzzcc0,41,40,0|mc85rz,41,40,0|mc85s0,38,41,1|micgbz,38,41,1|micgc0,41,40,0|muy8fz,41,40,0|muy8g0,38,41,1|n12izz,38,41,1|n12j00,41,40,0|ndob3z,41,40,0|ndob40,38,41,1|nk5kbz,38,41,1|nk5kc0,41,40,0|nwedrz,41,40,0|nweds0,38,41,1|o2vmzz,38,41,1|o2vn00,41,40,0|of4gfz,41,40,0|of4gg0,38,41,1|ollpnz,38,41,1|ollpo0,41,40,0|oxuj3z,41,40,0|oxuj40,38,41,1|p4bsbz,38,41,1|p4bsc0,41,40,0|phnhrz,41,40,0|phnhs0,38,41,1|pn1uzz,38,41,1|pn1v00,41,40,0|NaN,41,40,0","America/Cancun|,0,73,0|-p1u7c1,0,73,0|-p1u7c0,45,63,0|690gnz,45,63,0|690go0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|ex1snz,61,40,1|ex1so0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gcwm7z,45,63,0|gcwm80,48,59,1|gkgrfz,48,59,1|gkgrg0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jft7jz,45,63,0|jft7k0,48,59,1|jqm0rz,48,59,1|jqm0s0,45,63,0|jyw8vz,45,63,0|jyw8w0,48,59,1|k9c3fz,48,59,1|k9c3g0,45,63,0|khmbjz,45,63,0|khmbk0,48,59,1|ks263z,48,59,1|ks2640,45,63,0|l0ce7z,45,63,0|l0ce80,48,59,1|lb57fz,48,59,1|lb57g0,45,63,0|lj2gvz,45,63,0|lj2gw0,48,59,1|ltva3z,48,59,1|ltva40,45,63,0|m1sjjz,45,63,0|m1sjk0,48,59,1|mclcrz,48,59,1|mclcs0,45,63,0|mkvkvz,45,63,0|mkvkw0,48,59,1|mvbffz,48,59,1|mvbfg0,45,63,0|n3lnjz,45,63,0|n3lnk0,48,59,1|ne1i3z,48,59,1|ne1i40,45,63,0|nj327z,45,63,0|nj3280,43,59,0|NaN,43,59,0","America/Caracas|,0,74,0|-15r0wxt,0,74,0|-15r0wxs,40,75,0|-u7lcxx,40,75,0|-u7lcxw,62,76,0|-2lx4u1,62,76,0|-2lx4u0,41,40,0|jsrsrz,41,40,0|jsrss0,62,76,0|o6hkrz,62,76,0|o6hks0,41,40,0|NaN,41,40,0","America/Cayenne|,0,77,0|-uj7yb5,0,77,0|-uj7yb4,41,40,0|-16brk1,41,40,0|-16brk0,38,41,0|NaN,38,41,0","America/Cayman|,0,57,0|-15r0ult,0,57,0|-15r0uls,40,58,0|-w757vd,40,58,0|-w757vc,43,59,0|NaN,43,59,0","America/Chicago|,0,78,0|-18y0m01,0,78,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-pv01s1,45,63,0|-pv01s0,48,59,1|-pnsv81,48,59,1|-pnsv80,45,63,0|-pg8kg1,45,63,0|-pg8kg0,48,59,1|-p52sk1,48,59,1|-p52sk0,45,63,0|-ovpog1,45,63,0|-ovpog0,48,59,1|-oo5j81,48,59,1|-oo5j80,45,63,0|-oczls1,45,63,0|-oczls0,48,59,1|-o52hw1,48,59,1|-o52hw0,45,63,0|-nu9j41,45,63,0|-nu9j40,48,59,1|-nmcf81,48,59,1|-nmcf80,45,63,0|-nbjgg1,45,63,0|-nbjgg0,48,59,1|-n3mck1,48,59,1|-n3mck0,45,63,0|-mstds1,45,63,0|-mstds0,48,59,1|-mkw9w1,48,59,1|-mkw9w0,45,63,0|-ma3b41,45,63,0|-ma3b40,48,59,1|-m26781,48,59,1|-m26780,45,63,0|-lr09s1,45,63,0|-lr09s0,48,59,1|-lj35w1,48,59,1|-lj35w0,45,63,0|-l8a741,45,63,0|-l8a740,48,59,1|-l0d381,48,59,1|-l0d380,45,63,0|-kpk4g1,45,63,0|-kpk4g0,48,59,1|-khn0k1,48,59,1|-khn0k0,45,63,0|-k6u1s1,45,63,0|-k6u1s0,48,59,1|-jywxw1,48,59,1|-jywxw0,45,63,0|-jo3z41,45,63,0|-jo3z40,48,59,1|-jg6v81,48,59,1|-jg6v80,45,63,0|-j50xs1,45,63,0|-j50xs0,48,59,1|-ixgsk1,48,59,1|-ixgsk0,45,63,0|-imav41,45,63,0|-imav40,48,59,1|-iedr81,48,59,1|-iedr80,45,63,0|-i3ksg1,45,63,0|-i3ksg0,48,59,1|-hvnok1,48,59,1|-hvnok0,45,63,0|-hnqf41,45,63,0|-hnqf40,43,59,0|-haev81,43,59,0|-haev80,45,63,0|-h24n41,45,63,0|-h24n40,48,59,1|-gu7j81,48,59,1|-gu7j80,45,63,0|-gjekg1,45,63,0|-gjekg0,48,59,1|-gbhgk1,48,59,1|-gbhgk0,45,63,0|-g0bj41,45,63,0|-g0bj40,48,59,1|-fsrdw1,48,59,1|-fsrdw0,45,63,0|-fhlgg1,45,63,0|-fhlgg0,48,59,1|-f9ock1,48,59,1|-f9ock0,45,63,0|-eyvds1,45,63,0|-eyvds0,48,59,1|-eqy9w1,48,59,1|-eqy9w0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw1s1,45,63,0|-ccw1s0,48,59,1|-c4yxw1,48,59,1|-c4yxw0,45,63,0|-bu5z41,45,63,0|-bu5z40,48,59,1|-bm8v81,48,59,1|-bm8v80,45,63,0|-bbfwg1,45,63,0|-bbfwg0,48,59,1|-b3isk1,48,59,1|-b3isk0,45,63,0|-aspts1,45,63,0|-aspts0,48,59,1|-akspw1,48,59,1|-akspw0,45,63,0|-a9msg1,45,63,0|-a9msg0,48,59,1|-a22n81,48,59,1|-a22n80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7eahw1,48,59,1|-7eahw0,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6vkf81,48,59,1|-6vkf80,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6cuck1,48,59,1|-6cuck0,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5u49w1,48,59,1|-5u49w0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5be781,48,59,1|-5be780,45,63,0|-521341,45,63,0|-521340,48,59,1|-4sb5w1,48,59,1|-4sb5w0,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-49l381,48,59,1|-49l380,45,63,0|-407z41,45,63,0|-407z40,48,59,1|-3qv0k1,48,59,1|-3qv0k0,45,63,0|-3hhwg1,45,63,0|-3hhwg0,48,59,1|-384xw1,48,59,1|-384xw0,45,63,0|-2yrts1,45,63,0|-2yrts0,48,59,1|-2pev81,48,59,1|-2pev80,45,63,0|-2g1r41,45,63,0|-2g1r40,48,59,1|-26btw1,48,59,1|-26btw0,45,63,0|-1xbog1,45,63,0|-1xbog0,48,59,1|-1nlr81,48,59,1|-1nlr80,45,63,0|-1e8n41,45,63,0|-1e8n40,48,59,1|-14vok1,48,59,1|-14vok0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5lw1,48,59,1|-m5lw0,45,63,0|-cshs1,45,63,0|-cshs0,48,59,1|-3fj81,48,59,1|-3fj80,45,63,0|5xkvz,45,63,0|5xkw0,48,59,1|fajfz,48,59,1|fajg0,45,63,0|onnjz,45,63,0|onnk0,48,59,1|ydkrz,48,59,1|ydks0,45,63,0|17qovz,45,63,0|17qow0,48,59,1|1h3nfz,48,59,1|1h3ng0,45,63,0|1qgrjz,45,63,0|1qgrk0,48,59,1|1ztq3z,48,59,1|1ztq40,45,63,0|23ffjz,45,63,0|23ffk0,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2oo8vz,45,63,0|2oo8w0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt23z,48,59,1|4lt240,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j4rz,48,59,1|54j4s0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gb3svz,45,63,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Chihuahua|,0,79,0|-p1u4k1,0,79,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxnnz,45,63,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gcwozz,44,62,0|gcwp00,47,63,1|gkgu7z,47,63,1|gkgu80,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jftabz,44,62,0|jftac0,47,63,1|jqm3jz,47,63,1|jqm3k0,44,62,0|jywbnz,44,62,0|jywbo0,47,63,1|k9c67z,47,63,1|k9c680,44,62,0|khmebz,44,62,0|khmec0,47,63,1|ks28vz,47,63,1|ks28w0,44,62,0|l0cgzz,44,62,0|l0ch00,47,63,1|lb5a7z,47,63,1|lb5a80,44,62,0|lj2jnz,44,62,0|lj2jo0,47,63,1|ltvcvz,47,63,1|ltvcw0,44,62,0|m1smbz,44,62,0|m1smc0,47,63,1|mclfjz,47,63,1|mclfk0,44,62,0|mkvnnz,44,62,0|mkvno0,47,63,1|mvbi7z,47,63,1|mvbi80,44,62,0|n3lqbz,44,62,0|n3lqc0,47,63,1|ne1kvz,47,63,1|ne1kw0,44,62,0|nmbszz,44,62,0|nmbt00,47,63,1|nwrnjz,47,63,1|nwrnk0,44,62,0|o51vnz,44,62,0|o51vo0,47,63,1|ofuovz,47,63,1|ofuow0,44,62,0|onrybz,44,62,0|onryc0,47,63,1|oykrjz,47,63,1|oykrk0,44,62,0|p6i0zz,44,62,0|p6i100,47,63,1|phau7z,47,63,1|phau80,44,62,0|ppl2bz,44,62,0|ppl2c0,47,63,1|q00wvz,47,63,1|q00ww0,44,62,0|q8b4zz,44,62,0|q8b500,47,63,1|qiqzjz,47,63,1|qiqzk0,44,62,0|qr17nz,44,62,0|qr17o0,47,63,1|r1u0vz,47,63,1|r1u0w0,44,62,0|r9rabz,44,62,0|r9rac0,47,63,1|rkk3jz,47,63,1|rkk3k0,44,62,0|rshczz,44,62,0|rshd00,47,63,1|s3a67z,47,63,1|s3a680,44,62,0|sbkebz,44,62,0|sbkec0,47,63,1|sm08vz,47,63,1|sm08w0,44,62,0|suagzz,44,62,0|suah00,47,63,1|t4qbjz,47,63,1|t4qbk0,44,62,0|td0jnz,44,62,0|td0jo0,47,63,1|tnge7z,47,63,1|tnge80,44,62,0|tvqmbz,44,62,0|tvqmc0,47,63,1|u6jfjz,47,63,1|u6jfk0,44,62,0|uegozz,44,62,0|uegp00,47,63,1|up9i7z,47,63,1|up9i80,44,62,0|ux6rnz,44,62,0|ux6ro0,47,63,1|v7zkvz,47,63,1|v7zkw0,44,62,0|vg9szz,44,62,0|vg9t00,47,63,1|vqpnjz,47,63,1|vqpnk0,44,62,0|vyzvnz,44,62,0|vyzvo0,47,63,1|w9fq7z,47,63,1|w9fq80,44,62,0|whpybz,44,62,0|whpyc0,47,63,1|wsirjz,47,63,1|wsirk0,44,62,0|x0g0zz,44,62,0|x0g100,47,63,1|xb8u7z,47,63,1|xb8u80,44,62,0|xj63nz,44,62,0|xj63o0,47,63,1|xtywvz,47,63,1|xtyww0,44,62,0|y1w6bz,44,62,0|y1w6c0,47,63,1|ycozjz,47,63,1|ycozk0,44,62,0|ykz7nz,44,62,0|ykz7o0,47,63,1|yvf27z,47,63,1|yvf280,44,62,0|z3pabz,44,62,0|z3pac0,47,63,1|ze54vz,47,63,1|ze54w0,44,62,0|zmfczz,44,62,0|zmfd00,47,63,1|zx867z,47,63,1|zx8680,44,62,0|1055fnz,44,62,0|1055fo0,47,63,1|10fy8vz,47,63,1|10fy8w0,44,62,0|10nvibz,44,62,0|10nvic0,47,63,1|10yobjz,47,63,1|10yobk0,44,62,0|116yjnz,44,62,0|116yjo0,47,63,1|11hee7z,47,63,1|11hee80,44,62,0|11pombz,44,62,0|11pomc0,47,63,1|1204gvz,47,63,1|1204gw0,44,62,0|128eozz,44,62,0|128ep00,47,63,1|12iujjz,47,63,1|12iujk0,44,62,0|12r4rnz,44,62,0|12r4ro0,47,63,1|131xkvz,47,63,1|131xkw0,44,62,0|139uubz,44,62,0|139uuc0,47,63,1|13knnjz,47,63,1|13knnk0,44,62,0|13skwzz,44,62,0|13skx00,47,63,1|143dq7z,47,63,1|143dq80,44,62,0|14bnybz,44,62,0|14bnyc0,47,63,1|14m3svz,47,63,1|14m3sw0,44,62,0|14ue0zz,44,62,0|14ue100,47,63,1|154tvjz,47,63,1|154tvk0,44,62,0|15d43nz,44,62,0|15d43o0,47,63,1|15nwwvz,47,63,1|15nwww0,44,62,0|15vu6bz,44,62,0|15vu6c0,47,63,1|166mzjz,47,63,1|166mzk0,44,62,0|16ek8zz,44,62,0|16ek900,47,63,1|16pd27z,47,63,1|16pd280,44,62,0|16xnabz,44,62,0|16xnac0,47,63,1|17834vz,47,63,1|17834w0,44,62,0|17gdczz,44,62,0|17gdd00,47,63,1|17qt7jz,47,63,1|17qt7k0,44,62,0|17z3fnz,44,62,0|17z3fo0,47,63,1|189ja7z,47,63,1|189ja80,44,62,0|18htibz,44,62,0|18htic0,47,63,1|18smbjz,47,63,1|18smbk0,44,62,0|190jkzz,44,62,0|190jl00,47,63,1|19bce7z,47,63,1|19bce80,44,62,0|19j9nnz,44,62,0|19j9no0,47,63,1|19u2gvz,47,63,1|19u2gw0,44,62,0|1a2cozz,44,62,0|1a2cp00,47,63,1|1acsjjz,47,63,1|1acsjk0,44,62,0|1al2rnz,44,62,0|1al2ro0,47,63,1|1avim7z,47,63,1|1avim80,44,62,0|1b3subz,44,62,0|1b3suc0,47,63,1|1belnjz,47,63,1|1belnk0,44,62,0|1bmiwzz,44,62,0|1bmix00,47,63,1|1bxbq7z,47,63,1|1bxbq80,44,62,0|1c58znz,44,62,0|1c58zo0,47,63,1|1cg1svz,47,63,1|1cg1sw0,44,62,0|1cnz2bz,44,62,0|1cnz2c0,47,63,1|1cyrvjz,47,63,1|1cyrvk0,44,62,0|1d723nz,44,62,0|1d723o0,47,63,1|1dhhy7z,47,63,1|1dhhy80,44,62,0|1dps6bz,44,62,0|1dps6c0,47,63,1|1e080vz,47,63,1|1e080w0,44,62,0|1e8i8zz,44,62,0|1e8i900,47,63,1|1ejb27z,47,63,1|1ejb280,44,62,0|1er8bnz,44,62,0|1er8bo0,47,63,1|1f214vz,47,63,1|1f214w0,44,62,0|1f9yebz,44,62,0|1f9yec0,47,63,1|1fkr7jz,47,63,1|1fkr7k0,44,62,0|1ft1fnz,44,62,0|1ft1fo0,47,63,1|1g3ha7z,47,63,1|1g3ha80,44,62,0|1gbribz,44,62,0|1gbric0,47,63,1|1gm7cvz,47,63,1|1gm7cw0,44,62,0|1guhkzz,44,62,0|1guhl00,47,63,1|1h4xfjz,47,63,1|1h4xfk0,44,62,0|1hd7nnz,44,62,0|1hd7no0,47,63,1|1ho0gvz,47,63,1|1ho0gw0,44,62,0|1hvxqbz,44,62,0|1hvxqc0,47,63,1|1i6qjjz,47,63,1|1i6qjk0,44,62,0|1ienszz,44,62,0|1ient00,47,63,1|1ipgm7z,47,63,1|1ipgm80,44,62,0|1ixqubz,44,62,0|1ixquc0,47,63,1|1j86ovz,47,63,1|1j86ow0,44,62,0|1jggwzz,44,62,0|1jggx00,47,63,1|1jqwrjz,47,63,1|1jqwrk0,44,62,0|1jz6znz,44,62,0|1jz6zo0,47,63,1|1k9zsvz,47,63,1|1k9zsw0,44,62,0|1khx2bz,44,62,0|1khx2c0,47,63,1|1kspvjz,47,63,1|1kspvk0,44,62,0|1l0n4zz,44,62,0|1l0n500,47,63,1|1lbfy7z,47,63,1|1lbfy80,44,62,0|1ljq6bz,44,62,0|1ljq6c0,47,63,1|1lu60vz,47,63,1|1lu60w0,44,62,0|1m2g8zz,44,62,0|1m2g900,47,63,1|1mcw3jz,47,63,1|1mcw3k0,44,62,0|1ml6bnz,44,62,0|1ml6bo0,47,63,1|1mvm67z,47,63,1|1mvm680,44,62,0|1n3webz,44,62,0|1n3wec0,47,63,1|1nep7jz,47,63,1|1nep7k0,44,62,0|1nmmgzz,44,62,0|1nmmh00,47,63,1|1nxfa7z,47,63,1|1nxfa80,44,62,0|1o5cjnz,44,62,0|1o5cjo0,47,63,1|1og5cvz,47,63,1|1og5cw0,44,62,0|1oofkzz,44,62,0|1oofl00,47,63,1|1oyvfjz,47,63,1|1oyvfk0,44,62,0|1p75nnz,44,62,0|1p75no0,47,63,1|1phli7z,47,63,1|1phli80,44,62,0|1ppvqbz,44,62,0|1ppvqc0,47,63,1|1q0ojjz,47,63,1|1q0ojk0,44,62,0|1q8lszz,44,62,0|1q8lt00,47,63,1|1qjem7z,47,63,1|1qjem80,44,62,0|1qrbvnz,44,62,0|1qrbvo0,47,63,1|1r24ovz,47,63,1|1r24ow0,44,62,0|1ra1ybz,44,62,0|1ra1yc0,47,63,1|1rkurjz,47,63,1|1rkurk0,44,62,0|1rt4znz,44,62,0|1rt4zo0,47,63,1|1s3ku7z,47,63,1|1s3ku80,44,62,0|1sbv2bz,44,62,0|1sbv2c0,47,63,1|1smawvz,47,63,1|1smaww0,44,62,0|1sul4zz,44,62,0|1sul500,47,63,1|1t5dy7z,47,63,1|1t5dy80,44,62,0|1tdb7nz,44,62,0|1tdb7o0,47,63,1|1to40vz,47,63,1|1to40w0,44,62,0|1tw1abz,44,62,0|1tw1ac0,47,63,1|1u6u3jz,47,63,1|1u6u3k0,44,62,0|1uf4bnz,44,62,0|1uf4bo0,47,63,1|1upk67z,47,63,1|1upk680,44,62,0|1uxuebz,44,62,0|1uxuec0,47,63,1|1v8a8vz,47,63,1|1v8a8w0,44,62,0|1vgkgzz,44,62,0|1vgkh00,47,63,1|1vr0bjz,47,63,1|1vr0bk0,44,62,0|NaN,44,62,0","America/Costa_Rica|,0,80,0|-15r0tro,0,80,0|-15r0trn,63,80,0|-pjw8fo,63,80,0|-pjw8fn,45,63,0|4rxcnz,45,63,0|4rxco0,48,59,1|4wyr7z,48,59,1|4wyr80,45,63,0|5anfbz,45,63,0|5anfc0,48,59,1|5fotvz,48,59,1|5fotw0,45,63,0|azhhzz,45,63,0|azhi00,48,59,1|b7v9vz,48,59,1|b7v9w0,45,63,0|bi7knz,45,63,0|bi7ko0,48,59,1|bl51vz,48,59,1|bl51w0,45,63,0|NaN,45,63,0","America/Creston|,0,81,0|-18y0j81,0,81,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-dkikmd,57,63,1|-dkikmc,44,62,0|-dftz6d,44,62,0|-dftz6c,57,63,1|-d6f5yd,57,63,1|-d6f5yc,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|NaN,44,62,0","America/Cuiaba|,0,82,0|-t85hm5,0,82,0|-t85hm4,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|9t1kfz,41,40,0|9t1kg0,38,41,1|9yfxnz,38,41,1|9yfxo0,41,40,0|abrn3z,41,40,0|abrn40,38,41,1|ahvxnz,38,41,1|ahvxo0,41,40,0|auuofz,41,40,0|auuog0,38,41,1|b0yyzz,38,41,1|b0yz00,41,40,0|bdkr3z,41,40,0|bdkr40,38,41,1|bjc2zz,38,41,1|bjc300,41,40,0|bwnsfz,41,40,0|bwnsg0,38,41,1|c1p6zz,38,41,1|c1p700,41,40,0|cf0wfz,41,40,0|cf0wg0,38,41,1|cli5nz,38,41,1|cli5o0,41,40,0|cxqz3z,41,40,0|cxqz40,38,41,1|d488bz,38,41,1|d488c0,41,40,0|dgh1rz,41,40,0|dgh1s0,38,41,1|dmlcbz,38,41,1|dmlcc0,41,40,0|dyu5rz,41,40,0|dyu5s0,38,41,1|e5odnz,38,41,1|e5odo0,41,40,0|ehm33z,41,40,0|ehm340,38,41,1|ep4dnz,38,41,1|ep4do0,41,40,0|f0n9rz,41,40,0|f0n9s0,38,41,1|f7hhnz,38,41,1|f7hho0,41,40,0|fj0drz,41,40,0|fj0ds0,38,41,1|fqkizz,38,41,1|fqkj00,41,40,0|g23f3z,41,40,0|g23f40,38,41,1|g8xmzz,38,41,1|g8xn00,41,40,0|gl6gfz,41,40,0|gl6gg0,38,41,1|grnpnz,38,41,1|grnpo0,41,40,0|h4zf3z,41,40,0|h4zf40,38,41,1|hadsbz,38,41,1|hadsc0,41,40,0|i6j9rz,41,40,0|i6j9s0,38,41,1|ic6wbz,38,41,1|ic6wc0,41,40,0|iofprz,41,40,0|iofps0,38,41,1|iuwyzz,38,41,1|iuwz00,41,40,0|j88ofz,41,40,0|j88og0,38,41,1|je00bz,38,41,1|je00c0,41,40,0|jpvv3z,41,40,0|jpvv40,38,41,1|jwd4bz,38,41,1|jwd4c0,41,40,0|k8ywfz,41,40,0|k8ywg0,38,41,1|kf36zz,38,41,1|kf3700,41,40,0|kroz3z,41,40,0|kroz40,38,41,1|ky68bz,38,41,1|ky68c0,41,40,0|laf1rz,41,40,0|laf1s0,38,41,1|lgwazz,38,41,1|lgwb00,41,40,0|lt54fz,41,40,0|lt54g0,38,41,1|lzzcbz,38,41,1|lzzcc0,41,40,0|mc85rz,41,40,0|mc85s0,38,41,1|micgbz,38,41,1|micgc0,41,40,0|muy8fz,41,40,0|muy8g0,38,41,1|n12izz,38,41,1|n12j00,41,40,0|ndob3z,41,40,0|ndob40,38,41,1|nk5kbz,38,41,1|nk5kc0,41,40,0|nwedrz,41,40,0|nweds0,38,41,1|o2vmzz,38,41,1|o2vn00,41,40,0|of4gfz,41,40,0|of4gg0,38,41,1|ollpnz,38,41,1|ollpo0,41,40,0|oxuj3z,41,40,0|oxuj40,38,41,1|p4bsbz,38,41,1|p4bsc0,41,40,0|phnhrz,41,40,0|phnhs0,38,41,1|pn1uzz,38,41,1|pn1v00,41,40,0|NaN,41,40,0","America/Curacao|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Danmarkshavn|,0,83,0|-rvusjl,0,83,0|-rvusjk,38,41,0|5ct4jz,38,41,0|5ct4k0,39,43,1|5lsw3z,39,43,1|5lsw40,38,41,0|5v5xfz,38,41,0|5v5xg0,39,43,1|64iyrz,39,43,1|64iys0,38,41,0|6dw03z,38,41,0|6dw040,39,43,1|6n91fz,39,43,1|6n91g0,38,41,0|6wm2rz,38,41,0|6wm2s0,39,43,1|75z43z,39,43,1|75z440,38,41,0|7fc5fz,38,41,0|7fc5g0,39,43,1|7p25fz,39,43,1|7p25g0,38,41,0|7yf6rz,38,41,0|7yf6s0,39,43,1|87s83z,39,43,1|87s840,38,41,0|8h59fz,38,41,0|8h59g0,39,43,1|8qiarz,39,43,1|8qias0,38,41,0|8zvc3z,38,41,0|8zvc40,39,43,1|998dfz,39,43,1|998dg0,38,41,0|9ilerz,38,41,0|9iles0,39,43,1|9ryg3z,39,43,1|9ryg40,38,41,0|a1bhfz,38,41,0|a1bhg0,39,43,1|aaoirz,39,43,1|aaois0,38,41,0|ak1k3z,38,41,0|ak1k40,39,43,1|atrk3z,39,43,1|atrk40,38,41,0|b34lfz,38,41,0|b34lg0,39,43,1|bchmrz,39,43,1|bchms0,38,41,0|bluo3z,38,41,0|bluo40,39,43,1|bv7pfz,39,43,1|bv7pg0,38,41,0|c4kqrz,38,41,0|c4kqs0,39,43,1|cdxs3z,39,43,1|cdxs40,38,41,0|cnatfz,38,41,0|cnatg0,39,43,1|cwnurz,39,43,1|cwnus0,38,41,0|d60w3z,38,41,0|d60w40,39,43,1|dfdxfz,39,43,1|dfdxg0,38,41,0|dkhezz,38,41,0|dkhf00,1,1,0|NaN,1,1,0","America/Dawson|,0,84,0|-1079sul,0,84,0|-1079suk,35,35,0|-qzoms1,35,35,0|-qzoms0,64,38,1|-qplqw1,64,38,1|-qplqw0,35,35,0|-qess41,35,35,0|-qess40,64,38,1|-q6kps1,64,38,1|-q6kps0,35,35,0|-ek1tg1,35,35,0|-ek1tg0,65,38,1|-cq2tg1,65,38,1|-cq2tg0,66,38,1|-cnos81,66,38,1|-cnos80,35,35,0|-2g1oc1,35,35,0|-2g1oc0,67,62,1|-26boc1,67,62,1|-26boc0,35,35,0|1ztvnz,35,35,0|1ztvo0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jeqh3z,46,38,0|jeqh40,56,62,1|jqz4zz,56,62,1|jqz500,46,38,0|jxgjrz,46,38,0|jxgjs0,56,62,1|k9p7nz,56,62,1|k9p7o0,46,38,0|kg6mfz,46,38,0|kg6mg0,56,62,1|ksfabz,56,62,1|ksfac0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,56,62,1|nx4ozz,56,62,1|nx4p00,46,38,0|o3z2fz,46,38,0|o3z2g0,56,62,1|og7qbz,56,62,1|og7qc0,46,38,0|omp53z,46,38,0|omp540,56,62,1|oyxszz,56,62,1|oyxt00,46,38,0|p5f7rz,46,38,0|p5f7s0,56,62,1|phnvnz,56,62,1|phnvo0,46,38,0|po5afz,46,38,0|po5ag0,56,62,1|q0dybz,56,62,1|q0dyc0,46,38,0|q6vd3z,46,38,0|q6vd40,56,62,1|qj3vfz,56,62,1|qj3vg0,44,62,0|NaN,44,62,0","America/Dawson_Creek|,0,85,0|-18vrweh,0,85,0|-18vrweg,46,38,0|-qzopk1,46,38,0|-qzopk0,56,62,1|-qplto1,56,62,1|-qplto0,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-bu5tk1,46,38,0|-bu5tk0,56,62,1|-bm8po1,56,62,1|-bm8po0,46,38,0|-bbfqw1,46,38,0|-bbfqw0,56,62,1|-b3in01,56,62,1|-b3in00,46,38,0|-aspo81,46,38,0|-aspo80,56,62,1|-akskc1,56,62,1|-akskc0,46,38,0|-a9mmw1,46,38,0|-a9mmw0,56,62,1|-a22ho1,56,62,1|-a22ho0,46,38,0|-9qwk81,46,38,0|-9qwk80,56,62,1|-9izgc1,56,62,1|-9izgc0,46,38,0|-986hk1,46,38,0|-986hk0,56,62,1|-909do1,56,62,1|-909do0,46,38,0|-8pgew1,46,38,0|-8pgew0,56,62,1|-8hjb01,56,62,1|-8hjb00,46,38,0|-86qc81,46,38,0|-86qc80,56,62,1|-7yt8c1,56,62,1|-7yt8c0,46,38,0|-7o09k1,46,38,0|-7o09k0,56,62,1|-7g35o1,56,62,1|-7g35o0,46,38,0|-74x881,46,38,0|-74x880,56,62,1|-6x04c1,56,62,1|-6x04c0,46,38,0|-6m75k1,46,38,0|-6m75k0,56,62,1|-6ea1o1,56,62,1|-6ea1o0,46,38,0|-63h2w1,46,38,0|-63h2w0,56,62,1|-5vjz01,56,62,1|-5vjz00,46,38,0|-5kr081,46,38,0|-5kr080,56,62,1|-5ctwc1,56,62,1|-5ctwc0,46,38,0|-520xk1,46,38,0|-520xk0,56,62,1|-4u3to1,56,62,1|-4u3to0,46,38,0|-4ixw81,46,38,0|-4ixw80,56,62,1|-4bdr01,56,62,1|-4bdr00,46,38,0|-407tk1,46,38,0|-407tk0,56,62,1|-3quv01,56,62,1|-3quv00,46,38,0|-3hhqw1,46,38,0|-3hhqw0,56,62,1|-384sc1,56,62,1|-384sc0,46,38,0|-2yro81,46,38,0|-2yro80,56,62,1|-2pepo1,56,62,1|-2pepo0,46,38,0|-2g1lk1,46,38,0|-2g1lk0,56,62,1|-26boc1,56,62,1|-26boc0,46,38,0|-1xbiw1,46,38,0|-1xbiw0,56,62,1|-1nllo1,56,62,1|-1nllo0,46,38,0|-1e8hk1,46,38,0|-1e8hk0,56,62,1|-14vj01,56,62,1|-14vj00,46,38,0|-view1,46,38,0|-view0,56,62,1|-m5gc1,56,62,1|-m5gc0,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1e0ozz,56,62,1|1e0p00,44,62,0|NaN,44,62,0","America/Denver|,0,86,0|-18y0j81,0,86,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-pyykc1,44,62,0|-pyykc0,47,63,1|-pnssg1,47,63,1|-pnssg0,44,62,0|-pg8ho1,44,62,0|-pg8ho0,47,63,1|-pdcv41,47,63,1|-pdcv40,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-2g1oc1,44,62,0|-2g1oc0,47,63,1|-26br41,47,63,1|-26br40,44,62,0|-1xblo1,44,62,0|-1xblo0,47,63,1|-1nlog1,47,63,1|-1nlog0,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|-viho1,44,62,0|-viho0,47,63,1|-m5j41,47,63,1|-m5j40,44,62,0|-csf01,44,62,0|-csf00,47,63,1|-3fgg1,47,63,1|-3fgg0,44,62,0|5xnnz,44,62,0|5xno0,47,63,1|fam7z,47,63,1|fam80,44,62,0|onqbz,44,62,0|onqc0,47,63,1|ydnjz,47,63,1|ydnk0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|23fibz,44,62,0|23fic0,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2oobnz,44,62,0|2oobo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Detroit|,0,87,0|-xx8dye,0,87,0|-xx8dyd,45,63,0|-sih341,45,63,0|-sih340,43,59,0|-ek24k1,43,59,0|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|-bbfz81,43,59,0|-bbfz80,61,40,1|-b3ivc1,61,40,1|-b3ivc0,43,59,0|-1bxjed,43,59,0|-1bxjec,61,40,1|-14vrc1,61,40,1|-14vrc0,43,59,0|-vin81,43,59,0|-vin80,61,40,1|-m5oo1,61,40,1|-m5oo0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|23fcrz,43,59,0|23fcs0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2rwu3z,43,59,0|2rwu40,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Dominica|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Edmonton|,0,88,0|-x1yazl,0,88,0|-x1yazk,44,62,0|-qzosc1,44,62,0|-qzosc0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qgypo1,44,62,0|-qgypo0,47,63,1|-qepb41,47,63,1|-qepb40,44,62,0|-pxipo1,44,62,0|-pxipo0,47,63,1|-pnssg1,47,63,1|-pnssg0,44,62,0|-pesn01,44,62,0|-pesn00,47,63,1|-p6vj41,47,63,1|-p6vj40,44,62,0|-ovplo1,44,62,0|-ovplo0,47,63,1|-oo5gg1,47,63,1|-oo5gg0,44,62,0|-oczj01,44,62,0|-oczj00,47,63,1|-o52f41,47,63,1|-o52f40,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-bu5wc1,44,62,0|-bu5wc0,47,63,1|-bm8sg1,47,63,1|-bm8sg0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|296wzz,44,62,0|296x00,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2rwznz,44,62,0|2rwzo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Eirunepe|,0,89,0|-t85f29,0,89,0|-t85f28,55,59,0|-jyl4w1,55,59,0|-jyl4w0,41,40,1|-jpavk1,41,40,1|-jpavk0,55,59,0|-jfs7g1,55,59,0|-jfs7g0,41,40,1|-j6iy81,41,40,1|-j6iy80,55,59,0|-ahcss1,55,59,0|-ahcss0,41,40,1|-aacy41,41,40,1|-aacy40,55,59,0|-9ykvg1,55,59,0|-9ykvg0,41,40,1|-9scvk1,41,40,1|-9scvk0,55,59,0|-9fsy41,55,59,0|-9fsy40,41,40,1|-99j3k1,41,40,1|-99j3k0,55,59,0|-8wz641,55,59,0|-8wz640,41,40,1|-8sckw1,41,40,1|-8sckw0,55,59,0|-35xgs1,55,59,0|-35xgs0,41,40,1|-31nu81,41,40,1|-31nu80,55,59,0|-2kdjg1,55,59,0|-2kdjg0,41,40,1|-2hccw1,41,40,1|-2hccw0,55,59,0|-24qks1,55,59,0|-24qks0,41,40,1|-203zk1,41,40,1|-203zk0,55,59,0|-1ni7g1,55,59,0|-1ni7g0,41,40,1|-1hc281,41,40,1|-1hc280,55,59,0|-14qa41,55,59,0|-14qa40,41,40,1|-yia81,41,40,1|-yia80,55,59,0|89jhvz,55,59,0|89jhw0,41,40,1|8gdprz,41,40,1|8gdps0,55,59,0|8rwlvz,55,59,0|8rwlw0,41,40,1|8xnxrz,41,40,1|8xnxs0,55,59,0|9aoj7z,55,59,0|9aoj80,41,40,1|9g2wfz,41,40,1|9g2wg0,55,59,0|cf0z7z,55,59,0|cf0z80,41,40,1|cli8fz,41,40,1|cli8g0,55,59,0|k2yb7z,55,59,0|k2yb80,41,40,0|mw14fz,41,40,0|mw14g0,55,59,0|NaN,55,59,0","America/El_Salvador|,0,90,0|-pkm4td,0,90,0|-pkm4tc,45,63,0|91ojbz,45,63,0|91ojc0,48,59,1|998ojz,48,59,1|998ok0,45,63,0|9kelzz,45,63,0|9kem00,48,59,1|9ryr7z,48,59,1|9ryr80,45,63,0|NaN,45,63,0","America/Fort_Nelson|,0,91,0|-18vrvy2,0,91,0|-18vrvy1,46,38,0|-qzopk1,46,38,0|-qzopk0,56,62,1|-qplto1,56,62,1|-qplto0,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-bu5tk1,46,38,0|-bu5tk0,56,62,1|-bm8po1,56,62,1|-bm8po0,46,38,0|-bbfqw1,46,38,0|-bbfqw0,56,62,1|-b3in01,56,62,1|-b3in00,46,38,0|-aspo81,46,38,0|-aspo80,56,62,1|-akskc1,56,62,1|-akskc0,46,38,0|-a9mmw1,46,38,0|-a9mmw0,56,62,1|-a22ho1,56,62,1|-a22ho0,46,38,0|-9qwk81,46,38,0|-9qwk80,56,62,1|-9izgc1,56,62,1|-9izgc0,46,38,0|-986hk1,46,38,0|-986hk0,56,62,1|-909do1,56,62,1|-909do0,46,38,0|-8pgew1,46,38,0|-8pgew0,56,62,1|-8hjb01,56,62,1|-8hjb00,46,38,0|-86qc81,46,38,0|-86qc80,56,62,1|-7yt8c1,56,62,1|-7yt8c0,46,38,0|-7o09k1,46,38,0|-7o09k0,56,62,1|-7g35o1,56,62,1|-7g35o0,46,38,0|-74x881,46,38,0|-74x880,56,62,1|-6x04c1,56,62,1|-6x04c0,46,38,0|-6m75k1,46,38,0|-6m75k0,56,62,1|-6ea1o1,56,62,1|-6ea1o0,46,38,0|-63h2w1,46,38,0|-63h2w0,56,62,1|-5vjz01,56,62,1|-5vjz00,46,38,0|-5kr081,46,38,0|-5kr080,56,62,1|-5ctwc1,56,62,1|-5ctwc0,46,38,0|-520xk1,46,38,0|-520xk0,56,62,1|-4u3to1,56,62,1|-4u3to0,46,38,0|-4ixw81,46,38,0|-4ixw80,56,62,1|-4bdr01,56,62,1|-4bdr00,46,38,0|-407tk1,46,38,0|-407tk0,56,62,1|-3quv01,56,62,1|-3quv00,46,38,0|-3hhqw1,46,38,0|-3hhqw0,56,62,1|-384sc1,56,62,1|-384sc0,46,38,0|-2yro81,46,38,0|-2yro80,56,62,1|-2pepo1,56,62,1|-2pepo0,46,38,0|-2g1lk1,46,38,0|-2g1lk0,56,62,1|-26boc1,56,62,1|-26boc0,46,38,0|-1xbiw1,46,38,0|-1xbiw0,56,62,1|-1nllo1,56,62,1|-1nllo0,46,38,0|-1e8hk1,46,38,0|-1e8hk0,56,62,1|-14vj01,56,62,1|-14vj00,46,38,0|-view1,46,38,0|-view0,56,62,1|-m5gc1,56,62,1|-m5gc0,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|296zrz,46,38,0|296zs0,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2rx2fz,46,38,0|2rx2g0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jeqh3z,46,38,0|jeqh40,56,62,1|jqz4zz,56,62,1|jqz500,46,38,0|jxgjrz,46,38,0|jxgjs0,56,62,1|k9p7nz,56,62,1|k9p7o0,46,38,0|kg6mfz,46,38,0|kg6mg0,56,62,1|ksfabz,56,62,1|ksfac0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,44,62,0|NaN,44,62,0","America/Fortaleza|,0,92,0|-t85kvd,0,92,0|-t85kvc,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g2t6vz,39,43,1|g2t6w0,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|NaN,38,41,0","America/Glace_Bay|,0,93,0|-z94kwd,0,93,0|-z94kwc,31,40,0|-qzp0o1,31,40,0|-qzp0o0,49,41,1|-qpm4s1,49,41,1|-qpm4s0,31,40,0|-ek27c1,31,40,0|-ek27c0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|-8pgq01,31,40,0|-8pgq00,49,41,1|-8hjm41,49,41,1|-8hjm40,31,40,0|17qjbz,31,40,0|17qjc0,49,41,1|1h3hvz,49,41,1|1h3hw0,31,40,0|1qglzz,31,40,0|1qgm00,49,41,1|1ztkjz,49,41,1|1ztkk0,31,40,0|296onz,31,40,0|296oo0,49,41,1|2ijn7z,49,41,1|2ijn80,31,40,0|2rwrbz,31,40,0|2rwrc0,49,41,1|319pvz,49,41,1|319pw0,31,40,0|3amtzz,31,40,0|3amu00,49,41,1|3kcr7z,49,41,1|3kcr80,31,40,0|3tcwnz,31,40,0|3tcwo0,49,41,1|432tvz,49,41,1|432tw0,31,40,0|4cfxzz,31,40,0|4cfy00,49,41,1|4lswjz,49,41,1|4lswk0,31,40,0|4v60nz,31,40,0|4v60o0,49,41,1|54iz7z,49,41,1|54iz80,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908onz,31,40,0|908oo0,49,41,1|9aoj7z,49,41,1|9aoj80,31,40,0|9iyrbz,31,40,0|9iyrc0,49,41,1|9trkjz,49,41,1|9trkk0,31,40,0|a1otzz,31,40,0|a1ou00,49,41,1|achn7z,49,41,1|achn80,31,40,0|akewnz,31,40,0|akewo0,49,41,1|av7pvz,49,41,1|av7pw0,31,40,0|b3hxzz,31,40,0|b3hy00,49,41,1|bdxsjz,49,41,1|bdxsk0,31,40,0|bm80nz,31,40,0|bm80o0,49,41,1|bwnv7z,49,41,1|bwnv80,31,40,0|c4y3bz,31,40,0|c4y3c0,49,41,1|cfqwjz,49,41,1|cfqwk0,31,40,0|cno5zz,31,40,0|cno600,49,41,1|cygz7z,49,41,1|cygz80,31,40,0|d6e8nz,31,40,0|d6e8o0,49,41,1|dh71vz,49,41,1|dh71w0,31,40,0|dph9zz,31,40,0|dpha00,49,41,1|dzx4jz,49,41,1|dzx4k0,31,40,0|e87cnz,31,40,0|e87co0,49,41,1|ein77z,49,41,1|ein780,31,40,0|eqxfbz,31,40,0|eqxfc0,49,41,1|f1d9vz,49,41,1|f1d9w0,31,40,0|f9nhzz,31,40,0|f9ni00,49,41,1|fkgb7z,49,41,1|fkgb80,31,40,0|fsdknz,31,40,0|fsdko0,49,41,1|g36dvz,49,41,1|g36dw0,31,40,0|gb3nbz,31,40,0|gb3nc0,49,41,1|glwgjz,49,41,1|glwgk0,31,40,0|gu6onz,31,40,0|gu6oo0,49,41,1|h4mj7z,49,41,1|h4mj80,31,40,0|hcwrbz,31,40,0|hcwrc0,49,41,1|hnclvz,49,41,1|hnclw0,31,40,0|hvmtzz,31,40,0|hvmu00,49,41,1|i6fn7z,49,41,1|i6fn80,31,40,0|iecwnz,31,40,0|iecwo0,49,41,1|ip5pvz,49,41,1|ip5pw0,31,40,0|ix2zbz,31,40,0|ix2zc0,49,41,1|j7vsjz,49,41,1|j7vsk0,31,40,0|jeq5zz,31,40,0|jeq600,49,41,1|jqytvz,49,41,1|jqytw0,31,40,0|jxg8nz,31,40,0|jxg8o0,49,41,1|k9owjz,49,41,1|k9owk0,31,40,0|kg6bbz,31,40,0|kg6bc0,49,41,1|ksez7z,49,41,1|ksez80,31,40,0|kz9cnz,31,40,0|kz9co0,49,41,1|lbi0jz,49,41,1|lbi0k0,31,40,0|lhzfbz,31,40,0|lhzfc0,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","America/Goose_Bay|,0,94,0|-18vs7h9,0,94,0|-18vs7h8,23,95,0|-qzp20l,23,95,0|-qzp20k,72,96,1|-qpm64l,72,96,1|-qpm64k,23,95,0|-i52u8l,23,95,0|-i52u8k,23,65,0|-hk3aa1,23,65,0|-hk3aa0,72,97,1|-hcj521,72,97,1|-hcj520,23,65,0|-h1d7m1,23,65,0|-h1d7m0,72,97,1|-gtt2e1,72,97,1|-gtt2e0,23,65,0|-gin4y1,23,65,0|-gin4y0,72,97,1|-gb2zq1,72,97,1|-gb2zq0,23,65,0|-fzk3m1,23,65,0|-fzk3m0,72,97,1|-fscx21,72,97,1|-fscx20,23,65,0|-fgu0y1,23,65,0|-fgu0y0,72,97,1|-f99vq1,72,97,1|-f99vq0,23,65,0|-ey3ya1,23,65,0|-ey3ya0,72,97,1|-eqjt21,72,97,1|-eqjt20,23,65,0|-efdvm1,23,65,0|-efdvm0,24,97,1|-cq2tg1,24,97,1|-cq2tg0,25,97,1|-cnp7i1,25,97,1|-cnp7i0,23,65,0|-cc6be1,23,65,0|-cc6be0,72,97,1|-c4m661,72,97,1|-c4m660,23,65,0|-btg8q1,23,65,0|-btg8q0,72,97,1|-blw3i1,72,97,1|-blw3i0,23,65,0|-baq621,23,65,0|-baq620,72,97,1|-b360u1,72,97,1|-b360u0,23,65,0|-as03e1,23,65,0|-as03e0,72,97,1|-akfy61,72,97,1|-akfy60,23,65,0|-a8x221,23,65,0|-a8x220,72,97,1|-a1cwu1,72,97,1|-a1cwu0,23,65,0|-9qwwq1,23,65,0|-9qwwq0,72,97,1|-9izsu1,72,97,1|-9izsu0,23,65,0|-986u21,23,65,0|-986u20,72,97,1|-909q61,72,97,1|-909q60,23,65,0|-8pgre1,23,65,0|-8pgre0,72,97,1|-8hjni1,72,97,1|-8hjni0,23,65,0|-86qoq1,23,65,0|-86qoq0,72,97,1|-7ytku1,72,97,1|-7ytku0,23,65,0|-7o0m21,23,65,0|-7o0m20,72,97,1|-7g3i61,72,97,1|-7g3i60,23,65,0|-74xkq1,23,65,0|-74xkq0,72,97,1|-6x0gu1,72,97,1|-6x0gu0,23,65,0|-6m7i21,23,65,0|-6m7i20,72,97,1|-6eae61,72,97,1|-6eae60,23,65,0|-63hfe1,23,65,0|-63hfe0,72,97,1|-5vkbi1,72,97,1|-5vkbi0,23,65,0|-5krcq1,23,65,0|-5krcq0,72,97,1|-5cu8u1,72,97,1|-5cu8u0,23,65,0|-521a21,23,65,0|-521a20,72,97,1|-4sbcu1,72,97,1|-4sbcu0,23,65,0|-4iy8q1,23,65,0|-4iy8q0,72,97,1|-49la61,72,97,1|-49la60,23,65,0|-408621,23,65,0|-408620,72,97,1|-3qv7i1,72,97,1|-3qv7i0,23,65,0|-3hi3e1,23,65,0|-3hi3e0,72,97,1|-3854u1,72,97,1|-3854u0,23,65,0|-2ys0q1,23,65,0|-2ys0q0,72,97,1|-2pf261,72,97,1|-2pf260,23,65,0|-2g1y21,23,65,0|-2g1y20,72,97,1|-26c0u1,72,97,1|-26c0u0,23,65,0|-1zdy21,23,65,0|-1zdy20,31,40,0|-1xbu01,31,40,0|-1xbu00,49,41,1|-1nlws1,49,41,1|-1nlws0,31,40,0|-1e8so1,31,40,0|-1e8so0,49,41,1|-14vu41,49,41,1|-14vu40,31,40,0|-viq01,31,40,0|-viq00,49,41,1|-m5rg1,49,41,1|-m5rg0,31,40,0|-csnc1,31,40,0|-csnc0,49,41,1|-3fos1,49,41,1|-3fos0,31,40,0|5xfbz,31,40,0|5xfc0,49,41,1|fadvz,49,41,1|fadw0,31,40,0|onhzz,31,40,0|oni00,49,41,1|ydf7z,49,41,1|ydf80,31,40,0|17qjbz,31,40,0|17qjc0,49,41,1|1h3hvz,49,41,1|1h3hw0,31,40,0|1qglzz,31,40,0|1qgm00,49,41,1|1ztkjz,49,41,1|1ztkk0,31,40,0|296onz,31,40,0|296oo0,49,41,1|2ijn7z,49,41,1|2ijn80,31,40,0|2rwrbz,31,40,0|2rwrc0,49,41,1|319pvz,49,41,1|319pw0,31,40,0|3amtzz,31,40,0|3amu00,49,41,1|3kcr7z,49,41,1|3kcr80,31,40,0|3tcwnz,31,40,0|3tcwo0,49,41,1|432tvz,49,41,1|432tw0,31,40,0|4cfxzz,31,40,0|4cfy00,49,41,1|4lswjz,49,41,1|4lswk0,31,40,0|4v60nz,31,40,0|4v60o0,49,41,1|54iz7z,49,41,1|54iz80,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908j5n,31,40,0|908j5o,49,41,1|9aodpn,49,41,1|9aodpo,31,40,0|9iyltn,31,40,0|9iylto,73,43,1|9trc9n,73,43,1|9trc9o,31,40,0|a1oohn,31,40,0|a1ooho,49,41,1|achhpn,49,41,1|achhpo,31,40,0|aker5n,31,40,0|aker5o,49,41,1|av7kdn,49,41,1|av7kdo,31,40,0|b3hshn,31,40,0|b3hsho,49,41,1|bdxn1n,49,41,1|bdxn1o,31,40,0|bm7v5n,31,40,0|bm7v5o,49,41,1|bwnppn,49,41,1|bwnppo,31,40,0|c4xxtn,31,40,0|c4xxto,49,41,1|cfqr1n,49,41,1|cfqr1o,31,40,0|cno0hn,31,40,0|cno0ho,49,41,1|cygtpn,49,41,1|cygtpo,31,40,0|d6e35n,31,40,0|d6e35o,49,41,1|dh6wdn,49,41,1|dh6wdo,31,40,0|dph4hn,31,40,0|dph4ho,49,41,1|dzwz1n,49,41,1|dzwz1o,31,40,0|e8775n,31,40,0|e8775o,49,41,1|ein1pn,49,41,1|ein1po,31,40,0|eqx9tn,31,40,0|eqx9to,49,41,1|f1d4dn,49,41,1|f1d4do,31,40,0|f9nchn,31,40,0|f9ncho,49,41,1|fkg5pn,49,41,1|fkg5po,31,40,0|fsdf5n,31,40,0|fsdf5o,49,41,1|g368dn,49,41,1|g368do,31,40,0|gb3htn,31,40,0|gb3hto,49,41,1|glwb1n,49,41,1|glwb1o,31,40,0|gu6j5n,31,40,0|gu6j5o,49,41,1|h4mdpn,49,41,1|h4mdpo,31,40,0|hcwltn,31,40,0|hcwlto,49,41,1|hncgdn,49,41,1|hncgdo,31,40,0|hvmohn,31,40,0|hvmoho,49,41,1|i6fhpn,49,41,1|i6fhpo,31,40,0|iecr5n,31,40,0|iecr5o,49,41,1|ip5kdn,49,41,1|ip5kdo,31,40,0|ix2ttn,31,40,0|ix2tto,49,41,1|j7vn1n,49,41,1|j7vn1o,31,40,0|jeq0hn,31,40,0|jeq0ho,49,41,1|jqyodn,49,41,1|jqyodo,31,40,0|jxg35n,31,40,0|jxg35o,49,41,1|k9or1n,49,41,1|k9or1o,31,40,0|kg65tn,31,40,0|kg65to,49,41,1|ksetpn,49,41,1|ksetpo,31,40,0|kz975n,31,40,0|kz975o,49,41,1|lbhv1n,49,41,1|lbhv1o,31,40,0|lhz9tn,31,40,0|lhz9to,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","America/Grand_Turk|,0,98,0|-15r0w5t,0,98,0|-15r0w5s,74,99,0|-u85og3,74,99,0|-u85og2,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,31,40,0|p5ezfz,31,40,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Grenada|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Guadeloupe|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Guatemala|,0,100,0|-qqqskl,0,100,0|-qqqskk,45,63,0|219hzz,45,63,0|219i00,48,59,1|25xxvz,48,59,1|25xxw0,45,63,0|6zgbbz,45,63,0|6zgbc0,48,59,1|75tv7z,48,59,1|75tv80,45,63,0|b2q5zz,45,63,0|b2q600,48,59,1|bbd77z,48,59,1|bbd780,45,63,0|iyitzz,45,63,0|iyiu00,48,59,1|j6fxvz,48,59,1|j6fxw0,45,63,0|NaN,45,63,0","America/Guayaquil|,0,101,0|-15r0ujt,0,101,0|-15r0ujs,75,102,0|-kcr84p,75,102,0|-kcr84o,55,59,0|byetvz,55,59,0|byetw0,41,40,1|c1yj3z,41,40,1|c1yj40,55,59,0|NaN,55,59,0","America/Guyana|,0,103,0|-uhmika,0,103,0|-uhmik9,41,40,0|-smca81,41,40,0|-smca80,76,104,0|2wud2z,76,104,0|2wud30,38,41,0|bluwfz,38,41,0|bluwg0,41,40,0|NaN,41,40,0","America/Halifax|,0,105,0|-z94k81,0,105,0|-z94k80,31,40,0|-s1x3k1,31,40,0|-s1x3k0,49,41,1|-rsiac1,49,41,1|-rsiac0,31,40,0|-qzp0o1,31,40,0|-qzp0o0,49,41,1|-qpm4s1,49,41,1|-qpm4s0,31,40,0|-pwt681,31,40,0|-pwt680,49,41,1|-pr1uc1,49,41,1|-pr1uc0,31,40,0|-pe6sw1,31,40,0|-pe6sw0,49,41,1|-p7wyc1,49,41,1|-p7wyc0,31,40,0|-ovpzk1,31,40,0|-ovpzk0,49,41,1|-op5101,49,41,1|-op5100,31,40,0|-ocmy81,31,40,0|-ocmy80,49,41,1|-o6eyc1,49,41,1|-o6eyc0,31,40,0|-ntwvk1,31,40,0|-ntwvk0,49,41,1|-nn0t01,49,41,1|-nn0t00,31,40,0|-nb6sw1,31,40,0|-nb6sw0,49,41,1|-n3kt01,49,41,1|-n3kt00,31,40,0|-mrqsw1,31,40,0|-mrqsw0,49,41,1|-mlkno1,49,41,1|-mlkno0,31,40,0|-m9qnk1,31,40,0|-m9qnk0,49,41,1|-m24no1,49,41,1|-m24no0,31,40,0|-lqank1,31,40,0|-lqank0,49,41,1|-lk6d01,49,41,1|-lk6d00,31,40,0|-l7kkw1,31,40,0|-l7kkw0,49,41,1|-l1pjo1,49,41,1|-l1pjo0,31,40,0|-koui81,31,40,0|-koui80,49,41,1|-kibec1,49,41,1|-kibec0,31,40,0|-k64fk1,31,40,0|-k64fk0,49,41,1|-jyvec1,49,41,1|-jyvec0,31,40,0|-jnrbk1,31,40,0|-jnrbk0,49,41,1|-jg5bo1,49,41,1|-jg5bo0,31,40,0|-j518w1,31,40,0|-j518w0,49,41,1|-ix2ac1,49,41,1|-ix2ac0,31,40,0|-il8a81,31,40,0|-il8a80,49,41,1|-if3zo1,49,41,1|-if3zo0,31,40,0|-i1sa81,31,40,0|-i1sa80,49,41,1|-hvm501,49,41,1|-hvm500,31,40,0|-hj0cw1,31,40,0|-hj0cw0,49,41,1|-hdlzo1,49,41,1|-hdlzo0,31,40,0|-h1rzk1,31,40,0|-h1rzk0,49,41,1|-gu5zo1,49,41,1|-gu5zo0,31,40,0|-gj1ww1,31,40,0|-gj1ww0,49,41,1|-gbfx01,49,41,1|-gbfx00,31,40,0|-fyvzk1,31,40,0|-fyvzk0,49,41,1|-fspuc1,49,41,1|-fspuc0,31,40,0|-fh8sw1,31,40,0|-fh8sw0,49,41,1|-f9mt01,49,41,1|-f9mt00,31,40,0|-eyiq81,31,40,0|-eyiq80,49,41,1|-eqwqc1,49,41,1|-eqwqc0,31,40,0|-ek27c1,31,40,0|-ek27c0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|-ccw7c1,31,40,0|-ccw7c0,49,41,1|-c4z3g1,49,41,1|-c4z3g0,31,40,0|-bu64o1,31,40,0|-bu64o0,49,41,1|-bm90s1,49,41,1|-bm90s0,31,40,0|-bbg201,31,40,0|-bbg200,49,41,1|-b3iy41,49,41,1|-b3iy40,31,40,0|-aspzc1,31,40,0|-aspzc0,49,41,1|-aksvg1,49,41,1|-aksvg0,31,40,0|-9qwvc1,31,40,0|-9qwvc0,49,41,1|-9izrg1,49,41,1|-9izrg0,31,40,0|-986so1,31,40,0|-986so0,49,41,1|-909os1,49,41,1|-909os0,31,40,0|-8pgq01,31,40,0|-8pgq00,49,41,1|-8hjm41,49,41,1|-8hjm40,31,40,0|-86qnc1,31,40,0|-86qnc0,49,41,1|-7ytjg1,49,41,1|-7ytjg0,31,40,0|-74xjc1,31,40,0|-74xjc0,49,41,1|-6x0fg1,49,41,1|-6x0fg0,31,40,0|-6m7go1,31,40,0|-6m7go0,49,41,1|-6eacs1,49,41,1|-6eacs0,31,40,0|-63he01,31,40,0|-63he00,49,41,1|-5vka41,49,41,1|-5vka40,31,40,0|-5krbc1,31,40,0|-5krbc0,49,41,1|-5cu7g1,49,41,1|-5cu7g0,31,40,0|-4084o1,31,40,0|-4084o0,49,41,1|-3qv641,49,41,1|-3qv640,31,40,0|-3hi201,31,40,0|-3hi200,49,41,1|-3853g1,49,41,1|-3853g0,31,40,0|-2yrzc1,31,40,0|-2yrzc0,49,41,1|-2pf0s1,49,41,1|-2pf0s0,31,40,0|-2g1wo1,31,40,0|-2g1wo0,49,41,1|-26bzg1,49,41,1|-26bzg0,31,40,0|-1xbu01,31,40,0|-1xbu00,49,41,1|-1nlws1,49,41,1|-1nlws0,31,40,0|-1e8so1,31,40,0|-1e8so0,49,41,1|-14vu41,49,41,1|-14vu40,31,40,0|-viq01,31,40,0|-viq00,49,41,1|-m5rg1,49,41,1|-m5rg0,31,40,0|-csnc1,31,40,0|-csnc0,49,41,1|-3fos1,49,41,1|-3fos0,31,40,0|5xfbz,31,40,0|5xfc0,49,41,1|fadvz,49,41,1|fadw0,31,40,0|onhzz,31,40,0|oni00,49,41,1|ydf7z,49,41,1|ydf80,31,40,0|17qjbz,31,40,0|17qjc0,49,41,1|1h3hvz,49,41,1|1h3hw0,31,40,0|1qglzz,31,40,0|1qgm00,49,41,1|1ztkjz,49,41,1|1ztkk0,31,40,0|296onz,31,40,0|296oo0,49,41,1|2ijn7z,49,41,1|2ijn80,31,40,0|2rwrbz,31,40,0|2rwrc0,49,41,1|319pvz,49,41,1|319pw0,31,40,0|3amtzz,31,40,0|3amu00,49,41,1|3kcr7z,49,41,1|3kcr80,31,40,0|3tcwnz,31,40,0|3tcwo0,49,41,1|432tvz,49,41,1|432tw0,31,40,0|4cfxzz,31,40,0|4cfy00,49,41,1|4lswjz,49,41,1|4lswk0,31,40,0|4v60nz,31,40,0|4v60o0,49,41,1|54iz7z,49,41,1|54iz80,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908onz,31,40,0|908oo0,49,41,1|9aoj7z,49,41,1|9aoj80,31,40,0|9iyrbz,31,40,0|9iyrc0,49,41,1|9trkjz,49,41,1|9trkk0,31,40,0|a1otzz,31,40,0|a1ou00,49,41,1|achn7z,49,41,1|achn80,31,40,0|akewnz,31,40,0|akewo0,49,41,1|av7pvz,49,41,1|av7pw0,31,40,0|b3hxzz,31,40,0|b3hy00,49,41,1|bdxsjz,49,41,1|bdxsk0,31,40,0|bm80nz,31,40,0|bm80o0,49,41,1|bwnv7z,49,41,1|bwnv80,31,40,0|c4y3bz,31,40,0|c4y3c0,49,41,1|cfqwjz,49,41,1|cfqwk0,31,40,0|cno5zz,31,40,0|cno600,49,41,1|cygz7z,49,41,1|cygz80,31,40,0|d6e8nz,31,40,0|d6e8o0,49,41,1|dh71vz,49,41,1|dh71w0,31,40,0|dph9zz,31,40,0|dpha00,49,41,1|dzx4jz,49,41,1|dzx4k0,31,40,0|e87cnz,31,40,0|e87co0,49,41,1|ein77z,49,41,1|ein780,31,40,0|eqxfbz,31,40,0|eqxfc0,49,41,1|f1d9vz,49,41,1|f1d9w0,31,40,0|f9nhzz,31,40,0|f9ni00,49,41,1|fkgb7z,49,41,1|fkgb80,31,40,0|fsdknz,31,40,0|fsdko0,49,41,1|g36dvz,49,41,1|g36dw0,31,40,0|gb3nbz,31,40,0|gb3nc0,49,41,1|glwgjz,49,41,1|glwgk0,31,40,0|gu6onz,31,40,0|gu6oo0,49,41,1|h4mj7z,49,41,1|h4mj80,31,40,0|hcwrbz,31,40,0|hcwrc0,49,41,1|hnclvz,49,41,1|hnclw0,31,40,0|hvmtzz,31,40,0|hvmu00,49,41,1|i6fn7z,49,41,1|i6fn80,31,40,0|iecwnz,31,40,0|iecwo0,49,41,1|ip5pvz,49,41,1|ip5pw0,31,40,0|ix2zbz,31,40,0|ix2zc0,49,41,1|j7vsjz,49,41,1|j7vsk0,31,40,0|jeq5zz,31,40,0|jeq600,49,41,1|jqytvz,49,41,1|jqytw0,31,40,0|jxg8nz,31,40,0|jxg8o0,49,41,1|k9owjz,49,41,1|k9owk0,31,40,0|kg6bbz,31,40,0|kg6bc0,49,41,1|ksez7z,49,41,1|ksez80,31,40,0|kz9cnz,31,40,0|kz9co0,49,41,1|lbi0jz,49,41,1|lbi0k0,31,40,0|lhzfbz,31,40,0|lhzfc0,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","America/Havana|,0,106,0|-15r0u2x,0,106,0|-15r0u2w,77,107,0|-n7762p,77,107,0|-n7762o,45,59,0|-louq41,45,59,0|-louq40,48,40,1|-likvk1,48,40,1|-likvk0,45,59,0|-ffsvg1,45,59,0|-ffsvg0,48,40,1|-fb4fk1,48,40,1|-fb4fk0,45,59,0|-ex2ss1,45,59,0|-ex2ss0,48,40,1|-es1e81,48,40,1|-es1e80,45,59,0|-edzrg1,45,59,0|-edzrg0,48,40,1|-e9bbk1,48,40,1|-e9bbk0,45,59,0|-cttjg1,45,59,0|-cttjg0,48,40,1|-cp53k1,48,40,1|-cp53k0,45,59,0|-cb3gs1,45,59,0|-cb3gs0,48,40,1|-c6f0w1,48,40,1|-c6f0w0,45,59,0|-2e5gs1,45,59,0|-2e5gs0,48,40,1|-27xgw1,48,40,1|-27xgw0,45,59,0|-1vj3g1,45,59,0|-1vj3g0,48,40,1|-1p1u81,48,40,1|-1p1u80,45,59,0|-1fdm41,45,59,0|-1fdm40,48,40,1|-17enk1,48,40,1|-17enk0,45,59,0|-w8q41,45,59,0|-w8q40,48,40,1|-ookw1,48,40,1|-ookw0,45,59,0|-csq41,45,59,0|-csq40,48,40,1|-3frk1,48,40,1|-3frk0,45,59,0|5xcjz,45,59,0|5xck0,48,40,1|fab3z,48,40,1|fab40,45,59,0|onf7z,45,59,0|onf80,48,40,1|ydcfz,48,40,1|ydcg0,45,59,0|17qgjz,45,59,0|17qgk0,48,40,1|1g0j3z,48,40,1|1g0j40,45,59,0|1qgj7z,45,59,0|1qgj80,48,40,1|1ysgfz,48,40,1|1ysgg0,45,59,0|296lvz,45,59,0|296lw0,48,40,1|2hkdrz,48,40,1|2hkds0,45,59,0|2rwojz,45,59,0|2rwok0,48,40,1|319n3z,48,40,1|319n40,45,59,0|3amr7z,45,59,0|3amr80,48,40,1|3kcofz,48,40,1|3kcog0,45,59,0|3tctvz,45,59,0|3tctw0,48,40,1|432r3z,48,40,1|432r40,45,59,0|4cstvz,45,59,0|4cstw0,48,40,1|4kpxrz,48,40,1|4kpxs0,45,59,0|4t05vz,45,59,0|4t05w0,48,40,1|53sz3z,48,40,1|53sz40,45,59,0|5bq8jz,45,59,0|5bq8k0,48,40,1|5mj1rz,48,40,1|5mj1s0,45,59,0|5xc0jz,45,59,0|5xc0k0,48,40,1|6594fz,48,40,1|6594g0,45,59,0|6g237z,45,59,0|6g2380,48,40,1|6nz73z,48,40,1|6nz740,45,59,0|6ys5vz,45,59,0|6ys5w0,48,40,1|76p9rz,48,40,1|76p9s0,45,59,0|7hi8jz,45,59,0|7hi8k0,48,40,1|7psb3z,48,40,1|7psb40,45,59,0|808b7z,45,59,0|808b80,48,40,1|88idrz,48,40,1|88ids0,45,59,0|8gfn7z,45,59,0|8gfn80,48,40,1|8r8gfz,48,40,1|8r8gg0,45,59,0|8z5pvz,45,59,0|8z5pw0,48,40,1|99yj3z,48,40,1|99yj40,45,59,0|9i8r7z,45,59,0|9i8r80,48,40,1|9solrz,48,40,1|9sols0,45,59,0|a0ytvz,45,59,0|a0ytw0,48,40,1|abeofz,48,40,1|abeog0,45,59,0|aketvz,45,59,0|aketw0,48,40,1|auhprz,48,40,1|auhps0,45,59,0|b3hv7z,45,59,0|b3hv80,48,40,1|bd7v7z,48,40,1|bd7v80,45,59,0|bm7xvz,45,59,0|bm7xw0,48,40,1|bvxxvz,48,40,1|bvxxw0,45,59,0|c4y0jz,45,59,0|c4y0k0,48,40,1|ceo0jz,48,40,1|ceo0k0,45,59,0|cno37z,45,59,0|cno380,48,40,1|cxe37z,48,40,1|cxe380,45,59,0|d6e5vz,45,59,0|d6e5w0,48,40,1|dg45vz,48,40,1|dg45w0,45,59,0|dph77z,45,59,0|dph780,48,40,1|dyu8jz,48,40,1|dyu8k0,45,59,0|e879vz,45,59,0|e879w0,48,40,1|ehx9vz,48,40,1|ehx9w0,45,59,0|eqkdvz,45,59,0|eqkdw0,48,40,1|f1d9vz,48,40,1|f1d9w0,45,59,0|f9agjz,45,59,0|f9agk0,48,40,1|fkgb7z,48,40,1|fkgb80,45,59,0|fsdhvz,45,59,0|fsdhw0,48,40,1|g36dvz,48,40,1|g36dw0,45,59,0|gb3kjz,45,59,0|gb3kk0,48,40,1|glwgjz,48,40,1|glwgk0,45,59,0|gu6lvz,45,59,0|gu6lw0,48,40,1|h4mj7z,48,40,1|h4mj80,45,59,0|hcwojz,45,59,0|hcwok0,48,40,1|hnclvz,48,40,1|hnclw0,45,59,0|hv9sjz,45,59,0|hv9sk0,48,40,1|j7vsjz,48,40,1|j7vsk0,45,59,0|jeq37z,45,59,0|jeq380,48,40,1|jqlv7z,48,40,1|jqlv80,45,59,0|jxt4jz,45,59,0|jxt4k0,48,40,1|k9bxvz,48,40,1|k9bxw0,45,59,0|kg68jz,45,59,0|kg68k0,48,40,1|ks20jz,48,40,1|ks20k0,45,59,0|kz99vz,45,59,0|kz99w0,48,40,1|lb51vz,48,40,1|lb51w0,45,59,0|licb7z,45,59,0|licb80,48,40,1|lul1vz,48,40,1|lul1w0,45,59,0|m1sb7z,45,59,0|m1sb80,48,40,1|mcy5vz,48,40,1|mcy5w0,45,59,0|mjfhvz,45,59,0|mjfhw0,48,40,1|mvo8jz,48,40,1|mvo8k0,45,59,0|n25kjz,45,59,0|n25kk0,48,40,1|neeb7z,48,40,1|neeb80,45,59,0|nkvn7z,45,59,0|nkvn80,48,40,1|nx4dvz,48,40,1|nx4dw0,45,59,0|o3yojz,45,59,0|o3yok0,48,40,1|og7f7z,48,40,1|og7f80,45,59,0|omor7z,45,59,0|omor80,48,40,1|oyxhvz,48,40,1|oyxhw0,45,59,0|p5etvz,45,59,0|p5etw0,48,40,1|phnkjz,48,40,1|phnkk0,45,59,0|po4wjz,45,59,0|po4wk0,48,40,1|q0dn7z,48,40,1|q0dn80,45,59,0|q6uz7z,45,59,0|q6uz80,48,40,1|qj3pvz,48,40,1|qj3pw0,45,59,0|qpy0jz,45,59,0|qpy0k0,48,40,1|r26r7z,48,40,1|r26r80,45,59,0|r8o37z,45,59,0|r8o380,48,40,1|rkwtvz,48,40,1|rkwtw0,45,59,0|rre5vz,45,59,0|rre5w0,48,40,1|s3mwjz,48,40,1|s3mwk0,45,59,0|sa48jz,45,59,0|sa48k0,48,40,1|smcz7z,48,40,1|smcz80,45,59,0|ssub7z,45,59,0|ssub80,48,40,1|t531vz,48,40,1|t531w0,45,59,0|tbkdvz,45,59,0|tbkdw0,48,40,1|tnt4jz,48,40,1|tnt4k0,45,59,0|tunf7z,45,59,0|tunf80,48,40,1|u6w5vz,48,40,1|u6w5w0,45,59,0|uddhvz,45,59,0|uddhw0,48,40,1|upm8jz,48,40,1|upm8k0,45,59,0|uw3kjz,45,59,0|uw3kk0,48,40,1|v8cb7z,48,40,1|v8cb80,45,59,0|vetn7z,45,59,0|vetn80,48,40,1|vr2dvz,48,40,1|vr2dw0,45,59,0|vxjpvz,45,59,0|vxjpw0,48,40,1|w9sgjz,48,40,1|w9sgk0,45,59,0|wgmr7z,45,59,0|wgmr80,48,40,1|wsvhvz,48,40,1|wsvhw0,45,59,0|wzctvz,45,59,0|wzctw0,48,40,1|xblkjz,48,40,1|xblkk0,45,59,0|xi2wjz,45,59,0|xi2wk0,48,40,1|xubn7z,48,40,1|xubn80,45,59,0|y0sz7z,45,59,0|y0sz80,48,40,1|yd1pvz,48,40,1|yd1pw0,45,59,0|yjj1vz,45,59,0|yjj1w0,48,40,1|yvrsjz,48,40,1|yvrsk0,45,59,0|z294jz,45,59,0|z294k0,48,40,1|zehv7z,48,40,1|zehv80,45,59,0|zlc5vz,45,59,0|zlc5w0,48,40,1|zxkwjz,48,40,1|zxkwk0,45,59,0|10428jz,45,59,0|10428k0,48,40,1|10gaz7z,48,40,1|10gaz80,45,59,0|10msb7z,45,59,0|10msb80,48,40,1|10z11vz,48,40,1|10z11w0,45,59,0|115idvz,45,59,0|115idw0,48,40,1|11hr4jz,48,40,1|11hr4k0,45,59,0|11o8gjz,45,59,0|11o8gk0,48,40,1|120h77z,48,40,1|120h780,45,59,0|126yj7z,45,59,0|126yj80,48,40,1|12j79vz,48,40,1|12j79w0,45,59,0|12q1kjz,45,59,0|12q1kk0,48,40,1|132ab7z,48,40,1|132ab80,45,59,0|138rn7z,45,59,0|138rn80,48,40,1|13l0dvz,48,40,1|13l0dw0,45,59,0|13rhpvz,45,59,0|13rhpw0,48,40,1|143qgjz,48,40,1|143qgk0,45,59,0|14a7sjz,45,59,0|14a7sk0,48,40,1|14mgj7z,48,40,1|14mgj80,45,59,0|14sxv7z,45,59,0|14sxv80,48,40,1|1556lvz,48,40,1|1556lw0,45,59,0|15c0wjz,45,59,0|15c0wk0,48,40,1|15o9n7z,48,40,1|15o9n80,45,59,0|15uqz7z,45,59,0|15uqz80,48,40,1|166zpvz,48,40,1|166zpw0,45,59,0|16dh1vz,45,59,0|16dh1w0,48,40,1|16ppsjz,48,40,1|16ppsk0,45,59,0|16w74jz,45,59,0|16w74k0,48,40,1|178fv7z,48,40,1|178fv80,45,59,0|17ex77z,45,59,0|17ex780,48,40,1|17r5xvz,48,40,1|17r5xw0,45,59,0|17xn9vz,45,59,0|17xn9w0,48,40,1|189w0jz,48,40,1|189w0k0,45,59,0|18gqb7z,45,59,0|18gqb80,48,40,1|18sz1vz,48,40,1|18sz1w0,45,59,0|18zgdvz,45,59,0|18zgdw0,48,40,1|19bp4jz,48,40,1|19bp4k0,45,59,0|19i6gjz,45,59,0|19i6gk0,48,40,1|19uf77z,48,40,1|19uf780,45,59,0|1a0wj7z,45,59,0|1a0wj80,48,40,1|1ad59vz,48,40,1|1ad59w0,45,59,0|1ajmlvz,45,59,0|1ajmlw0,48,40,1|1avvcjz,48,40,1|1avvck0,45,59,0|1b2pn7z,45,59,0|1b2pn80,48,40,1|1beydvz,48,40,1|1beydw0,45,59,0|1blfpvz,45,59,0|1blfpw0,48,40,1|1bxogjz,48,40,1|1bxogk0,45,59,0|1c45sjz,45,59,0|1c45sk0,48,40,1|1cgej7z,48,40,1|1cgej80,45,59,0|1cmvv7z,45,59,0|1cmvv80,48,40,1|1cz4lvz,48,40,1|1cz4lw0,45,59,0|1d5lxvz,45,59,0|1d5lxw0,48,40,1|1dhuojz,48,40,1|1dhuok0,45,59,0|1doc0jz,45,59,0|1doc0k0,48,40,1|1e0kr7z,48,40,1|1e0kr80,45,59,0|1e7f1vz,45,59,0|1e7f1w0,48,40,1|1ejnsjz,48,40,1|1ejnsk0,45,59,0|1eq54jz,45,59,0|1eq54k0,48,40,1|1f2dv7z,48,40,1|1f2dv80,45,59,0|1f8v77z,45,59,0|1f8v780,48,40,1|1fl3xvz,48,40,1|1fl3xw0,45,59,0|1frl9vz,45,59,0|1frl9w0,48,40,1|1g3u0jz,48,40,1|1g3u0k0,45,59,0|1gabcjz,45,59,0|1gabck0,48,40,1|1gmk37z,48,40,1|1gmk380,45,59,0|1gt1f7z,45,59,0|1gt1f80,48,40,1|1h5a5vz,48,40,1|1h5a5w0,45,59,0|1hc4gjz,45,59,0|1hc4gk0,48,40,1|1hod77z,48,40,1|1hod780,45,59,0|1huuj7z,45,59,0|1huuj80,48,40,1|1i739vz,48,40,1|1i739w0,45,59,0|1idklvz,45,59,0|1idklw0,48,40,1|1iptcjz,48,40,1|1iptck0,45,59,0|1iwaojz,45,59,0|1iwaok0,48,40,1|1j8jf7z,48,40,1|1j8jf80,45,59,0|1jf0r7z,45,59,0|1jf0r80,48,40,1|1jr9hvz,48,40,1|1jr9hw0,45,59,0|1jy3sjz,45,59,0|1jy3sk0,48,40,1|1kacj7z,48,40,1|1kacj80,45,59,0|1kgtv7z,45,59,0|1kgtv80,48,40,1|1kt2lvz,48,40,1|1kt2lw0,45,59,0|1kzjxvz,45,59,0|1kzjxw0,48,40,1|1lbsojz,48,40,1|1lbsok0,45,59,0|1lia0jz,45,59,0|1lia0k0,48,40,1|1luir7z,48,40,1|1luir80,45,59,0|1m1037z,45,59,0|1m10380,48,40,1|1md8tvz,48,40,1|1md8tw0,45,59,0|1mjq5vz,45,59,0|1mjq5w0,48,40,1|1mvywjz,48,40,1|1mvywk0,45,59,0|1n2t77z,45,59,0|1n2t780,48,40,1|1nf1xvz,48,40,1|1nf1xw0,45,59,0|1nlj9vz,45,59,0|1nlj9w0,48,40,1|1nxs0jz,48,40,1|1nxs0k0,45,59,0|1o49cjz,45,59,0|1o49ck0,48,40,1|1ogi37z,48,40,1|1ogi380,45,59,0|1omzf7z,45,59,0|1omzf80,48,40,1|1oz85vz,48,40,1|1oz85w0,45,59,0|1p5phvz,45,59,0|1p5phw0,48,40,1|1phy8jz,48,40,1|1phy8k0,45,59,0|1posj7z,45,59,0|1posj80,48,40,1|1q119vz,48,40,1|1q119w0,45,59,0|1q7ilvz,45,59,0|1q7ilw0,48,40,1|1qjrcjz,48,40,1|1qjrck0,45,59,0|1qq8ojz,45,59,0|1qq8ok0,48,40,1|1r2hf7z,48,40,1|1r2hf80,45,59,0|1r8yr7z,45,59,0|1r8yr80,48,40,1|1rl7hvz,48,40,1|1rl7hw0,45,59,0|1rrotvz,45,59,0|1rrotw0,48,40,1|1s3xkjz,48,40,1|1s3xkk0,45,59,0|1saewjz,45,59,0|1saewk0,48,40,1|1smnn7z,48,40,1|1smnn80,45,59,0|1sthxvz,45,59,0|1sthxw0,48,40,1|1t5qojz,48,40,1|1t5qok0,45,59,0|1tc80jz,45,59,0|1tc80k0,48,40,1|1togr7z,48,40,1|1togr80,45,59,0|1tuy37z,45,59,0|1tuy380,48,40,1|1u76tvz,48,40,1|1u76tw0,45,59,0|1udo5vz,45,59,0|1udo5w0,48,40,1|1upwwjz,48,40,1|1upwwk0,45,59,0|1uwe8jz,45,59,0|1uwe8k0,48,40,1|1v8mz7z,48,40,1|1v8mz80,45,59,0|1vf4b7z,45,59,0|1vf4b80,48,40,1|1vrd1vz,48,40,1|1vrd1w0,45,59,0|NaN,45,59,0","America/Hermosillo|,0,108,0|-p1u4k1,0,108,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|-eg9601,45,63,0|-eg9600,44,62,0|-axv381,44,62,0|-axv380,46,38,0|m7z,46,38,0|m80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|NaN,44,62,0","America/Indiana/Indianapolis|,0,109,0|-18y0m01,0,109,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-evzog1,45,63,0|-evzog0,48,59,1|-eqy9w1,48,59,1|-eqy9w0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw1s1,45,63,0|-ccw1s0,48,59,1|-c4yxw1,48,59,1|-c4yxw0,45,63,0|-bu5z41,45,63,0|-bu5z40,48,59,1|-bm8v81,48,59,1|-bm8v80,45,63,0|-bbfwg1,45,63,0|-bbfwg0,48,59,1|-b3isk1,48,59,1|-b3isk0,45,63,0|-aspts1,45,63,0|-aspts0,48,59,1|-akspw1,48,59,1|-akspw0,45,63,0|-a9msg1,45,63,0|-a9msg0,48,59,1|-a22n81,48,59,1|-a22n80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,43,59,0|-6ea781,43,59,0|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Indiana/Knox|,0,110,0|-18y0m01,0,110,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-bu5z41,45,63,0|-bu5z40,48,59,1|-bm8v81,48,59,1|-bm8v80,45,63,0|-bbfwg1,45,63,0|-bbfwg0,48,59,1|-b3isk1,48,59,1|-b3isk0,45,63,0|-aspts1,45,63,0|-aspts0,48,59,1|-akspw1,48,59,1|-akspw0,45,63,0|-a9msg1,45,63,0|-a9msg0,48,59,1|-a22n81,48,59,1|-a22n80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7eahw1,48,59,1|-7eahw0,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6vkf81,48,59,1|-6vkf80,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5be781,48,59,1|-5be780,45,63,0|-521341,45,63,0|-521340,48,59,1|-4sb5w1,48,59,1|-4sb5w0,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-49l381,48,59,1|-49l380,45,63,0|-407z41,45,63,0|-407z40,43,59,0|-384xw1,43,59,0|-384xw0,45,63,0|-1e8n41,45,63,0|-1e8n40,48,59,1|-14vok1,48,59,1|-14vok0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5lw1,48,59,1|-m5lw0,45,63,0|-cshs1,45,63,0|-cshs0,48,59,1|-3fj81,48,59,1|-3fj80,45,63,0|5xkvz,45,63,0|5xkw0,48,59,1|fajfz,48,59,1|fajg0,45,63,0|onnjz,45,63,0|onnk0,48,59,1|ydkrz,48,59,1|ydks0,45,63,0|17qovz,45,63,0|17qow0,48,59,1|1h3nfz,48,59,1|1h3ng0,45,63,0|1qgrjz,45,63,0|1qgrk0,48,59,1|1ztq3z,48,59,1|1ztq40,45,63,0|23ffjz,45,63,0|23ffk0,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2oo8vz,45,63,0|2oo8w0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt23z,48,59,1|4lt240,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j4rz,48,59,1|54j4s0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,43,59,0|ix323z,43,59,0|ix3240,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Indiana/Marengo|,0,111,0|-18y0m01,0,111,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6x09w1,48,59,1|-6x09w0,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5cu1w1,48,59,1|-5cu1w0,45,63,0|-521341,45,63,0|-521340,48,59,1|-4u3z81,48,59,1|-4u3z80,45,63,0|-4iy1s1,45,63,0|-4iy1s0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|23fcrz,43,59,0|23fcs0,48,59,1|2ijsrz,48,59,1|2ijss0,43,59,0|2oo63z,43,59,0|2oo640,61,40,1|319snz,61,40,1|319so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Indiana/Petersburg|,0,112,0|-18y0m01,0,112,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-7nnm01,45,63,0|-7nnm00,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6x09w1,48,59,1|-6x09w0,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5cu1w1,48,59,1|-5cu1w0,45,63,0|-521341,45,63,0|-521340,48,59,1|-4u3z81,48,59,1|-4u3z80,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-49l381,48,59,1|-49l380,45,63,0|-407z41,45,63,0|-407z40,48,59,1|-3qv0k1,48,59,1|-3qv0k0,45,63,0|-3hhwg1,45,63,0|-3hhwg0,48,59,1|-384xw1,48,59,1|-384xw0,45,63,0|-2yrts1,45,63,0|-2yrts0,48,59,1|-2pev81,48,59,1|-2pev80,45,63,0|-2g1r41,45,63,0|-2g1r40,43,59,0|-1nlr81,43,59,0|-1nlr80,45,63,0|-1e8n41,45,63,0|-1e8n40,48,59,1|-14vok1,48,59,1|-14vok0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5lw1,48,59,1|-m5lw0,45,63,0|-cshs1,45,63,0|-cshs0,48,59,1|-3fj81,48,59,1|-3fj80,45,63,0|5xkvz,45,63,0|5xkw0,48,59,1|fajfz,48,59,1|fajg0,45,63,0|onnjz,45,63,0|onnk0,48,59,1|ydkrz,48,59,1|ydks0,45,63,0|17qovz,45,63,0|17qow0,48,59,1|1h3nfz,48,59,1|1h3ng0,45,63,0|1qgrjz,45,63,0|1qgrk0,48,59,1|1ztq3z,48,59,1|1ztq40,45,63,0|23ffjz,45,63,0|23ffk0,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2oo8vz,45,63,0|2oo8w0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,43,59,0|ix323z,43,59,0|ix3240,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Indiana/Tell_City|,0,113,0|-18y0m01,0,113,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-7nnm01,45,63,0|-7nnm00,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6x09w1,48,59,1|-6x09w0,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5cu1w1,48,59,1|-5cu1w0,45,63,0|-521341,45,63,0|-521340,48,59,1|-4u3z81,48,59,1|-4u3z80,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-49l381,48,59,1|-49l380,45,63,0|-407z41,45,63,0|-407z40,48,59,1|-3qv0k1,48,59,1|-3qv0k0,45,63,0|-3hhwg1,45,63,0|-3hhwg0,48,59,1|-384xw1,48,59,1|-384xw0,45,63,0|-2yrts1,45,63,0|-2yrts0,43,59,0|-14vok1,43,59,0|-14vok0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5lw1,48,59,1|-m5lw0,45,63,0|-cshs1,45,63,0|-cshs0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|ix323z,43,59,0|ix3240,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Indiana/Vevay|,0,114,0|-18y0m01,0,114,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-86qhs1,45,63,0|-86qhs0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Indiana/Vincennes|,0,115,0|-18y0m01,0,115,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw1s1,45,63,0|-ccw1s0,48,59,1|-c4yxw1,48,59,1|-c4yxw0,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7nnm01,45,63,0|-7nnm00,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6x09w1,48,59,1|-6x09w0,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5cu1w1,48,59,1|-5cu1w0,45,63,0|-521341,45,63,0|-521340,48,59,1|-4sb5w1,48,59,1|-4sb5w0,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-4bdwk1,48,59,1|-4bdwk0,45,63,0|-407z41,45,63,0|-407z40,48,59,1|-3qv0k1,48,59,1|-3qv0k0,45,63,0|-3hhwg1,45,63,0|-3hhwg0,48,59,1|-384xw1,48,59,1|-384xw0,45,63,0|-2yrts1,45,63,0|-2yrts0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|ix323z,43,59,0|ix3240,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Indiana/Winamac|,0,116,0|-18y0m01,0,116,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw1s1,45,63,0|-ccw1s0,48,59,1|-c4yxw1,48,59,1|-c4yxw0,45,63,0|-bu5z41,45,63,0|-bu5z40,48,59,1|-bm8v81,48,59,1|-bm8v80,45,63,0|-bbfwg1,45,63,0|-bbfwg0,48,59,1|-b3isk1,48,59,1|-b3isk0,45,63,0|-aspts1,45,63,0|-aspts0,48,59,1|-akspw1,48,59,1|-akspw0,45,63,0|-a9msg1,45,63,0|-a9msg0,48,59,1|-a22n81,48,59,1|-a22n80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7eahw1,48,59,1|-7eahw0,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6vkf81,48,59,1|-6vkf80,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5cu1w1,48,59,1|-5cu1w0,45,63,0|-521341,45,63,0|-521340,48,59,1|-4u3z81,48,59,1|-4u3z80,45,63,0|-4iy1s1,45,63,0|-4iy1s0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|ix323z,43,59,0|ix3240,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Inuvik|,59,1,0|-8ve5c1,59,1,0|-8ve5c0,46,38,0|-2g1r41,46,38,0|-2g1r40,78,63,1|-26br41,78,63,1|-26br40,46,38,0|4v6brz,46,38,0|4v6bs0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Iqaluit|,59,1,0|-eb6ao1,59,1,0|-eb6ao0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|-2g1zg1,43,59,0|-2g1zg0,79,41,1|-26bzg1,79,41,1|-26bzg0,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Jamaica|,0,99,0|-15r0v43,0,99,0|-15r0v42,74,99,0|-u85og3,74,99,0|-u85og2,43,59,0|23fcrz,43,59,0|23fcs0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2oo63z,43,59,0|2oo640,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|NaN,43,59,0","America/Juneau|,0,117,0|-1hc7qk0,0,117,0|-1hc7qjz,0,118,0|-1078wfw,0,118,0|-1078wfv,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|23fl3z,46,38,0|23fl40,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2ooefz,46,38,0|2ooeg0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,64,38,1|5n9frz,64,38,1|5n9fs0,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,35,35,0|79dybz,35,35,0|79dyc0,36,35,0|7h5qjz,36,35,0|7h5qk0,37,38,1|7qip3z,37,38,1|7qip40,36,35,0|7zvt7z,36,35,0|7zvt80,37,38,1|898rrz,37,38,1|898rs0,36,35,0|8ilvvz,36,35,0|8ilvw0,37,38,1|8ryufz,37,38,1|8ryug0,36,35,0|9092jz,36,35,0|9092k0,37,38,1|9aox3z,37,38,1|9aox40,36,35,0|9iz57z,36,35,0|9iz580,37,38,1|9tryfz,37,38,1|9tryg0,36,35,0|a1p7vz,36,35,0|a1p7w0,37,38,1|aci13z,37,38,1|aci140,36,35,0|akfajz,36,35,0|akfak0,37,38,1|av83rz,37,38,1|av83s0,36,35,0|b3ibvz,36,35,0|b3ibw0,37,38,1|bdy6fz,37,38,1|bdy6g0,36,35,0|bm8ejz,36,35,0|bm8ek0,37,38,1|bwo93z,37,38,1|bwo940,36,35,0|c4yh7z,36,35,0|c4yh80,37,38,1|cfrafz,37,38,1|cfrag0,36,35,0|cnojvz,36,35,0|cnojw0,37,38,1|cyhd3z,37,38,1|cyhd40,36,35,0|d6emjz,36,35,0|d6emk0,37,38,1|dh7frz,37,38,1|dh7fs0,36,35,0|dphnvz,36,35,0|dphnw0,37,38,1|dzxifz,37,38,1|dzxig0,36,35,0|e87qjz,36,35,0|e87qk0,37,38,1|einl3z,37,38,1|einl40,36,35,0|eqxt7z,36,35,0|eqxt80,37,38,1|f1dnrz,37,38,1|f1dns0,36,35,0|f9nvvz,36,35,0|f9nvw0,37,38,1|fkgp3z,37,38,1|fkgp40,36,35,0|fsdyjz,36,35,0|fsdyk0,37,38,1|g36rrz,37,38,1|g36rs0,36,35,0|gb417z,36,35,0|gb4180,37,38,1|glwufz,37,38,1|glwug0,36,35,0|gu72jz,36,35,0|gu72k0,37,38,1|h4mx3z,37,38,1|h4mx40,36,35,0|hcx57z,36,35,0|hcx580,37,38,1|hnczrz,37,38,1|hnczs0,36,35,0|hvn7vz,36,35,0|hvn7w0,37,38,1|i6g13z,37,38,1|i6g140,36,35,0|iedajz,36,35,0|iedak0,37,38,1|ip63rz,37,38,1|ip63s0,36,35,0|ix3d7z,36,35,0|ix3d80,37,38,1|j7w6fz,37,38,1|j7w6g0,36,35,0|jeqjvz,36,35,0|jeqjw0,37,38,1|jqz7rz,37,38,1|jqz7s0,36,35,0|jxgmjz,36,35,0|jxgmk0,37,38,1|k9pafz,37,38,1|k9pag0,36,35,0|kg6p7z,36,35,0|kg6p80,37,38,1|ksfd3z,37,38,1|ksfd40,36,35,0|kz9qjz,36,35,0|kz9qk0,37,38,1|lbiefz,37,38,1|lbieg0,36,35,0|lhzt7z,36,35,0|lhzt80,37,38,1|lu8h3z,37,38,1|lu8h40,36,35,0|m0pvvz,36,35,0|m0pvw0,37,38,1|mcyjrz,37,38,1|mcyjs0,36,35,0|mjfyjz,36,35,0|mjfyk0,37,38,1|mvomfz,37,38,1|mvomg0,36,35,0|n2617z,36,35,0|n26180,37,38,1|neep3z,37,38,1|neep40,36,35,0|nkw3vz,36,35,0|nkw3w0,37,38,1|nx4rrz,37,38,1|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/Kentucky/Louisville|,0,119,0|-18y0m01,0,119,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-pefr41,45,63,0|-pefr40,48,59,1|-p841w1,48,59,1|-p841w0,45,63,0|-eyvds1,45,63,0|-eyvds0,48,59,1|-eqy9w1,48,59,1|-eqy9w0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw7ad,45,63,0|-ccw7ac,48,59,1|-cb3b81,48,59,1|-cb3b80,45,63,0|-a9msg1,45,63,0|-a9msg0,48,59,1|-a22n81,48,59,1|-a22n80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6vkf81,48,59,1|-6vkf80,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6cuck1,48,59,1|-6cuck0,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5u49w1,48,59,1|-5u49w0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5be781,48,59,1|-5be780,45,63,0|-521341,45,63,0|-521340,48,59,1|-4sb5w1,48,59,1|-4sb5w0,45,63,0|-4iy1s1,45,63,0|-4iy1s0,48,59,1|-4emkk1,48,59,1|-4emkk0,43,59,0|-vin81,43,59,0|-vin80,61,40,1|-m5oo1,61,40,1|-m5oo0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|23fcrz,43,59,0|23fcs0,48,59,1|2ijsrz,48,59,1|2ijss0,43,59,0|2oo63z,43,59,0|2oo640,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Kentucky/Monticello|,0,120,0|-18y0m01,0,120,0|-18y0m00,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5lw1,48,59,1|-m5lw0,45,63,0|-cshs1,45,63,0|-cshs0,48,59,1|-3fj81,48,59,1|-3fj80,45,63,0|5xkvz,45,63,0|5xkw0,48,59,1|fajfz,48,59,1|fajg0,45,63,0|onnjz,45,63,0|onnk0,48,59,1|ydkrz,48,59,1|ydks0,45,63,0|17qovz,45,63,0|17qow0,48,59,1|1h3nfz,48,59,1|1h3ng0,45,63,0|1qgrjz,45,63,0|1qgrk0,48,59,1|1ztq3z,48,59,1|1ztq40,45,63,0|23ffjz,45,63,0|23ffk0,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2oo8vz,45,63,0|2oo8w0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt23z,48,59,1|4lt240,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j4rz,48,59,1|54j4s0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Kralendijk|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/La_Paz|,0,121,0|-15r0wpp,0,121,0|-15r0wpo,40,121,0|-jxzspp,40,121,0|-jxzspo,26,122,1|-jpva5p,26,122,1|-jpva5o,41,40,0|NaN,41,40,0","America/Lima|,0,123,0|-15r0v2d,0,123,0|-15r0v2c,0,124,0|-w25lpp,0,124,0|-w25lpo,55,59,0|-gp8241,55,59,0|-gp8240,41,40,1|-gklgw1,41,40,1|-gklgw0,55,59,0|-gbhm41,55,59,0|-gbhm40,41,40,1|-g24nk1,41,40,1|-g24nk0,55,59,0|-fsrjg1,55,59,0|-fsrjg0,41,40,1|-fjekw1,41,40,1|-fjekw0,55,59,0|8cmlvz,55,59,0|8cmlw0,41,40,1|8h973z,41,40,1|8h9740,55,59,0|8vej7z,55,59,0|8vej80,41,40,1|9014fz,41,40,1|9014g0,55,59,0|afs5vz,55,59,0|afs5w0,41,40,1|aker3z,41,40,1|aker40,55,59,0|cixpvz,55,59,0|cixpw0,41,40,1|cnkb3z,41,40,1|cnkb40,55,59,0|NaN,55,59,0","America/Los_Angeles|,0,125,0|-18y0gg1,0,125,0|-18y0gg0,46,38,0|-r0emw1,46,38,0|-r0emw0,56,62,1|-qplto1,56,62,1|-qplto0,46,38,0|-qhok81,46,38,0|-qhok80,56,62,1|-q6vr01,56,62,1|-q6vr00,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-bdliud,46,38,0|-bdliuc,56,62,1|-ayj0c1,56,62,1|-ayj0c0,46,38,0|-a9mpo1,46,38,0|-a9mpo0,56,62,1|-a22ho1,56,62,1|-a22ho0,46,38,0|-9qwn01,46,38,0|-9qwn00,56,62,1|-9izgc1,56,62,1|-9izgc0,46,38,0|-986kc1,46,38,0|-986kc0,56,62,1|-909do1,56,62,1|-909do0,46,38,0|-8pgho1,46,38,0|-8pgho0,56,62,1|-8hjb01,56,62,1|-8hjb00,46,38,0|-86qf01,46,38,0|-86qf00,56,62,1|-7yt8c1,56,62,1|-7yt8c0,46,38,0|-7o0cc1,46,38,0|-7o0cc0,56,62,1|-7g35o1,56,62,1|-7g35o0,46,38,0|-74xb01,46,38,0|-74xb00,56,62,1|-6x04c1,56,62,1|-6x04c0,46,38,0|-6m78c1,46,38,0|-6m78c0,56,62,1|-6ea1o1,56,62,1|-6ea1o0,46,38,0|-63h5o1,46,38,0|-63h5o0,56,62,1|-5vjz01,56,62,1|-5vjz00,46,38,0|-5kr301,46,38,0|-5kr300,56,62,1|-5ctwc1,56,62,1|-5ctwc0,46,38,0|-5210c1,46,38,0|-5210c0,56,62,1|-4u3to1,56,62,1|-4u3to0,46,38,0|-4ixz01,46,38,0|-4ixz00,56,62,1|-4bdr01,56,62,1|-4bdr00,46,38,0|-407wc1,46,38,0|-407wc0,56,62,1|-3quv01,56,62,1|-3quv00,46,38,0|-3hhto1,46,38,0|-3hhto0,56,62,1|-384sc1,56,62,1|-384sc0,46,38,0|-2yrr01,46,38,0|-2yrr00,56,62,1|-2pepo1,56,62,1|-2pepo0,46,38,0|-2g1oc1,46,38,0|-2g1oc0,56,62,1|-26boc1,56,62,1|-26boc0,46,38,0|-1xblo1,46,38,0|-1xblo0,56,62,1|-1nllo1,56,62,1|-1nllo0,46,38,0|-1e8hk1,46,38,0|-1e8hk0,56,62,1|-14vj01,56,62,1|-14vj00,46,38,0|-view1,46,38,0|-view0,56,62,1|-m5gc1,56,62,1|-m5gc0,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|23fl3z,46,38,0|23fl40,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2ooefz,46,38,0|2ooeg0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jeqh3z,46,38,0|jeqh40,56,62,1|jqz4zz,56,62,1|jqz500,46,38,0|jxgjrz,46,38,0|jxgjs0,56,62,1|k9p7nz,56,62,1|k9p7o0,46,38,0|kg6mfz,46,38,0|kg6mg0,56,62,1|ksfabz,56,62,1|ksfac0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,56,62,1|nx4ozz,56,62,1|nx4p00,46,38,0|o3z2fz,46,38,0|o3z2g0,56,62,1|og7qbz,56,62,1|og7qc0,46,38,0|omp53z,46,38,0|omp540,56,62,1|oyxszz,56,62,1|oyxt00,46,38,0|p5f7rz,46,38,0|p5f7s0,56,62,1|phnvnz,56,62,1|phnvo0,46,38,0|po5afz,46,38,0|po5ag0,56,62,1|q0dybz,56,62,1|q0dyc0,46,38,0|q6vd3z,46,38,0|q6vd40,56,62,1|qj40zz,56,62,1|qj4100,46,38,0|qpyefz,46,38,0|qpyeg0,56,62,1|r272bz,56,62,1|r272c0,46,38,0|r8oh3z,46,38,0|r8oh40,56,62,1|rkx4zz,56,62,1|rkx500,46,38,0|rrejrz,46,38,0|rrejs0,56,62,1|s3n7nz,56,62,1|s3n7o0,46,38,0|sa4mfz,46,38,0|sa4mg0,56,62,1|smdabz,56,62,1|smdac0,46,38,0|ssup3z,46,38,0|ssup40,56,62,1|t53czz,56,62,1|t53d00,46,38,0|tbkrrz,46,38,0|tbkrs0,56,62,1|tntfnz,56,62,1|tntfo0,46,38,0|tunt3z,46,38,0|tunt40,56,62,1|u6wgzz,56,62,1|u6wh00,46,38,0|uddvrz,46,38,0|uddvs0,56,62,1|upmjnz,56,62,1|upmjo0,46,38,0|uw3yfz,46,38,0|uw3yg0,56,62,1|v8cmbz,56,62,1|v8cmc0,46,38,0|veu13z,46,38,0|veu140,56,62,1|vr2ozz,56,62,1|vr2p00,46,38,0|vxk3rz,46,38,0|vxk3s0,56,62,1|w9srnz,56,62,1|w9sro0,46,38,0|wgn53z,46,38,0|wgn540,56,62,1|wsvszz,56,62,1|wsvt00,46,38,0|wzd7rz,46,38,0|wzd7s0,56,62,1|xblvnz,56,62,1|xblvo0,46,38,0|xi3afz,46,38,0|xi3ag0,56,62,1|xubybz,56,62,1|xubyc0,46,38,0|y0td3z,46,38,0|y0td40,56,62,1|yd20zz,56,62,1|yd2100,46,38,0|yjjfrz,46,38,0|yjjfs0,56,62,1|yvs3nz,56,62,1|yvs3o0,46,38,0|z29ifz,46,38,0|z29ig0,56,62,1|zei6bz,56,62,1|zei6c0,46,38,0|zlcjrz,46,38,0|zlcjs0,56,62,1|zxl7nz,56,62,1|zxl7o0,46,38,0|1042mfz,46,38,0|1042mg0,56,62,1|10gbabz,56,62,1|10gbac0,46,38,0|10msp3z,46,38,0|10msp40,56,62,1|10z1czz,56,62,1|10z1d00,46,38,0|115irrz,46,38,0|115irs0,56,62,1|11hrfnz,56,62,1|11hrfo0,46,38,0|11o8ufz,46,38,0|11o8ug0,56,62,1|120hibz,56,62,1|120hic0,46,38,0|126yx3z,46,38,0|126yx40,56,62,1|12j7kzz,56,62,1|12j7l00,46,38,0|12q1yfz,46,38,0|12q1yg0,56,62,1|132ambz,56,62,1|132amc0,46,38,0|138s13z,46,38,0|138s140,56,62,1|13l0ozz,56,62,1|13l0p00,46,38,0|13ri3rz,46,38,0|13ri3s0,56,62,1|143qrnz,56,62,1|143qro0,46,38,0|14a86fz,46,38,0|14a86g0,56,62,1|14mgubz,56,62,1|14mguc0,46,38,0|14sy93z,46,38,0|14sy940,56,62,1|1556wzz,56,62,1|1556x00,46,38,0|15c1afz,46,38,0|15c1ag0,56,62,1|15o9ybz,56,62,1|15o9yc0,46,38,0|15urd3z,46,38,0|15urd40,56,62,1|16700zz,56,62,1|1670100,46,38,0|16dhfrz,46,38,0|16dhfs0,56,62,1|16pq3nz,56,62,1|16pq3o0,46,38,0|16w7ifz,46,38,0|16w7ig0,56,62,1|178g6bz,56,62,1|178g6c0,46,38,0|17exl3z,46,38,0|17exl40,56,62,1|17r68zz,56,62,1|17r6900,46,38,0|17xnnrz,46,38,0|17xnns0,56,62,1|189wbnz,56,62,1|189wbo0,46,38,0|18gqp3z,46,38,0|18gqp40,56,62,1|18szczz,56,62,1|18szd00,46,38,0|18zgrrz,46,38,0|18zgrs0,56,62,1|19bpfnz,56,62,1|19bpfo0,46,38,0|19i6ufz,46,38,0|19i6ug0,56,62,1|19ufibz,56,62,1|19ufic0,46,38,0|1a0wx3z,46,38,0|1a0wx40,56,62,1|1ad5kzz,56,62,1|1ad5l00,46,38,0|1ajmzrz,46,38,0|1ajmzs0,56,62,1|1avvnnz,56,62,1|1avvno0,46,38,0|1b2q13z,46,38,0|1b2q140,56,62,1|1beyozz,56,62,1|1beyp00,46,38,0|1blg3rz,46,38,0|1blg3s0,56,62,1|1bxornz,56,62,1|1bxoro0,46,38,0|1c466fz,46,38,0|1c466g0,56,62,1|1cgeubz,56,62,1|1cgeuc0,46,38,0|1cmw93z,46,38,0|1cmw940,56,62,1|1cz4wzz,56,62,1|1cz4x00,46,38,0|1d5mbrz,46,38,0|1d5mbs0,56,62,1|1dhuznz,56,62,1|1dhuzo0,46,38,0|1docefz,46,38,0|1doceg0,56,62,1|1e0l2bz,56,62,1|1e0l2c0,46,38,0|1e7ffrz,46,38,0|1e7ffs0,56,62,1|1ejo3nz,56,62,1|1ejo3o0,46,38,0|1eq5ifz,46,38,0|1eq5ig0,56,62,1|1f2e6bz,56,62,1|1f2e6c0,46,38,0|1f8vl3z,46,38,0|1f8vl40,56,62,1|1fl48zz,56,62,1|1fl4900,46,38,0|1frlnrz,46,38,0|1frlns0,56,62,1|1g3ubnz,56,62,1|1g3ubo0,46,38,0|1gabqfz,46,38,0|1gabqg0,56,62,1|1gmkebz,56,62,1|1gmkec0,46,38,0|1gt1t3z,46,38,0|1gt1t40,56,62,1|1h5agzz,56,62,1|1h5ah00,46,38,0|1hc4ufz,46,38,0|1hc4ug0,56,62,1|1hodibz,56,62,1|1hodic0,46,38,0|1huux3z,46,38,0|1huux40,56,62,1|1i73kzz,56,62,1|1i73l00,46,38,0|1idkzrz,46,38,0|1idkzs0,56,62,1|1iptnnz,56,62,1|1iptno0,46,38,0|1iwb2fz,46,38,0|1iwb2g0,56,62,1|1j8jqbz,56,62,1|1j8jqc0,46,38,0|1jf153z,46,38,0|1jf1540,56,62,1|1jr9szz,56,62,1|1jr9t00,46,38,0|1jy46fz,46,38,0|1jy46g0,56,62,1|1kacubz,56,62,1|1kacuc0,46,38,0|1kgu93z,46,38,0|1kgu940,56,62,1|1kt2wzz,56,62,1|1kt2x00,46,38,0|1kzkbrz,46,38,0|1kzkbs0,56,62,1|1lbsznz,56,62,1|1lbszo0,46,38,0|1liaefz,46,38,0|1liaeg0,56,62,1|1luj2bz,56,62,1|1luj2c0,46,38,0|1m10h3z,46,38,0|1m10h40,56,62,1|1md94zz,56,62,1|1md9500,46,38,0|1mjqjrz,46,38,0|1mjqjs0,56,62,1|1mvz7nz,56,62,1|1mvz7o0,46,38,0|1n2tl3z,46,38,0|1n2tl40,56,62,1|1nf28zz,56,62,1|1nf2900,46,38,0|1nljnrz,46,38,0|1nljns0,56,62,1|1nxsbnz,56,62,1|1nxsbo0,46,38,0|1o49qfz,46,38,0|1o49qg0,56,62,1|1ogiebz,56,62,1|1ogiec0,46,38,0|1omzt3z,46,38,0|1omzt40,56,62,1|1oz8gzz,56,62,1|1oz8h00,46,38,0|1p5pvrz,46,38,0|1p5pvs0,56,62,1|1phyjnz,56,62,1|1phyjo0,46,38,0|1posx3z,46,38,0|1posx40,56,62,1|1q11kzz,56,62,1|1q11l00,46,38,0|1q7izrz,46,38,0|1q7izs0,56,62,1|1qjrnnz,56,62,1|1qjrno0,46,38,0|1qq92fz,46,38,0|1qq92g0,56,62,1|1r2hqbz,56,62,1|1r2hqc0,46,38,0|1r8z53z,46,38,0|1r8z540,56,62,1|1rl7szz,56,62,1|1rl7t00,46,38,0|1rrp7rz,46,38,0|1rrp7s0,56,62,1|1s3xvnz,56,62,1|1s3xvo0,46,38,0|1safafz,46,38,0|1safag0,56,62,1|1smnybz,56,62,1|1smnyc0,46,38,0|1stibrz,46,38,0|1stibs0,56,62,1|1t5qznz,56,62,1|1t5qzo0,46,38,0|1tc8efz,46,38,0|1tc8eg0,56,62,1|1toh2bz,56,62,1|1toh2c0,46,38,0|1tuyh3z,46,38,0|1tuyh40,56,62,1|1u774zz,56,62,1|1u77500,46,38,0|1udojrz,46,38,0|1udojs0,56,62,1|1upx7nz,56,62,1|1upx7o0,46,38,0|1uwemfz,46,38,0|1uwemg0,56,62,1|1v8nabz,56,62,1|1v8nac0,46,38,0|1vf4p3z,46,38,0|1vf4p40,56,62,1|1vrdczz,56,62,1|1vrdd00,46,38,0|NaN,46,38,0","America/Lower_Princes|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Maceio|,0,126,0|-t85ldx,0,126,0|-t85ldw,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|dggyzz,38,41,0|dggz00,39,43,1|dml9jz,39,43,1|dml9k0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g2t6vz,39,43,1|g2t6w0,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|NaN,38,41,0","America/Managua|,0,127,0|-15r0tct,0,127,0|-15r0tcs,20,128,0|-ijh6op,20,128,0|-ijh6oo,45,63,0|1qkbbz,45,63,0|1qkbc0,43,59,0|2ob1vz,43,59,0|2ob1w0,45,63,0|4t08nz,45,63,0|4t08o0,48,59,1|4y3hvz,48,59,1|4y3hw0,45,63,0|5bqbbz,45,63,0|5bqbc0,48,59,1|5gtkjz,48,59,1|5gtkk0,45,63,0|bhcefz,45,63,0|bhceg0,43,59,0|bv2gjz,43,59,0|bv2gk0,45,63,0|c05vbz,45,63,0|c05vc0,43,59,0|e3bcjz,43,59,0|e3bck0,45,63,0|iepvbz,45,63,0|iepvc0,48,59,1|inpv7z,48,59,1|inpv80,45,63,0|iyizjz,45,63,0|iyizk0,48,59,1|j6g0nz,48,59,1|j6g0o0,45,63,0|NaN,45,63,0","America/Manaus|,0,129,0|-t85gvx,0,129,0|-t85gvw,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|cf0wfz,41,40,0|cf0wg0,38,41,1|cli5nz,38,41,1|cli5o0,41,40,0|NaN,41,40,0","America/Marigot|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Martinique|,0,130,0|-15r0y0t,0,130,0|-15r0y0s,80,130,0|-umcvct,80,130,0|-umcvcs,31,40,0|5ct1rz,31,40,0|5ct1s0,49,41,1|5lt1nz,49,41,1|5lt1o0,31,40,0|NaN,31,40,0","America/Matamoros|,0,131,0|-p1u7c1,0,131,0|-p1u7c0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gcwm7z,45,63,0|gcwm80,48,59,1|gkgrfz,48,59,1|gkgrg0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jft7jz,45,63,0|jft7k0,48,59,1|jqm0rz,48,59,1|jqm0s0,45,63,0|jyw8vz,45,63,0|jyw8w0,48,59,1|k9c3fz,48,59,1|k9c3g0,45,63,0|khmbjz,45,63,0|khmbk0,48,59,1|ks263z,48,59,1|ks2640,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Mazatlan|,0,132,0|-p1u4k1,0,132,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|-eg9601,45,63,0|-eg9600,44,62,0|-axv381,44,62,0|-axv380,46,38,0|m7z,46,38,0|m80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gcwozz,44,62,0|gcwp00,47,63,1|gkgu7z,47,63,1|gkgu80,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jftabz,44,62,0|jftac0,47,63,1|jqm3jz,47,63,1|jqm3k0,44,62,0|jywbnz,44,62,0|jywbo0,47,63,1|k9c67z,47,63,1|k9c680,44,62,0|khmebz,44,62,0|khmec0,47,63,1|ks28vz,47,63,1|ks28w0,44,62,0|l0cgzz,44,62,0|l0ch00,47,63,1|lb5a7z,47,63,1|lb5a80,44,62,0|lj2jnz,44,62,0|lj2jo0,47,63,1|ltvcvz,47,63,1|ltvcw0,44,62,0|m1smbz,44,62,0|m1smc0,47,63,1|mclfjz,47,63,1|mclfk0,44,62,0|mkvnnz,44,62,0|mkvno0,47,63,1|mvbi7z,47,63,1|mvbi80,44,62,0|n3lqbz,44,62,0|n3lqc0,47,63,1|ne1kvz,47,63,1|ne1kw0,44,62,0|nmbszz,44,62,0|nmbt00,47,63,1|nwrnjz,47,63,1|nwrnk0,44,62,0|o51vnz,44,62,0|o51vo0,47,63,1|ofuovz,47,63,1|ofuow0,44,62,0|onrybz,44,62,0|onryc0,47,63,1|oykrjz,47,63,1|oykrk0,44,62,0|p6i0zz,44,62,0|p6i100,47,63,1|phau7z,47,63,1|phau80,44,62,0|ppl2bz,44,62,0|ppl2c0,47,63,1|q00wvz,47,63,1|q00ww0,44,62,0|q8b4zz,44,62,0|q8b500,47,63,1|qiqzjz,47,63,1|qiqzk0,44,62,0|qr17nz,44,62,0|qr17o0,47,63,1|r1u0vz,47,63,1|r1u0w0,44,62,0|r9rabz,44,62,0|r9rac0,47,63,1|rkk3jz,47,63,1|rkk3k0,44,62,0|rshczz,44,62,0|rshd00,47,63,1|s3a67z,47,63,1|s3a680,44,62,0|sbkebz,44,62,0|sbkec0,47,63,1|sm08vz,47,63,1|sm08w0,44,62,0|suagzz,44,62,0|suah00,47,63,1|t4qbjz,47,63,1|t4qbk0,44,62,0|td0jnz,44,62,0|td0jo0,47,63,1|tnge7z,47,63,1|tnge80,44,62,0|tvqmbz,44,62,0|tvqmc0,47,63,1|u6jfjz,47,63,1|u6jfk0,44,62,0|uegozz,44,62,0|uegp00,47,63,1|up9i7z,47,63,1|up9i80,44,62,0|ux6rnz,44,62,0|ux6ro0,47,63,1|v7zkvz,47,63,1|v7zkw0,44,62,0|vg9szz,44,62,0|vg9t00,47,63,1|vqpnjz,47,63,1|vqpnk0,44,62,0|vyzvnz,44,62,0|vyzvo0,47,63,1|w9fq7z,47,63,1|w9fq80,44,62,0|whpybz,44,62,0|whpyc0,47,63,1|wsirjz,47,63,1|wsirk0,44,62,0|x0g0zz,44,62,0|x0g100,47,63,1|xb8u7z,47,63,1|xb8u80,44,62,0|xj63nz,44,62,0|xj63o0,47,63,1|xtywvz,47,63,1|xtyww0,44,62,0|y1w6bz,44,62,0|y1w6c0,47,63,1|ycozjz,47,63,1|ycozk0,44,62,0|ykz7nz,44,62,0|ykz7o0,47,63,1|yvf27z,47,63,1|yvf280,44,62,0|z3pabz,44,62,0|z3pac0,47,63,1|ze54vz,47,63,1|ze54w0,44,62,0|zmfczz,44,62,0|zmfd00,47,63,1|zx867z,47,63,1|zx8680,44,62,0|1055fnz,44,62,0|1055fo0,47,63,1|10fy8vz,47,63,1|10fy8w0,44,62,0|10nvibz,44,62,0|10nvic0,47,63,1|10yobjz,47,63,1|10yobk0,44,62,0|116yjnz,44,62,0|116yjo0,47,63,1|11hee7z,47,63,1|11hee80,44,62,0|11pombz,44,62,0|11pomc0,47,63,1|1204gvz,47,63,1|1204gw0,44,62,0|128eozz,44,62,0|128ep00,47,63,1|12iujjz,47,63,1|12iujk0,44,62,0|12r4rnz,44,62,0|12r4ro0,47,63,1|131xkvz,47,63,1|131xkw0,44,62,0|139uubz,44,62,0|139uuc0,47,63,1|13knnjz,47,63,1|13knnk0,44,62,0|13skwzz,44,62,0|13skx00,47,63,1|143dq7z,47,63,1|143dq80,44,62,0|14bnybz,44,62,0|14bnyc0,47,63,1|14m3svz,47,63,1|14m3sw0,44,62,0|14ue0zz,44,62,0|14ue100,47,63,1|154tvjz,47,63,1|154tvk0,44,62,0|15d43nz,44,62,0|15d43o0,47,63,1|15nwwvz,47,63,1|15nwww0,44,62,0|15vu6bz,44,62,0|15vu6c0,47,63,1|166mzjz,47,63,1|166mzk0,44,62,0|16ek8zz,44,62,0|16ek900,47,63,1|16pd27z,47,63,1|16pd280,44,62,0|16xnabz,44,62,0|16xnac0,47,63,1|17834vz,47,63,1|17834w0,44,62,0|17gdczz,44,62,0|17gdd00,47,63,1|17qt7jz,47,63,1|17qt7k0,44,62,0|17z3fnz,44,62,0|17z3fo0,47,63,1|189ja7z,47,63,1|189ja80,44,62,0|18htibz,44,62,0|18htic0,47,63,1|18smbjz,47,63,1|18smbk0,44,62,0|190jkzz,44,62,0|190jl00,47,63,1|19bce7z,47,63,1|19bce80,44,62,0|19j9nnz,44,62,0|19j9no0,47,63,1|19u2gvz,47,63,1|19u2gw0,44,62,0|1a2cozz,44,62,0|1a2cp00,47,63,1|1acsjjz,47,63,1|1acsjk0,44,62,0|1al2rnz,44,62,0|1al2ro0,47,63,1|1avim7z,47,63,1|1avim80,44,62,0|1b3subz,44,62,0|1b3suc0,47,63,1|1belnjz,47,63,1|1belnk0,44,62,0|1bmiwzz,44,62,0|1bmix00,47,63,1|1bxbq7z,47,63,1|1bxbq80,44,62,0|1c58znz,44,62,0|1c58zo0,47,63,1|1cg1svz,47,63,1|1cg1sw0,44,62,0|1cnz2bz,44,62,0|1cnz2c0,47,63,1|1cyrvjz,47,63,1|1cyrvk0,44,62,0|1d723nz,44,62,0|1d723o0,47,63,1|1dhhy7z,47,63,1|1dhhy80,44,62,0|1dps6bz,44,62,0|1dps6c0,47,63,1|1e080vz,47,63,1|1e080w0,44,62,0|1e8i8zz,44,62,0|1e8i900,47,63,1|1ejb27z,47,63,1|1ejb280,44,62,0|1er8bnz,44,62,0|1er8bo0,47,63,1|1f214vz,47,63,1|1f214w0,44,62,0|1f9yebz,44,62,0|1f9yec0,47,63,1|1fkr7jz,47,63,1|1fkr7k0,44,62,0|1ft1fnz,44,62,0|1ft1fo0,47,63,1|1g3ha7z,47,63,1|1g3ha80,44,62,0|1gbribz,44,62,0|1gbric0,47,63,1|1gm7cvz,47,63,1|1gm7cw0,44,62,0|1guhkzz,44,62,0|1guhl00,47,63,1|1h4xfjz,47,63,1|1h4xfk0,44,62,0|1hd7nnz,44,62,0|1hd7no0,47,63,1|1ho0gvz,47,63,1|1ho0gw0,44,62,0|1hvxqbz,44,62,0|1hvxqc0,47,63,1|1i6qjjz,47,63,1|1i6qjk0,44,62,0|1ienszz,44,62,0|1ient00,47,63,1|1ipgm7z,47,63,1|1ipgm80,44,62,0|1ixqubz,44,62,0|1ixquc0,47,63,1|1j86ovz,47,63,1|1j86ow0,44,62,0|1jggwzz,44,62,0|1jggx00,47,63,1|1jqwrjz,47,63,1|1jqwrk0,44,62,0|1jz6znz,44,62,0|1jz6zo0,47,63,1|1k9zsvz,47,63,1|1k9zsw0,44,62,0|1khx2bz,44,62,0|1khx2c0,47,63,1|1kspvjz,47,63,1|1kspvk0,44,62,0|1l0n4zz,44,62,0|1l0n500,47,63,1|1lbfy7z,47,63,1|1lbfy80,44,62,0|1ljq6bz,44,62,0|1ljq6c0,47,63,1|1lu60vz,47,63,1|1lu60w0,44,62,0|1m2g8zz,44,62,0|1m2g900,47,63,1|1mcw3jz,47,63,1|1mcw3k0,44,62,0|1ml6bnz,44,62,0|1ml6bo0,47,63,1|1mvm67z,47,63,1|1mvm680,44,62,0|1n3webz,44,62,0|1n3wec0,47,63,1|1nep7jz,47,63,1|1nep7k0,44,62,0|1nmmgzz,44,62,0|1nmmh00,47,63,1|1nxfa7z,47,63,1|1nxfa80,44,62,0|1o5cjnz,44,62,0|1o5cjo0,47,63,1|1og5cvz,47,63,1|1og5cw0,44,62,0|1oofkzz,44,62,0|1oofl00,47,63,1|1oyvfjz,47,63,1|1oyvfk0,44,62,0|1p75nnz,44,62,0|1p75no0,47,63,1|1phli7z,47,63,1|1phli80,44,62,0|1ppvqbz,44,62,0|1ppvqc0,47,63,1|1q0ojjz,47,63,1|1q0ojk0,44,62,0|1q8lszz,44,62,0|1q8lt00,47,63,1|1qjem7z,47,63,1|1qjem80,44,62,0|1qrbvnz,44,62,0|1qrbvo0,47,63,1|1r24ovz,47,63,1|1r24ow0,44,62,0|1ra1ybz,44,62,0|1ra1yc0,47,63,1|1rkurjz,47,63,1|1rkurk0,44,62,0|1rt4znz,44,62,0|1rt4zo0,47,63,1|1s3ku7z,47,63,1|1s3ku80,44,62,0|1sbv2bz,44,62,0|1sbv2c0,47,63,1|1smawvz,47,63,1|1smaww0,44,62,0|1sul4zz,44,62,0|1sul500,47,63,1|1t5dy7z,47,63,1|1t5dy80,44,62,0|1tdb7nz,44,62,0|1tdb7o0,47,63,1|1to40vz,47,63,1|1to40w0,44,62,0|1tw1abz,44,62,0|1tw1ac0,47,63,1|1u6u3jz,47,63,1|1u6u3k0,44,62,0|1uf4bnz,44,62,0|1uf4bo0,47,63,1|1upk67z,47,63,1|1upk680,44,62,0|1uxuebz,44,62,0|1uxuec0,47,63,1|1v8a8vz,47,63,1|1v8a8w0,44,62,0|1vgkgzz,44,62,0|1vgkh00,47,63,1|1vr0bjz,47,63,1|1vr0bk0,44,62,0|NaN,44,62,0","America/Menominee|,0,133,0|-17zjvry,0,133,0|-17zjvrx,45,63,0|-r0esg1,45,63,0|-r0esg0,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-qhops1,45,63,0|-qhops0,48,59,1|-q6vwk1,48,59,1|-q6vwk0,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-ccw1s1,45,63,0|-ccw1s0,48,59,1|-c4yxw1,48,59,1|-c4yxw0,45,63,0|-1xbog1,45,63,0|-1xbog0,48,59,1|-1nlr81,48,59,1|-1nlr80,45,63,0|-cshs1,45,63,0|-cshs0,43,59,0|1qgorz,43,59,0|1qgos0,48,59,1|1ztq3z,48,59,1|1ztq40,45,63,0|23ffjz,45,63,0|23ffk0,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2oo8vz,45,63,0|2oo8w0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt23z,48,59,1|4lt240,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j4rz,48,59,1|54j4s0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gb3svz,45,63,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Merida|,0,134,0|-p1u7c1,0,134,0|-p1u7c0,45,63,0|690gnz,45,63,0|690go0,43,59,0|6qpf7z,43,59,0|6qpf80,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gcwm7z,45,63,0|gcwm80,48,59,1|gkgrfz,48,59,1|gkgrg0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jft7jz,45,63,0|jft7k0,48,59,1|jqm0rz,48,59,1|jqm0s0,45,63,0|jyw8vz,45,63,0|jyw8w0,48,59,1|k9c3fz,48,59,1|k9c3g0,45,63,0|khmbjz,45,63,0|khmbk0,48,59,1|ks263z,48,59,1|ks2640,45,63,0|l0ce7z,45,63,0|l0ce80,48,59,1|lb57fz,48,59,1|lb57g0,45,63,0|lj2gvz,45,63,0|lj2gw0,48,59,1|ltva3z,48,59,1|ltva40,45,63,0|m1sjjz,45,63,0|m1sjk0,48,59,1|mclcrz,48,59,1|mclcs0,45,63,0|mkvkvz,45,63,0|mkvkw0,48,59,1|mvbffz,48,59,1|mvbfg0,45,63,0|n3lnjz,45,63,0|n3lnk0,48,59,1|ne1i3z,48,59,1|ne1i40,45,63,0|nmbq7z,45,63,0|nmbq80,48,59,1|nwrkrz,48,59,1|nwrks0,45,63,0|o51svz,45,63,0|o51sw0,48,59,1|ofum3z,48,59,1|ofum40,45,63,0|onrvjz,45,63,0|onrvk0,48,59,1|oykorz,48,59,1|oykos0,45,63,0|p6hy7z,45,63,0|p6hy80,48,59,1|pharfz,48,59,1|pharg0,45,63,0|ppkzjz,45,63,0|ppkzk0,48,59,1|q00u3z,48,59,1|q00u40,45,63,0|q8b27z,45,63,0|q8b280,48,59,1|qiqwrz,48,59,1|qiqws0,45,63,0|qr14vz,45,63,0|qr14w0,48,59,1|r1ty3z,48,59,1|r1ty40,45,63,0|r9r7jz,45,63,0|r9r7k0,48,59,1|rkk0rz,48,59,1|rkk0s0,45,63,0|rsha7z,45,63,0|rsha80,48,59,1|s3a3fz,48,59,1|s3a3g0,45,63,0|sbkbjz,45,63,0|sbkbk0,48,59,1|sm063z,48,59,1|sm0640,45,63,0|suae7z,45,63,0|suae80,48,59,1|t4q8rz,48,59,1|t4q8s0,45,63,0|td0gvz,45,63,0|td0gw0,48,59,1|tngbfz,48,59,1|tngbg0,45,63,0|tvqjjz,45,63,0|tvqjk0,48,59,1|u6jcrz,48,59,1|u6jcs0,45,63,0|uegm7z,45,63,0|uegm80,48,59,1|up9ffz,48,59,1|up9fg0,45,63,0|ux6ovz,45,63,0|ux6ow0,48,59,1|v7zi3z,48,59,1|v7zi40,45,63,0|vg9q7z,45,63,0|vg9q80,48,59,1|vqpkrz,48,59,1|vqpks0,45,63,0|vyzsvz,45,63,0|vyzsw0,48,59,1|w9fnfz,48,59,1|w9fng0,45,63,0|whpvjz,45,63,0|whpvk0,48,59,1|wsiorz,48,59,1|wsios0,45,63,0|x0fy7z,45,63,0|x0fy80,48,59,1|xb8rfz,48,59,1|xb8rg0,45,63,0|xj60vz,45,63,0|xj60w0,48,59,1|xtyu3z,48,59,1|xtyu40,45,63,0|y1w3jz,45,63,0|y1w3k0,48,59,1|ycowrz,48,59,1|ycows0,45,63,0|ykz4vz,45,63,0|ykz4w0,48,59,1|yvezfz,48,59,1|yvezg0,45,63,0|z3p7jz,45,63,0|z3p7k0,48,59,1|ze523z,48,59,1|ze5240,45,63,0|zmfa7z,45,63,0|zmfa80,48,59,1|zx83fz,48,59,1|zx83g0,45,63,0|1055cvz,45,63,0|1055cw0,48,59,1|10fy63z,48,59,1|10fy640,45,63,0|10nvfjz,45,63,0|10nvfk0,48,59,1|10yo8rz,48,59,1|10yo8s0,45,63,0|116ygvz,45,63,0|116ygw0,48,59,1|11hebfz,48,59,1|11hebg0,45,63,0|11pojjz,45,63,0|11pojk0,48,59,1|1204e3z,48,59,1|1204e40,45,63,0|128em7z,45,63,0|128em80,48,59,1|12iugrz,48,59,1|12iugs0,45,63,0|12r4ovz,45,63,0|12r4ow0,48,59,1|131xi3z,48,59,1|131xi40,45,63,0|139urjz,45,63,0|139urk0,48,59,1|13knkrz,48,59,1|13knks0,45,63,0|13sku7z,45,63,0|13sku80,48,59,1|143dnfz,48,59,1|143dng0,45,63,0|14bnvjz,45,63,0|14bnvk0,48,59,1|14m3q3z,48,59,1|14m3q40,45,63,0|14udy7z,45,63,0|14udy80,48,59,1|154tsrz,48,59,1|154tss0,45,63,0|15d40vz,45,63,0|15d40w0,48,59,1|15nwu3z,48,59,1|15nwu40,45,63,0|15vu3jz,45,63,0|15vu3k0,48,59,1|166mwrz,48,59,1|166mws0,45,63,0|16ek67z,45,63,0|16ek680,48,59,1|16pczfz,48,59,1|16pczg0,45,63,0|16xn7jz,45,63,0|16xn7k0,48,59,1|178323z,48,59,1|1783240,45,63,0|17gda7z,45,63,0|17gda80,48,59,1|17qt4rz,48,59,1|17qt4s0,45,63,0|17z3cvz,45,63,0|17z3cw0,48,59,1|189j7fz,48,59,1|189j7g0,45,63,0|18htfjz,45,63,0|18htfk0,48,59,1|18sm8rz,48,59,1|18sm8s0,45,63,0|190ji7z,45,63,0|190ji80,48,59,1|19bcbfz,48,59,1|19bcbg0,45,63,0|19j9kvz,45,63,0|19j9kw0,48,59,1|19u2e3z,48,59,1|19u2e40,45,63,0|1a2cm7z,45,63,0|1a2cm80,48,59,1|1acsgrz,48,59,1|1acsgs0,45,63,0|1al2ovz,45,63,0|1al2ow0,48,59,1|1avijfz,48,59,1|1avijg0,45,63,0|1b3srjz,45,63,0|1b3srk0,48,59,1|1belkrz,48,59,1|1belks0,45,63,0|1bmiu7z,45,63,0|1bmiu80,48,59,1|1bxbnfz,48,59,1|1bxbng0,45,63,0|1c58wvz,45,63,0|1c58ww0,48,59,1|1cg1q3z,48,59,1|1cg1q40,45,63,0|1cnyzjz,45,63,0|1cnyzk0,48,59,1|1cyrsrz,48,59,1|1cyrss0,45,63,0|1d720vz,45,63,0|1d720w0,48,59,1|1dhhvfz,48,59,1|1dhhvg0,45,63,0|1dps3jz,45,63,0|1dps3k0,48,59,1|1e07y3z,48,59,1|1e07y40,45,63,0|1e8i67z,45,63,0|1e8i680,48,59,1|1ejazfz,48,59,1|1ejazg0,45,63,0|1er88vz,45,63,0|1er88w0,48,59,1|1f2123z,48,59,1|1f21240,45,63,0|1f9ybjz,45,63,0|1f9ybk0,48,59,1|1fkr4rz,48,59,1|1fkr4s0,45,63,0|1ft1cvz,45,63,0|1ft1cw0,48,59,1|1g3h7fz,48,59,1|1g3h7g0,45,63,0|1gbrfjz,45,63,0|1gbrfk0,48,59,1|1gm7a3z,48,59,1|1gm7a40,45,63,0|1guhi7z,45,63,0|1guhi80,48,59,1|1h4xcrz,48,59,1|1h4xcs0,45,63,0|1hd7kvz,45,63,0|1hd7kw0,48,59,1|1ho0e3z,48,59,1|1ho0e40,45,63,0|1hvxnjz,45,63,0|1hvxnk0,48,59,1|1i6qgrz,48,59,1|1i6qgs0,45,63,0|1ienq7z,45,63,0|1ienq80,48,59,1|1ipgjfz,48,59,1|1ipgjg0,45,63,0|1ixqrjz,45,63,0|1ixqrk0,48,59,1|1j86m3z,48,59,1|1j86m40,45,63,0|1jggu7z,45,63,0|1jggu80,48,59,1|1jqworz,48,59,1|1jqwos0,45,63,0|1jz6wvz,45,63,0|1jz6ww0,48,59,1|1k9zq3z,48,59,1|1k9zq40,45,63,0|1khwzjz,45,63,0|1khwzk0,48,59,1|1kspsrz,48,59,1|1kspss0,45,63,0|1l0n27z,45,63,0|1l0n280,48,59,1|1lbfvfz,48,59,1|1lbfvg0,45,63,0|1ljq3jz,45,63,0|1ljq3k0,48,59,1|1lu5y3z,48,59,1|1lu5y40,45,63,0|1m2g67z,45,63,0|1m2g680,48,59,1|1mcw0rz,48,59,1|1mcw0s0,45,63,0|1ml68vz,45,63,0|1ml68w0,48,59,1|1mvm3fz,48,59,1|1mvm3g0,45,63,0|1n3wbjz,45,63,0|1n3wbk0,48,59,1|1nep4rz,48,59,1|1nep4s0,45,63,0|1nmme7z,45,63,0|1nmme80,48,59,1|1nxf7fz,48,59,1|1nxf7g0,45,63,0|1o5cgvz,45,63,0|1o5cgw0,48,59,1|1og5a3z,48,59,1|1og5a40,45,63,0|1oofi7z,45,63,0|1oofi80,48,59,1|1oyvcrz,48,59,1|1oyvcs0,45,63,0|1p75kvz,45,63,0|1p75kw0,48,59,1|1phlffz,48,59,1|1phlfg0,45,63,0|1ppvnjz,45,63,0|1ppvnk0,48,59,1|1q0ogrz,48,59,1|1q0ogs0,45,63,0|1q8lq7z,45,63,0|1q8lq80,48,59,1|1qjejfz,48,59,1|1qjejg0,45,63,0|1qrbsvz,45,63,0|1qrbsw0,48,59,1|1r24m3z,48,59,1|1r24m40,45,63,0|1ra1vjz,45,63,0|1ra1vk0,48,59,1|1rkuorz,48,59,1|1rkuos0,45,63,0|1rt4wvz,45,63,0|1rt4ww0,48,59,1|1s3krfz,48,59,1|1s3krg0,45,63,0|1sbuzjz,45,63,0|1sbuzk0,48,59,1|1smau3z,48,59,1|1smau40,45,63,0|1sul27z,45,63,0|1sul280,48,59,1|1t5dvfz,48,59,1|1t5dvg0,45,63,0|1tdb4vz,45,63,0|1tdb4w0,48,59,1|1to3y3z,48,59,1|1to3y40,45,63,0|1tw17jz,45,63,0|1tw17k0,48,59,1|1u6u0rz,48,59,1|1u6u0s0,45,63,0|1uf48vz,45,63,0|1uf48w0,48,59,1|1upk3fz,48,59,1|1upk3g0,45,63,0|1uxubjz,45,63,0|1uxubk0,48,59,1|1v8a63z,48,59,1|1v8a640,45,63,0|1vgke7z,45,63,0|1vgke80,48,59,1|1vr08rz,48,59,1|1vr08s0,45,63,0|NaN,45,63,0","America/Metlakatla|,0,135,0|-1hc7qk0,0,135,0|-1hc7qjz,0,136,0|-1078wyv,0,136,0|-1078wyu,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|23fl3z,46,38,0|23fl40,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2ooefz,46,38,0|2ooeg0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|nx4rrz,46,38,0|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,46,38,0|plmjrz,46,38,0|plmjs0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/Mexico_City|,0,137,0|-p1u4k1,0,137,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|-g4n8o1,45,63,0|-g4n8o0,48,59,1|-fxg241,48,59,1|-fxg240,45,63,0|-f60y01,45,63,0|-f60y00,48,59,1|-f07rg1,48,59,1|-f07rg0,45,63,0|-dlc7c1,45,63,0|-dlc7c0,52,59,1|-deaks1,52,59,1|-deaks0,45,63,0|-adljc1,45,63,0|-adljc0,48,59,1|-a4yi41,48,59,1|-a4yi40,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gcwm7z,45,63,0|gcwm80,48,59,1|gkgrfz,48,59,1|gkgrg0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jft7jz,45,63,0|jft7k0,48,59,1|jqm0rz,48,59,1|jqm0s0,45,63,0|jyw8vz,45,63,0|jyw8w0,48,59,1|k9c3fz,48,59,1|k9c3g0,45,63,0|khmbjz,45,63,0|khmbk0,48,59,1|ks263z,48,59,1|ks2640,45,63,0|l0ce7z,45,63,0|l0ce80,48,59,1|lb57fz,48,59,1|lb57g0,45,63,0|lj2gvz,45,63,0|lj2gw0,48,59,1|ltva3z,48,59,1|ltva40,45,63,0|m1sjjz,45,63,0|m1sjk0,48,59,1|mclcrz,48,59,1|mclcs0,45,63,0|mkvkvz,45,63,0|mkvkw0,48,59,1|mvbffz,48,59,1|mvbfg0,45,63,0|n3lnjz,45,63,0|n3lnk0,48,59,1|ne1i3z,48,59,1|ne1i40,45,63,0|nmbq7z,45,63,0|nmbq80,48,59,1|nwrkrz,48,59,1|nwrks0,45,63,0|o51svz,45,63,0|o51sw0,48,59,1|ofum3z,48,59,1|ofum40,45,63,0|onrvjz,45,63,0|onrvk0,48,59,1|oykorz,48,59,1|oykos0,45,63,0|p6hy7z,45,63,0|p6hy80,48,59,1|pharfz,48,59,1|pharg0,45,63,0|ppkzjz,45,63,0|ppkzk0,48,59,1|q00u3z,48,59,1|q00u40,45,63,0|q8b27z,45,63,0|q8b280,48,59,1|qiqwrz,48,59,1|qiqws0,45,63,0|qr14vz,45,63,0|qr14w0,48,59,1|r1ty3z,48,59,1|r1ty40,45,63,0|r9r7jz,45,63,0|r9r7k0,48,59,1|rkk0rz,48,59,1|rkk0s0,45,63,0|rsha7z,45,63,0|rsha80,48,59,1|s3a3fz,48,59,1|s3a3g0,45,63,0|sbkbjz,45,63,0|sbkbk0,48,59,1|sm063z,48,59,1|sm0640,45,63,0|suae7z,45,63,0|suae80,48,59,1|t4q8rz,48,59,1|t4q8s0,45,63,0|td0gvz,45,63,0|td0gw0,48,59,1|tngbfz,48,59,1|tngbg0,45,63,0|tvqjjz,45,63,0|tvqjk0,48,59,1|u6jcrz,48,59,1|u6jcs0,45,63,0|uegm7z,45,63,0|uegm80,48,59,1|up9ffz,48,59,1|up9fg0,45,63,0|ux6ovz,45,63,0|ux6ow0,48,59,1|v7zi3z,48,59,1|v7zi40,45,63,0|vg9q7z,45,63,0|vg9q80,48,59,1|vqpkrz,48,59,1|vqpks0,45,63,0|vyzsvz,45,63,0|vyzsw0,48,59,1|w9fnfz,48,59,1|w9fng0,45,63,0|whpvjz,45,63,0|whpvk0,48,59,1|wsiorz,48,59,1|wsios0,45,63,0|x0fy7z,45,63,0|x0fy80,48,59,1|xb8rfz,48,59,1|xb8rg0,45,63,0|xj60vz,45,63,0|xj60w0,48,59,1|xtyu3z,48,59,1|xtyu40,45,63,0|y1w3jz,45,63,0|y1w3k0,48,59,1|ycowrz,48,59,1|ycows0,45,63,0|ykz4vz,45,63,0|ykz4w0,48,59,1|yvezfz,48,59,1|yvezg0,45,63,0|z3p7jz,45,63,0|z3p7k0,48,59,1|ze523z,48,59,1|ze5240,45,63,0|zmfa7z,45,63,0|zmfa80,48,59,1|zx83fz,48,59,1|zx83g0,45,63,0|1055cvz,45,63,0|1055cw0,48,59,1|10fy63z,48,59,1|10fy640,45,63,0|10nvfjz,45,63,0|10nvfk0,48,59,1|10yo8rz,48,59,1|10yo8s0,45,63,0|116ygvz,45,63,0|116ygw0,48,59,1|11hebfz,48,59,1|11hebg0,45,63,0|11pojjz,45,63,0|11pojk0,48,59,1|1204e3z,48,59,1|1204e40,45,63,0|128em7z,45,63,0|128em80,48,59,1|12iugrz,48,59,1|12iugs0,45,63,0|12r4ovz,45,63,0|12r4ow0,48,59,1|131xi3z,48,59,1|131xi40,45,63,0|139urjz,45,63,0|139urk0,48,59,1|13knkrz,48,59,1|13knks0,45,63,0|13sku7z,45,63,0|13sku80,48,59,1|143dnfz,48,59,1|143dng0,45,63,0|14bnvjz,45,63,0|14bnvk0,48,59,1|14m3q3z,48,59,1|14m3q40,45,63,0|14udy7z,45,63,0|14udy80,48,59,1|154tsrz,48,59,1|154tss0,45,63,0|15d40vz,45,63,0|15d40w0,48,59,1|15nwu3z,48,59,1|15nwu40,45,63,0|15vu3jz,45,63,0|15vu3k0,48,59,1|166mwrz,48,59,1|166mws0,45,63,0|16ek67z,45,63,0|16ek680,48,59,1|16pczfz,48,59,1|16pczg0,45,63,0|16xn7jz,45,63,0|16xn7k0,48,59,1|178323z,48,59,1|1783240,45,63,0|17gda7z,45,63,0|17gda80,48,59,1|17qt4rz,48,59,1|17qt4s0,45,63,0|17z3cvz,45,63,0|17z3cw0,48,59,1|189j7fz,48,59,1|189j7g0,45,63,0|18htfjz,45,63,0|18htfk0,48,59,1|18sm8rz,48,59,1|18sm8s0,45,63,0|190ji7z,45,63,0|190ji80,48,59,1|19bcbfz,48,59,1|19bcbg0,45,63,0|19j9kvz,45,63,0|19j9kw0,48,59,1|19u2e3z,48,59,1|19u2e40,45,63,0|1a2cm7z,45,63,0|1a2cm80,48,59,1|1acsgrz,48,59,1|1acsgs0,45,63,0|1al2ovz,45,63,0|1al2ow0,48,59,1|1avijfz,48,59,1|1avijg0,45,63,0|1b3srjz,45,63,0|1b3srk0,48,59,1|1belkrz,48,59,1|1belks0,45,63,0|1bmiu7z,45,63,0|1bmiu80,48,59,1|1bxbnfz,48,59,1|1bxbng0,45,63,0|1c58wvz,45,63,0|1c58ww0,48,59,1|1cg1q3z,48,59,1|1cg1q40,45,63,0|1cnyzjz,45,63,0|1cnyzk0,48,59,1|1cyrsrz,48,59,1|1cyrss0,45,63,0|1d720vz,45,63,0|1d720w0,48,59,1|1dhhvfz,48,59,1|1dhhvg0,45,63,0|1dps3jz,45,63,0|1dps3k0,48,59,1|1e07y3z,48,59,1|1e07y40,45,63,0|1e8i67z,45,63,0|1e8i680,48,59,1|1ejazfz,48,59,1|1ejazg0,45,63,0|1er88vz,45,63,0|1er88w0,48,59,1|1f2123z,48,59,1|1f21240,45,63,0|1f9ybjz,45,63,0|1f9ybk0,48,59,1|1fkr4rz,48,59,1|1fkr4s0,45,63,0|1ft1cvz,45,63,0|1ft1cw0,48,59,1|1g3h7fz,48,59,1|1g3h7g0,45,63,0|1gbrfjz,45,63,0|1gbrfk0,48,59,1|1gm7a3z,48,59,1|1gm7a40,45,63,0|1guhi7z,45,63,0|1guhi80,48,59,1|1h4xcrz,48,59,1|1h4xcs0,45,63,0|1hd7kvz,45,63,0|1hd7kw0,48,59,1|1ho0e3z,48,59,1|1ho0e40,45,63,0|1hvxnjz,45,63,0|1hvxnk0,48,59,1|1i6qgrz,48,59,1|1i6qgs0,45,63,0|1ienq7z,45,63,0|1ienq80,48,59,1|1ipgjfz,48,59,1|1ipgjg0,45,63,0|1ixqrjz,45,63,0|1ixqrk0,48,59,1|1j86m3z,48,59,1|1j86m40,45,63,0|1jggu7z,45,63,0|1jggu80,48,59,1|1jqworz,48,59,1|1jqwos0,45,63,0|1jz6wvz,45,63,0|1jz6ww0,48,59,1|1k9zq3z,48,59,1|1k9zq40,45,63,0|1khwzjz,45,63,0|1khwzk0,48,59,1|1kspsrz,48,59,1|1kspss0,45,63,0|1l0n27z,45,63,0|1l0n280,48,59,1|1lbfvfz,48,59,1|1lbfvg0,45,63,0|1ljq3jz,45,63,0|1ljq3k0,48,59,1|1lu5y3z,48,59,1|1lu5y40,45,63,0|1m2g67z,45,63,0|1m2g680,48,59,1|1mcw0rz,48,59,1|1mcw0s0,45,63,0|1ml68vz,45,63,0|1ml68w0,48,59,1|1mvm3fz,48,59,1|1mvm3g0,45,63,0|1n3wbjz,45,63,0|1n3wbk0,48,59,1|1nep4rz,48,59,1|1nep4s0,45,63,0|1nmme7z,45,63,0|1nmme80,48,59,1|1nxf7fz,48,59,1|1nxf7g0,45,63,0|1o5cgvz,45,63,0|1o5cgw0,48,59,1|1og5a3z,48,59,1|1og5a40,45,63,0|1oofi7z,45,63,0|1oofi80,48,59,1|1oyvcrz,48,59,1|1oyvcs0,45,63,0|1p75kvz,45,63,0|1p75kw0,48,59,1|1phlffz,48,59,1|1phlfg0,45,63,0|1ppvnjz,45,63,0|1ppvnk0,48,59,1|1q0ogrz,48,59,1|1q0ogs0,45,63,0|1q8lq7z,45,63,0|1q8lq80,48,59,1|1qjejfz,48,59,1|1qjejg0,45,63,0|1qrbsvz,45,63,0|1qrbsw0,48,59,1|1r24m3z,48,59,1|1r24m40,45,63,0|1ra1vjz,45,63,0|1ra1vk0,48,59,1|1rkuorz,48,59,1|1rkuos0,45,63,0|1rt4wvz,45,63,0|1rt4ww0,48,59,1|1s3krfz,48,59,1|1s3krg0,45,63,0|1sbuzjz,45,63,0|1sbuzk0,48,59,1|1smau3z,48,59,1|1smau40,45,63,0|1sul27z,45,63,0|1sul280,48,59,1|1t5dvfz,48,59,1|1t5dvg0,45,63,0|1tdb4vz,45,63,0|1tdb4w0,48,59,1|1to3y3z,48,59,1|1to3y40,45,63,0|1tw17jz,45,63,0|1tw17k0,48,59,1|1u6u0rz,48,59,1|1u6u0s0,45,63,0|1uf48vz,45,63,0|1uf48w0,48,59,1|1upk3fz,48,59,1|1upk3g0,45,63,0|1uxubjz,45,63,0|1uxubk0,48,59,1|1v8a63z,48,59,1|1v8a640,45,63,0|1vgke7z,45,63,0|1vgke80,48,59,1|1vr08rz,48,59,1|1vr08s0,45,63,0|NaN,45,63,0","America/Miquelon|,0,138,0|-ulmyxl,0,138,0|-ulmyxk,31,40,0|5e3cfz,31,40,0|5e3cg0,38,41,0|908lvz,38,41,0|908lw0,39,43,1|9aogfz,39,43,1|9aogg0,38,41,0|9iyojz,38,41,0|9iyok0,39,43,1|9trhrz,39,43,1|9trhs0,38,41,0|a1or7z,38,41,0|a1or80,39,43,1|achkfz,39,43,1|achkg0,38,41,0|aketvz,38,41,0|aketw0,39,43,1|av7n3z,39,43,1|av7n40,38,41,0|b3hv7z,38,41,0|b3hv80,39,43,1|bdxprz,39,43,1|bdxps0,38,41,0|bm7xvz,38,41,0|bm7xw0,39,43,1|bwnsfz,39,43,1|bwnsg0,38,41,0|c4y0jz,38,41,0|c4y0k0,39,43,1|cfqtrz,39,43,1|cfqts0,38,41,0|cno37z,38,41,0|cno380,39,43,1|cygwfz,39,43,1|cygwg0,38,41,0|d6e5vz,38,41,0|d6e5w0,39,43,1|dh6z3z,39,43,1|dh6z40,38,41,0|dph77z,38,41,0|dph780,39,43,1|dzx1rz,39,43,1|dzx1s0,38,41,0|e879vz,38,41,0|e879w0,39,43,1|ein4fz,39,43,1|ein4g0,38,41,0|eqxcjz,38,41,0|eqxck0,39,43,1|f1d73z,39,43,1|f1d740,38,41,0|f9nf7z,38,41,0|f9nf80,39,43,1|fkg8fz,39,43,1|fkg8g0,38,41,0|fsdhvz,38,41,0|fsdhw0,39,43,1|g36b3z,39,43,1|g36b40,38,41,0|gb3kjz,38,41,0|gb3kk0,39,43,1|glwdrz,39,43,1|glwds0,38,41,0|gu6lvz,38,41,0|gu6lw0,39,43,1|h4mgfz,39,43,1|h4mgg0,38,41,0|hcwojz,38,41,0|hcwok0,39,43,1|hncj3z,39,43,1|hncj40,38,41,0|hvmr7z,38,41,0|hvmr80,39,43,1|i6fkfz,39,43,1|i6fkg0,38,41,0|iectvz,38,41,0|iectw0,39,43,1|ip5n3z,39,43,1|ip5n40,38,41,0|ix2wjz,38,41,0|ix2wk0,39,43,1|j7vprz,39,43,1|j7vps0,38,41,0|jeq37z,38,41,0|jeq380,39,43,1|jqyr3z,39,43,1|jqyr40,38,41,0|jxg5vz,38,41,0|jxg5w0,39,43,1|k9otrz,39,43,1|k9ots0,38,41,0|kg68jz,38,41,0|kg68k0,39,43,1|ksewfz,39,43,1|ksewg0,38,41,0|kz99vz,38,41,0|kz99w0,39,43,1|lbhxrz,39,43,1|lbhxs0,38,41,0|lhzcjz,38,41,0|lhzck0,39,43,1|lu80fz,39,43,1|lu80g0,38,41,0|m0pf7z,38,41,0|m0pf80,39,43,1|mcy33z,39,43,1|mcy340,38,41,0|mjfhvz,38,41,0|mjfhw0,39,43,1|mvo5rz,39,43,1|mvo5s0,38,41,0|n25kjz,38,41,0|n25kk0,39,43,1|nee8fz,39,43,1|nee8g0,38,41,0|nkvn7z,38,41,0|nkvn80,39,43,1|nx4b3z,39,43,1|nx4b40,38,41,0|o3yojz,38,41,0|o3yok0,39,43,1|og7cfz,39,43,1|og7cg0,38,41,0|omor7z,38,41,0|omor80,39,43,1|oyxf3z,39,43,1|oyxf40,38,41,0|p5etvz,38,41,0|p5etw0,39,43,1|phnhrz,39,43,1|phnhs0,38,41,0|po4wjz,38,41,0|po4wk0,39,43,1|q0dkfz,39,43,1|q0dkg0,38,41,0|q6uz7z,38,41,0|q6uz80,39,43,1|qj3n3z,39,43,1|qj3n40,38,41,0|qpy0jz,38,41,0|qpy0k0,39,43,1|r26ofz,39,43,1|r26og0,38,41,0|r8o37z,38,41,0|r8o380,39,43,1|rkwr3z,39,43,1|rkwr40,38,41,0|rre5vz,38,41,0|rre5w0,39,43,1|s3mtrz,39,43,1|s3mts0,38,41,0|sa48jz,38,41,0|sa48k0,39,43,1|smcwfz,39,43,1|smcwg0,38,41,0|ssub7z,38,41,0|ssub80,39,43,1|t52z3z,39,43,1|t52z40,38,41,0|tbkdvz,38,41,0|tbkdw0,39,43,1|tnt1rz,39,43,1|tnt1s0,38,41,0|tunf7z,38,41,0|tunf80,39,43,1|u6w33z,39,43,1|u6w340,38,41,0|uddhvz,38,41,0|uddhw0,39,43,1|upm5rz,39,43,1|upm5s0,38,41,0|uw3kjz,38,41,0|uw3kk0,39,43,1|v8c8fz,39,43,1|v8c8g0,38,41,0|vetn7z,38,41,0|vetn80,39,43,1|vr2b3z,39,43,1|vr2b40,38,41,0|vxjpvz,38,41,0|vxjpw0,39,43,1|w9sdrz,39,43,1|w9sds0,38,41,0|wgmr7z,38,41,0|wgmr80,39,43,1|wsvf3z,39,43,1|wsvf40,38,41,0|wzctvz,38,41,0|wzctw0,39,43,1|xblhrz,39,43,1|xblhs0,38,41,0|xi2wjz,38,41,0|xi2wk0,39,43,1|xubkfz,39,43,1|xubkg0,38,41,0|y0sz7z,38,41,0|y0sz80,39,43,1|yd1n3z,39,43,1|yd1n40,38,41,0|yjj1vz,38,41,0|yjj1w0,39,43,1|yvrprz,39,43,1|yvrps0,38,41,0|z294jz,38,41,0|z294k0,39,43,1|zehsfz,39,43,1|zehsg0,38,41,0|zlc5vz,38,41,0|zlc5w0,39,43,1|zxktrz,39,43,1|zxkts0,38,41,0|10428jz,38,41,0|10428k0,39,43,1|10gawfz,39,43,1|10gawg0,38,41,0|10msb7z,38,41,0|10msb80,39,43,1|10z0z3z,39,43,1|10z0z40,38,41,0|115idvz,38,41,0|115idw0,39,43,1|11hr1rz,39,43,1|11hr1s0,38,41,0|11o8gjz,38,41,0|11o8gk0,39,43,1|120h4fz,39,43,1|120h4g0,38,41,0|126yj7z,38,41,0|126yj80,39,43,1|12j773z,39,43,1|12j7740,38,41,0|12q1kjz,38,41,0|12q1kk0,39,43,1|132a8fz,39,43,1|132a8g0,38,41,0|138rn7z,38,41,0|138rn80,39,43,1|13l0b3z,39,43,1|13l0b40,38,41,0|13rhpvz,38,41,0|13rhpw0,39,43,1|143qdrz,39,43,1|143qds0,38,41,0|14a7sjz,38,41,0|14a7sk0,39,43,1|14mggfz,39,43,1|14mggg0,38,41,0|14sxv7z,38,41,0|14sxv80,39,43,1|1556j3z,39,43,1|1556j40,38,41,0|15c0wjz,38,41,0|15c0wk0,39,43,1|15o9kfz,39,43,1|15o9kg0,38,41,0|15uqz7z,38,41,0|15uqz80,39,43,1|166zn3z,39,43,1|166zn40,38,41,0|16dh1vz,38,41,0|16dh1w0,39,43,1|16ppprz,39,43,1|16ppps0,38,41,0|16w74jz,38,41,0|16w74k0,39,43,1|178fsfz,39,43,1|178fsg0,38,41,0|17ex77z,38,41,0|17ex780,39,43,1|17r5v3z,39,43,1|17r5v40,38,41,0|17xn9vz,38,41,0|17xn9w0,39,43,1|189vxrz,39,43,1|189vxs0,38,41,0|18gqb7z,38,41,0|18gqb80,39,43,1|18syz3z,39,43,1|18syz40,38,41,0|18zgdvz,38,41,0|18zgdw0,39,43,1|19bp1rz,39,43,1|19bp1s0,38,41,0|19i6gjz,38,41,0|19i6gk0,39,43,1|19uf4fz,39,43,1|19uf4g0,38,41,0|1a0wj7z,38,41,0|1a0wj80,39,43,1|1ad573z,39,43,1|1ad5740,38,41,0|1ajmlvz,38,41,0|1ajmlw0,39,43,1|1avv9rz,39,43,1|1avv9s0,38,41,0|1b2pn7z,38,41,0|1b2pn80,39,43,1|1beyb3z,39,43,1|1beyb40,38,41,0|1blfpvz,38,41,0|1blfpw0,39,43,1|1bxodrz,39,43,1|1bxods0,38,41,0|1c45sjz,38,41,0|1c45sk0,39,43,1|1cgegfz,39,43,1|1cgegg0,38,41,0|1cmvv7z,38,41,0|1cmvv80,39,43,1|1cz4j3z,39,43,1|1cz4j40,38,41,0|1d5lxvz,38,41,0|1d5lxw0,39,43,1|1dhulrz,39,43,1|1dhuls0,38,41,0|1doc0jz,38,41,0|1doc0k0,39,43,1|1e0kofz,39,43,1|1e0kog0,38,41,0|1e7f1vz,38,41,0|1e7f1w0,39,43,1|1ejnprz,39,43,1|1ejnps0,38,41,0|1eq54jz,38,41,0|1eq54k0,39,43,1|1f2dsfz,39,43,1|1f2dsg0,38,41,0|1f8v77z,38,41,0|1f8v780,39,43,1|1fl3v3z,39,43,1|1fl3v40,38,41,0|1frl9vz,38,41,0|1frl9w0,39,43,1|1g3txrz,39,43,1|1g3txs0,38,41,0|1gabcjz,38,41,0|1gabck0,39,43,1|1gmk0fz,39,43,1|1gmk0g0,38,41,0|1gt1f7z,38,41,0|1gt1f80,39,43,1|1h5a33z,39,43,1|1h5a340,38,41,0|1hc4gjz,38,41,0|1hc4gk0,39,43,1|1hod4fz,39,43,1|1hod4g0,38,41,0|1huuj7z,38,41,0|1huuj80,39,43,1|1i7373z,39,43,1|1i73740,38,41,0|1idklvz,38,41,0|1idklw0,39,43,1|1ipt9rz,39,43,1|1ipt9s0,38,41,0|1iwaojz,38,41,0|1iwaok0,39,43,1|1j8jcfz,39,43,1|1j8jcg0,38,41,0|1jf0r7z,38,41,0|1jf0r80,39,43,1|1jr9f3z,39,43,1|1jr9f40,38,41,0|1jy3sjz,38,41,0|1jy3sk0,39,43,1|1kacgfz,39,43,1|1kacgg0,38,41,0|1kgtv7z,38,41,0|1kgtv80,39,43,1|1kt2j3z,39,43,1|1kt2j40,38,41,0|1kzjxvz,38,41,0|1kzjxw0,39,43,1|1lbslrz,39,43,1|1lbsls0,38,41,0|1lia0jz,38,41,0|1lia0k0,39,43,1|1luiofz,39,43,1|1luiog0,38,41,0|1m1037z,38,41,0|1m10380,39,43,1|1md8r3z,39,43,1|1md8r40,38,41,0|1mjq5vz,38,41,0|1mjq5w0,39,43,1|1mvytrz,39,43,1|1mvyts0,38,41,0|1n2t77z,38,41,0|1n2t780,39,43,1|1nf1v3z,39,43,1|1nf1v40,38,41,0|1nlj9vz,38,41,0|1nlj9w0,39,43,1|1nxrxrz,39,43,1|1nxrxs0,38,41,0|1o49cjz,38,41,0|1o49ck0,39,43,1|1ogi0fz,39,43,1|1ogi0g0,38,41,0|1omzf7z,38,41,0|1omzf80,39,43,1|1oz833z,39,43,1|1oz8340,38,41,0|1p5phvz,38,41,0|1p5phw0,39,43,1|1phy5rz,39,43,1|1phy5s0,38,41,0|1posj7z,38,41,0|1posj80,39,43,1|1q1173z,39,43,1|1q11740,38,41,0|1q7ilvz,38,41,0|1q7ilw0,39,43,1|1qjr9rz,39,43,1|1qjr9s0,38,41,0|1qq8ojz,38,41,0|1qq8ok0,39,43,1|1r2hcfz,39,43,1|1r2hcg0,38,41,0|1r8yr7z,38,41,0|1r8yr80,39,43,1|1rl7f3z,39,43,1|1rl7f40,38,41,0|1rrotvz,38,41,0|1rrotw0,39,43,1|1s3xhrz,39,43,1|1s3xhs0,38,41,0|1saewjz,38,41,0|1saewk0,39,43,1|1smnkfz,39,43,1|1smnkg0,38,41,0|1sthxvz,38,41,0|1sthxw0,39,43,1|1t5qlrz,39,43,1|1t5qls0,38,41,0|1tc80jz,38,41,0|1tc80k0,39,43,1|1togofz,39,43,1|1togog0,38,41,0|1tuy37z,38,41,0|1tuy380,39,43,1|1u76r3z,39,43,1|1u76r40,38,41,0|1udo5vz,38,41,0|1udo5w0,39,43,1|1upwtrz,39,43,1|1upwts0,38,41,0|1uwe8jz,38,41,0|1uwe8k0,39,43,1|1v8mwfz,39,43,1|1v8mwg0,38,41,0|1vf4b7z,38,41,0|1vf4b80,39,43,1|1vrcz3z,39,43,1|1vrcz40,38,41,0|NaN,38,41,0","America/Moncton|,0,139,0|-18wys05,0,139,0|-18wys04,43,59,0|-z94i41,43,59,0|-z94i40,31,40,0|-qzp0o1,31,40,0|-qzp0o0,49,41,1|-qpm4s1,49,41,1|-qpm4s0,31,40,0|-j2ve41,31,40,0|-j2ve40,49,41,1|-iy6y81,49,41,1|-iy6y80,31,40,0|-ik5bg1,31,40,0|-ik5bg0,49,41,1|-ifgvk1,49,41,1|-ifgvk0,31,40,0|-i1f8s1,31,40,0|-i1f8s0,49,41,1|-hwqsw1,49,41,1|-hwqsw0,31,40,0|-hip641,31,40,0|-hip640,49,41,1|-he0q81,49,41,1|-he0q80,31,40,0|-gzz3g1,31,40,0|-gzz3g0,49,41,1|-gvank1,49,41,1|-gvank0,31,40,0|-gh90s1,31,40,0|-gh90s0,49,41,1|-gckkw1,49,41,1|-gckkw0,31,40,0|-fyxrg1,31,40,0|-fyxrg0,49,41,1|-fstgw1,49,41,1|-fstgw0,31,40,0|-fgiss1,31,40,0|-fgiss0,49,41,1|-fa3e81,49,41,1|-fa3e80,31,40,0|-eying1,31,40,0|-eying0,49,41,1|-er0cw1,49,41,1|-er0cw0,31,40,0|-ek27c1,31,40,0|-ek27c0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|-ccw7c1,31,40,0|-ccw7c0,49,41,1|-c4z3g1,49,41,1|-c4z3g0,31,40,0|-bu64o1,31,40,0|-bu64o0,49,41,1|-bm90s1,49,41,1|-bm90s0,31,40,0|-bbg201,31,40,0|-bbg200,49,41,1|-b3iy41,49,41,1|-b3iy40,31,40,0|-aspzc1,31,40,0|-aspzc0,49,41,1|-aksvg1,49,41,1|-aksvg0,31,40,0|-a9my01,31,40,0|-a9my00,49,41,1|-a22ss1,49,41,1|-a22ss0,31,40,0|-9qwvc1,31,40,0|-9qwvc0,49,41,1|-9izrg1,49,41,1|-9izrg0,31,40,0|-986so1,31,40,0|-986so0,49,41,1|-909os1,49,41,1|-909os0,31,40,0|-8pgq01,31,40,0|-8pgq00,49,41,1|-8hjm41,49,41,1|-8hjm40,31,40,0|-86qnc1,31,40,0|-86qnc0,49,41,1|-7ytjg1,49,41,1|-7ytjg0,31,40,0|-7o0ko1,31,40,0|-7o0ko0,49,41,1|-7g3gs1,49,41,1|-7g3gs0,31,40,0|-74xjc1,31,40,0|-74xjc0,49,41,1|-6x0fg1,49,41,1|-6x0fg0,31,40,0|-6m7go1,31,40,0|-6m7go0,49,41,1|-6cui41,49,41,1|-6cui40,31,40,0|-63he01,31,40,0|-63he00,49,41,1|-5u4fg1,49,41,1|-5u4fg0,31,40,0|-5krbc1,31,40,0|-5krbc0,49,41,1|-5becs1,49,41,1|-5becs0,31,40,0|-5218o1,31,40,0|-5218o0,49,41,1|-4sbbg1,49,41,1|-4sbbg0,31,40,0|-4iy7c1,31,40,0|-4iy7c0,49,41,1|-49l8s1,49,41,1|-49l8s0,31,40,0|-4084o1,31,40,0|-4084o0,49,41,1|-3qv641,49,41,1|-3qv640,31,40,0|-3hi201,31,40,0|-3hi200,49,41,1|-3853g1,49,41,1|-3853g0,31,40,0|-2yrzc1,31,40,0|-2yrzc0,49,41,1|-2pf0s1,49,41,1|-2pf0s0,31,40,0|-2g1wo1,31,40,0|-2g1wo0,49,41,1|-26bzg1,49,41,1|-26bzg0,31,40,0|-1xbu01,31,40,0|-1xbu00,49,41,1|-1nlws1,49,41,1|-1nlws0,31,40,0|-1e8so1,31,40,0|-1e8so0,49,41,1|-14vu41,49,41,1|-14vu40,31,40,0|-viq01,31,40,0|-viq00,49,41,1|-m5rg1,49,41,1|-m5rg0,31,40,0|-csnc1,31,40,0|-csnc0,49,41,1|-3fos1,49,41,1|-3fos0,31,40,0|5xfbz,31,40,0|5xfc0,49,41,1|fadvz,49,41,1|fadw0,31,40,0|onhzz,31,40,0|oni00,49,41,1|ydf7z,49,41,1|ydf80,31,40,0|17qjbz,31,40,0|17qjc0,49,41,1|1h3hvz,49,41,1|1h3hw0,31,40,0|296onz,31,40,0|296oo0,49,41,1|2ijn7z,49,41,1|2ijn80,31,40,0|2rwrbz,31,40,0|2rwrc0,49,41,1|319pvz,49,41,1|319pw0,31,40,0|3amtzz,31,40,0|3amu00,49,41,1|3kcr7z,49,41,1|3kcr80,31,40,0|3tcwnz,31,40,0|3tcwo0,49,41,1|432tvz,49,41,1|432tw0,31,40,0|4cfxzz,31,40,0|4cfy00,49,41,1|4lswjz,49,41,1|4lswk0,31,40,0|4v60nz,31,40,0|4v60o0,49,41,1|54iz7z,49,41,1|54iz80,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908onz,31,40,0|908oo0,49,41,1|9aoj7z,49,41,1|9aoj80,31,40,0|9iyrbz,31,40,0|9iyrc0,49,41,1|9trkjz,49,41,1|9trkk0,31,40,0|a1otzz,31,40,0|a1ou00,49,41,1|achn7z,49,41,1|achn80,31,40,0|akewnz,31,40,0|akewo0,49,41,1|av7pvz,49,41,1|av7pw0,31,40,0|b3hxzz,31,40,0|b3hy00,49,41,1|bdxsjz,49,41,1|bdxsk0,31,40,0|bm80nz,31,40,0|bm80o0,49,41,1|bwnv7z,49,41,1|bwnv80,31,40,0|c4xxtn,31,40,0|c4xxto,49,41,1|cfqr1n,49,41,1|cfqr1o,31,40,0|cno0hn,31,40,0|cno0ho,49,41,1|cygtpn,49,41,1|cygtpo,31,40,0|d6e35n,31,40,0|d6e35o,49,41,1|dh6wdn,49,41,1|dh6wdo,31,40,0|dph4hn,31,40,0|dph4ho,49,41,1|dzwz1n,49,41,1|dzwz1o,31,40,0|e8775n,31,40,0|e8775o,49,41,1|ein1pn,49,41,1|ein1po,31,40,0|eqx9tn,31,40,0|eqx9to,49,41,1|f1d4dn,49,41,1|f1d4do,31,40,0|f9nchn,31,40,0|f9ncho,49,41,1|fkg5pn,49,41,1|fkg5po,31,40,0|fsdf5n,31,40,0|fsdf5o,49,41,1|g368dn,49,41,1|g368do,31,40,0|gb3htn,31,40,0|gb3hto,49,41,1|glwb1n,49,41,1|glwb1o,31,40,0|gu6j5n,31,40,0|gu6j5o,49,41,1|h4mdpn,49,41,1|h4mdpo,31,40,0|hcwltn,31,40,0|hcwlto,49,41,1|hncgdn,49,41,1|hncgdo,31,40,0|hvmohn,31,40,0|hvmoho,49,41,1|i6fhpn,49,41,1|i6fhpo,31,40,0|iecr5n,31,40,0|iecr5o,49,41,1|ip5kdn,49,41,1|ip5kdo,31,40,0|ix2ttn,31,40,0|ix2tto,49,41,1|j7vn1n,49,41,1|j7vn1o,31,40,0|jeq5zz,31,40,0|jeq600,49,41,1|jqytvz,49,41,1|jqytw0,31,40,0|jxg8nz,31,40,0|jxg8o0,49,41,1|k9owjz,49,41,1|k9owk0,31,40,0|kg6bbz,31,40,0|kg6bc0,49,41,1|ksez7z,49,41,1|ksez80,31,40,0|kz9cnz,31,40,0|kz9co0,49,41,1|lbi0jz,49,41,1|lbi0k0,31,40,0|lhzfbz,31,40,0|lhzfc0,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","America/Monterrey|,0,140,0|-p1u7c1,0,140,0|-p1u7c0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gcwm7z,45,63,0|gcwm80,48,59,1|gkgrfz,48,59,1|gkgrg0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jft7jz,45,63,0|jft7k0,48,59,1|jqm0rz,48,59,1|jqm0s0,45,63,0|jyw8vz,45,63,0|jyw8w0,48,59,1|k9c3fz,48,59,1|k9c3g0,45,63,0|khmbjz,45,63,0|khmbk0,48,59,1|ks263z,48,59,1|ks2640,45,63,0|l0ce7z,45,63,0|l0ce80,48,59,1|lb57fz,48,59,1|lb57g0,45,63,0|lj2gvz,45,63,0|lj2gw0,48,59,1|ltva3z,48,59,1|ltva40,45,63,0|m1sjjz,45,63,0|m1sjk0,48,59,1|mclcrz,48,59,1|mclcs0,45,63,0|mkvkvz,45,63,0|mkvkw0,48,59,1|mvbffz,48,59,1|mvbfg0,45,63,0|n3lnjz,45,63,0|n3lnk0,48,59,1|ne1i3z,48,59,1|ne1i40,45,63,0|nmbq7z,45,63,0|nmbq80,48,59,1|nwrkrz,48,59,1|nwrks0,45,63,0|o51svz,45,63,0|o51sw0,48,59,1|ofum3z,48,59,1|ofum40,45,63,0|onrvjz,45,63,0|onrvk0,48,59,1|oykorz,48,59,1|oykos0,45,63,0|p6hy7z,45,63,0|p6hy80,48,59,1|pharfz,48,59,1|pharg0,45,63,0|ppkzjz,45,63,0|ppkzk0,48,59,1|q00u3z,48,59,1|q00u40,45,63,0|q8b27z,45,63,0|q8b280,48,59,1|qiqwrz,48,59,1|qiqws0,45,63,0|qr14vz,45,63,0|qr14w0,48,59,1|r1ty3z,48,59,1|r1ty40,45,63,0|r9r7jz,45,63,0|r9r7k0,48,59,1|rkk0rz,48,59,1|rkk0s0,45,63,0|rsha7z,45,63,0|rsha80,48,59,1|s3a3fz,48,59,1|s3a3g0,45,63,0|sbkbjz,45,63,0|sbkbk0,48,59,1|sm063z,48,59,1|sm0640,45,63,0|suae7z,45,63,0|suae80,48,59,1|t4q8rz,48,59,1|t4q8s0,45,63,0|td0gvz,45,63,0|td0gw0,48,59,1|tngbfz,48,59,1|tngbg0,45,63,0|tvqjjz,45,63,0|tvqjk0,48,59,1|u6jcrz,48,59,1|u6jcs0,45,63,0|uegm7z,45,63,0|uegm80,48,59,1|up9ffz,48,59,1|up9fg0,45,63,0|ux6ovz,45,63,0|ux6ow0,48,59,1|v7zi3z,48,59,1|v7zi40,45,63,0|vg9q7z,45,63,0|vg9q80,48,59,1|vqpkrz,48,59,1|vqpks0,45,63,0|vyzsvz,45,63,0|vyzsw0,48,59,1|w9fnfz,48,59,1|w9fng0,45,63,0|whpvjz,45,63,0|whpvk0,48,59,1|wsiorz,48,59,1|wsios0,45,63,0|x0fy7z,45,63,0|x0fy80,48,59,1|xb8rfz,48,59,1|xb8rg0,45,63,0|xj60vz,45,63,0|xj60w0,48,59,1|xtyu3z,48,59,1|xtyu40,45,63,0|y1w3jz,45,63,0|y1w3k0,48,59,1|ycowrz,48,59,1|ycows0,45,63,0|ykz4vz,45,63,0|ykz4w0,48,59,1|yvezfz,48,59,1|yvezg0,45,63,0|z3p7jz,45,63,0|z3p7k0,48,59,1|ze523z,48,59,1|ze5240,45,63,0|zmfa7z,45,63,0|zmfa80,48,59,1|zx83fz,48,59,1|zx83g0,45,63,0|1055cvz,45,63,0|1055cw0,48,59,1|10fy63z,48,59,1|10fy640,45,63,0|10nvfjz,45,63,0|10nvfk0,48,59,1|10yo8rz,48,59,1|10yo8s0,45,63,0|116ygvz,45,63,0|116ygw0,48,59,1|11hebfz,48,59,1|11hebg0,45,63,0|11pojjz,45,63,0|11pojk0,48,59,1|1204e3z,48,59,1|1204e40,45,63,0|128em7z,45,63,0|128em80,48,59,1|12iugrz,48,59,1|12iugs0,45,63,0|12r4ovz,45,63,0|12r4ow0,48,59,1|131xi3z,48,59,1|131xi40,45,63,0|139urjz,45,63,0|139urk0,48,59,1|13knkrz,48,59,1|13knks0,45,63,0|13sku7z,45,63,0|13sku80,48,59,1|143dnfz,48,59,1|143dng0,45,63,0|14bnvjz,45,63,0|14bnvk0,48,59,1|14m3q3z,48,59,1|14m3q40,45,63,0|14udy7z,45,63,0|14udy80,48,59,1|154tsrz,48,59,1|154tss0,45,63,0|15d40vz,45,63,0|15d40w0,48,59,1|15nwu3z,48,59,1|15nwu40,45,63,0|15vu3jz,45,63,0|15vu3k0,48,59,1|166mwrz,48,59,1|166mws0,45,63,0|16ek67z,45,63,0|16ek680,48,59,1|16pczfz,48,59,1|16pczg0,45,63,0|16xn7jz,45,63,0|16xn7k0,48,59,1|178323z,48,59,1|1783240,45,63,0|17gda7z,45,63,0|17gda80,48,59,1|17qt4rz,48,59,1|17qt4s0,45,63,0|17z3cvz,45,63,0|17z3cw0,48,59,1|189j7fz,48,59,1|189j7g0,45,63,0|18htfjz,45,63,0|18htfk0,48,59,1|18sm8rz,48,59,1|18sm8s0,45,63,0|190ji7z,45,63,0|190ji80,48,59,1|19bcbfz,48,59,1|19bcbg0,45,63,0|19j9kvz,45,63,0|19j9kw0,48,59,1|19u2e3z,48,59,1|19u2e40,45,63,0|1a2cm7z,45,63,0|1a2cm80,48,59,1|1acsgrz,48,59,1|1acsgs0,45,63,0|1al2ovz,45,63,0|1al2ow0,48,59,1|1avijfz,48,59,1|1avijg0,45,63,0|1b3srjz,45,63,0|1b3srk0,48,59,1|1belkrz,48,59,1|1belks0,45,63,0|1bmiu7z,45,63,0|1bmiu80,48,59,1|1bxbnfz,48,59,1|1bxbng0,45,63,0|1c58wvz,45,63,0|1c58ww0,48,59,1|1cg1q3z,48,59,1|1cg1q40,45,63,0|1cnyzjz,45,63,0|1cnyzk0,48,59,1|1cyrsrz,48,59,1|1cyrss0,45,63,0|1d720vz,45,63,0|1d720w0,48,59,1|1dhhvfz,48,59,1|1dhhvg0,45,63,0|1dps3jz,45,63,0|1dps3k0,48,59,1|1e07y3z,48,59,1|1e07y40,45,63,0|1e8i67z,45,63,0|1e8i680,48,59,1|1ejazfz,48,59,1|1ejazg0,45,63,0|1er88vz,45,63,0|1er88w0,48,59,1|1f2123z,48,59,1|1f21240,45,63,0|1f9ybjz,45,63,0|1f9ybk0,48,59,1|1fkr4rz,48,59,1|1fkr4s0,45,63,0|1ft1cvz,45,63,0|1ft1cw0,48,59,1|1g3h7fz,48,59,1|1g3h7g0,45,63,0|1gbrfjz,45,63,0|1gbrfk0,48,59,1|1gm7a3z,48,59,1|1gm7a40,45,63,0|1guhi7z,45,63,0|1guhi80,48,59,1|1h4xcrz,48,59,1|1h4xcs0,45,63,0|1hd7kvz,45,63,0|1hd7kw0,48,59,1|1ho0e3z,48,59,1|1ho0e40,45,63,0|1hvxnjz,45,63,0|1hvxnk0,48,59,1|1i6qgrz,48,59,1|1i6qgs0,45,63,0|1ienq7z,45,63,0|1ienq80,48,59,1|1ipgjfz,48,59,1|1ipgjg0,45,63,0|1ixqrjz,45,63,0|1ixqrk0,48,59,1|1j86m3z,48,59,1|1j86m40,45,63,0|1jggu7z,45,63,0|1jggu80,48,59,1|1jqworz,48,59,1|1jqwos0,45,63,0|1jz6wvz,45,63,0|1jz6ww0,48,59,1|1k9zq3z,48,59,1|1k9zq40,45,63,0|1khwzjz,45,63,0|1khwzk0,48,59,1|1kspsrz,48,59,1|1kspss0,45,63,0|1l0n27z,45,63,0|1l0n280,48,59,1|1lbfvfz,48,59,1|1lbfvg0,45,63,0|1ljq3jz,45,63,0|1ljq3k0,48,59,1|1lu5y3z,48,59,1|1lu5y40,45,63,0|1m2g67z,45,63,0|1m2g680,48,59,1|1mcw0rz,48,59,1|1mcw0s0,45,63,0|1ml68vz,45,63,0|1ml68w0,48,59,1|1mvm3fz,48,59,1|1mvm3g0,45,63,0|1n3wbjz,45,63,0|1n3wbk0,48,59,1|1nep4rz,48,59,1|1nep4s0,45,63,0|1nmme7z,45,63,0|1nmme80,48,59,1|1nxf7fz,48,59,1|1nxf7g0,45,63,0|1o5cgvz,45,63,0|1o5cgw0,48,59,1|1og5a3z,48,59,1|1og5a40,45,63,0|1oofi7z,45,63,0|1oofi80,48,59,1|1oyvcrz,48,59,1|1oyvcs0,45,63,0|1p75kvz,45,63,0|1p75kw0,48,59,1|1phlffz,48,59,1|1phlfg0,45,63,0|1ppvnjz,45,63,0|1ppvnk0,48,59,1|1q0ogrz,48,59,1|1q0ogs0,45,63,0|1q8lq7z,45,63,0|1q8lq80,48,59,1|1qjejfz,48,59,1|1qjejg0,45,63,0|1qrbsvz,45,63,0|1qrbsw0,48,59,1|1r24m3z,48,59,1|1r24m40,45,63,0|1ra1vjz,45,63,0|1ra1vk0,48,59,1|1rkuorz,48,59,1|1rkuos0,45,63,0|1rt4wvz,45,63,0|1rt4ww0,48,59,1|1s3krfz,48,59,1|1s3krg0,45,63,0|1sbuzjz,45,63,0|1sbuzk0,48,59,1|1smau3z,48,59,1|1smau40,45,63,0|1sul27z,45,63,0|1sul280,48,59,1|1t5dvfz,48,59,1|1t5dvg0,45,63,0|1tdb4vz,45,63,0|1tdb4w0,48,59,1|1to3y3z,48,59,1|1to3y40,45,63,0|1tw17jz,45,63,0|1tw17k0,48,59,1|1u6u0rz,48,59,1|1u6u0s0,45,63,0|1uf48vz,45,63,0|1uf48w0,48,59,1|1upk3fz,48,59,1|1upk3g0,45,63,0|1uxubjz,45,63,0|1uxubk0,48,59,1|1v8a63z,48,59,1|1v8a640,45,63,0|1vgke7z,45,63,0|1vgke80,48,59,1|1vr08rz,48,59,1|1vr08s0,45,63,0|NaN,45,63,0","America/Montevideo|,0,141,0|-w4mlla,0,141,0|-w4mll9,20,141,0|-px809a,20,141,0|-px8099,41,40,0|-o50vk1,41,40,0|-o50vk0,38,41,1|-nvm2c1,38,41,1|-nvm2c0,50,65,0|-nm74y1,50,65,0|-nm74y0,38,41,1|-ncu501,38,41,1|-ncu500,50,65,0|-n3f7m1,50,65,0|-n3f7m0,38,41,1|-mu27o1,38,41,1|-mu27o0,50,65,0|-ivo8y1,50,65,0|-ivo8y0,38,41,1|-inr3o1,38,41,1|-inr3o0,50,65,0|-icy6a1,50,65,0|-icy6a0,38,41,1|-i51101,38,41,1|-i51100,50,65,0|-hu83m1,50,65,0|-hu83m0,38,41,1|-hmayc1,38,41,1|-hmayc0,50,65,0|-hbi0y1,50,65,0|-hbi0y0,38,41,1|-h3kvo1,38,41,1|-h3kvo0,50,65,0|-gsezm1,50,65,0|-gsezm0,38,41,1|-gkut01,38,41,1|-gkut00,50,65,0|-g9owy1,50,65,0|-g9owy0,38,41,1|-g24qc1,38,41,1|-g24qc0,50,65,0|-fseoy1,50,65,0|-fseoy0,38,41,1|-fj1p01,38,41,1|-fj1p00,50,65,0|-f88rm1,50,65,0|-f88rm0,38,41,1|-f0bmc1,38,41,1|-f0bmc0,50,65,0|-etxya1,50,65,0|-etxya0,38,41,1|-e482c1,38,41,1|-e482c0,81,97,1|-dzlfq1,81,97,1|-dzlfq0,38,41,0|-5jbp01,38,41,0|-5jbp00,81,97,1|-5abnq1,81,97,1|-5abnq0,38,41,0|-572yc1,38,41,0|-572yc0,39,43,1|-54kag1,39,43,1|-54kag0,38,41,0|-2h5101,38,41,0|-2h5100,39,43,1|-285141,39,43,1|-285140,38,41,0|-u1901,38,41,0|-u1900,81,97,1|-kd521,81,97,1|-kd520,38,41,0|5vcbz,38,41,0|5vcc0,39,43,1|8fuvz,39,43,1|8fuw0,38,41,0|17dcbz,38,41,0|17dcc0,39,43,1|1botjz,39,43,1|1botk0,38,41,0|23s0bz,38,41,0|23s0c0,82,142,1|26nlhz,82,142,1|26nli0,81,97,1|2fnqxz,81,97,1|2fnqy0,38,41,0|2lf6zz,38,41,0|2lf700,39,43,1|2qgljz,39,43,1|2qglk0,38,41,0|3mvcbz,38,41,0|3mvcc0,39,43,1|3qtuvz,39,43,1|3qtuw0,38,41,0|44vhnz,38,41,0|44vho0,39,43,1|49jxjz,39,43,1|49jxk0,38,41,0|4obhnz,38,41,0|4obho0,39,43,1|4sa07z,39,43,1|4sa080,38,41,0|4v5sbz,38,41,0|4v5sc0,39,43,1|5bq07z,39,43,1|5bq080,38,41,0|9d8yzz,38,41,0|9d8z00,39,43,1|9h5mvz,39,43,1|9h5mw0,38,41,0|9vx6zz,38,41,0|9vx700,39,43,1|a08o7z,39,43,1|a08o80,38,41,0|achhnz,38,41,0|achho0,39,43,1|ails7z,39,43,1|ails80,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b1otjz,39,43,1|b1otk0,38,41,0|bdxmzz,38,41,0|bdxn00,39,43,1|bkew7z,39,43,1|bkew80,38,41,0|bwaqzz,38,41,0|bwar00,39,43,1|c34yvz,39,43,1|c34yw0,38,41,0|i49pnz,38,41,0|i49po0,39,43,1|idzsfz,39,43,1|idzsg0,38,41,0|io2tvz,38,41,0|io2tw0,39,43,1|ivzxrz,39,43,1|ivzxs0,38,41,0|j6fxvz,38,41,0|j6fxw0,39,43,1|jeq0fz,39,43,1|jeq0g0,38,41,0|jpiz7z,38,41,0|jpiz80,39,43,1|jxg33z,39,43,1|jxg340,38,41,0|k891vz,38,41,0|k891w0,39,43,1|kg65rz,39,43,1|kg65s0,38,41,0|kqz4jz,38,41,0|kqz4k0,39,43,1|kz973z,39,43,1|kz9740,38,41,0|l9p77z,38,41,0|l9p780,39,43,1|lhz9rz,39,43,1|lhz9s0,38,41,0|lsf9vz,38,41,0|lsf9w0,39,43,1|m0pcfz,39,43,1|m0pcg0,38,41,0|mbib7z,38,41,0|mbib80,39,43,1|mjff3z,39,43,1|mjff40,38,41,0|mu8dvz,38,41,0|mu8dw0,39,43,1|n25hrz,39,43,1|n25hs0,38,41,0|ncygjz,38,41,0|ncygk0,39,43,1|nkvkfz,39,43,1|nkvkg0,38,41,0|NaN,38,41,0","America/Montserrat|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Nassau|,0,143,0|-1353dat,0,143,0|-1353das,43,59,0|-qzoxw1,43,59,0|-qzoxw0,61,40,1|-qpm201,61,40,1|-qpm200,43,59,0|-qhn4u1,43,59,0|-qhn4u0,61,40,1|-q6w4w1,61,40,1|-q6w4w0,43,59,0|-px5wk1,43,59,0|-px5wk0,61,40,1|-pplww1,61,40,1|-pplww0,43,59,0|-pdpwk1,43,59,0|-pdpwk0,61,40,1|-p7e7c1,61,40,1|-p7e7c0,43,59,0|-ouztw1,43,59,0|-ouztw0,61,40,1|-ooiko1,61,40,1|-ooiko0,43,59,0|-oc9r81,43,59,0|-oc9r80,61,40,1|-o5si01,61,40,1|-o5si00,43,59,0|-ntwn81,43,59,0|-ntwn80,61,40,1|-nmpgo1,61,40,1|-nmpgo0,43,59,0|-nb6kk1,43,59,0|-nb6kk0,61,40,1|-n3ze01,61,40,1|-n3ze00,43,59,0|-msghw1,43,59,0|-msghw0,61,40,1|-ml9bc1,61,40,1|-ml9bc0,43,59,0|-m9qf81,43,59,0|-m9qf80,61,40,1|-m26a01,61,40,1|-m26a00,43,59,0|-lr0ck1,43,59,0|-lr0ck0,61,40,1|-lj38o1,61,40,1|-lj38o0,43,59,0|-l8a9w1,43,59,0|-l8a9w0,61,40,1|-l0d601,61,40,1|-l0d600,43,59,0|-kpk781,43,59,0|-kpk780,61,40,1|-khn3c1,61,40,1|-khn3c0,43,59,0|-k6u4k1,43,59,0|-k6u4k0,61,40,1|-jyx0o1,61,40,1|-jyx0o0,43,59,0|-jnr381,43,59,0|-jnr380,61,40,1|-jg6y01,61,40,1|-jg6y00,43,59,0|-j510k1,43,59,0|-j510k0,61,40,1|-ix3wo1,61,40,1|-ix3wo0,43,59,0|-imaxw1,43,59,0|-imaxw0,61,40,1|-iedu01,61,40,1|-iedu00,43,59,0|-i3kv81,43,59,0|-i3kv80,61,40,1|-hvnrc1,61,40,1|-hvnrc0,43,59,0|-hkusk1,43,59,0|-hkusk0,61,40,1|-hcxoo1,61,40,1|-hcxoo0,43,59,0|-h24pw1,43,59,0|-h24pw0,61,40,1|-gu7m01,61,40,1|-gu7m00,43,59,0|-gjen81,43,59,0|-gjen80,61,40,1|-gbhjc1,61,40,1|-gbhjc0,43,59,0|-g0blw1,43,59,0|-g0blw0,61,40,1|-fsrgo1,61,40,1|-fsrgo0,43,59,0|-fhlj81,43,59,0|-fhlj80,61,40,1|-ek24k1,61,40,1|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|-ccw4k1,43,59,0|-ccw4k0,61,40,1|-c4z0o1,61,40,1|-c4z0o0,43,59,0|-bu67g1,43,59,0|-bu67g0,61,40,1|-bm93k1,61,40,1|-bm93k0,43,59,0|-bbg4s1,43,59,0|-bbg4s0,61,40,1|-b3j0w1,61,40,1|-b3j0w0,43,59,0|-asq241,43,59,0|-asq240,61,40,1|-ahka81,61,40,1|-ahka80,43,59,0|-a9mv81,43,59,0|-a9mv80,61,40,1|-9yu201,61,40,1|-9yu200,43,59,0|-9qwsk1,43,59,0|-9qwsk0,61,40,1|-9izoo1,61,40,1|-9izoo0,43,59,0|-986pw1,43,59,0|-986pw0,61,40,1|-909m01,61,40,1|-909m00,43,59,0|-8pgn81,43,59,0|-8pgn80,61,40,1|-8hjjc1,61,40,1|-8hjjc0,43,59,0|-86qkk1,43,59,0|-86qkk0,61,40,1|-7ytgo1,61,40,1|-7ytgo0,43,59,0|-7o0hw1,43,59,0|-7o0hw0,61,40,1|-7g3e01,61,40,1|-7g3e00,43,59,0|-74xgk1,43,59,0|-74xgk0,61,40,1|-6x0co1,61,40,1|-6x0co0,43,59,0|-6m7dw1,43,59,0|-6m7dw0,61,40,1|-6cufc1,61,40,1|-6cufc0,43,59,0|-63hb81,43,59,0|-63hb80,61,40,1|-5u4co1,61,40,1|-5u4co0,43,59,0|-5kr8k1,43,59,0|-5kr8k0,61,40,1|-5bea01,61,40,1|-5bea00,43,59,0|-5215w1,43,59,0|-5215w0,61,40,1|-4sb8o1,61,40,1|-4sb8o0,43,59,0|-4iy4k1,43,59,0|-4iy4k0,61,40,1|-49l601,61,40,1|-49l600,43,59,0|-4081w1,43,59,0|-4081w0,61,40,1|-3qv3c1,61,40,1|-3qv3c0,43,59,0|-3hhz81,43,59,0|-3hhz80,61,40,1|-3850o1,61,40,1|-3850o0,43,59,0|-2yrwk1,43,59,0|-2yrwk0,61,40,1|-2pey01,61,40,1|-2pey00,43,59,0|-2g1tw1,43,59,0|-2g1tw0,61,40,1|-26bwo1,61,40,1|-26bwo0,43,59,0|-1xbr81,43,59,0|-1xbr80,61,40,1|-1nlu01,61,40,1|-1nlu00,43,59,0|-1e8pw1,43,59,0|-1e8pw0,61,40,1|-14vrc1,61,40,1|-14vrc0,43,59,0|-vin81,43,59,0|-vin80,61,40,1|-m5oo1,61,40,1|-m5oo0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|296rfz,43,59,0|296rg0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2rwu3z,43,59,0|2rwu40,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/New_York|,0,144,0|-18y0os1,0,144,0|-18y0os0,43,59,0|-r0ev81,43,59,0|-r0ev80,61,40,1|-qpm201,61,40,1|-qpm200,43,59,0|-qhosk1,43,59,0|-qhosk0,61,40,1|-q6vzc1,61,40,1|-q6vzc0,43,59,0|-pyypw1,43,59,0|-pyypw0,61,40,1|-pnsy01,61,40,1|-pnsy00,43,59,0|-pessk1,43,59,0|-pessk0,61,40,1|-p6voo1,61,40,1|-p6voo0,43,59,0|-ovpr81,43,59,0|-ovpr80,61,40,1|-oo5m01,61,40,1|-oo5m00,43,59,0|-oczok1,43,59,0|-oczok0,61,40,1|-o52ko1,61,40,1|-o52ko0,43,59,0|-nu9lw1,43,59,0|-nu9lw0,61,40,1|-nmci01,61,40,1|-nmci00,43,59,0|-nbjj81,43,59,0|-nbjj80,61,40,1|-n3mfc1,61,40,1|-n3mfc0,43,59,0|-mstgk1,43,59,0|-mstgk0,61,40,1|-mkwco1,61,40,1|-mkwco0,43,59,0|-ma3dw1,43,59,0|-ma3dw0,61,40,1|-m26a01,61,40,1|-m26a00,43,59,0|-lr0ck1,43,59,0|-lr0ck0,61,40,1|-lj38o1,61,40,1|-lj38o0,43,59,0|-l8a9w1,43,59,0|-l8a9w0,61,40,1|-l0d601,61,40,1|-l0d600,43,59,0|-kpk781,43,59,0|-kpk780,61,40,1|-khn3c1,61,40,1|-khn3c0,43,59,0|-k6u4k1,43,59,0|-k6u4k0,61,40,1|-jyx0o1,61,40,1|-jyx0o0,43,59,0|-jo41w1,43,59,0|-jo41w0,61,40,1|-jg6y01,61,40,1|-jg6y00,43,59,0|-j510k1,43,59,0|-j510k0,61,40,1|-ixgvc1,61,40,1|-ixgvc0,43,59,0|-imaxw1,43,59,0|-imaxw0,61,40,1|-iedu01,61,40,1|-iedu00,43,59,0|-i3kv81,43,59,0|-i3kv80,61,40,1|-hvnrc1,61,40,1|-hvnrc0,43,59,0|-hkusk1,43,59,0|-hkusk0,61,40,1|-hcxoo1,61,40,1|-hcxoo0,43,59,0|-h24pw1,43,59,0|-h24pw0,61,40,1|-gu7m01,61,40,1|-gu7m00,43,59,0|-gjen81,43,59,0|-gjen80,61,40,1|-gbhjc1,61,40,1|-gbhjc0,43,59,0|-g0blw1,43,59,0|-g0blw0,61,40,1|-fsrgo1,61,40,1|-fsrgo0,43,59,0|-fhlj81,43,59,0|-fhlj80,61,40,1|-f9ofc1,61,40,1|-f9ofc0,43,59,0|-eyvgk1,43,59,0|-eyvgk0,61,40,1|-eqyco1,61,40,1|-eqyco0,43,59,0|-ek24k1,43,59,0|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|-ccw4k1,43,59,0|-ccw4k0,61,40,1|-c4z0o1,61,40,1|-c4z0o0,43,59,0|-bu61w1,43,59,0|-bu61w0,61,40,1|-bm8y01,61,40,1|-bm8y00,43,59,0|-bbfz81,43,59,0|-bbfz80,61,40,1|-b3ivc1,61,40,1|-b3ivc0,43,59,0|-aspwk1,43,59,0|-aspwk0,61,40,1|-aksso1,61,40,1|-aksso0,43,59,0|-a9mv81,43,59,0|-a9mv80,61,40,1|-a22q01,61,40,1|-a22q00,43,59,0|-9qwsk1,43,59,0|-9qwsk0,61,40,1|-9izoo1,61,40,1|-9izoo0,43,59,0|-986pw1,43,59,0|-986pw0,61,40,1|-909m01,61,40,1|-909m00,43,59,0|-8pgn81,43,59,0|-8pgn80,61,40,1|-8hjjc1,61,40,1|-8hjjc0,43,59,0|-86qkk1,43,59,0|-86qkk0,61,40,1|-7ytgo1,61,40,1|-7ytgo0,43,59,0|-7o0hw1,43,59,0|-7o0hw0,61,40,1|-7eako1,61,40,1|-7eako0,43,59,0|-74xgk1,43,59,0|-74xgk0,61,40,1|-6vki01,61,40,1|-6vki00,43,59,0|-6m7dw1,43,59,0|-6m7dw0,61,40,1|-6cufc1,61,40,1|-6cufc0,43,59,0|-63hb81,43,59,0|-63hb80,61,40,1|-5u4co1,61,40,1|-5u4co0,43,59,0|-5kr8k1,43,59,0|-5kr8k0,61,40,1|-5bea01,61,40,1|-5bea00,43,59,0|-5215w1,43,59,0|-5215w0,61,40,1|-4sb8o1,61,40,1|-4sb8o0,43,59,0|-4iy4k1,43,59,0|-4iy4k0,61,40,1|-49l601,61,40,1|-49l600,43,59,0|-4081w1,43,59,0|-4081w0,61,40,1|-3qv3c1,61,40,1|-3qv3c0,43,59,0|-3hhz81,43,59,0|-3hhz80,61,40,1|-3850o1,61,40,1|-3850o0,43,59,0|-2yrwk1,43,59,0|-2yrwk0,61,40,1|-2pey01,61,40,1|-2pey00,43,59,0|-2g1tw1,43,59,0|-2g1tw0,61,40,1|-26bwo1,61,40,1|-26bwo0,43,59,0|-1xbr81,43,59,0|-1xbr80,61,40,1|-1nlu01,61,40,1|-1nlu00,43,59,0|-1e8pw1,43,59,0|-1e8pw0,61,40,1|-14vrc1,61,40,1|-14vrc0,43,59,0|-vin81,43,59,0|-vin80,61,40,1|-m5oo1,61,40,1|-m5oo0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|23fcrz,43,59,0|23fcs0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2oo63z,43,59,0|2oo640,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Nipigon|,0,145,0|-1353bnl,0,145,0|-1353bnk,43,59,0|-qzoxw1,43,59,0|-qzoxw0,61,40,1|-qpm201,61,40,1|-qpm200,43,59,0|-f9oi41,43,59,0|-f9oi40,61,40,1|-ek24k1,61,40,1|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|296rfz,43,59,0|296rg0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2rwu3z,43,59,0|2rwu40,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Nome|,0,146,0|-1hc7qk0,0,146,0|-1hc7qjz,0,147,0|-1078qpb,0,147,0|-1078qpa,23,33,0|-ek1nw1,23,33,0|-ek1nw0,24,34,1|-cq2tg1,24,34,1|-cq2tg0,25,34,1|-cnomo1,25,34,1|-cnomo0,23,33,0|-1fq441,23,33,0|-1fq440,26,33,0|-cs3w1,26,33,0|-cs3w0,27,34,1|-3f5c1,27,34,1|-3f5c0,26,33,0|5xyrz,26,33,0|5xys0,27,34,1|faxbz,27,34,1|faxc0,26,33,0|oo1fz,26,33,0|oo1g0,27,34,1|ydynz,27,34,1|ydyo0,26,33,0|17r2rz,26,33,0|17r2s0,27,34,1|1h41bz,27,34,1|1h41c0,26,33,0|1qh5fz,26,33,0|1qh5g0,27,34,1|1zu3zz,27,34,1|1zu400,26,33,0|23ftfz,26,33,0|23ftg0,27,34,1|2ik6nz,27,34,1|2ik6o0,26,33,0|2oomrz,26,33,0|2ooms0,27,34,1|31a9bz,27,34,1|31a9c0,26,33,0|3andfz,26,33,0|3andg0,27,34,1|3kdanz,27,34,1|3kdao0,26,33,0|3tdg3z,26,33,0|3tdg40,27,34,1|433dbz,27,34,1|433dc0,26,33,0|4cghfz,26,33,0|4cghg0,27,34,1|4ltfzz,27,34,1|4ltg00,26,33,0|4v6k3z,26,33,0|4v6k40,27,34,1|54jinz,27,34,1|54jio0,26,33,0|5dwmrz,26,33,0|5dwms0,27,34,1|5n9lbz,27,34,1|5n9lc0,26,33,0|5wmpfz,26,33,0|5wmpg0,27,34,1|65znzz,27,34,1|65zo00,26,33,0|6fcs3z,26,33,0|6fcs40,27,34,1|6p2pbz,27,34,1|6p2pc0,26,33,0|6y2urz,26,33,0|6y2us0,27,34,1|77srzz,27,34,1|77ss00,35,35,0|79dybz,35,35,0|79dyc0,36,35,0|7h5qjz,36,35,0|7h5qk0,37,38,1|7qip3z,37,38,1|7qip40,36,35,0|7zvt7z,36,35,0|7zvt80,37,38,1|898rrz,37,38,1|898rs0,36,35,0|8ilvvz,36,35,0|8ilvw0,37,38,1|8ryufz,37,38,1|8ryug0,36,35,0|9092jz,36,35,0|9092k0,37,38,1|9aox3z,37,38,1|9aox40,36,35,0|9iz57z,36,35,0|9iz580,37,38,1|9tryfz,37,38,1|9tryg0,36,35,0|a1p7vz,36,35,0|a1p7w0,37,38,1|aci13z,37,38,1|aci140,36,35,0|akfajz,36,35,0|akfak0,37,38,1|av83rz,37,38,1|av83s0,36,35,0|b3ibvz,36,35,0|b3ibw0,37,38,1|bdy6fz,37,38,1|bdy6g0,36,35,0|bm8ejz,36,35,0|bm8ek0,37,38,1|bwo93z,37,38,1|bwo940,36,35,0|c4yh7z,36,35,0|c4yh80,37,38,1|cfrafz,37,38,1|cfrag0,36,35,0|cnojvz,36,35,0|cnojw0,37,38,1|cyhd3z,37,38,1|cyhd40,36,35,0|d6emjz,36,35,0|d6emk0,37,38,1|dh7frz,37,38,1|dh7fs0,36,35,0|dphnvz,36,35,0|dphnw0,37,38,1|dzxifz,37,38,1|dzxig0,36,35,0|e87qjz,36,35,0|e87qk0,37,38,1|einl3z,37,38,1|einl40,36,35,0|eqxt7z,36,35,0|eqxt80,37,38,1|f1dnrz,37,38,1|f1dns0,36,35,0|f9nvvz,36,35,0|f9nvw0,37,38,1|fkgp3z,37,38,1|fkgp40,36,35,0|fsdyjz,36,35,0|fsdyk0,37,38,1|g36rrz,37,38,1|g36rs0,36,35,0|gb417z,36,35,0|gb4180,37,38,1|glwufz,37,38,1|glwug0,36,35,0|gu72jz,36,35,0|gu72k0,37,38,1|h4mx3z,37,38,1|h4mx40,36,35,0|hcx57z,36,35,0|hcx580,37,38,1|hnczrz,37,38,1|hnczs0,36,35,0|hvn7vz,36,35,0|hvn7w0,37,38,1|i6g13z,37,38,1|i6g140,36,35,0|iedajz,36,35,0|iedak0,37,38,1|ip63rz,37,38,1|ip63s0,36,35,0|ix3d7z,36,35,0|ix3d80,37,38,1|j7w6fz,37,38,1|j7w6g0,36,35,0|jeqjvz,36,35,0|jeqjw0,37,38,1|jqz7rz,37,38,1|jqz7s0,36,35,0|jxgmjz,36,35,0|jxgmk0,37,38,1|k9pafz,37,38,1|k9pag0,36,35,0|kg6p7z,36,35,0|kg6p80,37,38,1|ksfd3z,37,38,1|ksfd40,36,35,0|kz9qjz,36,35,0|kz9qk0,37,38,1|lbiefz,37,38,1|lbieg0,36,35,0|lhzt7z,36,35,0|lhzt80,37,38,1|lu8h3z,37,38,1|lu8h40,36,35,0|m0pvvz,36,35,0|m0pvw0,37,38,1|mcyjrz,37,38,1|mcyjs0,36,35,0|mjfyjz,36,35,0|mjfyk0,37,38,1|mvomfz,37,38,1|mvomg0,36,35,0|n2617z,36,35,0|n26180,37,38,1|neep3z,37,38,1|neep40,36,35,0|nkw3vz,36,35,0|nkw3w0,37,38,1|nx4rrz,37,38,1|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/Noronha|,0,148,0|-t85lzx,0,148,0|-t85lzw,39,43,0|-jyld81,39,43,0|-jyld80,12,13,1|-jpb3w1,12,13,1|-jpb3w0,39,43,0|-jfsfs1,39,43,0|-jfsfs0,12,13,1|-j6j6k1,12,13,1|-j6j6k0,39,43,0|-ahd141,39,43,0|-ahd140,12,13,1|-aad6g1,12,13,1|-aad6g0,39,43,0|-9yl3s1,39,43,0|-9yl3s0,12,13,1|-9sd3w1,12,13,1|-9sd3w0,39,43,0|-9ft6g1,39,43,0|-9ft6g0,12,13,1|-99jbw1,12,13,1|-99jbw0,39,43,0|-8wzeg1,39,43,0|-8wzeg0,12,13,1|-8sct81,12,13,1|-8sct80,39,43,0|-35xp41,39,43,0|-35xp40,12,13,1|-31o2k1,12,13,1|-31o2k0,39,43,0|-2kdrs1,39,43,0|-2kdrs0,12,13,1|-2hcl81,12,13,1|-2hcl80,39,43,0|-24qt41,39,43,0|-24qt40,12,13,1|-2047w1,12,13,1|-2047w0,39,43,0|-1nifs1,39,43,0|-1nifs0,12,13,1|-1hcak1,12,13,1|-1hcak0,39,43,0|-14qig1,39,43,0|-14qig0,12,13,1|-yiik1,12,13,1|-yiik0,39,43,0|89j9jz,39,43,0|89j9k0,12,13,1|8gdhfz,12,13,1|8gdhg0,39,43,0|8rwdjz,39,43,0|8rwdk0,12,13,1|8xnpfz,12,13,1|8xnpg0,39,43,0|9aoavz,39,43,0|9aoaw0,12,13,1|9g2o3z,12,13,1|9g2o40,39,43,0|9t1evz,39,43,0|9t1ew0,12,13,1|9yfs3z,12,13,1|9yfs40,39,43,0|abrhjz,39,43,0|abrhk0,12,13,1|ahvs3z,12,13,1|ahvs40,39,43,0|fj087z,39,43,0|fj0880,12,13,1|fqkdfz,12,13,1|fqkdg0,39,43,0|g239jz,39,43,0|g239k0,12,13,1|g2g5fz,12,13,1|g2g5g0,39,43,0|gl6avz,39,43,0|gl6aw0,12,13,1|grnk3z,12,13,1|grnk40,39,43,0|NaN,39,43,0","America/North_Dakota/Beulah|,0,149,0|-18y0j81,0,149,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|-viho1,44,62,0|-viho0,47,63,1|-m5j41,47,63,1|-m5j40,44,62,0|-csf01,44,62,0|-csf00,47,63,1|-3fgg1,47,63,1|-3fgg0,44,62,0|5xnnz,44,62,0|5xno0,47,63,1|fam7z,47,63,1|fam80,44,62,0|onqbz,44,62,0|onqc0,47,63,1|ydnjz,47,63,1|ydnk0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|23fibz,44,62,0|23fic0,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2oobnz,44,62,0|2oobo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/North_Dakota/Center|,0,150,0|-18y0j81,0,150,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|-viho1,44,62,0|-viho0,47,63,1|-m5j41,47,63,1|-m5j40,44,62,0|-csf01,44,62,0|-csf00,47,63,1|-3fgg1,47,63,1|-3fgg0,44,62,0|5xnnz,44,62,0|5xno0,47,63,1|fam7z,47,63,1|fam80,44,62,0|onqbz,44,62,0|onqc0,47,63,1|ydnjz,47,63,1|ydnk0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|23fibz,44,62,0|23fic0,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2oobnz,44,62,0|2oobo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gb3svz,45,63,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/North_Dakota/New_Salem|,0,151,0|-18y0j81,0,151,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|-viho1,44,62,0|-viho0,47,63,1|-m5j41,47,63,1|-m5j40,44,62,0|-csf01,44,62,0|-csf00,47,63,1|-3fgg1,47,63,1|-3fgg0,44,62,0|5xnnz,44,62,0|5xno0,47,63,1|fam7z,47,63,1|fam80,44,62,0|onqbz,44,62,0|onqc0,47,63,1|ydnjz,47,63,1|ydnk0,44,62,0|17qrnz,44,62,0|17qro0,47,63,1|1h3q7z,47,63,1|1h3q80,44,62,0|1qgubz,44,62,0|1qguc0,47,63,1|1ztsvz,47,63,1|1ztsw0,44,62,0|23fibz,44,62,0|23fic0,47,63,1|2ijvjz,47,63,1|2ijvk0,44,62,0|2oobnz,44,62,0|2oobo0,47,63,1|319y7z,47,63,1|319y80,44,62,0|3an2bz,44,62,0|3an2c0,47,63,1|3kczjz,47,63,1|3kczk0,44,62,0|3td4zz,44,62,0|3td500,47,63,1|43327z,47,63,1|433280,44,62,0|4cg6bz,44,62,0|4cg6c0,47,63,1|4lt4vz,47,63,1|4lt4w0,44,62,0|4v68zz,44,62,0|4v6900,47,63,1|54j7jz,47,63,1|54j7k0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Nuuk|,0,152,0|-rvumf5,0,152,0|-rvumf4,38,41,0|5ct4jz,38,41,0|5ct4k0,39,43,1|5lsw3z,39,43,1|5lsw40,38,41,0|5v5xfz,38,41,0|5v5xg0,39,43,1|64iyrz,39,43,1|64iys0,38,41,0|6dw03z,38,41,0|6dw040,39,43,1|6n91fz,39,43,1|6n91g0,38,41,0|6wm2rz,38,41,0|6wm2s0,39,43,1|75z43z,39,43,1|75z440,38,41,0|7fc5fz,38,41,0|7fc5g0,39,43,1|7p25fz,39,43,1|7p25g0,38,41,0|7yf6rz,38,41,0|7yf6s0,39,43,1|87s83z,39,43,1|87s840,38,41,0|8h59fz,38,41,0|8h59g0,39,43,1|8qiarz,39,43,1|8qias0,38,41,0|8zvc3z,38,41,0|8zvc40,39,43,1|998dfz,39,43,1|998dg0,38,41,0|9ilerz,38,41,0|9iles0,39,43,1|9ryg3z,39,43,1|9ryg40,38,41,0|a1bhfz,38,41,0|a1bhg0,39,43,1|aaoirz,39,43,1|aaois0,38,41,0|ak1k3z,38,41,0|ak1k40,39,43,1|atrk3z,39,43,1|atrk40,38,41,0|b34lfz,38,41,0|b34lg0,39,43,1|bchmrz,39,43,1|bchms0,38,41,0|bluo3z,38,41,0|bluo40,39,43,1|bv7pfz,39,43,1|bv7pg0,38,41,0|c4kqrz,38,41,0|c4kqs0,39,43,1|cdxs3z,39,43,1|cdxs40,38,41,0|cnatfz,38,41,0|cnatg0,39,43,1|cwnurz,39,43,1|cwnus0,38,41,0|d60w3z,38,41,0|d60w40,39,43,1|dfdxfz,39,43,1|dfdxg0,38,41,0|dp3xfz,38,41,0|dp3xg0,39,43,1|dzwtfz,39,43,1|dzwtg0,38,41,0|e7u03z,38,41,0|e7u040,39,43,1|eimw3z,39,43,1|eimw40,38,41,0|eqk2rz,38,41,0|eqk2s0,39,43,1|f1cyrz,39,43,1|f1cys0,38,41,0|f9a5fz,38,41,0|f9a5g0,39,43,1|fkg03z,39,43,1|fkg040,38,41,0|fs083z,38,41,0|fs0840,39,43,1|g362rz,39,43,1|g362s0,38,41,0|gaqarz,38,41,0|gaqas0,39,43,1|glw5fz,39,43,1|glw5g0,38,41,0|gttc3z,38,41,0|gttc40,39,43,1|h4m83z,39,43,1|h4m840,38,41,0|hcjerz,38,41,0|hcjes0,39,43,1|hncarz,39,43,1|hncas0,38,41,0|hv9hfz,38,41,0|hv9hg0,39,43,1|i6fc3z,39,43,1|i6fc40,38,41,0|idzk3z,38,41,0|idzk40,39,43,1|ip5erz,39,43,1|ip5es0,38,41,0|iwpmrz,38,41,0|iwpms0,39,43,1|j7vhfz,39,43,1|j7vhg0,38,41,0|jffpfz,38,41,0|jffpg0,39,43,1|jqlk3z,39,43,1|jqlk40,38,41,0|jyiqrz,38,41,0|jyiqs0,39,43,1|k9bmrz,39,43,1|k9bms0,38,41,0|kh8tfz,38,41,0|kh8tg0,39,43,1|ks1pfz,39,43,1|ks1pg0,38,41,0|kzyw3z,38,41,0|kzyw40,39,43,1|lb4qrz,39,43,1|lb4qs0,38,41,0|lioyrz,38,41,0|lioys0,39,43,1|ltutfz,39,43,1|ltutg0,38,41,0|m1f1fz,38,41,0|m1f1g0,39,43,1|mckw3z,39,43,1|mckw40,38,41,0|mki2rz,38,41,0|mki2s0,39,43,1|mvayrz,39,43,1|mvays0,38,41,0|n385fz,38,41,0|n385g0,39,43,1|ne11fz,39,43,1|ne11g0,38,41,0|nly83z,38,41,0|nly840,39,43,1|nwr43z,39,43,1|nwr440,38,41,0|o4oarz,38,41,0|o4oas0,39,43,1|ofu5fz,39,43,1|ofu5g0,38,41,0|onedfz,38,41,0|onedg0,39,43,1|oyk83z,39,43,1|oyk840,38,41,0|p64g3z,38,41,0|p64g40,39,43,1|phaarz,39,43,1|phaas0,38,41,0|pp7hfz,38,41,0|pp7hg0,39,43,1|q00dfz,39,43,1|q00dg0,38,41,0|q7xk3z,38,41,0|q7xk40,39,43,1|qiqg3z,39,43,1|qiqg40,38,41,0|qqnmrz,38,41,0|qqnms0,39,43,1|r1thfz,39,43,1|r1thg0,38,41,0|r9dpfz,38,41,0|r9dpg0,39,43,1|rkjk3z,39,43,1|rkjk40,38,41,0|rs3s3z,38,41,0|rs3s40,39,43,1|s39mrz,39,43,1|s39ms0,38,41,0|sb6tfz,38,41,0|sb6tg0,39,43,1|slzpfz,39,43,1|slzpg0,38,41,0|stww3z,38,41,0|stww40,39,43,1|t4ps3z,39,43,1|t4ps40,38,41,0|tcmyrz,38,41,0|tcmys0,39,43,1|tnfurz,39,43,1|tnfus0,38,41,0|tvd1fz,38,41,0|tvd1g0,39,43,1|u6iw3z,39,43,1|u6iw40,38,41,0|ue343z,38,41,0|ue3440,39,43,1|up8yrz,39,43,1|up8ys0,38,41,0|uwt6rz,38,41,0|uwt6s0,39,43,1|v7z1fz,39,43,1|v7z1g0,38,41,0|vfw83z,38,41,0|vfw840,39,43,1|vqp43z,39,43,1|vqp440,38,41,0|vymarz,38,41,0|vymas0,39,43,1|w9f6rz,39,43,1|w9f6s0,38,41,0|whcdfz,38,41,0|whcdg0,39,43,1|wsi83z,39,43,1|wsi840,38,41,0|x02g3z,38,41,0|x02g40,39,43,1|xb8arz,39,43,1|xb8as0,38,41,0|xisirz,38,41,0|xisis0,39,43,1|xtydfz,39,43,1|xtydg0,38,41,0|y1ilfz,38,41,0|y1ilg0,39,43,1|ycog3z,39,43,1|ycog40,38,41,0|yklmrz,38,41,0|yklms0,39,43,1|yveirz,39,43,1|yveis0,38,41,0|z3bpfz,38,41,0|z3bpg0,39,43,1|ze4lfz,39,43,1|ze4lg0,38,41,0|zm1s3z,38,41,0|zm1s40,39,43,1|zx7mrz,39,43,1|zx7ms0,38,41,0|104rurz,38,41,0|104rus0,39,43,1|10fxpfz,39,43,1|10fxpg0,38,41,0|10nhxfz,38,41,0|10nhxg0,39,43,1|10yns3z,39,43,1|10yns40,38,41,0|116kyrz,38,41,0|116kys0,39,43,1|11hdurz,39,43,1|11hdus0,38,41,0|11pb1fz,38,41,0|11pb1g0,39,43,1|1203xfz,39,43,1|1203xg0,38,41,0|128143z,38,41,0|1281440,39,43,1|12iu03z,39,43,1|12iu040,38,41,0|12qr6rz,38,41,0|12qr6s0,39,43,1|131x1fz,39,43,1|131x1g0,38,41,0|139h9fz,38,41,0|139h9g0,39,43,1|13kn43z,39,43,1|13kn440,38,41,0|13s7c3z,38,41,0|13s7c40,39,43,1|143d6rz,39,43,1|143d6s0,38,41,0|14badfz,38,41,0|14badg0,39,43,1|14m39fz,39,43,1|14m39g0,38,41,0|14u0g3z,38,41,0|14u0g40,39,43,1|154tc3z,39,43,1|154tc40,38,41,0|15cqirz,38,41,0|15cqis0,39,43,1|15nwdfz,39,43,1|15nwdg0,38,41,0|15vglfz,38,41,0|15vglg0,39,43,1|166mg3z,39,43,1|166mg40,38,41,0|16e6o3z,38,41,0|16e6o40,39,43,1|16pcirz,39,43,1|16pcis0,38,41,0|16x9pfz,38,41,0|16x9pg0,39,43,1|1782lfz,39,43,1|1782lg0,38,41,0|17fzs3z,38,41,0|17fzs40,39,43,1|17qso3z,39,43,1|17qso40,38,41,0|17ypurz,38,41,0|17ypus0,39,43,1|189iqrz,39,43,1|189iqs0,38,41,0|18hfxfz,38,41,0|18hfxg0,39,43,1|18sls3z,39,43,1|18sls40,38,41,0|190603z,38,41,0|1906040,39,43,1|19bburz,39,43,1|19bbus0,38,41,0|19iw2rz,38,41,0|19iw2s0,39,43,1|19u1xfz,39,43,1|19u1xg0,38,41,0|1a1z43z,38,41,0|1a1z440,39,43,1|1acs03z,39,43,1|1acs040,38,41,0|1akp6rz,38,41,0|1akp6s0,39,43,1|1avi2rz,39,43,1|1avi2s0,38,41,0|1b3f9fz,38,41,0|1b3f9g0,39,43,1|1bel43z,39,43,1|1bel440,38,41,0|1bm5c3z,38,41,0|1bm5c40,39,43,1|1bxb6rz,39,43,1|1bxb6s0,38,41,0|1c4verz,38,41,0|1c4ves0,39,43,1|1cg19fz,39,43,1|1cg19g0,38,41,0|1cnlhfz,38,41,0|1cnlhg0,39,43,1|1cyrc3z,39,43,1|1cyrc40,38,41,0|1d6oirz,38,41,0|1d6ois0,39,43,1|1dhherz,39,43,1|1dhhes0,38,41,0|1dpelfz,38,41,0|1dpelg0,39,43,1|1e07hfz,39,43,1|1e07hg0,38,41,0|1e84o3z,38,41,0|1e84o40,39,43,1|1ejairz,39,43,1|1ejais0,38,41,0|1equqrz,38,41,0|1equqs0,39,43,1|1f20lfz,39,43,1|1f20lg0,38,41,0|1f9ktfz,38,41,0|1f9ktg0,39,43,1|1fkqo3z,39,43,1|1fkqo40,38,41,0|1fsnurz,38,41,0|1fsnus0,39,43,1|1g3gqrz,39,43,1|1g3gqs0,38,41,0|1gbdxfz,38,41,0|1gbdxg0,39,43,1|1gm6tfz,39,43,1|1gm6tg0,38,41,0|1gu403z,38,41,0|1gu4040,39,43,1|1h4ww3z,39,43,1|1h4ww40,38,41,0|1hcu2rz,38,41,0|1hcu2s0,39,43,1|1hnzxfz,39,43,1|1hnzxg0,38,41,0|1hvk5fz,38,41,0|1hvk5g0,39,43,1|1i6q03z,39,43,1|1i6q040,38,41,0|1iea83z,38,41,0|1iea840,39,43,1|1ipg2rz,39,43,1|1ipg2s0,38,41,0|1ixd9fz,38,41,0|1ixd9g0,39,43,1|1j865fz,39,43,1|1j865g0,38,41,0|1jg3c3z,38,41,0|1jg3c40,39,43,1|1jqw83z,39,43,1|1jqw840,38,41,0|1jyterz,38,41,0|1jytes0,39,43,1|1k9z9fz,39,43,1|1k9z9g0,38,41,0|1khjhfz,38,41,0|1khjhg0,39,43,1|1kspc3z,39,43,1|1kspc40,38,41,0|1l09k3z,38,41,0|1l09k40,39,43,1|1lbferz,39,43,1|1lbfes0,38,41,0|1ljclfz,38,41,0|1ljclg0,39,43,1|1lu5hfz,39,43,1|1lu5hg0,38,41,0|1m22o3z,38,41,0|1m22o40,39,43,1|1mcvk3z,39,43,1|1mcvk40,38,41,0|1mksqrz,38,41,0|1mksqs0,39,43,1|1mvlmrz,39,43,1|1mvlms0,38,41,0|1n3itfz,38,41,0|1n3itg0,39,43,1|1neoo3z,39,43,1|1neoo40,38,41,0|1nm8w3z,38,41,0|1nm8w40,39,43,1|1nxeqrz,39,43,1|1nxeqs0,38,41,0|1o4yyrz,38,41,0|1o4yys0,39,43,1|1og4tfz,39,43,1|1og4tg0,38,41,0|1oo203z,38,41,0|1oo2040,39,43,1|1oyuw3z,39,43,1|1oyuw40,38,41,0|1p6s2rz,38,41,0|1p6s2s0,39,43,1|1phkyrz,39,43,1|1phkys0,38,41,0|1ppi5fz,38,41,0|1ppi5g0,39,43,1|1q0o03z,39,43,1|1q0o040,38,41,0|1q8883z,38,41,0|1q88840,39,43,1|1qje2rz,39,43,1|1qje2s0,38,41,0|1qqyarz,38,41,0|1qqyas0,39,43,1|1r245fz,39,43,1|1r245g0,38,41,0|1r9odfz,38,41,0|1r9odg0,39,43,1|1rku83z,39,43,1|1rku840,38,41,0|1rsrerz,38,41,0|1rsres0,39,43,1|1s3karz,39,43,1|1s3kas0,38,41,0|1sbhhfz,38,41,0|1sbhhg0,39,43,1|1smadfz,39,43,1|1smadg0,38,41,0|1su7k3z,38,41,0|1su7k40,39,43,1|1t5derz,39,43,1|1t5des0,38,41,0|1tcxmrz,38,41,0|1tcxms0,39,43,1|1to3hfz,39,43,1|1to3hg0,38,41,0|1tvnpfz,38,41,0|1tvnpg0,39,43,1|1u6tk3z,39,43,1|1u6tk40,38,41,0|1ueqqrz,38,41,0|1ueqqs0,39,43,1|1upjmrz,39,43,1|1upjms0,38,41,0|1uxgtfz,38,41,0|1uxgtg0,39,43,1|1v89pfz,39,43,1|1v89pg0,38,41,0|1vg6w3z,38,41,0|1vg6w40,39,43,1|1vqzs3z,39,43,1|1vqzs40,38,41,0|NaN,38,41,0","America/Ojinaga|,0,153,0|-p1u4k1,0,153,0|-p1u4k0,44,62,0|-m7mko1,44,62,0|-m7mko0,45,63,0|-kf67c1,45,63,0|-kf67c0,44,62,0|-k6j3c1,44,62,0|-k6j3c0,45,63,0|-jypm01,45,63,0|-jypm00,44,62,0|-jpan81,44,62,0|-jpan80,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxnnz,45,63,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gcwozz,44,62,0|gcwp00,47,63,1|gkgu7z,47,63,1|gkgu80,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jftabz,44,62,0|jftac0,47,63,1|jqm3jz,47,63,1|jqm3k0,44,62,0|jywbnz,44,62,0|jywbo0,47,63,1|k9c67z,47,63,1|k9c680,44,62,0|khmebz,44,62,0|khmec0,47,63,1|ks28vz,47,63,1|ks28w0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","America/Panama|,0,57,0|-15r0ult,0,57,0|-15r0uls,40,58,0|-w757vd,40,58,0|-w757vc,43,59,0|NaN,43,59,0","America/Pangnirtung|,59,1,0|-pkmlc1,59,1,0|-pkmlc0,31,40,0|-ek27c1,31,40,0|-ek27c0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|-2g2281,31,40,0|-2g2280,73,43,1|-26c281,73,43,1|-26c280,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908onz,31,40,0|908oo0,49,41,1|9aoj7z,49,41,1|9aoj80,31,40,0|9iyrbz,31,40,0|9iyrc0,49,41,1|9trkjz,49,41,1|9trkk0,31,40,0|a1otzz,31,40,0|a1ou00,49,41,1|achn7z,49,41,1|achn80,31,40,0|akewnz,31,40,0|akewo0,49,41,1|av7pvz,49,41,1|av7pw0,31,40,0|b3hxzz,31,40,0|b3hy00,49,41,1|bdxsjz,49,41,1|bdxsk0,31,40,0|bm80nz,31,40,0|bm80o0,49,41,1|bwnv7z,49,41,1|bwnv80,31,40,0|c4y3bz,31,40,0|c4y3c0,49,41,1|cfqwjz,49,41,1|cfqwk0,31,40,0|cno5zz,31,40,0|cno600,49,41,1|cygz7z,49,41,1|cygz80,31,40,0|d6e8nz,31,40,0|d6e8o0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Paramaribo|,0,154,0|-usj4g9,0,154,0|-usj4g8,5,155,0|-i9lsfx,5,155,0|-i9lsfw,5,156,0|-cnnf4d,5,156,0|-cnnf4c,50,65,0|7p471z,50,65,0|7p4720,38,41,0|NaN,38,41,0","America/Phoenix|,0,81,0|-18y0j81,0,81,0|-18y0j80,44,62,0|-r0epo1,44,62,0|-r0epo0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-qhon01,44,62,0|-qhon00,47,63,1|-q6vts1,47,63,1|-q6vts0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-dkikmd,57,63,1|-dkikmc,44,62,0|-dftz6d,44,62,0|-dftz6c,57,63,1|-d6f5yd,57,63,1|-d6f5yc,44,62,0|-1e8kc1,44,62,0|-1e8kc0,47,63,1|-14vls1,47,63,1|-14vls0,44,62,0|NaN,44,62,0","America/Port-au-Prince|,0,157,0|-15r0vxt,0,157,0|-15r0vxs,83,158,0|-rmk9ad,83,158,0|-rmk9ac,43,59,0|6ys5vz,43,59,0|6ys5w0,61,40,1|77s5rz,61,40,1|77s5s0,43,59,0|7h59vz,43,59,0|7h59w0,61,40,1|7qi8fz,61,40,1|7qi8g0,43,59,0|7zvcjz,43,59,0|7zvck0,61,40,1|898b3z,61,40,1|898b40,43,59,0|8ilf7z,43,59,0|8ilf80,61,40,1|8rydrz,61,40,1|8ryds0,43,59,0|91bhvz,43,59,0|91bhw0,61,40,1|9aogfz,61,40,1|9aogg0,43,59,0|9iyrbz,43,59,0|9iyrc0,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1otzz,43,59,0|a1ou00,61,40,1|achpzz,61,40,1|achq00,43,59,0|akewnz,43,59,0|akewo0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3hxzz,43,59,0|b3hy00,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm80nz,43,59,0|bm80o0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y3bz,43,59,0|c4y3c0,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno5zz,43,59,0|cno600,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6e8nz,43,59,0|d6e8o0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dph9zz,43,59,0|dpha00,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87cnz,43,59,0|e87co0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|iectvz,43,59,0|iectw0,61,40,1|ip5n3z,61,40,1|ip5n40,43,59,0|ix2wjz,43,59,0|ix2wk0,61,40,1|j7vprz,61,40,1|j7vps0,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Port_of_Spain|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Porto_Velho|,0,159,0|-t85g61,0,159,0|-t85g60,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|NaN,41,40,0","America/Puerto_Rico|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Punta_Arenas|,0,160,0|-15r0w79,0,160,0|-15r0w78,84,161,0|-vauawr,84,161,0|-vauawq,55,59,0|-rx8i41,55,59,0|-rx8i40,84,161,0|-qs16wr,84,161,0|-qs16wq,41,40,0|-qcwsw1,41,40,0|-qcwsw0,84,161,0|-m3etkr,84,161,0|-m3etkq,41,40,1|-lsgfk1,41,40,1|-lsgfk0,55,59,0|-lkl0s1,55,59,0|-lkl0s0,41,40,1|-l9oi81,41,40,1|-l9oi80,55,59,0|-l1t3g1,55,59,0|-l1t3g0,41,40,1|-kqwkw1,41,40,1|-kqwkw0,55,59,0|-kj1641,55,59,0|-kj1640,41,40,1|-k84nk1,41,40,1|-k84nk0,55,59,0|-k098s1,55,59,0|-k098s0,41,40,1|-jpavk1,41,40,1|-jpavk0,55,59,0|-jhfgs1,55,59,0|-jhfgs0,41,40,0|-eeay81,41,40,0|-eeay80,55,59,0|-eb5ws1,55,59,0|-eb5ws0,41,40,0|-bvifk1,41,40,0|-bvifk0,55,59,0|-bsvzk1,55,59,0|-bsvzk0,41,40,0|-lsvk1,41,40,0|-lsvk0,38,41,1|-e8qc1,38,41,1|-e8qc0,41,40,0|-1zww1,41,40,0|-1zww0,38,41,1|4hcbz,38,41,1|4hcc0,41,40,0|ekdrz,41,40,0|ekds0,38,41,1|mhhnz,38,41,1|mhho0,41,40,0|xagfz,41,40,0|xagg0,38,41,1|157kbz,38,41,1|157kc0,41,40,0|1gdhrz,41,40,0|1gdhs0,38,41,1|1nxmzz,38,41,1|1nxn00,41,40,0|1ydn3z,41,40,0|1ydn40,38,41,1|26npnz,38,41,1|26npo0,41,40,0|2htn3z,41,40,0|2htn40,38,41,1|2pdsbz,38,41,1|2pdsc0,41,40,0|30jprz,41,40,0|30jps0,38,41,1|38gtnz,38,41,1|38gto0,41,40,0|3j9sfz,41,40,0|3j9sg0,38,41,1|3r6wbz,38,41,1|3r6wc0,41,40,0|41zv3z,41,40,0|41zv40,38,41,1|49wyzz,38,41,1|49wz00,41,40,0|4l2wfz,41,40,0|4l2wg0,38,41,1|4sn1nz,38,41,1|4sn1o0,41,40,0|53sz3z,41,40,0|53sz40,38,41,1|5bd4bz,38,41,1|5bd4c0,41,40,0|5mj1rz,41,40,0|5mj1s0,38,41,1|5ug5nz,38,41,1|5ug5o0,41,40,0|6594fz,41,40,0|6594g0,38,41,1|6d68bz,38,41,1|6d68c0,41,40,0|6nz73z,41,40,0|6nz740,38,41,1|6vwazz,38,41,1|6vwb00,41,40,0|76p9rz,41,40,0|76p9s0,38,41,1|7emdnz,38,41,1|7emdo0,41,40,0|7psb3z,41,40,0|7psb40,38,41,1|7xcgbz,38,41,1|7xcgc0,41,40,0|88idrz,41,40,0|88ids0,38,41,1|8g2izz,38,41,1|8g2j00,41,40,0|8r8gfz,41,40,0|8r8gg0,38,41,1|90lezz,38,41,1|90lf00,41,40,0|99yj3z,41,40,0|99yj40,38,41,1|9hvmzz,38,41,1|9hvn00,41,40,0|9solrz,41,40,0|9sols0,38,41,1|a0lpnz,38,41,1|a0lpo0,41,40,0|abrn3z,41,40,0|abrn40,38,41,1|ajbsbz,38,41,1|ajbsc0,41,40,0|at1v3z,41,40,0|at1v40,38,41,1|b21uzz,38,41,1|b21v00,41,40,0|bd7sfz,41,40,0|bd7sg0,38,41,1|bl4wbz,38,41,1|bl4wc0,41,40,0|bvxv3z,41,40,0|bvxv40,38,41,1|c3uyzz,38,41,1|c3uz00,41,40,0|cenxrz,41,40,0|cenxs0,38,41,1|cml1nz,38,41,1|cml1o0,41,40,0|cxe0fz,41,40,0|cxe0g0,38,41,1|d5b4bz,38,41,1|d5b4c0,41,40,0|dgh1rz,41,40,0|dgh1s0,38,41,1|do16zz,38,41,1|do1700,41,40,0|dz74fz,41,40,0|dz74g0,38,41,1|e7u5nz,38,41,1|e7u5o0,41,40,0|ehx73z,41,40,0|ehx740,38,41,1|epuazz,38,41,1|epub00,41,40,0|ezxcfz,41,40,0|ezxcg0,38,41,1|f9n9nz,38,41,1|f9n9o0,41,40,0|fjdcfz,41,40,0|fjdcg0,38,41,1|fragbz,38,41,1|fragc0,41,40,0|g2gdrz,41,40,0|g2gds0,38,41,1|ga0izz,38,41,1|ga0j00,41,40,0|gl6gfz,41,40,0|gl6gg0,38,41,1|gsqlnz,38,41,1|gsqlo0,41,40,0|h3wj3z,41,40,0|h3wj40,38,41,1|hbgobz,38,41,1|hbgoc0,41,40,0|hmmlrz,41,40,0|hmmls0,38,41,1|hujpnz,38,41,1|hujpo0,41,40,0|i5cofz,41,40,0|i5cog0,38,41,1|id9sbz,38,41,1|id9sc0,41,40,0|io2r3z,41,40,0|io2r40,38,41,1|ivzuzz,38,41,1|ivzv00,41,40,0|j75sfz,41,40,0|j75sg0,38,41,1|jepxnz,38,41,1|jepxo0,41,40,0|jpvv3z,41,40,0|jpvv40,38,41,1|jyiwbz,38,41,1|jyiwc0,41,40,0|k8lxrz,41,40,0|k8lxs0,38,41,1|kgj1nz,38,41,1|kgj1o0,41,40,0|krc0fz,41,40,0|krc0g0,38,41,1|l0c0bz,38,41,1|l0c0c0,41,40,0|la233z,41,40,0|la2340,38,41,1|lkuwbz,38,41,1|lkuwc0,41,40,0|lq9f3z,41,40,0|lq9f40,38,41,1|m380bz,38,41,1|m380c0,41,40,0|m9pf3z,41,40,0|m9pf40,38,41,1|mly2zz,38,41,1|mly300,41,40,0|mssgfz,41,40,0|mssgg0,38,41,1|n4o5nz,38,41,1|n4o5o0,41,40,0|nbij3z,41,40,0|nbij40,38,41,1|o776zz,38,41,1|o77700,41,40,0|obvsfz,41,40,0|obvsg0,38,41,1|ohn4bz,38,41,1|ohn4c0,38,41,0|NaN,38,41,0","America/Rainy_River|,0,162,0|-1353ahl,0,162,0|-1353ahk,45,63,0|-qzov41,45,63,0|-qzov40,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-f9ofc1,45,63,0|-f9ofc0,48,59,1|-ek21s1,48,59,1|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|296u7z,45,63,0|296u80,48,59,1|2ijsrz,48,59,1|2ijss0,45,63,0|2rwwvz,45,63,0|2rwww0,48,59,1|319vfz,48,59,1|319vg0,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kcwrz,48,59,1|3kcws0,45,63,0|3td27z,45,63,0|3td280,48,59,1|432zfz,48,59,1|432zg0,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt23z,48,59,1|4lt240,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j4rz,48,59,1|54j4s0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,45,63,0|gb3svz,45,63,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Rankin_Inlet|,59,1,0|-6s8lc1,59,1,0|-6s8lc0,45,63,0|-2g1wo1,45,63,0|-2g1wo0,85,40,1|-26bwo1,85,40,1|-26bwo0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|gb3svz,43,59,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Recife|,0,163,0|-t85ljd,0,163,0|-t85ljc,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-35xmc1,38,41,0|-35xmc0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g2g87z,39,43,1|g2g880,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|NaN,38,41,0","America/Regina|,0,164,0|-xkq9yd,0,164,0|-xkq9yc,44,62,0|-qzosc1,44,62,0|-qzosc0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-kp78k1,44,62,0|-kp78k0,47,63,1|-kha4o1,47,63,1|-kha4o0,44,62,0|-k6h5w1,44,62,0|-k6h5w0,47,63,1|-jyk201,47,63,1|-jyk200,44,62,0|-jnr381,44,62,0|-jnr380,47,63,1|-jftzc1,47,63,1|-jftzc0,44,62,0|-j4o1w1,44,62,0|-j4o1w0,47,63,1|-ix3wo1,47,63,1|-ix3wo0,44,62,0|-ilxz81,44,62,0|-ilxz80,47,63,1|-ie0vc1,47,63,1|-ie0vc0,44,62,0|-h2un81,44,62,0|-h2un80,47,63,1|-gthoo1,47,63,1|-gthoo0,44,62,0|-gk4kk1,44,62,0|-gk4kk0,47,63,1|-gb4ko1,47,63,1|-gb4ko0,44,62,0|-g1ehw1,44,62,0|-g1ehw0,47,63,1|-fs1jc1,47,63,1|-fs1jc0,44,62,0|-fibgk1,44,62,0|-fibgk0,47,63,1|-f8yi01,47,63,1|-f8yi00,44,62,0|-ezldw1,44,62,0|-ezldw0,47,63,1|-eq8fc1,47,63,1|-eq8fc0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-cdlwc1,44,62,0|-cdlwc0,47,63,1|-c48xs1,47,63,1|-c48xs0,44,62,0|-bu5wc1,44,62,0|-bu5wc0,47,63,1|-bm8sg1,47,63,1|-bm8sg0,44,62,0|-bbfto1,44,62,0|-bbfto0,47,63,1|-b3ips1,47,63,1|-b3ips0,44,62,0|-aspr01,44,62,0|-aspr00,47,63,1|-aksn41,47,63,1|-aksn40,44,62,0|-a9mpo1,44,62,0|-a9mpo0,47,63,1|-a22kg1,47,63,1|-a22kg0,44,62,0|-9qwn01,44,62,0|-9qwn00,47,63,1|-9izj41,47,63,1|-9izj40,44,62,0|-986kc1,44,62,0|-986kc0,47,63,1|-909gg1,47,63,1|-909gg0,44,62,0|-8pgho1,44,62,0|-8pgho0,47,63,1|-8hjds1,47,63,1|-8hjds0,44,62,0|-86qf01,44,62,0|-86qf00,47,63,1|-7ytb41,47,63,1|-7ytb40,44,62,0|-7o0cc1,44,62,0|-7o0cc0,47,63,1|-7g38g1,47,63,1|-7g38g0,44,62,0|-74xb01,44,62,0|-74xb00,47,63,1|-6x0741,47,63,1|-6x0740,44,62,0|-6m78c1,44,62,0|-6m78c0,47,63,1|-6ea4g1,47,63,1|-6ea4g0,44,62,0|-5kr301,44,62,0|-5kr300,47,63,1|-5be4g1,47,63,1|-5be4g0,44,62,0|-5210c1,44,62,0|-5210c0,45,63,0|NaN,45,63,0","America/Resolute|,59,1,0|-bnp9c1,59,1,0|-bnp9c0,45,63,0|-2g1wo1,45,63,0|-2g1wo0,85,40,1|-26bwo1,85,40,1|-26bwo0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n97fz,48,59,1|5n97g0,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65za3z,48,59,1|65za40,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2bfz,48,59,1|6p2bg0,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77se3z,48,59,1|77se40,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qigrz,48,59,1|7qigs0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898jfz,48,59,1|898jg0,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8rym3z,48,59,1|8rym40,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aoorz,48,59,1|9aoos0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trq3z,48,59,1|9trq40,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achsrz,48,59,1|achss0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7vfz,48,59,1|av7vg0,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdxy3z,48,59,1|bdxy40,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo0rz,48,59,1|bwo0s0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr23z,48,59,1|cfr240,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh4rz,48,59,1|cyh4s0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh77fz,48,59,1|dh77g0,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxa3z,48,59,1|dzxa40,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|eincrz,48,59,1|eincs0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1dffz,48,59,1|f1dfg0,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkggrz,48,59,1|fkggs0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36jfz,48,59,1|g36jg0,43,59,0|gb3svz,43,59,0|gb3sw0,48,59,1|glwm3z,48,59,1|glwm40,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4morz,48,59,1|h4mos0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncrfz,48,59,1|hncrg0,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fsrz,48,59,1|i6fss0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5vfz,48,59,1|ip5vg0,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,43,59,0|jeqbjz,43,59,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Rio_Branco|,0,165,0|-t85fg1,0,165,0|-t85fg0,55,59,0|-jyl4w1,55,59,0|-jyl4w0,41,40,1|-jpavk1,41,40,1|-jpavk0,55,59,0|-jfs7g1,55,59,0|-jfs7g0,41,40,1|-j6iy81,41,40,1|-j6iy80,55,59,0|-ahcss1,55,59,0|-ahcss0,41,40,1|-aacy41,41,40,1|-aacy40,55,59,0|-9ykvg1,55,59,0|-9ykvg0,41,40,1|-9scvk1,41,40,1|-9scvk0,55,59,0|-9fsy41,55,59,0|-9fsy40,41,40,1|-99j3k1,41,40,1|-99j3k0,55,59,0|-8wz641,55,59,0|-8wz640,41,40,1|-8sckw1,41,40,1|-8sckw0,55,59,0|-35xgs1,55,59,0|-35xgs0,41,40,1|-31nu81,41,40,1|-31nu80,55,59,0|-2kdjg1,55,59,0|-2kdjg0,41,40,1|-2hccw1,41,40,1|-2hccw0,55,59,0|-24qks1,55,59,0|-24qks0,41,40,1|-203zk1,41,40,1|-203zk0,55,59,0|-1ni7g1,55,59,0|-1ni7g0,41,40,1|-1hc281,41,40,1|-1hc280,55,59,0|-14qa41,55,59,0|-14qa40,41,40,1|-yia81,41,40,1|-yia80,55,59,0|89jhvz,55,59,0|89jhw0,41,40,1|8gdprz,41,40,1|8gdps0,55,59,0|8rwlvz,55,59,0|8rwlw0,41,40,1|8xnxrz,41,40,1|8xnxs0,55,59,0|9aoj7z,55,59,0|9aoj80,41,40,1|9g2wfz,41,40,1|9g2wg0,55,59,0|k2yb7z,55,59,0|k2yb80,41,40,0|mw14fz,41,40,0|mw14g0,55,59,0|NaN,55,59,0","America/Santarem|,0,166,0|-t85hvd,0,166,0|-t85hvc,41,40,0|-jyl7o1,41,40,0|-jyl7o0,38,41,1|-jpayc1,38,41,1|-jpayc0,41,40,0|-jfsa81,41,40,0|-jfsa80,38,41,1|-j6j101,38,41,1|-j6j100,41,40,0|-ahcvk1,41,40,0|-ahcvk0,38,41,1|-aad0w1,38,41,1|-aad0w0,41,40,0|-9yky81,41,40,0|-9yky80,38,41,1|-9scyc1,38,41,1|-9scyc0,41,40,0|-9ft0w1,41,40,0|-9ft0w0,38,41,1|-99j6c1,38,41,1|-99j6c0,41,40,0|-8wz8w1,41,40,0|-8wz8w0,38,41,1|-8scno1,38,41,1|-8scno0,41,40,0|-35xjk1,41,40,0|-35xjk0,38,41,1|-31nx01,38,41,1|-31nx00,41,40,0|-2kdm81,41,40,0|-2kdm80,38,41,1|-2hcfo1,38,41,1|-2hcfo0,41,40,0|-24qnk1,41,40,0|-24qnk0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1nia81,41,40,0|-1nia80,38,41,1|-1hc501,38,41,1|-1hc500,41,40,0|-14qcw1,41,40,0|-14qcw0,38,41,1|-yid01,38,41,1|-yid00,41,40,0|89jf3z,41,40,0|89jf40,38,41,1|8gdmzz,38,41,1|8gdn00,41,40,0|8rwj3z,41,40,0|8rwj40,38,41,1|8xnuzz,38,41,1|8xnv00,41,40,0|9aogfz,41,40,0|9aogg0,38,41,1|9g2tnz,38,41,1|9g2to0,41,40,0|k2y8fz,41,40,0|k2y8g0,38,41,0|NaN,38,41,0","America/Santiago|,0,161,0|-15r0w8r,0,161,0|-15r0w8q,84,161,0|-vauawr,84,161,0|-vauawq,55,59,0|-rx8i41,55,59,0|-rx8i40,84,161,0|-qs16wr,84,161,0|-qs16wq,41,40,0|-qcwsw1,41,40,0|-qcwsw0,84,161,0|-m3etkr,84,161,0|-m3etkq,41,40,1|-lsgfk1,41,40,1|-lsgfk0,55,59,0|-lkl0s1,55,59,0|-lkl0s0,41,40,1|-l9oi81,41,40,1|-l9oi80,55,59,0|-l1t3g1,55,59,0|-l1t3g0,41,40,1|-kqwkw1,41,40,1|-kqwkw0,55,59,0|-kj1641,55,59,0|-kj1640,41,40,1|-k84nk1,41,40,1|-k84nk0,55,59,0|-k098s1,55,59,0|-k098s0,41,40,1|-jpavk1,41,40,1|-jpavk0,55,59,0|-jhfgs1,55,59,0|-jhfgs0,41,40,0|-eeay81,41,40,0|-eeay80,55,59,0|-eb5ws1,55,59,0|-eb5ws0,41,40,0|-c8vww1,41,40,0|-c8vww0,38,41,1|-c6f3o1,38,41,1|-c6f3o0,41,40,0|-bvifk1,41,40,0|-bvifk0,55,59,0|-bsvzk1,55,59,0|-bsvzk0,41,40,0|-lsvk1,41,40,0|-lsvk0,38,41,1|-e8qc1,38,41,1|-e8qc0,41,40,0|-1zww1,41,40,0|-1zww0,38,41,1|4hcbz,38,41,1|4hcc0,41,40,0|ekdrz,41,40,0|ekds0,38,41,1|mhhnz,38,41,1|mhho0,41,40,0|xagfz,41,40,0|xagg0,38,41,1|157kbz,38,41,1|157kc0,41,40,0|1gdhrz,41,40,0|1gdhs0,38,41,1|1nxmzz,38,41,1|1nxn00,41,40,0|1ydn3z,41,40,0|1ydn40,38,41,1|26npnz,38,41,1|26npo0,41,40,0|2htn3z,41,40,0|2htn40,38,41,1|2pdsbz,38,41,1|2pdsc0,41,40,0|30jprz,41,40,0|30jps0,38,41,1|38gtnz,38,41,1|38gto0,41,40,0|3j9sfz,41,40,0|3j9sg0,38,41,1|3r6wbz,38,41,1|3r6wc0,41,40,0|41zv3z,41,40,0|41zv40,38,41,1|49wyzz,38,41,1|49wz00,41,40,0|4l2wfz,41,40,0|4l2wg0,38,41,1|4sn1nz,38,41,1|4sn1o0,41,40,0|53sz3z,41,40,0|53sz40,38,41,1|5bd4bz,38,41,1|5bd4c0,41,40,0|5mj1rz,41,40,0|5mj1s0,38,41,1|5ug5nz,38,41,1|5ug5o0,41,40,0|6594fz,41,40,0|6594g0,38,41,1|6d68bz,38,41,1|6d68c0,41,40,0|6nz73z,41,40,0|6nz740,38,41,1|6vwazz,38,41,1|6vwb00,41,40,0|76p9rz,41,40,0|76p9s0,38,41,1|7emdnz,38,41,1|7emdo0,41,40,0|7psb3z,41,40,0|7psb40,38,41,1|7xcgbz,38,41,1|7xcgc0,41,40,0|88idrz,41,40,0|88ids0,38,41,1|8g2izz,38,41,1|8g2j00,41,40,0|8r8gfz,41,40,0|8r8gg0,38,41,1|90lezz,38,41,1|90lf00,41,40,0|99yj3z,41,40,0|99yj40,38,41,1|9hvmzz,38,41,1|9hvn00,41,40,0|9solrz,41,40,0|9sols0,38,41,1|a0lpnz,38,41,1|a0lpo0,41,40,0|abrn3z,41,40,0|abrn40,38,41,1|ajbsbz,38,41,1|ajbsc0,41,40,0|at1v3z,41,40,0|at1v40,38,41,1|b21uzz,38,41,1|b21v00,41,40,0|bd7sfz,41,40,0|bd7sg0,38,41,1|bl4wbz,38,41,1|bl4wc0,41,40,0|bvxv3z,41,40,0|bvxv40,38,41,1|c3uyzz,38,41,1|c3uz00,41,40,0|cenxrz,41,40,0|cenxs0,38,41,1|cml1nz,38,41,1|cml1o0,41,40,0|cxe0fz,41,40,0|cxe0g0,38,41,1|d5b4bz,38,41,1|d5b4c0,41,40,0|dgh1rz,41,40,0|dgh1s0,38,41,1|do16zz,38,41,1|do1700,41,40,0|dz74fz,41,40,0|dz74g0,38,41,1|e7u5nz,38,41,1|e7u5o0,41,40,0|ehx73z,41,40,0|ehx740,38,41,1|epuazz,38,41,1|epub00,41,40,0|ezxcfz,41,40,0|ezxcg0,38,41,1|f9n9nz,38,41,1|f9n9o0,41,40,0|fjdcfz,41,40,0|fjdcg0,38,41,1|fragbz,38,41,1|fragc0,41,40,0|g2gdrz,41,40,0|g2gds0,38,41,1|ga0izz,38,41,1|ga0j00,41,40,0|gl6gfz,41,40,0|gl6gg0,38,41,1|gsqlnz,38,41,1|gsqlo0,41,40,0|h3wj3z,41,40,0|h3wj40,38,41,1|hbgobz,38,41,1|hbgoc0,41,40,0|hmmlrz,41,40,0|hmmls0,38,41,1|hujpnz,38,41,1|hujpo0,41,40,0|i5cofz,41,40,0|i5cog0,38,41,1|id9sbz,38,41,1|id9sc0,41,40,0|io2r3z,41,40,0|io2r40,38,41,1|ivzuzz,38,41,1|ivzv00,41,40,0|j75sfz,41,40,0|j75sg0,38,41,1|jepxnz,38,41,1|jepxo0,41,40,0|jpvv3z,41,40,0|jpvv40,38,41,1|jyiwbz,38,41,1|jyiwc0,41,40,0|k8lxrz,41,40,0|k8lxs0,38,41,1|kgj1nz,38,41,1|kgj1o0,41,40,0|krc0fz,41,40,0|krc0g0,38,41,1|l0c0bz,38,41,1|l0c0c0,41,40,0|la233z,41,40,0|la2340,38,41,1|lkuwbz,38,41,1|lkuwc0,41,40,0|lq9f3z,41,40,0|lq9f40,38,41,1|m380bz,38,41,1|m380c0,41,40,0|m9pf3z,41,40,0|m9pf40,38,41,1|mly2zz,38,41,1|mly300,41,40,0|mssgfz,41,40,0|mssgg0,38,41,1|n4o5nz,38,41,1|n4o5o0,41,40,0|nbij3z,41,40,0|nbij40,38,41,1|o776zz,38,41,1|o77700,41,40,0|obvsfz,41,40,0|obvsg0,38,41,1|opx9nz,38,41,1|opx9o0,41,40,0|oulv3z,41,40,0|oulv40,38,41,1|p8ncbz,38,41,1|p8ncc0,41,40,0|pdbxrz,41,40,0|pdbxs0,38,41,1|ppklnz,38,41,1|ppklo0,41,40,0|pxhv3z,41,40,0|pxhv40,38,41,1|q8aobz,38,41,1|q8aoc0,41,40,0|qg7xrz,41,40,0|qg7xs0,38,41,1|qr0qzz,38,41,1|qr0r00,41,40,0|qyy0fz,41,40,0|qyy0g0,38,41,1|r9qtnz,38,41,1|r9qto0,41,40,0|rho33z,41,40,0|rho340,38,41,1|rsgwbz,38,41,1|rsgwc0,41,40,0|s0e5rz,41,40,0|s0e5s0,38,41,1|sbjxnz,38,41,1|sbjxo0,41,40,0|sjh73z,41,40,0|sjh740,38,41,1|sua0bz,38,41,1|sua0c0,41,40,0|t279rz,41,40,0|t279s0,38,41,1|td02zz,38,41,1|td0300,41,40,0|tkxcfz,41,40,0|tkxcg0,38,41,1|tvq5nz,38,41,1|tvq5o0,41,40,0|u3nf3z,41,40,0|u3nf40,38,41,1|ueg8bz,38,41,1|ueg8c0,41,40,0|umdhrz,41,40,0|umdhs0,38,41,1|uxj9nz,38,41,1|uxj9o0,41,40,0|v53kfz,41,40,0|v53kg0,38,41,1|vg9cbz,38,41,1|vg9cc0,41,40,0|vo6lrz,41,40,0|vo6ls0,38,41,1|vyzezz,38,41,1|vyzf00,41,40,0|w6wofz,41,40,0|w6wog0,38,41,1|whphnz,38,41,1|whpho0,41,40,0|wpmr3z,41,40,0|wpmr40,38,41,1|x0fkbz,38,41,1|x0fkc0,41,40,0|x8ctrz,41,40,0|x8cts0,38,41,1|xj5mzz,38,41,1|xj5n00,41,40,0|xr2wfz,41,40,0|xr2wg0,38,41,1|y28obz,38,41,1|y28oc0,41,40,0|y9sz3z,41,40,0|y9sz40,38,41,1|ykyqzz,38,41,1|ykyr00,41,40,0|ysw0fz,41,40,0|ysw0g0,38,41,1|z3otnz,38,41,1|z3oto0,41,40,0|zbm33z,41,40,0|zbm340,38,41,1|zmewbz,38,41,1|zmewc0,41,40,0|zuc5rz,41,40,0|zuc5s0,38,41,1|1054yzz,38,41,1|1054z00,41,40,0|10d28fz,41,40,0|10d28g0,38,41,1|10o80bz,38,41,1|10o80c0,41,40,0|10vsb3z,41,40,0|10vsb40,38,41,1|116y2zz,38,41,1|116y300,41,40,0|11evcfz,41,40,0|11evcg0,38,41,1|11po5nz,38,41,1|11po5o0,41,40,0|11xlf3z,41,40,0|11xlf40,38,41,1|128e8bz,38,41,1|128e8c0,41,40,0|12gbhrz,41,40,0|12gbhs0,38,41,1|12r4azz,38,41,1|12r4b00,41,40,0|12z1kfz,41,40,0|12z1kg0,38,41,1|139udnz,38,41,1|139udo0,41,40,0|13hrn3z,41,40,0|13hrn40,38,41,1|13sxezz,38,41,1|13sxf00,41,40,0|140hprz,41,40,0|140hps0,38,41,1|14bnhnz,38,41,1|14bnho0,41,40,0|14jkr3z,41,40,0|14jkr40,38,41,1|14udkbz,38,41,1|14udkc0,41,40,0|152atrz,41,40,0|152ats0,38,41,1|15d3mzz,38,41,1|15d3n00,41,40,0|15l0wfz,41,40,0|15l0wg0,38,41,1|15vtpnz,38,41,1|15vtpo0,41,40,0|163qz3z,41,40,0|163qz40,38,41,1|16ejsbz,38,41,1|16ejsc0,41,40,0|16mh1rz,41,40,0|16mh1s0,38,41,1|16xmtnz,38,41,1|16xmto0,41,40,0|175k33z,41,40,0|175k340,38,41,1|17gcwbz,38,41,1|17gcwc0,41,40,0|17oa5rz,41,40,0|17oa5s0,38,41,1|17z2yzz,38,41,1|17z2z00,41,40,0|18708fz,41,40,0|18708g0,38,41,1|18ht1nz,38,41,1|18ht1o0,41,40,0|18pqb3z,41,40,0|18pqb40,38,41,1|190j4bz,38,41,1|190j4c0,41,40,0|198gdrz,41,40,0|198gds0,38,41,1|19jm5nz,38,41,1|19jm5o0,41,40,0|19r6gfz,41,40,0|19r6gg0,38,41,1|1a2c8bz,38,41,1|1a2c8c0,41,40,0|1aa9hrz,41,40,0|1aa9hs0,38,41,1|1al2azz,38,41,1|1al2b00,41,40,0|1aszkfz,41,40,0|1aszkg0,38,41,1|1b3sdnz,38,41,1|1b3sdo0,41,40,0|1bbpn3z,41,40,0|1bbpn40,38,41,1|1bmigbz,38,41,1|1bmigc0,41,40,0|1bufprz,41,40,0|1bufps0,38,41,1|1c58izz,38,41,1|1c58j00,41,40,0|1cd5sfz,41,40,0|1cd5sg0,38,41,1|1cobkbz,38,41,1|1cobkc0,41,40,0|1cvvv3z,41,40,0|1cvvv40,38,41,1|1d71mzz,38,41,1|1d71n00,41,40,0|1deywfz,41,40,0|1deywg0,38,41,1|1dprpnz,38,41,1|1dprpo0,41,40,0|1dxoz3z,41,40,0|1dxoz40,38,41,1|1e8hsbz,38,41,1|1e8hsc0,41,40,0|1egf1rz,41,40,0|1egf1s0,38,41,1|1er7uzz,38,41,1|1er7v00,41,40,0|1ez54fz,41,40,0|1ez54g0,38,41,1|1faawbz,38,41,1|1faawc0,41,40,0|1fhv73z,41,40,0|1fhv740,38,41,1|1ft0yzz,38,41,1|1ft0z00,41,40,0|1g0y8fz,41,40,0|1g0y8g0,38,41,1|1gbr1nz,38,41,1|1gbr1o0,41,40,0|1gjob3z,41,40,0|1gjob40,38,41,1|1guh4bz,38,41,1|1guh4c0,41,40,0|1h2edrz,41,40,0|1h2eds0,38,41,1|1hd76zz,38,41,1|1hd7700,41,40,0|1hl4gfz,41,40,0|1hl4gg0,38,41,1|1hvx9nz,38,41,1|1hvx9o0,41,40,0|1i3uj3z,41,40,0|1i3uj40,38,41,1|1if0azz,38,41,1|1if0b00,41,40,0|1imklrz,41,40,0|1imkls0,38,41,1|1ixqdnz,38,41,1|1ixqdo0,41,40,0|1j5nn3z,41,40,0|1j5nn40,38,41,1|1jgggbz,38,41,1|1jgggc0,41,40,0|1jodprz,41,40,0|1jodps0,38,41,1|1jz6izz,38,41,1|1jz6j00,41,40,0|1k73sfz,41,40,0|1k73sg0,38,41,1|1khwlnz,38,41,1|1khwlo0,41,40,0|1kptv3z,41,40,0|1kptv40,38,41,1|1l0mobz,38,41,1|1l0moc0,41,40,0|1l8jxrz,41,40,0|1l8jxs0,38,41,1|1ljppnz,38,41,1|1ljppo0,41,40,0|1lrmz3z,41,40,0|1lrmz40,38,41,1|1m2fsbz,38,41,1|1m2fsc0,41,40,0|1mad1rz,41,40,0|1mad1s0,38,41,1|1ml5uzz,38,41,1|1ml5v00,41,40,0|1mt34fz,41,40,0|1mt34g0,38,41,1|1n3vxnz,38,41,1|1n3vxo0,41,40,0|1nbt73z,41,40,0|1nbt740,38,41,1|1nmm0bz,38,41,1|1nmm0c0,41,40,0|1nuj9rz,41,40,0|1nuj9s0,38,41,1|1o5p1nz,38,41,1|1o5p1o0,41,40,0|1od9cfz,41,40,0|1od9cg0,38,41,1|1oof4bz,38,41,1|1oof4c0,41,40,0|1owcdrz,41,40,0|1owcds0,38,41,1|1p756zz,38,41,1|1p75700,41,40,0|1pf2gfz,41,40,0|1pf2gg0,38,41,1|1ppv9nz,38,41,1|1ppv9o0,41,40,0|1pxsj3z,41,40,0|1pxsj40,38,41,1|1q8lcbz,38,41,1|1q8lcc0,41,40,0|1qgilrz,41,40,0|1qgils0,38,41,1|1qrbezz,38,41,1|1qrbf00,41,40,0|1qz8ofz,41,40,0|1qz8og0,38,41,1|1raegbz,38,41,1|1raegc0,41,40,0|1rhyr3z,41,40,0|1rhyr40,38,41,1|1rt4izz,38,41,1|1rt4j00,41,40,0|1s11sfz,41,40,0|1s11sg0,38,41,1|1sbulnz,38,41,1|1sbulo0,41,40,0|1sjrv3z,41,40,0|1sjrv40,38,41,1|1sukobz,38,41,1|1sukoc0,41,40,0|1t2hxrz,41,40,0|1t2hxs0,38,41,1|1tdaqzz,38,41,1|1tdar00,41,40,0|1tl80fz,41,40,0|1tl80g0,38,41,1|1twdsbz,38,41,1|1twdsc0,41,40,0|1u3y33z,41,40,0|1u3y340,38,41,1|1uf3uzz,38,41,1|1uf3v00,41,40,0|1un14fz,41,40,0|1un14g0,38,41,1|1uxtxnz,38,41,1|1uxtxo0,41,40,0|1v5r73z,41,40,0|1v5r740,38,41,1|1vgk0bz,38,41,1|1vgk0c0,41,40,0|1voh9rz,41,40,0|1voh9s0,38,41,1|NaN,38,41,1","America/Santo_Domingo|,0,167,0|-15r0we1,0,167,0|-15r0we0,86,168,0|-j6hz1d,86,168,0|-j6hz1c,43,59,0|-1nlws1,43,59,0|-1nlws0,61,40,1|-1hdww1,61,40,1|-1hdww0,43,59,0|-3fos1,43,59,0|-3fos0,62,76,1|2mshz,62,76,1|2msi0,43,59,0|fadvz,43,59,0|fadw0,62,76,1|jrghz,62,76,1|jrgi0,43,59,0|ydf7z,43,59,0|ydf80,62,76,1|12l8hz,62,76,1|12l8i0,43,59,0|1h3hvz,43,59,0|1h3hw0,62,76,1|1lf0hz,62,76,1|1lf0i0,43,59,0|1ztkjz,43,59,0|1ztkk0,62,76,1|246xtz,62,76,1|246xu0,43,59,0|2ijn7z,43,59,0|2ijn80,31,40,0|g36gnz,31,40,0|g36go0,43,59,0|g4z9zz,43,59,0|g4za00,31,40,0|NaN,31,40,0","America/Sao_Paulo|,0,169,0|-t85jd9,0,169,0|-t85jd8,38,41,0|-jylag1,38,41,0|-jylag0,39,43,1|-jpb141,39,43,1|-jpb140,38,41,0|-jfsd01,38,41,0|-jfsd00,39,43,1|-j6j3s1,39,43,1|-j6j3s0,38,41,0|-ahcyc1,38,41,0|-ahcyc0,39,43,1|-aad3o1,39,43,1|-aad3o0,38,41,0|-9yl101,38,41,0|-9yl100,39,43,1|-9sd141,39,43,1|-9sd140,38,41,0|-9ft3o1,38,41,0|-9ft3o0,39,43,1|-99j941,39,43,1|-99j940,38,41,0|-8wzbo1,38,41,0|-8wzbo0,39,43,1|-8scqg1,39,43,1|-8scqg0,38,41,0|-38cno1,38,41,0|-38cno0,39,43,1|-31nzs1,39,43,1|-31nzs0,38,41,0|-2kdp01,38,41,0|-2kdp00,39,43,1|-2hcig1,39,43,1|-2hcig0,38,41,0|-24qqc1,38,41,0|-24qqc0,39,43,1|-204541,39,43,1|-204540,38,41,0|-1nid01,38,41,0|-1nid00,39,43,1|-1hc7s1,39,43,1|-1hc7s0,38,41,0|-14qfo1,38,41,0|-14qfo0,39,43,1|-yifs1,39,43,1|-yifs0,38,41,0|89jcbz,38,41,0|89jcc0,39,43,1|8gdk7z,39,43,1|8gdk80,38,41,0|8rwgbz,38,41,0|8rwgc0,39,43,1|8xns7z,39,43,1|8xns80,38,41,0|9aodnz,38,41,0|9aodo0,39,43,1|9g2qvz,39,43,1|9g2qw0,38,41,0|9t1hnz,38,41,0|9t1ho0,39,43,1|9yfuvz,39,43,1|9yfuw0,38,41,0|abrkbz,38,41,0|abrkc0,39,43,1|ahvuvz,39,43,1|ahvuw0,38,41,0|auulnz,38,41,0|auulo0,39,43,1|b0yw7z,39,43,1|b0yw80,38,41,0|bdkobz,38,41,0|bdkoc0,39,43,1|bjc07z,39,43,1|bjc080,38,41,0|bwnpnz,38,41,0|bwnpo0,39,43,1|c1p47z,39,43,1|c1p480,38,41,0|cf0tnz,38,41,0|cf0to0,39,43,1|cli2vz,39,43,1|cli2w0,38,41,0|cxqwbz,38,41,0|cxqwc0,39,43,1|d485jz,39,43,1|d485k0,38,41,0|dggyzz,38,41,0|dggz00,39,43,1|dml9jz,39,43,1|dml9k0,38,41,0|dyu2zz,38,41,0|dyu300,39,43,1|e5oavz,39,43,1|e5oaw0,38,41,0|ehm0bz,38,41,0|ehm0c0,39,43,1|ep4avz,39,43,1|ep4aw0,38,41,0|f0n6zz,38,41,0|f0n700,39,43,1|f7hevz,39,43,1|f7hew0,38,41,0|fj0azz,38,41,0|fj0b00,39,43,1|fqkg7z,39,43,1|fqkg80,38,41,0|g23cbz,38,41,0|g23cc0,39,43,1|g8xk7z,39,43,1|g8xk80,38,41,0|gl6dnz,38,41,0|gl6do0,39,43,1|grnmvz,39,43,1|grnmw0,38,41,0|h4zcbz,38,41,0|h4zcc0,39,43,1|hadpjz,39,43,1|hadpk0,38,41,0|hmzhnz,38,41,0|hmzho0,39,43,1|ht3s7z,39,43,1|ht3s80,38,41,0|i6j6zz,38,41,0|i6j700,39,43,1|ic6tjz,39,43,1|ic6tk0,38,41,0|iofmzz,38,41,0|iofn00,39,43,1|iuww7z,39,43,1|iuww80,38,41,0|j88lnz,38,41,0|j88lo0,39,43,1|jdzxjz,39,43,1|jdzxk0,38,41,0|jpvsbz,38,41,0|jpvsc0,39,43,1|jwd1jz,39,43,1|jwd1k0,38,41,0|k8ytnz,38,41,0|k8yto0,39,43,1|kf347z,39,43,1|kf3480,38,41,0|krowbz,38,41,0|krowc0,39,43,1|ky65jz,39,43,1|ky65k0,38,41,0|laeyzz,38,41,0|laez00,39,43,1|lgw87z,39,43,1|lgw880,38,41,0|lt51nz,38,41,0|lt51o0,39,43,1|lzz9jz,39,43,1|lzz9k0,38,41,0|mc82zz,38,41,0|mc8300,39,43,1|micdjz,39,43,1|micdk0,38,41,0|muy5nz,38,41,0|muy5o0,39,43,1|n12g7z,39,43,1|n12g80,38,41,0|ndo8bz,38,41,0|ndo8c0,39,43,1|nk5hjz,39,43,1|nk5hk0,38,41,0|nweazz,38,41,0|nweb00,39,43,1|o2vk7z,39,43,1|o2vk80,38,41,0|of4dnz,38,41,0|of4do0,39,43,1|ollmvz,39,43,1|ollmw0,38,41,0|oxugbz,38,41,0|oxugc0,39,43,1|p4bpjz,39,43,1|p4bpk0,38,41,0|phnezz,38,41,0|phnf00,39,43,1|pn1s7z,39,43,1|pn1s80,38,41,0|NaN,38,41,0","America/Scoresbysund|,0,170,0|-rvurxl,0,170,0|-rvurxk,39,43,0|5ct1rz,39,43,0|5ct1s0,12,13,1|5lt4fz,12,13,1|5lt4g0,39,43,0|5v607z,39,43,0|5v6080,16,1,1|64iyrz,16,1,1|64iys0,12,13,0|6dw03z,12,13,0|6dw040,16,1,1|6n91fz,16,1,1|6n91g0,12,13,0|6wm2rz,12,13,0|6wm2s0,16,1,1|75z43z,16,1,1|75z440,12,13,0|7fc5fz,12,13,0|7fc5g0,16,1,1|7p25fz,16,1,1|7p25g0,12,13,0|7yf6rz,12,13,0|7yf6s0,16,1,1|87s83z,16,1,1|87s840,12,13,0|8h59fz,12,13,0|8h59g0,16,1,1|8qiarz,16,1,1|8qias0,12,13,0|8zvc3z,12,13,0|8zvc40,16,1,1|998dfz,16,1,1|998dg0,12,13,0|9ilerz,12,13,0|9iles0,16,1,1|9ryg3z,16,1,1|9ryg40,12,13,0|a1bhfz,12,13,0|a1bhg0,16,1,1|aaoirz,16,1,1|aaois0,12,13,0|ak1k3z,12,13,0|ak1k40,16,1,1|atrk3z,16,1,1|atrk40,12,13,0|b34lfz,12,13,0|b34lg0,16,1,1|bchmrz,16,1,1|bchms0,12,13,0|bluo3z,12,13,0|bluo40,16,1,1|bv7pfz,16,1,1|bv7pg0,12,13,0|c4kqrz,12,13,0|c4kqs0,16,1,1|cdxs3z,16,1,1|cdxs40,12,13,0|cnatfz,12,13,0|cnatg0,16,1,1|cwnurz,16,1,1|cwnus0,12,13,0|d60w3z,12,13,0|d60w40,16,1,1|dfdxfz,16,1,1|dfdxg0,12,13,0|dp3xfz,12,13,0|dp3xg0,16,1,1|dzwtfz,16,1,1|dzwtg0,12,13,0|e7u03z,12,13,0|e7u040,16,1,1|eimw3z,16,1,1|eimw40,12,13,0|eqk2rz,12,13,0|eqk2s0,16,1,1|f1cyrz,16,1,1|f1cys0,12,13,0|f9a5fz,12,13,0|f9a5g0,16,1,1|fkg03z,16,1,1|fkg040,12,13,0|fs083z,12,13,0|fs0840,16,1,1|g362rz,16,1,1|g362s0,12,13,0|gaqarz,12,13,0|gaqas0,16,1,1|glw5fz,16,1,1|glw5g0,12,13,0|gttc3z,12,13,0|gttc40,16,1,1|h4m83z,16,1,1|h4m840,12,13,0|hcjerz,12,13,0|hcjes0,16,1,1|hncarz,16,1,1|hncas0,12,13,0|hv9hfz,12,13,0|hv9hg0,16,1,1|i6fc3z,16,1,1|i6fc40,12,13,0|idzk3z,12,13,0|idzk40,16,1,1|ip5erz,16,1,1|ip5es0,12,13,0|iwpmrz,12,13,0|iwpms0,16,1,1|j7vhfz,16,1,1|j7vhg0,12,13,0|jffpfz,12,13,0|jffpg0,16,1,1|jqlk3z,16,1,1|jqlk40,12,13,0|jyiqrz,12,13,0|jyiqs0,16,1,1|k9bmrz,16,1,1|k9bms0,12,13,0|kh8tfz,12,13,0|kh8tg0,16,1,1|ks1pfz,16,1,1|ks1pg0,12,13,0|kzyw3z,12,13,0|kzyw40,16,1,1|lb4qrz,16,1,1|lb4qs0,12,13,0|lioyrz,12,13,0|lioys0,16,1,1|ltutfz,16,1,1|ltutg0,12,13,0|m1f1fz,12,13,0|m1f1g0,16,1,1|mckw3z,16,1,1|mckw40,12,13,0|mki2rz,12,13,0|mki2s0,16,1,1|mvayrz,16,1,1|mvays0,12,13,0|n385fz,12,13,0|n385g0,16,1,1|ne11fz,16,1,1|ne11g0,12,13,0|nly83z,12,13,0|nly840,16,1,1|nwr43z,16,1,1|nwr440,12,13,0|o4oarz,12,13,0|o4oas0,16,1,1|ofu5fz,16,1,1|ofu5g0,12,13,0|onedfz,12,13,0|onedg0,16,1,1|oyk83z,16,1,1|oyk840,12,13,0|p64g3z,12,13,0|p64g40,16,1,1|phaarz,16,1,1|phaas0,12,13,0|pp7hfz,12,13,0|pp7hg0,16,1,1|q00dfz,16,1,1|q00dg0,12,13,0|q7xk3z,12,13,0|q7xk40,16,1,1|qiqg3z,16,1,1|qiqg40,12,13,0|qqnmrz,12,13,0|qqnms0,16,1,1|r1thfz,16,1,1|r1thg0,12,13,0|r9dpfz,12,13,0|r9dpg0,16,1,1|rkjk3z,16,1,1|rkjk40,12,13,0|rs3s3z,12,13,0|rs3s40,16,1,1|s39mrz,16,1,1|s39ms0,12,13,0|sb6tfz,12,13,0|sb6tg0,16,1,1|slzpfz,16,1,1|slzpg0,12,13,0|stww3z,12,13,0|stww40,16,1,1|t4ps3z,16,1,1|t4ps40,12,13,0|tcmyrz,12,13,0|tcmys0,16,1,1|tnfurz,16,1,1|tnfus0,12,13,0|tvd1fz,12,13,0|tvd1g0,16,1,1|u6iw3z,16,1,1|u6iw40,12,13,0|ue343z,12,13,0|ue3440,16,1,1|up8yrz,16,1,1|up8ys0,12,13,0|uwt6rz,12,13,0|uwt6s0,16,1,1|v7z1fz,16,1,1|v7z1g0,12,13,0|vfw83z,12,13,0|vfw840,16,1,1|vqp43z,16,1,1|vqp440,12,13,0|vymarz,12,13,0|vymas0,16,1,1|w9f6rz,16,1,1|w9f6s0,12,13,0|whcdfz,12,13,0|whcdg0,16,1,1|wsi83z,16,1,1|wsi840,12,13,0|x02g3z,12,13,0|x02g40,16,1,1|xb8arz,16,1,1|xb8as0,12,13,0|xisirz,12,13,0|xisis0,16,1,1|xtydfz,16,1,1|xtydg0,12,13,0|y1ilfz,12,13,0|y1ilg0,16,1,1|ycog3z,16,1,1|ycog40,12,13,0|yklmrz,12,13,0|yklms0,16,1,1|yveirz,16,1,1|yveis0,12,13,0|z3bpfz,12,13,0|z3bpg0,16,1,1|ze4lfz,16,1,1|ze4lg0,12,13,0|zm1s3z,12,13,0|zm1s40,16,1,1|zx7mrz,16,1,1|zx7ms0,12,13,0|104rurz,12,13,0|104rus0,16,1,1|10fxpfz,16,1,1|10fxpg0,12,13,0|10nhxfz,12,13,0|10nhxg0,16,1,1|10yns3z,16,1,1|10yns40,12,13,0|116kyrz,12,13,0|116kys0,16,1,1|11hdurz,16,1,1|11hdus0,12,13,0|11pb1fz,12,13,0|11pb1g0,16,1,1|1203xfz,16,1,1|1203xg0,12,13,0|128143z,12,13,0|1281440,16,1,1|12iu03z,16,1,1|12iu040,12,13,0|12qr6rz,12,13,0|12qr6s0,16,1,1|131x1fz,16,1,1|131x1g0,12,13,0|139h9fz,12,13,0|139h9g0,16,1,1|13kn43z,16,1,1|13kn440,12,13,0|13s7c3z,12,13,0|13s7c40,16,1,1|143d6rz,16,1,1|143d6s0,12,13,0|14badfz,12,13,0|14badg0,16,1,1|14m39fz,16,1,1|14m39g0,12,13,0|14u0g3z,12,13,0|14u0g40,16,1,1|154tc3z,16,1,1|154tc40,12,13,0|15cqirz,12,13,0|15cqis0,16,1,1|15nwdfz,16,1,1|15nwdg0,12,13,0|15vglfz,12,13,0|15vglg0,16,1,1|166mg3z,16,1,1|166mg40,12,13,0|16e6o3z,12,13,0|16e6o40,16,1,1|16pcirz,16,1,1|16pcis0,12,13,0|16x9pfz,12,13,0|16x9pg0,16,1,1|1782lfz,16,1,1|1782lg0,12,13,0|17fzs3z,12,13,0|17fzs40,16,1,1|17qso3z,16,1,1|17qso40,12,13,0|17ypurz,12,13,0|17ypus0,16,1,1|189iqrz,16,1,1|189iqs0,12,13,0|18hfxfz,12,13,0|18hfxg0,16,1,1|18sls3z,16,1,1|18sls40,12,13,0|190603z,12,13,0|1906040,16,1,1|19bburz,16,1,1|19bbus0,12,13,0|19iw2rz,12,13,0|19iw2s0,16,1,1|19u1xfz,16,1,1|19u1xg0,12,13,0|1a1z43z,12,13,0|1a1z440,16,1,1|1acs03z,16,1,1|1acs040,12,13,0|1akp6rz,12,13,0|1akp6s0,16,1,1|1avi2rz,16,1,1|1avi2s0,12,13,0|1b3f9fz,12,13,0|1b3f9g0,16,1,1|1bel43z,16,1,1|1bel440,12,13,0|1bm5c3z,12,13,0|1bm5c40,16,1,1|1bxb6rz,16,1,1|1bxb6s0,12,13,0|1c4verz,12,13,0|1c4ves0,16,1,1|1cg19fz,16,1,1|1cg19g0,12,13,0|1cnlhfz,12,13,0|1cnlhg0,16,1,1|1cyrc3z,16,1,1|1cyrc40,12,13,0|1d6oirz,12,13,0|1d6ois0,16,1,1|1dhherz,16,1,1|1dhhes0,12,13,0|1dpelfz,12,13,0|1dpelg0,16,1,1|1e07hfz,16,1,1|1e07hg0,12,13,0|1e84o3z,12,13,0|1e84o40,16,1,1|1ejairz,16,1,1|1ejais0,12,13,0|1equqrz,12,13,0|1equqs0,16,1,1|1f20lfz,16,1,1|1f20lg0,12,13,0|1f9ktfz,12,13,0|1f9ktg0,16,1,1|1fkqo3z,16,1,1|1fkqo40,12,13,0|1fsnurz,12,13,0|1fsnus0,16,1,1|1g3gqrz,16,1,1|1g3gqs0,12,13,0|1gbdxfz,12,13,0|1gbdxg0,16,1,1|1gm6tfz,16,1,1|1gm6tg0,12,13,0|1gu403z,12,13,0|1gu4040,16,1,1|1h4ww3z,16,1,1|1h4ww40,12,13,0|1hcu2rz,12,13,0|1hcu2s0,16,1,1|1hnzxfz,16,1,1|1hnzxg0,12,13,0|1hvk5fz,12,13,0|1hvk5g0,16,1,1|1i6q03z,16,1,1|1i6q040,12,13,0|1iea83z,12,13,0|1iea840,16,1,1|1ipg2rz,16,1,1|1ipg2s0,12,13,0|1ixd9fz,12,13,0|1ixd9g0,16,1,1|1j865fz,16,1,1|1j865g0,12,13,0|1jg3c3z,12,13,0|1jg3c40,16,1,1|1jqw83z,16,1,1|1jqw840,12,13,0|1jyterz,12,13,0|1jytes0,16,1,1|1k9z9fz,16,1,1|1k9z9g0,12,13,0|1khjhfz,12,13,0|1khjhg0,16,1,1|1kspc3z,16,1,1|1kspc40,12,13,0|1l09k3z,12,13,0|1l09k40,16,1,1|1lbferz,16,1,1|1lbfes0,12,13,0|1ljclfz,12,13,0|1ljclg0,16,1,1|1lu5hfz,16,1,1|1lu5hg0,12,13,0|1m22o3z,12,13,0|1m22o40,16,1,1|1mcvk3z,16,1,1|1mcvk40,12,13,0|1mksqrz,12,13,0|1mksqs0,16,1,1|1mvlmrz,16,1,1|1mvlms0,12,13,0|1n3itfz,12,13,0|1n3itg0,16,1,1|1neoo3z,16,1,1|1neoo40,12,13,0|1nm8w3z,12,13,0|1nm8w40,16,1,1|1nxeqrz,16,1,1|1nxeqs0,12,13,0|1o4yyrz,12,13,0|1o4yys0,16,1,1|1og4tfz,16,1,1|1og4tg0,12,13,0|1oo203z,12,13,0|1oo2040,16,1,1|1oyuw3z,16,1,1|1oyuw40,12,13,0|1p6s2rz,12,13,0|1p6s2s0,16,1,1|1phkyrz,16,1,1|1phkys0,12,13,0|1ppi5fz,12,13,0|1ppi5g0,16,1,1|1q0o03z,16,1,1|1q0o040,12,13,0|1q8883z,12,13,0|1q88840,16,1,1|1qje2rz,16,1,1|1qje2s0,12,13,0|1qqyarz,12,13,0|1qqyas0,16,1,1|1r245fz,16,1,1|1r245g0,12,13,0|1r9odfz,12,13,0|1r9odg0,16,1,1|1rku83z,16,1,1|1rku840,12,13,0|1rsrerz,12,13,0|1rsres0,16,1,1|1s3karz,16,1,1|1s3kas0,12,13,0|1sbhhfz,12,13,0|1sbhhg0,16,1,1|1smadfz,16,1,1|1smadg0,12,13,0|1su7k3z,12,13,0|1su7k40,16,1,1|1t5derz,16,1,1|1t5des0,12,13,0|1tcxmrz,12,13,0|1tcxms0,16,1,1|1to3hfz,16,1,1|1to3hg0,12,13,0|1tvnpfz,12,13,0|1tvnpg0,16,1,1|1u6tk3z,16,1,1|1u6tk40,12,13,0|1ueqqrz,12,13,0|1ueqqs0,16,1,1|1upjmrz,16,1,1|1upjms0,12,13,0|1uxgtfz,12,13,0|1uxgtg0,16,1,1|1v89pfz,16,1,1|1v89pg0,12,13,0|1vg6w3z,12,13,0|1vg6w40,16,1,1|1vqzs3z,16,1,1|1vqzs40,12,13,0|NaN,12,13,0","America/Sitka|,0,171,0|-1hc7qk0,0,171,0|-1hc7qjz,0,172,0|-1078wa0,0,172,0|-1078w9z,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|23fl3z,46,38,0|23fl40,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2ooefz,46,38,0|2ooeg0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,35,35,0|79dybz,35,35,0|79dyc0,36,35,0|7h5qjz,36,35,0|7h5qk0,37,38,1|7qip3z,37,38,1|7qip40,36,35,0|7zvt7z,36,35,0|7zvt80,37,38,1|898rrz,37,38,1|898rs0,36,35,0|8ilvvz,36,35,0|8ilvw0,37,38,1|8ryufz,37,38,1|8ryug0,36,35,0|9092jz,36,35,0|9092k0,37,38,1|9aox3z,37,38,1|9aox40,36,35,0|9iz57z,36,35,0|9iz580,37,38,1|9tryfz,37,38,1|9tryg0,36,35,0|a1p7vz,36,35,0|a1p7w0,37,38,1|aci13z,37,38,1|aci140,36,35,0|akfajz,36,35,0|akfak0,37,38,1|av83rz,37,38,1|av83s0,36,35,0|b3ibvz,36,35,0|b3ibw0,37,38,1|bdy6fz,37,38,1|bdy6g0,36,35,0|bm8ejz,36,35,0|bm8ek0,37,38,1|bwo93z,37,38,1|bwo940,36,35,0|c4yh7z,36,35,0|c4yh80,37,38,1|cfrafz,37,38,1|cfrag0,36,35,0|cnojvz,36,35,0|cnojw0,37,38,1|cyhd3z,37,38,1|cyhd40,36,35,0|d6emjz,36,35,0|d6emk0,37,38,1|dh7frz,37,38,1|dh7fs0,36,35,0|dphnvz,36,35,0|dphnw0,37,38,1|dzxifz,37,38,1|dzxig0,36,35,0|e87qjz,36,35,0|e87qk0,37,38,1|einl3z,37,38,1|einl40,36,35,0|eqxt7z,36,35,0|eqxt80,37,38,1|f1dnrz,37,38,1|f1dns0,36,35,0|f9nvvz,36,35,0|f9nvw0,37,38,1|fkgp3z,37,38,1|fkgp40,36,35,0|fsdyjz,36,35,0|fsdyk0,37,38,1|g36rrz,37,38,1|g36rs0,36,35,0|gb417z,36,35,0|gb4180,37,38,1|glwufz,37,38,1|glwug0,36,35,0|gu72jz,36,35,0|gu72k0,37,38,1|h4mx3z,37,38,1|h4mx40,36,35,0|hcx57z,36,35,0|hcx580,37,38,1|hnczrz,37,38,1|hnczs0,36,35,0|hvn7vz,36,35,0|hvn7w0,37,38,1|i6g13z,37,38,1|i6g140,36,35,0|iedajz,36,35,0|iedak0,37,38,1|ip63rz,37,38,1|ip63s0,36,35,0|ix3d7z,36,35,0|ix3d80,37,38,1|j7w6fz,37,38,1|j7w6g0,36,35,0|jeqjvz,36,35,0|jeqjw0,37,38,1|jqz7rz,37,38,1|jqz7s0,36,35,0|jxgmjz,36,35,0|jxgmk0,37,38,1|k9pafz,37,38,1|k9pag0,36,35,0|kg6p7z,36,35,0|kg6p80,37,38,1|ksfd3z,37,38,1|ksfd40,36,35,0|kz9qjz,36,35,0|kz9qk0,37,38,1|lbiefz,37,38,1|lbieg0,36,35,0|lhzt7z,36,35,0|lhzt80,37,38,1|lu8h3z,37,38,1|lu8h40,36,35,0|m0pvvz,36,35,0|m0pvw0,37,38,1|mcyjrz,37,38,1|mcyjs0,36,35,0|mjfyjz,36,35,0|mjfyk0,37,38,1|mvomfz,37,38,1|mvomg0,36,35,0|n2617z,36,35,0|n26180,37,38,1|neep3z,37,38,1|neep40,36,35,0|nkw3vz,36,35,0|nkw3w0,37,38,1|nx4rrz,37,38,1|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/St_Barthelemy|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/St_Johns|,0,95,0|-18vs8wl,0,95,0|-18vs8wk,23,95,0|-ris3cl,23,95,0|-ris3ck,72,96,1|-rag64l,72,96,1|-rag64k,23,95,0|-qzp20l,23,95,0|-qzp20k,72,96,1|-qpm64l,72,96,1|-qpm64k,23,95,0|-qfsmcl,23,95,0|-qfsmck,72,96,1|-qapd4l,72,96,1|-qapd4k,23,95,0|-px4ecl,23,95,0|-px4eck,72,96,1|-pnrfsl,72,96,1|-pnrfsk,23,95,0|-peebol,23,95,0|-peebok,72,96,1|-p51d4l,72,96,1|-p51d4k,23,95,0|-ovbacl,23,95,0|-ovback,72,96,1|-ombagl,72,96,1|-ombagk,23,95,0|-ocl7ol,23,95,0|-ocl7ok,72,96,1|-o3l7sl,72,96,1|-o3l7sk,23,95,0|-ntv50l,23,95,0|-ntv50k,72,96,1|-nkv54l,72,96,1|-nkv54k,23,95,0|-nb52cl,23,95,0|-nb52ck,72,96,1|-n252gl,72,96,1|-n252gk,23,95,0|-msezol,23,95,0|-msezok,72,96,1|-mj214l,72,96,1|-mj214k,23,95,0|-m9ox0l,23,95,0|-m9ox0k,72,96,1|-m0bygl,72,96,1|-m0bygk,23,95,0|-lqlvol,23,95,0|-lqlvok,72,96,1|-lhlvsl,72,96,1|-lhlvsk,23,95,0|-l7vt0l,23,95,0|-l7vt0k,72,96,1|-kyvt4l,72,96,1|-kyvt4k,23,95,0|-kp5qcl,23,95,0|-kp5qck,72,96,1|-kg5qgl,72,96,1|-kg5qgk,23,95,0|-k6fnol,23,95,0|-k6fnok,72,96,1|-jxfnsl,72,96,1|-jxfnsk,23,95,0|-jnpl0l,23,95,0|-jnpl0k,72,96,1|-jecmgl,72,96,1|-jecmgk,23,95,0|-j4mjol,23,95,0|-j4mjok,72,96,1|-ivmjsl,72,96,1|-ivmjsk,23,95,0|-ilwh0l,23,95,0|-ilwh0k,72,96,1|-icwh4l,72,96,1|-icwh4k,23,95,0|-i52u8l,23,95,0|-i52u8k,23,65,0|-i36ee1,23,65,0|-i36ee0,72,97,1|-hu6ei1,72,97,1|-hu6ei0,23,65,0|-hk3aa1,23,65,0|-hk3aa0,72,97,1|-hcj521,72,97,1|-hcj520,23,65,0|-h1d7m1,23,65,0|-h1d7m0,72,97,1|-gtt2e1,72,97,1|-gtt2e0,23,65,0|-gin4y1,23,65,0|-gin4y0,72,97,1|-gb2zq1,72,97,1|-gb2zq0,23,65,0|-fzk3m1,23,65,0|-fzk3m0,72,97,1|-fscx21,72,97,1|-fscx20,23,65,0|-fgu0y1,23,65,0|-fgu0y0,72,97,1|-f99vq1,72,97,1|-f99vq0,23,65,0|-ey3ya1,23,65,0|-ey3ya0,72,97,1|-eqjt21,72,97,1|-eqjt20,23,65,0|-efdvm1,23,65,0|-efdvm0,24,97,1|-cq2tg1,24,97,1|-cq2tg0,25,97,1|-cnp7i1,25,97,1|-cnp7i0,23,65,0|-cc6be1,23,65,0|-cc6be0,72,97,1|-c4m661,72,97,1|-c4m660,23,65,0|-btg8q1,23,65,0|-btg8q0,72,97,1|-blw3i1,72,97,1|-blw3i0,23,65,0|-baq621,23,65,0|-baq620,72,97,1|-b360u1,72,97,1|-b360u0,23,65,0|-as03e1,23,65,0|-as03e0,72,97,1|-akfy61,72,97,1|-akfy60,23,65,0|-a8x221,23,65,0|-a8x220,72,97,1|-a1cwu1,72,97,1|-a1cwu0,23,65,0|-9qwwq1,23,65,0|-9qwwq0,72,97,1|-9izsu1,72,97,1|-9izsu0,23,65,0|-986u21,23,65,0|-986u20,72,97,1|-909q61,72,97,1|-909q60,23,65,0|-8pgre1,23,65,0|-8pgre0,72,97,1|-8hjni1,72,97,1|-8hjni0,23,65,0|-86qoq1,23,65,0|-86qoq0,72,97,1|-7ytku1,72,97,1|-7ytku0,23,65,0|-7o0m21,23,65,0|-7o0m20,72,97,1|-7g3i61,72,97,1|-7g3i60,23,65,0|-74xkq1,23,65,0|-74xkq0,72,97,1|-6x0gu1,72,97,1|-6x0gu0,23,65,0|-6m7i21,23,65,0|-6m7i20,72,97,1|-6eae61,72,97,1|-6eae60,23,65,0|-63hfe1,23,65,0|-63hfe0,72,97,1|-5vkbi1,72,97,1|-5vkbi0,23,65,0|-5krcq1,23,65,0|-5krcq0,72,97,1|-5cu8u1,72,97,1|-5cu8u0,23,65,0|-521a21,23,65,0|-521a20,72,97,1|-4sbcu1,72,97,1|-4sbcu0,23,65,0|-4iy8q1,23,65,0|-4iy8q0,72,97,1|-49la61,72,97,1|-49la60,23,65,0|-408621,23,65,0|-408620,72,97,1|-3qv7i1,72,97,1|-3qv7i0,23,65,0|-3hi3e1,23,65,0|-3hi3e0,72,97,1|-3854u1,72,97,1|-3854u0,23,65,0|-2ys0q1,23,65,0|-2ys0q0,72,97,1|-2pf261,72,97,1|-2pf260,23,65,0|-2g1y21,23,65,0|-2g1y20,72,97,1|-26c0u1,72,97,1|-26c0u0,23,65,0|-1xbve1,23,65,0|-1xbve0,72,97,1|-1nly61,72,97,1|-1nly60,23,65,0|-1e8u21,23,65,0|-1e8u20,72,97,1|-14vvi1,72,97,1|-14vvi0,23,65,0|-vire1,23,65,0|-vire0,72,97,1|-m5su1,72,97,1|-m5su0,23,65,0|-csoq1,23,65,0|-csoq0,72,97,1|-3fq61,72,97,1|-3fq60,23,65,0|5xdxz,23,65,0|5xdy0,72,97,1|fachz,72,97,1|faci0,23,65,0|onglz,23,65,0|ongm0,72,97,1|yddtz,72,97,1|yddu0,23,65,0|17qhxz,23,65,0|17qhy0,72,97,1|1h3ghz,72,97,1|1h3gi0,23,65,0|1qgklz,23,65,0|1qgkm0,72,97,1|1ztj5z,72,97,1|1ztj60,23,65,0|296n9z,23,65,0|296na0,72,97,1|2ijltz,72,97,1|2ijlu0,23,65,0|2rwpxz,23,65,0|2rwpy0,72,97,1|319ohz,72,97,1|319oi0,23,65,0|3amslz,23,65,0|3amsm0,72,97,1|3kcptz,72,97,1|3kcpu0,23,65,0|3tcv9z,23,65,0|3tcva0,72,97,1|432shz,72,97,1|432si0,23,65,0|4cfwlz,23,65,0|4cfwm0,72,97,1|4lsv5z,72,97,1|4lsv60,23,65,0|4v5z9z,23,65,0|4v5za0,72,97,1|54ixtz,72,97,1|54ixu0,23,65,0|5dw1xz,23,65,0|5dw1y0,72,97,1|5n90hz,72,97,1|5n90i0,23,65,0|5wm4lz,23,65,0|5wm4m0,72,97,1|65z35z,72,97,1|65z360,23,65,0|6fc79z,23,65,0|6fc7a0,72,97,1|6p24hz,72,97,1|6p24i0,23,65,0|6y29xz,23,65,0|6y29y0,72,97,1|77s75z,72,97,1|77s760,23,65,0|7h5b9z,23,65,0|7h5ba0,72,97,1|7qi9tz,72,97,1|7qi9u0,23,65,0|7zvdxz,23,65,0|7zvdy0,72,97,1|898chz,72,97,1|898ci0,23,65,0|8ilglz,23,65,0|8ilgm0,72,97,1|8ryf5z,72,97,1|8ryf60,23,65,0|908hrn,23,65,0|908hro,72,97,1|9aocbn,72,97,1|9aocbo,23,65,0|9iykfn,23,65,0|9iykfo,87,142,1|9travn,87,142,1|9travo,23,65,0|a1on3n,23,65,0|a1on3o,72,97,1|achgbn,72,97,1|achgbo,23,65,0|akeprn,23,65,0|akepro,72,97,1|av7izn,72,97,1|av7izo,23,65,0|b3hr3n,23,65,0|b3hr3o,72,97,1|bdxlnn,72,97,1|bdxlno,23,65,0|bm7trn,23,65,0|bm7tro,72,97,1|bwnobn,72,97,1|bwnobo,23,65,0|c4xwfn,23,65,0|c4xwfo,72,97,1|cfqpnn,72,97,1|cfqpno,23,65,0|cnnz3n,23,65,0|cnnz3o,72,97,1|cygsbn,72,97,1|cygsbo,23,65,0|d6e1rn,23,65,0|d6e1ro,72,97,1|dh6uzn,72,97,1|dh6uzo,23,65,0|dph33n,23,65,0|dph33o,72,97,1|dzwxnn,72,97,1|dzwxno,23,65,0|e875rn,23,65,0|e875ro,72,97,1|ein0bn,72,97,1|ein0bo,23,65,0|eqx8fn,23,65,0|eqx8fo,72,97,1|f1d2zn,72,97,1|f1d2zo,23,65,0|f9nb3n,23,65,0|f9nb3o,72,97,1|fkg4bn,72,97,1|fkg4bo,23,65,0|fsddrn,23,65,0|fsddro,72,97,1|g366zn,72,97,1|g366zo,23,65,0|gb3gfn,23,65,0|gb3gfo,72,97,1|glw9nn,72,97,1|glw9no,23,65,0|gu6hrn,23,65,0|gu6hro,72,97,1|h4mcbn,72,97,1|h4mcbo,23,65,0|hcwkfn,23,65,0|hcwkfo,72,97,1|hncezn,72,97,1|hncezo,23,65,0|hvmn3n,23,65,0|hvmn3o,72,97,1|i6fgbn,72,97,1|i6fgbo,23,65,0|iecprn,23,65,0|iecpro,72,97,1|ip5izn,72,97,1|ip5izo,23,65,0|ix2sfn,23,65,0|ix2sfo,72,97,1|j7vlnn,72,97,1|j7vlno,23,65,0|jepz3n,23,65,0|jepz3o,72,97,1|jqymzn,72,97,1|jqymzo,23,65,0|jxg1rn,23,65,0|jxg1ro,72,97,1|k9opnn,72,97,1|k9opno,23,65,0|kg64fn,23,65,0|kg64fo,72,97,1|ksesbn,72,97,1|ksesbo,23,65,0|kz95rn,23,65,0|kz95ro,72,97,1|lbhtnn,72,97,1|lbhtno,23,65,0|lhz8fn,23,65,0|lhz8fo,72,97,1|lu81tz,72,97,1|lu81u0,23,65,0|m0pglz,23,65,0|m0pgm0,72,97,1|mcy4hz,72,97,1|mcy4i0,23,65,0|mjfj9z,23,65,0|mjfja0,72,97,1|mvo75z,72,97,1|mvo760,23,65,0|n25lxz,23,65,0|n25ly0,72,97,1|nee9tz,72,97,1|nee9u0,23,65,0|nkvolz,23,65,0|nkvom0,72,97,1|nx4chz,72,97,1|nx4ci0,23,65,0|o3ypxz,23,65,0|o3ypy0,72,97,1|og7dtz,72,97,1|og7du0,23,65,0|omoslz,23,65,0|omosm0,72,97,1|oyxghz,72,97,1|oyxgi0,23,65,0|p5ev9z,23,65,0|p5eva0,72,97,1|phnj5z,72,97,1|phnj60,23,65,0|po4xxz,23,65,0|po4xy0,72,97,1|q0dltz,72,97,1|q0dlu0,23,65,0|q6v0lz,23,65,0|q6v0m0,72,97,1|qj3ohz,72,97,1|qj3oi0,23,65,0|qpy1xz,23,65,0|qpy1y0,72,97,1|r26ptz,72,97,1|r26pu0,23,65,0|r8o4lz,23,65,0|r8o4m0,72,97,1|rkwshz,72,97,1|rkwsi0,23,65,0|rre79z,23,65,0|rre7a0,72,97,1|s3mv5z,72,97,1|s3mv60,23,65,0|sa49xz,23,65,0|sa49y0,72,97,1|smcxtz,72,97,1|smcxu0,23,65,0|ssuclz,23,65,0|ssucm0,72,97,1|t530hz,72,97,1|t530i0,23,65,0|tbkf9z,23,65,0|tbkfa0,72,97,1|tnt35z,72,97,1|tnt360,23,65,0|tunglz,23,65,0|tungm0,72,97,1|u6w4hz,72,97,1|u6w4i0,23,65,0|uddj9z,23,65,0|uddja0,72,97,1|upm75z,72,97,1|upm760,23,65,0|uw3lxz,23,65,0|uw3ly0,72,97,1|v8c9tz,72,97,1|v8c9u0,23,65,0|vetolz,23,65,0|vetom0,72,97,1|vr2chz,72,97,1|vr2ci0,23,65,0|vxjr9z,23,65,0|vxjra0,72,97,1|w9sf5z,72,97,1|w9sf60,23,65,0|wgmslz,23,65,0|wgmsm0,72,97,1|wsvghz,72,97,1|wsvgi0,23,65,0|wzcv9z,23,65,0|wzcva0,72,97,1|xblj5z,72,97,1|xblj60,23,65,0|xi2xxz,23,65,0|xi2xy0,72,97,1|xubltz,72,97,1|xublu0,23,65,0|y0t0lz,23,65,0|y0t0m0,72,97,1|yd1ohz,72,97,1|yd1oi0,23,65,0|yjj39z,23,65,0|yjj3a0,72,97,1|yvrr5z,72,97,1|yvrr60,23,65,0|z295xz,23,65,0|z295y0,72,97,1|zehttz,72,97,1|zehtu0,23,65,0|zlc79z,23,65,0|zlc7a0,72,97,1|zxkv5z,72,97,1|zxkv60,23,65,0|10429xz,23,65,0|10429y0,72,97,1|10gaxtz,72,97,1|10gaxu0,23,65,0|10msclz,23,65,0|10mscm0,72,97,1|10z10hz,72,97,1|10z10i0,23,65,0|115if9z,23,65,0|115ifa0,72,97,1|11hr35z,72,97,1|11hr360,23,65,0|11o8hxz,23,65,0|11o8hy0,72,97,1|120h5tz,72,97,1|120h5u0,23,65,0|126yklz,23,65,0|126ykm0,72,97,1|12j78hz,72,97,1|12j78i0,23,65,0|12q1lxz,23,65,0|12q1ly0,72,97,1|132a9tz,72,97,1|132a9u0,23,65,0|138rolz,23,65,0|138rom0,72,97,1|13l0chz,72,97,1|13l0ci0,23,65,0|13rhr9z,23,65,0|13rhra0,72,97,1|143qf5z,72,97,1|143qf60,23,65,0|14a7txz,23,65,0|14a7ty0,72,97,1|14mghtz,72,97,1|14mghu0,23,65,0|14sxwlz,23,65,0|14sxwm0,72,97,1|1556khz,72,97,1|1556ki0,23,65,0|15c0xxz,23,65,0|15c0xy0,72,97,1|15o9ltz,72,97,1|15o9lu0,23,65,0|15ur0lz,23,65,0|15ur0m0,72,97,1|166zohz,72,97,1|166zoi0,23,65,0|16dh39z,23,65,0|16dh3a0,72,97,1|16ppr5z,72,97,1|16ppr60,23,65,0|16w75xz,23,65,0|16w75y0,72,97,1|178fttz,72,97,1|178ftu0,23,65,0|17ex8lz,23,65,0|17ex8m0,72,97,1|17r5whz,72,97,1|17r5wi0,23,65,0|17xnb9z,23,65,0|17xnba0,72,97,1|189vz5z,72,97,1|189vz60,23,65,0|18gqclz,23,65,0|18gqcm0,72,97,1|18sz0hz,72,97,1|18sz0i0,23,65,0|18zgf9z,23,65,0|18zgfa0,72,97,1|19bp35z,72,97,1|19bp360,23,65,0|19i6hxz,23,65,0|19i6hy0,72,97,1|19uf5tz,72,97,1|19uf5u0,23,65,0|1a0wklz,23,65,0|1a0wkm0,72,97,1|1ad58hz,72,97,1|1ad58i0,23,65,0|1ajmn9z,23,65,0|1ajmna0,72,97,1|1avvb5z,72,97,1|1avvb60,23,65,0|1b2polz,23,65,0|1b2pom0,72,97,1|1beychz,72,97,1|1beyci0,23,65,0|1blfr9z,23,65,0|1blfra0,72,97,1|1bxof5z,72,97,1|1bxof60,23,65,0|1c45txz,23,65,0|1c45ty0,72,97,1|1cgehtz,72,97,1|1cgehu0,23,65,0|1cmvwlz,23,65,0|1cmvwm0,72,97,1|1cz4khz,72,97,1|1cz4ki0,23,65,0|1d5lz9z,23,65,0|1d5lza0,72,97,1|1dhun5z,72,97,1|1dhun60,23,65,0|1doc1xz,23,65,0|1doc1y0,72,97,1|1e0kptz,72,97,1|1e0kpu0,23,65,0|1e7f39z,23,65,0|1e7f3a0,72,97,1|1ejnr5z,72,97,1|1ejnr60,23,65,0|1eq55xz,23,65,0|1eq55y0,72,97,1|1f2dttz,72,97,1|1f2dtu0,23,65,0|1f8v8lz,23,65,0|1f8v8m0,72,97,1|1fl3whz,72,97,1|1fl3wi0,23,65,0|1frlb9z,23,65,0|1frlba0,72,97,1|1g3tz5z,72,97,1|1g3tz60,23,65,0|1gabdxz,23,65,0|1gabdy0,72,97,1|1gmk1tz,72,97,1|1gmk1u0,23,65,0|1gt1glz,23,65,0|1gt1gm0,72,97,1|1h5a4hz,72,97,1|1h5a4i0,23,65,0|1hc4hxz,23,65,0|1hc4hy0,72,97,1|1hod5tz,72,97,1|1hod5u0,23,65,0|1huuklz,23,65,0|1huukm0,72,97,1|1i738hz,72,97,1|1i738i0,23,65,0|1idkn9z,23,65,0|1idkna0,72,97,1|1iptb5z,72,97,1|1iptb60,23,65,0|1iwapxz,23,65,0|1iwapy0,72,97,1|1j8jdtz,72,97,1|1j8jdu0,23,65,0|1jf0slz,23,65,0|1jf0sm0,72,97,1|1jr9ghz,72,97,1|1jr9gi0,23,65,0|1jy3txz,23,65,0|1jy3ty0,72,97,1|1kachtz,72,97,1|1kachu0,23,65,0|1kgtwlz,23,65,0|1kgtwm0,72,97,1|1kt2khz,72,97,1|1kt2ki0,23,65,0|1kzjz9z,23,65,0|1kzjza0,72,97,1|1lbsn5z,72,97,1|1lbsn60,23,65,0|1lia1xz,23,65,0|1lia1y0,72,97,1|1luiptz,72,97,1|1luipu0,23,65,0|1m104lz,23,65,0|1m104m0,72,97,1|1md8shz,72,97,1|1md8si0,23,65,0|1mjq79z,23,65,0|1mjq7a0,72,97,1|1mvyv5z,72,97,1|1mvyv60,23,65,0|1n2t8lz,23,65,0|1n2t8m0,72,97,1|1nf1whz,72,97,1|1nf1wi0,23,65,0|1nljb9z,23,65,0|1nljba0,72,97,1|1nxrz5z,72,97,1|1nxrz60,23,65,0|1o49dxz,23,65,0|1o49dy0,72,97,1|1ogi1tz,72,97,1|1ogi1u0,23,65,0|1omzglz,23,65,0|1omzgm0,72,97,1|1oz84hz,72,97,1|1oz84i0,23,65,0|1p5pj9z,23,65,0|1p5pja0,72,97,1|1phy75z,72,97,1|1phy760,23,65,0|1posklz,23,65,0|1poskm0,72,97,1|1q118hz,72,97,1|1q118i0,23,65,0|1q7in9z,23,65,0|1q7ina0,72,97,1|1qjrb5z,72,97,1|1qjrb60,23,65,0|1qq8pxz,23,65,0|1qq8py0,72,97,1|1r2hdtz,72,97,1|1r2hdu0,23,65,0|1r8yslz,23,65,0|1r8ysm0,72,97,1|1rl7ghz,72,97,1|1rl7gi0,23,65,0|1rrov9z,23,65,0|1rrova0,72,97,1|1s3xj5z,72,97,1|1s3xj60,23,65,0|1saexxz,23,65,0|1saexy0,72,97,1|1smnltz,72,97,1|1smnlu0,23,65,0|1sthz9z,23,65,0|1sthza0,72,97,1|1t5qn5z,72,97,1|1t5qn60,23,65,0|1tc81xz,23,65,0|1tc81y0,72,97,1|1togptz,72,97,1|1togpu0,23,65,0|1tuy4lz,23,65,0|1tuy4m0,72,97,1|1u76shz,72,97,1|1u76si0,23,65,0|1udo79z,23,65,0|1udo7a0,72,97,1|1upwv5z,72,97,1|1upwv60,23,65,0|1uwe9xz,23,65,0|1uwe9y0,72,97,1|1v8mxtz,72,97,1|1v8mxu0,23,65,0|1vf4clz,23,65,0|1vf4cm0,72,97,1|1vrd0hz,72,97,1|1vrd0i0,23,65,0|NaN,23,65,0","America/St_Kitts|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/St_Lucia|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/St_Thomas|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/St_Vincent|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Swift_Current|,0,173,0|-xkq9d5,0,173,0|-xkq9d4,44,62,0|-qzosc1,44,62,0|-qzosc0,47,63,1|-qplwg1,47,63,1|-qplwg0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-ccvz01,44,62,0|-ccvz00,47,63,1|-c48xs1,47,63,1|-c48xs0,44,62,0|-bu5wc1,44,62,0|-bu5wc0,47,63,1|-bm8sg1,47,63,1|-bm8sg0,44,62,0|-bbfto1,44,62,0|-bbfto0,47,63,1|-b3ips1,47,63,1|-b3ips0,44,62,0|-aspr01,44,62,0|-aspr00,47,63,1|-aksn41,47,63,1|-aksn40,44,62,0|-6m78c1,44,62,0|-6m78c0,47,63,1|-6cu9s1,47,63,1|-6cu9s0,44,62,0|-5kr301,44,62,0|-5kr300,47,63,1|-5be4g1,47,63,1|-5be4g0,44,62,0|-5210c1,44,62,0|-5210c0,47,63,1|-4u3wg1,47,63,1|-4u3wg0,44,62,0|-4ixz01,44,62,0|-4ixz00,47,63,1|-4bdts1,47,63,1|-4bdts0,44,62,0|17qrnz,44,62,0|17qro0,45,63,0|NaN,45,63,0","America/Tegucigalpa|,0,174,0|-pfzh6l,0,174,0|-pfzh6k,45,63,0|91ojbz,45,63,0|91ojc0,48,59,1|998ojz,48,59,1|998ok0,45,63,0|9kelzz,45,63,0|9kem00,48,59,1|9ryr7z,48,59,1|9ryr80,45,63,0|iyvsnz,45,63,0|iyvso0,48,59,1|j3m37z,48,59,1|j3m380,45,63,0|NaN,45,63,0","America/Thule|,0,175,0|-rvuj9h,0,175,0|-rvuj9g,31,40,0|b34zbz,31,40,0|b34zc0,49,41,1|bchxvz,49,41,1|bchxw0,31,40,0|blv1zz,31,40,0|blv200,49,41,1|bv80jz,49,41,1|bv80k0,31,40,0|c4y3bz,31,40,0|c4y3c0,49,41,1|cfqwjz,49,41,1|cfqwk0,31,40,0|cno5zz,31,40,0|cno600,49,41,1|cygz7z,49,41,1|cygz80,31,40,0|d6e8nz,31,40,0|d6e8o0,49,41,1|dh71vz,49,41,1|dh71w0,31,40,0|dph9zz,31,40,0|dpha00,49,41,1|dzx4jz,49,41,1|dzx4k0,31,40,0|e87cnz,31,40,0|e87co0,49,41,1|ein77z,49,41,1|ein780,31,40,0|eqxfbz,31,40,0|eqxfc0,49,41,1|f1d9vz,49,41,1|f1d9w0,31,40,0|f9nhzz,31,40,0|f9ni00,49,41,1|fkgb7z,49,41,1|fkgb80,31,40,0|fsdknz,31,40,0|fsdko0,49,41,1|g36dvz,49,41,1|g36dw0,31,40,0|gb3nbz,31,40,0|gb3nc0,49,41,1|glwgjz,49,41,1|glwgk0,31,40,0|gu6onz,31,40,0|gu6oo0,49,41,1|h4mj7z,49,41,1|h4mj80,31,40,0|hcwrbz,31,40,0|hcwrc0,49,41,1|hnclvz,49,41,1|hnclw0,31,40,0|hvmtzz,31,40,0|hvmu00,49,41,1|i6fn7z,49,41,1|i6fn80,31,40,0|iecwnz,31,40,0|iecwo0,49,41,1|ip5pvz,49,41,1|ip5pw0,31,40,0|ix2zbz,31,40,0|ix2zc0,49,41,1|j7vsjz,49,41,1|j7vsk0,31,40,0|jeq5zz,31,40,0|jeq600,49,41,1|jqytvz,49,41,1|jqytw0,31,40,0|jxg8nz,31,40,0|jxg8o0,49,41,1|k9owjz,49,41,1|k9owk0,31,40,0|kg6bbz,31,40,0|kg6bc0,49,41,1|ksez7z,49,41,1|ksez80,31,40,0|kz9cnz,31,40,0|kz9co0,49,41,1|lbi0jz,49,41,1|lbi0k0,31,40,0|lhzfbz,31,40,0|lhzfc0,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","America/Thunder_Bay|,0,176,0|-1353bh1,0,176,0|-1353bh0,45,63,0|-vbavc1,45,63,0|-vbavc0,43,59,0|-ek24k1,43,59,0|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|296rfz,43,59,0|296rg0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2rwu3z,43,59,0|2rwu40,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Tijuana|,0,177,0|-p1u1s1,0,177,0|-p1u1s0,44,62,0|-o0a9w1,44,62,0|-o0a9w0,46,38,0|-m7mhw1,46,38,0|-m7mhw0,44,62,0|-kf64k1,44,62,0|-kf64k0,46,38,0|-k84cg1,46,38,0|-k84cg0,56,62,1|-jyrdw1,56,62,1|-jyrdw0,46,38,0|-eg90g1,46,38,0|-eg90g0,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-clhdw1,69,62,1|-clhdw0,46,38,0|-bcgxs1,46,38,0|-bcgxs0,56,62,1|-axv381,56,62,1|-axv380,46,38,0|-86qf01,46,38,0|-86qf00,56,62,1|-7yt8c1,56,62,1|-7yt8c0,46,38,0|-7o0cc1,46,38,0|-7o0cc0,56,62,1|-7g35o1,56,62,1|-7g35o0,46,38,0|-74xb01,46,38,0|-74xb00,56,62,1|-6x04c1,56,62,1|-6x04c0,46,38,0|-6m78c1,46,38,0|-6m78c0,56,62,1|-6ea1o1,56,62,1|-6ea1o0,46,38,0|-63h5o1,46,38,0|-63h5o0,56,62,1|-5vjz01,56,62,1|-5vjz00,46,38,0|-5kr301,46,38,0|-5kr300,56,62,1|-5ctwc1,56,62,1|-5ctwc0,46,38,0|-5210c1,46,38,0|-5210c0,56,62,1|-4u3to1,56,62,1|-4u3to0,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jftd3z,46,38,0|jftd40,56,62,1|jqm6bz,56,62,1|jqm6c0,46,38,0|jywefz,46,38,0|jyweg0,56,62,1|k9c8zz,56,62,1|k9c900,46,38,0|khmh3z,46,38,0|khmh40,56,62,1|ks2bnz,56,62,1|ks2bo0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,56,62,1|nx4ozz,56,62,1|nx4p00,46,38,0|o3z2fz,46,38,0|o3z2g0,56,62,1|og7qbz,56,62,1|og7qc0,46,38,0|omp53z,46,38,0|omp540,56,62,1|oyxszz,56,62,1|oyxt00,46,38,0|p5f7rz,46,38,0|p5f7s0,56,62,1|phnvnz,56,62,1|phnvo0,46,38,0|po5afz,46,38,0|po5ag0,56,62,1|q0dybz,56,62,1|q0dyc0,46,38,0|q6vd3z,46,38,0|q6vd40,56,62,1|qj40zz,56,62,1|qj4100,46,38,0|qpyefz,46,38,0|qpyeg0,56,62,1|r272bz,56,62,1|r272c0,46,38,0|r8oh3z,46,38,0|r8oh40,56,62,1|rkx4zz,56,62,1|rkx500,46,38,0|rrejrz,46,38,0|rrejs0,56,62,1|s3n7nz,56,62,1|s3n7o0,46,38,0|sa4mfz,46,38,0|sa4mg0,56,62,1|smdabz,56,62,1|smdac0,46,38,0|ssup3z,46,38,0|ssup40,56,62,1|t53czz,56,62,1|t53d00,46,38,0|tbkrrz,46,38,0|tbkrs0,56,62,1|tntfnz,56,62,1|tntfo0,46,38,0|tunt3z,46,38,0|tunt40,56,62,1|u6wgzz,56,62,1|u6wh00,46,38,0|uddvrz,46,38,0|uddvs0,56,62,1|upmjnz,56,62,1|upmjo0,46,38,0|uw3yfz,46,38,0|uw3yg0,56,62,1|v8cmbz,56,62,1|v8cmc0,46,38,0|veu13z,46,38,0|veu140,56,62,1|vr2ozz,56,62,1|vr2p00,46,38,0|vxk3rz,46,38,0|vxk3s0,56,62,1|w9srnz,56,62,1|w9sro0,46,38,0|wgn53z,46,38,0|wgn540,56,62,1|wsvszz,56,62,1|wsvt00,46,38,0|wzd7rz,46,38,0|wzd7s0,56,62,1|xblvnz,56,62,1|xblvo0,46,38,0|xi3afz,46,38,0|xi3ag0,56,62,1|xubybz,56,62,1|xubyc0,46,38,0|y0td3z,46,38,0|y0td40,56,62,1|yd20zz,56,62,1|yd2100,46,38,0|yjjfrz,46,38,0|yjjfs0,56,62,1|yvs3nz,56,62,1|yvs3o0,46,38,0|z29ifz,46,38,0|z29ig0,56,62,1|zei6bz,56,62,1|zei6c0,46,38,0|zlcjrz,46,38,0|zlcjs0,56,62,1|zxl7nz,56,62,1|zxl7o0,46,38,0|1042mfz,46,38,0|1042mg0,56,62,1|10gbabz,56,62,1|10gbac0,46,38,0|10msp3z,46,38,0|10msp40,56,62,1|10z1czz,56,62,1|10z1d00,46,38,0|115irrz,46,38,0|115irs0,56,62,1|11hrfnz,56,62,1|11hrfo0,46,38,0|11o8ufz,46,38,0|11o8ug0,56,62,1|120hibz,56,62,1|120hic0,46,38,0|126yx3z,46,38,0|126yx40,56,62,1|12j7kzz,56,62,1|12j7l00,46,38,0|12q1yfz,46,38,0|12q1yg0,56,62,1|132ambz,56,62,1|132amc0,46,38,0|138s13z,46,38,0|138s140,56,62,1|13l0ozz,56,62,1|13l0p00,46,38,0|13ri3rz,46,38,0|13ri3s0,56,62,1|143qrnz,56,62,1|143qro0,46,38,0|14a86fz,46,38,0|14a86g0,56,62,1|14mgubz,56,62,1|14mguc0,46,38,0|14sy93z,46,38,0|14sy940,56,62,1|1556wzz,56,62,1|1556x00,46,38,0|15c1afz,46,38,0|15c1ag0,56,62,1|15o9ybz,56,62,1|15o9yc0,46,38,0|15urd3z,46,38,0|15urd40,56,62,1|16700zz,56,62,1|1670100,46,38,0|16dhfrz,46,38,0|16dhfs0,56,62,1|16pq3nz,56,62,1|16pq3o0,46,38,0|16w7ifz,46,38,0|16w7ig0,56,62,1|178g6bz,56,62,1|178g6c0,46,38,0|17exl3z,46,38,0|17exl40,56,62,1|17r68zz,56,62,1|17r6900,46,38,0|17xnnrz,46,38,0|17xnns0,56,62,1|189wbnz,56,62,1|189wbo0,46,38,0|18gqp3z,46,38,0|18gqp40,56,62,1|18szczz,56,62,1|18szd00,46,38,0|18zgrrz,46,38,0|18zgrs0,56,62,1|19bpfnz,56,62,1|19bpfo0,46,38,0|19i6ufz,46,38,0|19i6ug0,56,62,1|19ufibz,56,62,1|19ufic0,46,38,0|1a0wx3z,46,38,0|1a0wx40,56,62,1|1ad5kzz,56,62,1|1ad5l00,46,38,0|1ajmzrz,46,38,0|1ajmzs0,56,62,1|1avvnnz,56,62,1|1avvno0,46,38,0|1b2q13z,46,38,0|1b2q140,56,62,1|1beyozz,56,62,1|1beyp00,46,38,0|1blg3rz,46,38,0|1blg3s0,56,62,1|1bxornz,56,62,1|1bxoro0,46,38,0|1c466fz,46,38,0|1c466g0,56,62,1|1cgeubz,56,62,1|1cgeuc0,46,38,0|1cmw93z,46,38,0|1cmw940,56,62,1|1cz4wzz,56,62,1|1cz4x00,46,38,0|1d5mbrz,46,38,0|1d5mbs0,56,62,1|1dhuznz,56,62,1|1dhuzo0,46,38,0|1docefz,46,38,0|1doceg0,56,62,1|1e0l2bz,56,62,1|1e0l2c0,46,38,0|1e7ffrz,46,38,0|1e7ffs0,56,62,1|1ejo3nz,56,62,1|1ejo3o0,46,38,0|1eq5ifz,46,38,0|1eq5ig0,56,62,1|1f2e6bz,56,62,1|1f2e6c0,46,38,0|1f8vl3z,46,38,0|1f8vl40,56,62,1|1fl48zz,56,62,1|1fl4900,46,38,0|1frlnrz,46,38,0|1frlns0,56,62,1|1g3ubnz,56,62,1|1g3ubo0,46,38,0|1gabqfz,46,38,0|1gabqg0,56,62,1|1gmkebz,56,62,1|1gmkec0,46,38,0|1gt1t3z,46,38,0|1gt1t40,56,62,1|1h5agzz,56,62,1|1h5ah00,46,38,0|1hc4ufz,46,38,0|1hc4ug0,56,62,1|1hodibz,56,62,1|1hodic0,46,38,0|1huux3z,46,38,0|1huux40,56,62,1|1i73kzz,56,62,1|1i73l00,46,38,0|1idkzrz,46,38,0|1idkzs0,56,62,1|1iptnnz,56,62,1|1iptno0,46,38,0|1iwb2fz,46,38,0|1iwb2g0,56,62,1|1j8jqbz,56,62,1|1j8jqc0,46,38,0|1jf153z,46,38,0|1jf1540,56,62,1|1jr9szz,56,62,1|1jr9t00,46,38,0|1jy46fz,46,38,0|1jy46g0,56,62,1|1kacubz,56,62,1|1kacuc0,46,38,0|1kgu93z,46,38,0|1kgu940,56,62,1|1kt2wzz,56,62,1|1kt2x00,46,38,0|1kzkbrz,46,38,0|1kzkbs0,56,62,1|1lbsznz,56,62,1|1lbszo0,46,38,0|1liaefz,46,38,0|1liaeg0,56,62,1|1luj2bz,56,62,1|1luj2c0,46,38,0|1m10h3z,46,38,0|1m10h40,56,62,1|1md94zz,56,62,1|1md9500,46,38,0|1mjqjrz,46,38,0|1mjqjs0,56,62,1|1mvz7nz,56,62,1|1mvz7o0,46,38,0|1n2tl3z,46,38,0|1n2tl40,56,62,1|1nf28zz,56,62,1|1nf2900,46,38,0|1nljnrz,46,38,0|1nljns0,56,62,1|1nxsbnz,56,62,1|1nxsbo0,46,38,0|1o49qfz,46,38,0|1o49qg0,56,62,1|1ogiebz,56,62,1|1ogiec0,46,38,0|1omzt3z,46,38,0|1omzt40,56,62,1|1oz8gzz,56,62,1|1oz8h00,46,38,0|1p5pvrz,46,38,0|1p5pvs0,56,62,1|1phyjnz,56,62,1|1phyjo0,46,38,0|1posx3z,46,38,0|1posx40,56,62,1|1q11kzz,56,62,1|1q11l00,46,38,0|1q7izrz,46,38,0|1q7izs0,56,62,1|1qjrnnz,56,62,1|1qjrno0,46,38,0|1qq92fz,46,38,0|1qq92g0,56,62,1|1r2hqbz,56,62,1|1r2hqc0,46,38,0|1r8z53z,46,38,0|1r8z540,56,62,1|1rl7szz,56,62,1|1rl7t00,46,38,0|1rrp7rz,46,38,0|1rrp7s0,56,62,1|1s3xvnz,56,62,1|1s3xvo0,46,38,0|1safafz,46,38,0|1safag0,56,62,1|1smnybz,56,62,1|1smnyc0,46,38,0|1stibrz,46,38,0|1stibs0,56,62,1|1t5qznz,56,62,1|1t5qzo0,46,38,0|1tc8efz,46,38,0|1tc8eg0,56,62,1|1toh2bz,56,62,1|1toh2c0,46,38,0|1tuyh3z,46,38,0|1tuyh40,56,62,1|1u774zz,56,62,1|1u77500,46,38,0|1udojrz,46,38,0|1udojs0,56,62,1|1upx7nz,56,62,1|1upx7o0,46,38,0|1uwemfz,46,38,0|1uwemg0,56,62,1|1v8nabz,56,62,1|1v8nac0,46,38,0|1vf4p3z,46,38,0|1vf4p40,56,62,1|1vrdczz,56,62,1|1vrdd00,46,38,0|NaN,46,38,0","America/Toronto|,0,143,0|-1353dat,0,143,0|-1353das,43,59,0|-qzoxw1,43,59,0|-qzoxw0,61,40,1|-qpm201,61,40,1|-qpm200,43,59,0|-qhn4u1,43,59,0|-qhn4u0,61,40,1|-q6w4w1,61,40,1|-q6w4w0,43,59,0|-px5wk1,43,59,0|-px5wk0,61,40,1|-pplww1,61,40,1|-pplww0,43,59,0|-pdpwk1,43,59,0|-pdpwk0,61,40,1|-p7e7c1,61,40,1|-p7e7c0,43,59,0|-ouztw1,43,59,0|-ouztw0,61,40,1|-ooiko1,61,40,1|-ooiko0,43,59,0|-oc9r81,43,59,0|-oc9r80,61,40,1|-o5si01,61,40,1|-o5si00,43,59,0|-ntwn81,43,59,0|-ntwn80,61,40,1|-nmpgo1,61,40,1|-nmpgo0,43,59,0|-nb6kk1,43,59,0|-nb6kk0,61,40,1|-n3ze01,61,40,1|-n3ze00,43,59,0|-msghw1,43,59,0|-msghw0,61,40,1|-ml9bc1,61,40,1|-ml9bc0,43,59,0|-m9qf81,43,59,0|-m9qf80,61,40,1|-m26a01,61,40,1|-m26a00,43,59,0|-lr0ck1,43,59,0|-lr0ck0,61,40,1|-lj38o1,61,40,1|-lj38o0,43,59,0|-l8a9w1,43,59,0|-l8a9w0,61,40,1|-l0d601,61,40,1|-l0d600,43,59,0|-kpk781,43,59,0|-kpk780,61,40,1|-khn3c1,61,40,1|-khn3c0,43,59,0|-k6u4k1,43,59,0|-k6u4k0,61,40,1|-jyx0o1,61,40,1|-jyx0o0,43,59,0|-jnr381,43,59,0|-jnr380,61,40,1|-jg6y01,61,40,1|-jg6y00,43,59,0|-j510k1,43,59,0|-j510k0,61,40,1|-ix3wo1,61,40,1|-ix3wo0,43,59,0|-imaxw1,43,59,0|-imaxw0,61,40,1|-iedu01,61,40,1|-iedu00,43,59,0|-i3kv81,43,59,0|-i3kv80,61,40,1|-hvnrc1,61,40,1|-hvnrc0,43,59,0|-hkusk1,43,59,0|-hkusk0,61,40,1|-hcxoo1,61,40,1|-hcxoo0,43,59,0|-h24pw1,43,59,0|-h24pw0,61,40,1|-gu7m01,61,40,1|-gu7m00,43,59,0|-gjen81,43,59,0|-gjen80,61,40,1|-gbhjc1,61,40,1|-gbhjc0,43,59,0|-g0blw1,43,59,0|-g0blw0,61,40,1|-fsrgo1,61,40,1|-fsrgo0,43,59,0|-fhlj81,43,59,0|-fhlj80,61,40,1|-ek24k1,61,40,1|-ek24k0,70,40,1|-cq2tg1,70,40,1|-cq2tg0,71,40,1|-cnp3c1,71,40,1|-cnp3c0,43,59,0|-ccw4k1,43,59,0|-ccw4k0,61,40,1|-c4z0o1,61,40,1|-c4z0o0,43,59,0|-bu67g1,43,59,0|-bu67g0,61,40,1|-bm93k1,61,40,1|-bm93k0,43,59,0|-bbg4s1,43,59,0|-bbg4s0,61,40,1|-b3j0w1,61,40,1|-b3j0w0,43,59,0|-asq241,43,59,0|-asq240,61,40,1|-ahka81,61,40,1|-ahka80,43,59,0|-a9mv81,43,59,0|-a9mv80,61,40,1|-9yu201,61,40,1|-9yu200,43,59,0|-9qwsk1,43,59,0|-9qwsk0,61,40,1|-9izoo1,61,40,1|-9izoo0,43,59,0|-986pw1,43,59,0|-986pw0,61,40,1|-909m01,61,40,1|-909m00,43,59,0|-8pgn81,43,59,0|-8pgn80,61,40,1|-8hjjc1,61,40,1|-8hjjc0,43,59,0|-86qkk1,43,59,0|-86qkk0,61,40,1|-7ytgo1,61,40,1|-7ytgo0,43,59,0|-7o0hw1,43,59,0|-7o0hw0,61,40,1|-7g3e01,61,40,1|-7g3e00,43,59,0|-74xgk1,43,59,0|-74xgk0,61,40,1|-6x0co1,61,40,1|-6x0co0,43,59,0|-6m7dw1,43,59,0|-6m7dw0,61,40,1|-6cufc1,61,40,1|-6cufc0,43,59,0|-63hb81,43,59,0|-63hb80,61,40,1|-5u4co1,61,40,1|-5u4co0,43,59,0|-5kr8k1,43,59,0|-5kr8k0,61,40,1|-5bea01,61,40,1|-5bea00,43,59,0|-5215w1,43,59,0|-5215w0,61,40,1|-4sb8o1,61,40,1|-4sb8o0,43,59,0|-4iy4k1,43,59,0|-4iy4k0,61,40,1|-49l601,61,40,1|-49l600,43,59,0|-4081w1,43,59,0|-4081w0,61,40,1|-3qv3c1,61,40,1|-3qv3c0,43,59,0|-3hhz81,43,59,0|-3hhz80,61,40,1|-3850o1,61,40,1|-3850o0,43,59,0|-2yrwk1,43,59,0|-2yrwk0,61,40,1|-2pey01,61,40,1|-2pey00,43,59,0|-2g1tw1,43,59,0|-2g1tw0,61,40,1|-26bwo1,61,40,1|-26bwo0,43,59,0|-1xbr81,43,59,0|-1xbr80,61,40,1|-1nlu01,61,40,1|-1nlu00,43,59,0|-1e8pw1,43,59,0|-1e8pw0,61,40,1|-14vrc1,61,40,1|-14vrc0,43,59,0|-vin81,43,59,0|-vin80,61,40,1|-m5oo1,61,40,1|-m5oo0,43,59,0|-cskk1,43,59,0|-cskk0,61,40,1|-3fm01,61,40,1|-3fm00,43,59,0|5xi3z,43,59,0|5xi40,61,40,1|fagnz,61,40,1|fago0,43,59,0|onkrz,43,59,0|onks0,61,40,1|ydhzz,61,40,1|ydi00,43,59,0|17qm3z,43,59,0|17qm40,61,40,1|1h3knz,61,40,1|1h3ko0,43,59,0|1qgorz,43,59,0|1qgos0,61,40,1|1ztnbz,61,40,1|1ztnc0,43,59,0|296rfz,43,59,0|296rg0,61,40,1|2ijpzz,61,40,1|2ijq00,43,59,0|2rwu3z,43,59,0|2rwu40,61,40,1|319snz,61,40,1|319so0,43,59,0|3amwrz,43,59,0|3amws0,61,40,1|3kctzz,61,40,1|3kcu00,43,59,0|3tczfz,43,59,0|3tczg0,61,40,1|432wnz,61,40,1|432wo0,43,59,0|4cg0rz,43,59,0|4cg0s0,61,40,1|4lszbz,61,40,1|4lszc0,43,59,0|4v63fz,43,59,0|4v63g0,61,40,1|54j1zz,61,40,1|54j200,43,59,0|5dw63z,43,59,0|5dw640,61,40,1|5n94nz,61,40,1|5n94o0,43,59,0|5wm8rz,43,59,0|5wm8s0,61,40,1|65z7bz,61,40,1|65z7c0,43,59,0|6fcbfz,43,59,0|6fcbg0,61,40,1|6p28nz,61,40,1|6p28o0,43,59,0|6y2e3z,43,59,0|6y2e40,61,40,1|77sbbz,61,40,1|77sbc0,43,59,0|7h5ffz,43,59,0|7h5fg0,61,40,1|7qidzz,61,40,1|7qie00,43,59,0|7zvi3z,43,59,0|7zvi40,61,40,1|898gnz,61,40,1|898go0,43,59,0|8ilkrz,43,59,0|8ilks0,61,40,1|8ryjbz,61,40,1|8ryjc0,43,59,0|908rfz,43,59,0|908rg0,61,40,1|9aolzz,61,40,1|9aom00,43,59,0|9iyu3z,43,59,0|9iyu40,61,40,1|9trnbz,61,40,1|9trnc0,43,59,0|a1owrz,43,59,0|a1ows0,61,40,1|achpzz,61,40,1|achq00,43,59,0|akezfz,43,59,0|akezg0,61,40,1|av7snz,61,40,1|av7so0,43,59,0|b3i0rz,43,59,0|b3i0s0,61,40,1|bdxvbz,61,40,1|bdxvc0,43,59,0|bm83fz,43,59,0|bm83g0,61,40,1|bwnxzz,61,40,1|bwny00,43,59,0|c4y63z,43,59,0|c4y640,61,40,1|cfqzbz,61,40,1|cfqzc0,43,59,0|cno8rz,43,59,0|cno8s0,61,40,1|cyh1zz,61,40,1|cyh200,43,59,0|d6ebfz,43,59,0|d6ebg0,61,40,1|dh74nz,61,40,1|dh74o0,43,59,0|dphcrz,43,59,0|dphcs0,61,40,1|dzx7bz,61,40,1|dzx7c0,43,59,0|e87ffz,43,59,0|e87fg0,61,40,1|ein9zz,61,40,1|eina00,43,59,0|eqxi3z,43,59,0|eqxi40,61,40,1|f1dcnz,61,40,1|f1dco0,43,59,0|f9nkrz,43,59,0|f9nks0,61,40,1|fkgdzz,61,40,1|fkge00,43,59,0|fsdnfz,43,59,0|fsdng0,61,40,1|g36gnz,61,40,1|g36go0,43,59,0|gb3q3z,43,59,0|gb3q40,61,40,1|glwjbz,61,40,1|glwjc0,43,59,0|gu6rfz,43,59,0|gu6rg0,61,40,1|h4mlzz,61,40,1|h4mm00,43,59,0|hcwu3z,43,59,0|hcwu40,61,40,1|hnconz,61,40,1|hncoo0,43,59,0|hvmwrz,43,59,0|hvmws0,61,40,1|i6fpzz,61,40,1|i6fq00,43,59,0|ieczfz,43,59,0|ieczg0,61,40,1|ip5snz,61,40,1|ip5so0,43,59,0|ix323z,43,59,0|ix3240,61,40,1|j7vvbz,61,40,1|j7vvc0,43,59,0|jeq8rz,43,59,0|jeq8s0,61,40,1|jqywnz,61,40,1|jqywo0,43,59,0|jxgbfz,43,59,0|jxgbg0,61,40,1|k9ozbz,61,40,1|k9ozc0,43,59,0|kg6e3z,43,59,0|kg6e40,61,40,1|ksf1zz,61,40,1|ksf200,43,59,0|kz9ffz,43,59,0|kz9fg0,61,40,1|lbi3bz,61,40,1|lbi3c0,43,59,0|lhzi3z,43,59,0|lhzi40,61,40,1|lu85zz,61,40,1|lu8600,43,59,0|m0pkrz,43,59,0|m0pks0,61,40,1|mcy8nz,61,40,1|mcy8o0,43,59,0|mjfnfz,43,59,0|mjfng0,61,40,1|mvobbz,61,40,1|mvobc0,43,59,0|n25q3z,43,59,0|n25q40,61,40,1|needzz,61,40,1|neee00,43,59,0|nkvsrz,43,59,0|nkvss0,61,40,1|nx4gnz,61,40,1|nx4go0,43,59,0|o3yu3z,43,59,0|o3yu40,61,40,1|og7hzz,61,40,1|og7i00,43,59,0|omowrz,43,59,0|omows0,61,40,1|oyxknz,61,40,1|oyxko0,43,59,0|p5ezfz,43,59,0|p5ezg0,61,40,1|phnnbz,61,40,1|phnnc0,43,59,0|po523z,43,59,0|po5240,61,40,1|q0dpzz,61,40,1|q0dq00,43,59,0|q6v4rz,43,59,0|q6v4s0,61,40,1|qj3snz,61,40,1|qj3so0,43,59,0|qpy63z,43,59,0|qpy640,61,40,1|r26tzz,61,40,1|r26u00,43,59,0|r8o8rz,43,59,0|r8o8s0,61,40,1|rkwwnz,61,40,1|rkwwo0,43,59,0|rrebfz,43,59,0|rrebg0,61,40,1|s3mzbz,61,40,1|s3mzc0,43,59,0|sa4e3z,43,59,0|sa4e40,61,40,1|smd1zz,61,40,1|smd200,43,59,0|ssugrz,43,59,0|ssugs0,61,40,1|t534nz,61,40,1|t534o0,43,59,0|tbkjfz,43,59,0|tbkjg0,61,40,1|tnt7bz,61,40,1|tnt7c0,43,59,0|tunkrz,43,59,0|tunks0,61,40,1|u6w8nz,61,40,1|u6w8o0,43,59,0|uddnfz,43,59,0|uddng0,61,40,1|upmbbz,61,40,1|upmbc0,43,59,0|uw3q3z,43,59,0|uw3q40,61,40,1|v8cdzz,61,40,1|v8ce00,43,59,0|vetsrz,43,59,0|vetss0,61,40,1|vr2gnz,61,40,1|vr2go0,43,59,0|vxjvfz,43,59,0|vxjvg0,61,40,1|w9sjbz,61,40,1|w9sjc0,43,59,0|wgmwrz,43,59,0|wgmws0,61,40,1|wsvknz,61,40,1|wsvko0,43,59,0|wzczfz,43,59,0|wzczg0,61,40,1|xblnbz,61,40,1|xblnc0,43,59,0|xi323z,43,59,0|xi3240,61,40,1|xubpzz,61,40,1|xubq00,43,59,0|y0t4rz,43,59,0|y0t4s0,61,40,1|yd1snz,61,40,1|yd1so0,43,59,0|yjj7fz,43,59,0|yjj7g0,61,40,1|yvrvbz,61,40,1|yvrvc0,43,59,0|z29a3z,43,59,0|z29a40,61,40,1|zehxzz,61,40,1|zehy00,43,59,0|zlcbfz,43,59,0|zlcbg0,61,40,1|zxkzbz,61,40,1|zxkzc0,43,59,0|1042e3z,43,59,0|1042e40,61,40,1|10gb1zz,61,40,1|10gb200,43,59,0|10msgrz,43,59,0|10msgs0,61,40,1|10z14nz,61,40,1|10z14o0,43,59,0|115ijfz,43,59,0|115ijg0,61,40,1|11hr7bz,61,40,1|11hr7c0,43,59,0|11o8m3z,43,59,0|11o8m40,61,40,1|120h9zz,61,40,1|120ha00,43,59,0|126yorz,43,59,0|126yos0,61,40,1|12j7cnz,61,40,1|12j7co0,43,59,0|12q1q3z,43,59,0|12q1q40,61,40,1|132adzz,61,40,1|132ae00,43,59,0|138rsrz,43,59,0|138rss0,61,40,1|13l0gnz,61,40,1|13l0go0,43,59,0|13rhvfz,43,59,0|13rhvg0,61,40,1|143qjbz,61,40,1|143qjc0,43,59,0|14a7y3z,43,59,0|14a7y40,61,40,1|14mglzz,61,40,1|14mgm00,43,59,0|14sy0rz,43,59,0|14sy0s0,61,40,1|1556onz,61,40,1|1556oo0,43,59,0|15c123z,43,59,0|15c1240,61,40,1|15o9pzz,61,40,1|15o9q00,43,59,0|15ur4rz,43,59,0|15ur4s0,61,40,1|166zsnz,61,40,1|166zso0,43,59,0|16dh7fz,43,59,0|16dh7g0,61,40,1|16ppvbz,61,40,1|16ppvc0,43,59,0|16w7a3z,43,59,0|16w7a40,61,40,1|178fxzz,61,40,1|178fy00,43,59,0|17excrz,43,59,0|17excs0,61,40,1|17r60nz,61,40,1|17r60o0,43,59,0|17xnffz,43,59,0|17xnfg0,61,40,1|189w3bz,61,40,1|189w3c0,43,59,0|18gqgrz,43,59,0|18gqgs0,61,40,1|18sz4nz,61,40,1|18sz4o0,43,59,0|18zgjfz,43,59,0|18zgjg0,61,40,1|19bp7bz,61,40,1|19bp7c0,43,59,0|19i6m3z,43,59,0|19i6m40,61,40,1|19uf9zz,61,40,1|19ufa00,43,59,0|1a0worz,43,59,0|1a0wos0,61,40,1|1ad5cnz,61,40,1|1ad5co0,43,59,0|1ajmrfz,43,59,0|1ajmrg0,61,40,1|1avvfbz,61,40,1|1avvfc0,43,59,0|1b2psrz,43,59,0|1b2pss0,61,40,1|1beygnz,61,40,1|1beygo0,43,59,0|1blfvfz,43,59,0|1blfvg0,61,40,1|1bxojbz,61,40,1|1bxojc0,43,59,0|1c45y3z,43,59,0|1c45y40,61,40,1|1cgelzz,61,40,1|1cgem00,43,59,0|1cmw0rz,43,59,0|1cmw0s0,61,40,1|1cz4onz,61,40,1|1cz4oo0,43,59,0|1d5m3fz,43,59,0|1d5m3g0,61,40,1|1dhurbz,61,40,1|1dhurc0,43,59,0|1doc63z,43,59,0|1doc640,61,40,1|1e0ktzz,61,40,1|1e0ku00,43,59,0|1e7f7fz,43,59,0|1e7f7g0,61,40,1|1ejnvbz,61,40,1|1ejnvc0,43,59,0|1eq5a3z,43,59,0|1eq5a40,61,40,1|1f2dxzz,61,40,1|1f2dy00,43,59,0|1f8vcrz,43,59,0|1f8vcs0,61,40,1|1fl40nz,61,40,1|1fl40o0,43,59,0|1frlffz,43,59,0|1frlfg0,61,40,1|1g3u3bz,61,40,1|1g3u3c0,43,59,0|1gabi3z,43,59,0|1gabi40,61,40,1|1gmk5zz,61,40,1|1gmk600,43,59,0|1gt1krz,43,59,0|1gt1ks0,61,40,1|1h5a8nz,61,40,1|1h5a8o0,43,59,0|1hc4m3z,43,59,0|1hc4m40,61,40,1|1hod9zz,61,40,1|1hoda00,43,59,0|1huuorz,43,59,0|1huuos0,61,40,1|1i73cnz,61,40,1|1i73co0,43,59,0|1idkrfz,43,59,0|1idkrg0,61,40,1|1iptfbz,61,40,1|1iptfc0,43,59,0|1iwau3z,43,59,0|1iwau40,61,40,1|1j8jhzz,61,40,1|1j8ji00,43,59,0|1jf0wrz,43,59,0|1jf0ws0,61,40,1|1jr9knz,61,40,1|1jr9ko0,43,59,0|1jy3y3z,43,59,0|1jy3y40,61,40,1|1kaclzz,61,40,1|1kacm00,43,59,0|1kgu0rz,43,59,0|1kgu0s0,61,40,1|1kt2onz,61,40,1|1kt2oo0,43,59,0|1kzk3fz,43,59,0|1kzk3g0,61,40,1|1lbsrbz,61,40,1|1lbsrc0,43,59,0|1lia63z,43,59,0|1lia640,61,40,1|1luitzz,61,40,1|1luiu00,43,59,0|1m108rz,43,59,0|1m108s0,61,40,1|1md8wnz,61,40,1|1md8wo0,43,59,0|1mjqbfz,43,59,0|1mjqbg0,61,40,1|1mvyzbz,61,40,1|1mvyzc0,43,59,0|1n2tcrz,43,59,0|1n2tcs0,61,40,1|1nf20nz,61,40,1|1nf20o0,43,59,0|1nljffz,43,59,0|1nljfg0,61,40,1|1nxs3bz,61,40,1|1nxs3c0,43,59,0|1o49i3z,43,59,0|1o49i40,61,40,1|1ogi5zz,61,40,1|1ogi600,43,59,0|1omzkrz,43,59,0|1omzks0,61,40,1|1oz88nz,61,40,1|1oz88o0,43,59,0|1p5pnfz,43,59,0|1p5png0,61,40,1|1phybbz,61,40,1|1phybc0,43,59,0|1posorz,43,59,0|1posos0,61,40,1|1q11cnz,61,40,1|1q11co0,43,59,0|1q7irfz,43,59,0|1q7irg0,61,40,1|1qjrfbz,61,40,1|1qjrfc0,43,59,0|1qq8u3z,43,59,0|1qq8u40,61,40,1|1r2hhzz,61,40,1|1r2hi00,43,59,0|1r8ywrz,43,59,0|1r8yws0,61,40,1|1rl7knz,61,40,1|1rl7ko0,43,59,0|1rrozfz,43,59,0|1rrozg0,61,40,1|1s3xnbz,61,40,1|1s3xnc0,43,59,0|1saf23z,43,59,0|1saf240,61,40,1|1smnpzz,61,40,1|1smnq00,43,59,0|1sti3fz,43,59,0|1sti3g0,61,40,1|1t5qrbz,61,40,1|1t5qrc0,43,59,0|1tc863z,43,59,0|1tc8640,61,40,1|1togtzz,61,40,1|1togu00,43,59,0|1tuy8rz,43,59,0|1tuy8s0,61,40,1|1u76wnz,61,40,1|1u76wo0,43,59,0|1udobfz,43,59,0|1udobg0,61,40,1|1upwzbz,61,40,1|1upwzc0,43,59,0|1uwee3z,43,59,0|1uwee40,61,40,1|1v8n1zz,61,40,1|1v8n200,43,59,0|1vf4grz,43,59,0|1vf4gs0,61,40,1|1vrd4nz,61,40,1|1vrd4o0,43,59,0|NaN,43,59,0","America/Tortola|,0,39,0|-10xhp3c,0,39,0|-10xhp3b,31,40,0|-efsnk1,31,40,0|-efsnk0,32,41,1|-cq2tg1,32,41,1|-cq2tg0,33,41,1|-cnp641,33,41,1|-cnp640,31,40,0|NaN,31,40,0","America/Vancouver|,0,178,0|-18vrvv9,0,178,0|-18vrvv8,46,38,0|-qzopk1,46,38,0|-qzopk0,56,62,1|-qplto1,56,62,1|-qplto0,46,38,0|-ek1w81,46,38,0|-ek1w80,68,62,1|-cq2tg1,68,62,1|-cq2tg0,69,62,1|-cnov01,69,62,1|-cnov00,46,38,0|-ccvw81,46,38,0|-ccvw80,56,62,1|-c4ysc1,56,62,1|-c4ysc0,46,38,0|-bu5tk1,46,38,0|-bu5tk0,56,62,1|-bm8po1,56,62,1|-bm8po0,46,38,0|-bbfqw1,46,38,0|-bbfqw0,56,62,1|-b3in01,56,62,1|-b3in00,46,38,0|-aspo81,46,38,0|-aspo80,56,62,1|-akskc1,56,62,1|-akskc0,46,38,0|-a9mmw1,46,38,0|-a9mmw0,56,62,1|-a22ho1,56,62,1|-a22ho0,46,38,0|-9qwk81,46,38,0|-9qwk80,56,62,1|-9izgc1,56,62,1|-9izgc0,46,38,0|-986hk1,46,38,0|-986hk0,56,62,1|-909do1,56,62,1|-909do0,46,38,0|-8pgew1,46,38,0|-8pgew0,56,62,1|-8hjb01,56,62,1|-8hjb00,46,38,0|-86qc81,46,38,0|-86qc80,56,62,1|-7yt8c1,56,62,1|-7yt8c0,46,38,0|-7o09k1,46,38,0|-7o09k0,56,62,1|-7g35o1,56,62,1|-7g35o0,46,38,0|-74x881,46,38,0|-74x880,56,62,1|-6x04c1,56,62,1|-6x04c0,46,38,0|-6m75k1,46,38,0|-6m75k0,56,62,1|-6ea1o1,56,62,1|-6ea1o0,46,38,0|-63h2w1,46,38,0|-63h2w0,56,62,1|-5vjz01,56,62,1|-5vjz00,46,38,0|-5kr081,46,38,0|-5kr080,56,62,1|-5ctwc1,56,62,1|-5ctwc0,46,38,0|-520xk1,46,38,0|-520xk0,56,62,1|-4u3to1,56,62,1|-4u3to0,46,38,0|-4ixw81,46,38,0|-4ixw80,56,62,1|-4bdr01,56,62,1|-4bdr00,46,38,0|-407tk1,46,38,0|-407tk0,56,62,1|-3quv01,56,62,1|-3quv00,46,38,0|-3hhqw1,46,38,0|-3hhqw0,56,62,1|-384sc1,56,62,1|-384sc0,46,38,0|-2yro81,46,38,0|-2yro80,56,62,1|-2pepo1,56,62,1|-2pepo0,46,38,0|-2g1lk1,46,38,0|-2g1lk0,56,62,1|-26boc1,56,62,1|-26boc0,46,38,0|-1xbiw1,46,38,0|-1xbiw0,56,62,1|-1nllo1,56,62,1|-1nllo0,46,38,0|-1e8hk1,46,38,0|-1e8hk0,56,62,1|-14vj01,56,62,1|-14vj00,46,38,0|-view1,46,38,0|-view0,56,62,1|-m5gc1,56,62,1|-m5gc0,46,38,0|-csc81,46,38,0|-csc80,56,62,1|-3fdo1,56,62,1|-3fdo0,46,38,0|5xqfz,46,38,0|5xqg0,56,62,1|faozz,56,62,1|fap00,46,38,0|ont3z,46,38,0|ont40,56,62,1|ydqbz,56,62,1|ydqc0,46,38,0|17qufz,46,38,0|17qug0,56,62,1|1h3szz,56,62,1|1h3t00,46,38,0|1qgx3z,46,38,0|1qgx40,56,62,1|1ztvnz,56,62,1|1ztvo0,46,38,0|296zrz,46,38,0|296zs0,56,62,1|2ijybz,56,62,1|2ijyc0,46,38,0|2rx2fz,46,38,0|2rx2g0,56,62,1|31a0zz,56,62,1|31a100,46,38,0|3an53z,46,38,0|3an540,56,62,1|3kd2bz,56,62,1|3kd2c0,46,38,0|3td7rz,46,38,0|3td7s0,56,62,1|4334zz,56,62,1|433500,46,38,0|4cg93z,46,38,0|4cg940,56,62,1|4lt7nz,56,62,1|4lt7o0,46,38,0|4v6brz,46,38,0|4v6bs0,56,62,1|54jabz,56,62,1|54jac0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jeqh3z,46,38,0|jeqh40,56,62,1|jqz4zz,56,62,1|jqz500,46,38,0|jxgjrz,46,38,0|jxgjs0,56,62,1|k9p7nz,56,62,1|k9p7o0,46,38,0|kg6mfz,46,38,0|kg6mg0,56,62,1|ksfabz,56,62,1|ksfac0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,56,62,1|nx4ozz,56,62,1|nx4p00,46,38,0|o3z2fz,46,38,0|o3z2g0,56,62,1|og7qbz,56,62,1|og7qc0,46,38,0|omp53z,46,38,0|omp540,56,62,1|oyxszz,56,62,1|oyxt00,46,38,0|p5f7rz,46,38,0|p5f7s0,56,62,1|phnvnz,56,62,1|phnvo0,46,38,0|po5afz,46,38,0|po5ag0,56,62,1|q0dybz,56,62,1|q0dyc0,46,38,0|q6vd3z,46,38,0|q6vd40,56,62,1|qj40zz,56,62,1|qj4100,46,38,0|qpyefz,46,38,0|qpyeg0,56,62,1|r272bz,56,62,1|r272c0,46,38,0|r8oh3z,46,38,0|r8oh40,56,62,1|rkx4zz,56,62,1|rkx500,46,38,0|rrejrz,46,38,0|rrejs0,56,62,1|s3n7nz,56,62,1|s3n7o0,46,38,0|sa4mfz,46,38,0|sa4mg0,56,62,1|smdabz,56,62,1|smdac0,46,38,0|ssup3z,46,38,0|ssup40,56,62,1|t53czz,56,62,1|t53d00,46,38,0|tbkrrz,46,38,0|tbkrs0,56,62,1|tntfnz,56,62,1|tntfo0,46,38,0|tunt3z,46,38,0|tunt40,56,62,1|u6wgzz,56,62,1|u6wh00,46,38,0|uddvrz,46,38,0|uddvs0,56,62,1|upmjnz,56,62,1|upmjo0,46,38,0|uw3yfz,46,38,0|uw3yg0,56,62,1|v8cmbz,56,62,1|v8cmc0,46,38,0|veu13z,46,38,0|veu140,56,62,1|vr2ozz,56,62,1|vr2p00,46,38,0|vxk3rz,46,38,0|vxk3s0,56,62,1|w9srnz,56,62,1|w9sro0,46,38,0|wgn53z,46,38,0|wgn540,56,62,1|wsvszz,56,62,1|wsvt00,46,38,0|wzd7rz,46,38,0|wzd7s0,56,62,1|xblvnz,56,62,1|xblvo0,46,38,0|xi3afz,46,38,0|xi3ag0,56,62,1|xubybz,56,62,1|xubyc0,46,38,0|y0td3z,46,38,0|y0td40,56,62,1|yd20zz,56,62,1|yd2100,46,38,0|yjjfrz,46,38,0|yjjfs0,56,62,1|yvs3nz,56,62,1|yvs3o0,46,38,0|z29ifz,46,38,0|z29ig0,56,62,1|zei6bz,56,62,1|zei6c0,46,38,0|zlcjrz,46,38,0|zlcjs0,56,62,1|zxl7nz,56,62,1|zxl7o0,46,38,0|1042mfz,46,38,0|1042mg0,56,62,1|10gbabz,56,62,1|10gbac0,46,38,0|10msp3z,46,38,0|10msp40,56,62,1|10z1czz,56,62,1|10z1d00,46,38,0|115irrz,46,38,0|115irs0,56,62,1|11hrfnz,56,62,1|11hrfo0,46,38,0|11o8ufz,46,38,0|11o8ug0,56,62,1|120hibz,56,62,1|120hic0,46,38,0|126yx3z,46,38,0|126yx40,56,62,1|12j7kzz,56,62,1|12j7l00,46,38,0|12q1yfz,46,38,0|12q1yg0,56,62,1|132ambz,56,62,1|132amc0,46,38,0|138s13z,46,38,0|138s140,56,62,1|13l0ozz,56,62,1|13l0p00,46,38,0|13ri3rz,46,38,0|13ri3s0,56,62,1|143qrnz,56,62,1|143qro0,46,38,0|14a86fz,46,38,0|14a86g0,56,62,1|14mgubz,56,62,1|14mguc0,46,38,0|14sy93z,46,38,0|14sy940,56,62,1|1556wzz,56,62,1|1556x00,46,38,0|15c1afz,46,38,0|15c1ag0,56,62,1|15o9ybz,56,62,1|15o9yc0,46,38,0|15urd3z,46,38,0|15urd40,56,62,1|16700zz,56,62,1|1670100,46,38,0|16dhfrz,46,38,0|16dhfs0,56,62,1|16pq3nz,56,62,1|16pq3o0,46,38,0|16w7ifz,46,38,0|16w7ig0,56,62,1|178g6bz,56,62,1|178g6c0,46,38,0|17exl3z,46,38,0|17exl40,56,62,1|17r68zz,56,62,1|17r6900,46,38,0|17xnnrz,46,38,0|17xnns0,56,62,1|189wbnz,56,62,1|189wbo0,46,38,0|18gqp3z,46,38,0|18gqp40,56,62,1|18szczz,56,62,1|18szd00,46,38,0|18zgrrz,46,38,0|18zgrs0,56,62,1|19bpfnz,56,62,1|19bpfo0,46,38,0|19i6ufz,46,38,0|19i6ug0,56,62,1|19ufibz,56,62,1|19ufic0,46,38,0|1a0wx3z,46,38,0|1a0wx40,56,62,1|1ad5kzz,56,62,1|1ad5l00,46,38,0|1ajmzrz,46,38,0|1ajmzs0,56,62,1|1avvnnz,56,62,1|1avvno0,46,38,0|1b2q13z,46,38,0|1b2q140,56,62,1|1beyozz,56,62,1|1beyp00,46,38,0|1blg3rz,46,38,0|1blg3s0,56,62,1|1bxornz,56,62,1|1bxoro0,46,38,0|1c466fz,46,38,0|1c466g0,56,62,1|1cgeubz,56,62,1|1cgeuc0,46,38,0|1cmw93z,46,38,0|1cmw940,56,62,1|1cz4wzz,56,62,1|1cz4x00,46,38,0|1d5mbrz,46,38,0|1d5mbs0,56,62,1|1dhuznz,56,62,1|1dhuzo0,46,38,0|1docefz,46,38,0|1doceg0,56,62,1|1e0l2bz,56,62,1|1e0l2c0,46,38,0|1e7ffrz,46,38,0|1e7ffs0,56,62,1|1ejo3nz,56,62,1|1ejo3o0,46,38,0|1eq5ifz,46,38,0|1eq5ig0,56,62,1|1f2e6bz,56,62,1|1f2e6c0,46,38,0|1f8vl3z,46,38,0|1f8vl40,56,62,1|1fl48zz,56,62,1|1fl4900,46,38,0|1frlnrz,46,38,0|1frlns0,56,62,1|1g3ubnz,56,62,1|1g3ubo0,46,38,0|1gabqfz,46,38,0|1gabqg0,56,62,1|1gmkebz,56,62,1|1gmkec0,46,38,0|1gt1t3z,46,38,0|1gt1t40,56,62,1|1h5agzz,56,62,1|1h5ah00,46,38,0|1hc4ufz,46,38,0|1hc4ug0,56,62,1|1hodibz,56,62,1|1hodic0,46,38,0|1huux3z,46,38,0|1huux40,56,62,1|1i73kzz,56,62,1|1i73l00,46,38,0|1idkzrz,46,38,0|1idkzs0,56,62,1|1iptnnz,56,62,1|1iptno0,46,38,0|1iwb2fz,46,38,0|1iwb2g0,56,62,1|1j8jqbz,56,62,1|1j8jqc0,46,38,0|1jf153z,46,38,0|1jf1540,56,62,1|1jr9szz,56,62,1|1jr9t00,46,38,0|1jy46fz,46,38,0|1jy46g0,56,62,1|1kacubz,56,62,1|1kacuc0,46,38,0|1kgu93z,46,38,0|1kgu940,56,62,1|1kt2wzz,56,62,1|1kt2x00,46,38,0|1kzkbrz,46,38,0|1kzkbs0,56,62,1|1lbsznz,56,62,1|1lbszo0,46,38,0|1liaefz,46,38,0|1liaeg0,56,62,1|1luj2bz,56,62,1|1luj2c0,46,38,0|1m10h3z,46,38,0|1m10h40,56,62,1|1md94zz,56,62,1|1md9500,46,38,0|1mjqjrz,46,38,0|1mjqjs0,56,62,1|1mvz7nz,56,62,1|1mvz7o0,46,38,0|1n2tl3z,46,38,0|1n2tl40,56,62,1|1nf28zz,56,62,1|1nf2900,46,38,0|1nljnrz,46,38,0|1nljns0,56,62,1|1nxsbnz,56,62,1|1nxsbo0,46,38,0|1o49qfz,46,38,0|1o49qg0,56,62,1|1ogiebz,56,62,1|1ogiec0,46,38,0|1omzt3z,46,38,0|1omzt40,56,62,1|1oz8gzz,56,62,1|1oz8h00,46,38,0|1p5pvrz,46,38,0|1p5pvs0,56,62,1|1phyjnz,56,62,1|1phyjo0,46,38,0|1posx3z,46,38,0|1posx40,56,62,1|1q11kzz,56,62,1|1q11l00,46,38,0|1q7izrz,46,38,0|1q7izs0,56,62,1|1qjrnnz,56,62,1|1qjrno0,46,38,0|1qq92fz,46,38,0|1qq92g0,56,62,1|1r2hqbz,56,62,1|1r2hqc0,46,38,0|1r8z53z,46,38,0|1r8z540,56,62,1|1rl7szz,56,62,1|1rl7t00,46,38,0|1rrp7rz,46,38,0|1rrp7s0,56,62,1|1s3xvnz,56,62,1|1s3xvo0,46,38,0|1safafz,46,38,0|1safag0,56,62,1|1smnybz,56,62,1|1smnyc0,46,38,0|1stibrz,46,38,0|1stibs0,56,62,1|1t5qznz,56,62,1|1t5qzo0,46,38,0|1tc8efz,46,38,0|1tc8eg0,56,62,1|1toh2bz,56,62,1|1toh2c0,46,38,0|1tuyh3z,46,38,0|1tuyh40,56,62,1|1u774zz,56,62,1|1u77500,46,38,0|1udojrz,46,38,0|1udojs0,56,62,1|1upx7nz,56,62,1|1upx7o0,46,38,0|1uwemfz,46,38,0|1uwemg0,56,62,1|1v8nabz,56,62,1|1v8nac0,46,38,0|1vf4p3z,46,38,0|1vf4p40,56,62,1|1vrdczz,56,62,1|1vrdd00,46,38,0|NaN,46,38,0","America/Whitehorse|,0,179,0|-1079tnp,0,179,0|-1079tno,35,35,0|-qzoms1,35,35,0|-qzoms0,64,38,1|-qplqw1,64,38,1|-qplqw0,35,35,0|-qess41,35,35,0|-qess40,64,38,1|-q6kps1,64,38,1|-q6kps0,35,35,0|-ek1tg1,35,35,0|-ek1tg0,65,38,1|-cq2tg1,65,38,1|-cq2tg0,66,38,1|-cnos81,66,38,1|-cnos80,35,35,0|-2g1oc1,35,35,0|-2g1oc0,67,62,1|-26boc1,67,62,1|-26boc0,35,35,0|-1cspo1,35,35,0|-1cspo0,46,38,0|5dwefz,46,38,0|5dweg0,56,62,1|5n9czz,56,62,1|5n9d00,46,38,0|5wmh3z,46,38,0|5wmh40,56,62,1|65zfnz,56,62,1|65zfo0,46,38,0|6fcjrz,46,38,0|6fcjs0,56,62,1|6p2gzz,56,62,1|6p2h00,46,38,0|6y2mfz,46,38,0|6y2mg0,56,62,1|77sjnz,56,62,1|77sjo0,46,38,0|7h5nrz,46,38,0|7h5ns0,56,62,1|7qimbz,56,62,1|7qimc0,46,38,0|7zvqfz,46,38,0|7zvqg0,56,62,1|898ozz,56,62,1|898p00,46,38,0|8ilt3z,46,38,0|8ilt40,56,62,1|8ryrnz,56,62,1|8ryro0,46,38,0|908zrz,46,38,0|908zs0,56,62,1|9aoubz,56,62,1|9aouc0,46,38,0|9iz2fz,46,38,0|9iz2g0,56,62,1|9trvnz,56,62,1|9trvo0,46,38,0|a1p53z,46,38,0|a1p540,56,62,1|achybz,56,62,1|achyc0,46,38,0|akf7rz,46,38,0|akf7s0,56,62,1|av80zz,56,62,1|av8100,46,38,0|b3i93z,46,38,0|b3i940,56,62,1|bdy3nz,56,62,1|bdy3o0,46,38,0|bm8brz,46,38,0|bm8bs0,56,62,1|bwo6bz,56,62,1|bwo6c0,46,38,0|c4yefz,46,38,0|c4yeg0,56,62,1|cfr7nz,56,62,1|cfr7o0,46,38,0|cnoh3z,46,38,0|cnoh40,56,62,1|cyhabz,56,62,1|cyhac0,46,38,0|d6ejrz,46,38,0|d6ejs0,56,62,1|dh7czz,56,62,1|dh7d00,46,38,0|dphl3z,46,38,0|dphl40,56,62,1|dzxfnz,56,62,1|dzxfo0,46,38,0|e87nrz,46,38,0|e87ns0,56,62,1|einibz,56,62,1|einic0,46,38,0|eqxqfz,46,38,0|eqxqg0,56,62,1|f1dkzz,56,62,1|f1dl00,46,38,0|f9nt3z,46,38,0|f9nt40,56,62,1|fkgmbz,56,62,1|fkgmc0,46,38,0|fsdvrz,46,38,0|fsdvs0,56,62,1|g36ozz,56,62,1|g36p00,46,38,0|gb3yfz,46,38,0|gb3yg0,56,62,1|glwrnz,56,62,1|glwro0,46,38,0|gu6zrz,46,38,0|gu6zs0,56,62,1|h4mubz,56,62,1|h4muc0,46,38,0|hcx2fz,46,38,0|hcx2g0,56,62,1|hncwzz,56,62,1|hncx00,46,38,0|hvn53z,46,38,0|hvn540,56,62,1|i6fybz,56,62,1|i6fyc0,46,38,0|ied7rz,46,38,0|ied7s0,56,62,1|ip60zz,56,62,1|ip6100,46,38,0|ix3afz,46,38,0|ix3ag0,56,62,1|j7w3nz,56,62,1|j7w3o0,46,38,0|jeqh3z,46,38,0|jeqh40,56,62,1|jqz4zz,56,62,1|jqz500,46,38,0|jxgjrz,46,38,0|jxgjs0,56,62,1|k9p7nz,56,62,1|k9p7o0,46,38,0|kg6mfz,46,38,0|kg6mg0,56,62,1|ksfabz,56,62,1|ksfac0,46,38,0|kz9nrz,46,38,0|kz9ns0,56,62,1|lbibnz,56,62,1|lbibo0,46,38,0|lhzqfz,46,38,0|lhzqg0,56,62,1|lu8ebz,56,62,1|lu8ec0,46,38,0|m0pt3z,46,38,0|m0pt40,56,62,1|mcygzz,56,62,1|mcyh00,46,38,0|mjfvrz,46,38,0|mjfvs0,56,62,1|mvojnz,56,62,1|mvojo0,46,38,0|n25yfz,46,38,0|n25yg0,56,62,1|neembz,56,62,1|neemc0,46,38,0|nkw13z,46,38,0|nkw140,56,62,1|nx4ozz,56,62,1|nx4p00,46,38,0|o3z2fz,46,38,0|o3z2g0,56,62,1|og7qbz,56,62,1|og7qc0,46,38,0|omp53z,46,38,0|omp540,56,62,1|oyxszz,56,62,1|oyxt00,46,38,0|p5f7rz,46,38,0|p5f7s0,56,62,1|phnvnz,56,62,1|phnvo0,46,38,0|po5afz,46,38,0|po5ag0,56,62,1|q0dybz,56,62,1|q0dyc0,46,38,0|q6vd3z,46,38,0|q6vd40,56,62,1|qj3vfz,56,62,1|qj3vg0,44,62,0|NaN,44,62,0","America/Winnipeg|,0,180,0|-171bfcd,0,180,0|-171bfcc,45,63,0|-s0s7c1,45,63,0|-s0s7c0,48,59,1|-rt8241,48,59,1|-rt8240,45,63,0|-qzov41,45,63,0|-qzov40,48,59,1|-qplz81,48,59,1|-qplz80,45,63,0|-h11r41,45,63,0|-h11r40,48,59,1|-gu7j81,48,59,1|-gu7j80,45,63,0|-ek21s1,45,63,0|-ek21s0,52,59,1|-cq2tg1,52,59,1|-cq2tg0,53,59,1|-cnp0k1,53,59,1|-cnp0k0,45,63,0|-cc64g1,45,63,0|-cc64g0,48,59,1|-c490k1,48,59,1|-c490k0,45,63,0|-bu5z41,45,63,0|-bu5z40,48,59,1|-bm8v81,48,59,1|-bm8v80,45,63,0|-bbfwg1,45,63,0|-bbfwg0,48,59,1|-b3isk1,48,59,1|-b3isk0,45,63,0|-aspts1,45,63,0|-aspts0,48,59,1|-akspw1,48,59,1|-akspw0,45,63,0|-a9kxs1,45,63,0|-a9kxs0,48,59,1|-a1rj81,48,59,1|-a1rj80,45,63,0|-9qwps1,45,63,0|-9qwps0,48,59,1|-9izlw1,48,59,1|-9izlw0,45,63,0|-986n41,45,63,0|-986n40,48,59,1|-909j81,48,59,1|-909j80,45,63,0|-8pgkg1,45,63,0|-8pgkg0,48,59,1|-8hjgk1,48,59,1|-8hjgk0,45,63,0|-86qhs1,45,63,0|-86qhs0,48,59,1|-7ytdw1,48,59,1|-7ytdw0,45,63,0|-7o0f41,45,63,0|-7o0f40,48,59,1|-7g3b81,48,59,1|-7g3b80,45,63,0|-74xds1,45,63,0|-74xds0,48,59,1|-6x09w1,48,59,1|-6x09w0,45,63,0|-6m7b41,45,63,0|-6m7b40,48,59,1|-6ea781,48,59,1|-6ea780,45,63,0|-63h8g1,45,63,0|-63h8g0,48,59,1|-5vk4k1,48,59,1|-5vk4k0,45,63,0|-5kr5s1,45,63,0|-5kr5s0,48,59,1|-5be781,48,59,1|-5be780,45,63,0|-521341,45,63,0|-521340,48,59,1|-4u3z81,48,59,1|-4u3z80,45,63,0|-3hhwg1,45,63,0|-3hhwg0,48,59,1|-39xr81,48,59,1|-39xr80,45,63,0|-1xbog1,45,63,0|-1xbog0,48,59,1|-1nlog1,48,59,1|-1nlog0,45,63,0|-1e8n41,45,63,0|-1e8n40,48,59,1|-14vls1,48,59,1|-14vls0,45,63,0|-vikg1,45,63,0|-vikg0,48,59,1|-m5j41,48,59,1|-m5j40,45,63,0|-cshs1,45,63,0|-cshs0,48,59,1|-3fgg1,48,59,1|-3fgg0,45,63,0|5xkvz,45,63,0|5xkw0,48,59,1|fam7z,48,59,1|fam80,45,63,0|onnjz,45,63,0|onnk0,48,59,1|ydnjz,48,59,1|ydnk0,45,63,0|17qovz,45,63,0|17qow0,48,59,1|1h3q7z,48,59,1|1h3q80,45,63,0|1qgrjz,45,63,0|1qgrk0,48,59,1|1ztsvz,48,59,1|1ztsw0,45,63,0|296u7z,45,63,0|296u80,48,59,1|2ijvjz,48,59,1|2ijvk0,45,63,0|2rwwvz,45,63,0|2rwww0,48,59,1|319y7z,48,59,1|319y80,45,63,0|3amzjz,45,63,0|3amzk0,48,59,1|3kczjz,48,59,1|3kczk0,45,63,0|3td27z,45,63,0|3td280,48,59,1|43327z,48,59,1|433280,45,63,0|4cg3jz,45,63,0|4cg3k0,48,59,1|4lt4vz,48,59,1|4lt4w0,45,63,0|4v667z,45,63,0|4v6680,48,59,1|54j7jz,48,59,1|54j7k0,45,63,0|5dw8vz,45,63,0|5dw8w0,48,59,1|5n9a7z,48,59,1|5n9a80,45,63,0|5wmbjz,45,63,0|5wmbk0,48,59,1|65zcvz,48,59,1|65zcw0,45,63,0|6fce7z,45,63,0|6fce80,48,59,1|6p2e7z,48,59,1|6p2e80,45,63,0|6y2gvz,45,63,0|6y2gw0,48,59,1|77sgvz,48,59,1|77sgw0,45,63,0|7h5i7z,45,63,0|7h5i80,48,59,1|7qijjz,48,59,1|7qijk0,45,63,0|7zvkvz,45,63,0|7zvkw0,48,59,1|898m7z,48,59,1|898m80,45,63,0|8ilnjz,45,63,0|8ilnk0,48,59,1|8ryovz,48,59,1|8ryow0,45,63,0|908u7z,45,63,0|908u80,48,59,1|9aorjz,48,59,1|9aork0,45,63,0|9iywvz,45,63,0|9iyww0,48,59,1|9trsvz,48,59,1|9trsw0,45,63,0|a1ozjz,45,63,0|a1ozk0,48,59,1|achvjz,48,59,1|achvk0,45,63,0|akf27z,45,63,0|akf280,48,59,1|av7y7z,48,59,1|av7y80,45,63,0|b3i3jz,45,63,0|b3i3k0,48,59,1|bdy0vz,48,59,1|bdy0w0,45,63,0|bm867z,45,63,0|bm8680,48,59,1|bwo3jz,48,59,1|bwo3k0,45,63,0|c4y8vz,45,63,0|c4y8w0,48,59,1|cfr4vz,48,59,1|cfr4w0,45,63,0|cnobjz,45,63,0|cnobk0,48,59,1|cyh7jz,48,59,1|cyh7k0,45,63,0|d6ee7z,45,63,0|d6ee80,48,59,1|dh7a7z,48,59,1|dh7a80,45,63,0|dphfjz,45,63,0|dphfk0,48,59,1|dzxcvz,48,59,1|dzxcw0,45,63,0|e87i7z,45,63,0|e87i80,48,59,1|einfjz,48,59,1|einfk0,45,63,0|eqxkvz,45,63,0|eqxkw0,48,59,1|f1di7z,48,59,1|f1di80,45,63,0|f9nnjz,45,63,0|f9nnk0,48,59,1|fkgjjz,48,59,1|fkgjk0,45,63,0|fsdq7z,45,63,0|fsdq80,48,59,1|g36m7z,48,59,1|g36m80,45,63,0|gb3svz,45,63,0|gb3sw0,48,59,1|glwovz,48,59,1|glwow0,45,63,0|gu6u7z,45,63,0|gu6u80,48,59,1|h4mrjz,48,59,1|h4mrk0,45,63,0|hcwwvz,45,63,0|hcwww0,48,59,1|hncu7z,48,59,1|hncu80,45,63,0|hvmzjz,45,63,0|hvmzk0,48,59,1|i6fvjz,48,59,1|i6fvk0,45,63,0|ied27z,45,63,0|ied280,48,59,1|ip5y7z,48,59,1|ip5y80,45,63,0|ix34vz,45,63,0|ix34w0,48,59,1|j7vy3z,48,59,1|j7vy40,45,63,0|jeqbjz,45,63,0|jeqbk0,48,59,1|jqyzfz,48,59,1|jqyzg0,45,63,0|jxge7z,45,63,0|jxge80,48,59,1|k9p23z,48,59,1|k9p240,45,63,0|kg6gvz,45,63,0|kg6gw0,48,59,1|ksf4rz,48,59,1|ksf4s0,45,63,0|kz9i7z,45,63,0|kz9i80,48,59,1|lbi63z,48,59,1|lbi640,45,63,0|lhzkvz,45,63,0|lhzkw0,48,59,1|lu88rz,48,59,1|lu88s0,45,63,0|m0pnjz,45,63,0|m0pnk0,48,59,1|mcybfz,48,59,1|mcybg0,45,63,0|mjfq7z,45,63,0|mjfq80,48,59,1|mvoe3z,48,59,1|mvoe40,45,63,0|n25svz,45,63,0|n25sw0,48,59,1|neegrz,48,59,1|neegs0,45,63,0|nkvvjz,45,63,0|nkvvk0,48,59,1|nx4jfz,48,59,1|nx4jg0,45,63,0|o3ywvz,45,63,0|o3yww0,48,59,1|og7krz,48,59,1|og7ks0,45,63,0|omozjz,45,63,0|omozk0,48,59,1|oyxnfz,48,59,1|oyxng0,45,63,0|p5f27z,45,63,0|p5f280,48,59,1|phnq3z,48,59,1|phnq40,45,63,0|po54vz,45,63,0|po54w0,48,59,1|q0dsrz,48,59,1|q0dss0,45,63,0|q6v7jz,45,63,0|q6v7k0,48,59,1|qj3vfz,48,59,1|qj3vg0,45,63,0|qpy8vz,45,63,0|qpy8w0,48,59,1|r26wrz,48,59,1|r26ws0,45,63,0|r8objz,45,63,0|r8obk0,48,59,1|rkwzfz,48,59,1|rkwzg0,45,63,0|rree7z,45,63,0|rree80,48,59,1|s3n23z,48,59,1|s3n240,45,63,0|sa4gvz,45,63,0|sa4gw0,48,59,1|smd4rz,48,59,1|smd4s0,45,63,0|ssujjz,45,63,0|ssujk0,48,59,1|t537fz,48,59,1|t537g0,45,63,0|tbkm7z,45,63,0|tbkm80,48,59,1|tnta3z,48,59,1|tnta40,45,63,0|tunnjz,45,63,0|tunnk0,48,59,1|u6wbfz,48,59,1|u6wbg0,45,63,0|uddq7z,45,63,0|uddq80,48,59,1|upme3z,48,59,1|upme40,45,63,0|uw3svz,45,63,0|uw3sw0,48,59,1|v8cgrz,48,59,1|v8cgs0,45,63,0|vetvjz,45,63,0|vetvk0,48,59,1|vr2jfz,48,59,1|vr2jg0,45,63,0|vxjy7z,45,63,0|vxjy80,48,59,1|w9sm3z,48,59,1|w9sm40,45,63,0|wgmzjz,45,63,0|wgmzk0,48,59,1|wsvnfz,48,59,1|wsvng0,45,63,0|wzd27z,45,63,0|wzd280,48,59,1|xblq3z,48,59,1|xblq40,45,63,0|xi34vz,45,63,0|xi34w0,48,59,1|xubsrz,48,59,1|xubss0,45,63,0|y0t7jz,45,63,0|y0t7k0,48,59,1|yd1vfz,48,59,1|yd1vg0,45,63,0|yjja7z,45,63,0|yjja80,48,59,1|yvry3z,48,59,1|yvry40,45,63,0|z29cvz,45,63,0|z29cw0,48,59,1|zei0rz,48,59,1|zei0s0,45,63,0|zlce7z,45,63,0|zlce80,48,59,1|zxl23z,48,59,1|zxl240,45,63,0|1042gvz,45,63,0|1042gw0,48,59,1|10gb4rz,48,59,1|10gb4s0,45,63,0|10msjjz,45,63,0|10msjk0,48,59,1|10z17fz,48,59,1|10z17g0,45,63,0|115im7z,45,63,0|115im80,48,59,1|11hra3z,48,59,1|11hra40,45,63,0|11o8ovz,45,63,0|11o8ow0,48,59,1|120hcrz,48,59,1|120hcs0,45,63,0|126yrjz,45,63,0|126yrk0,48,59,1|12j7ffz,48,59,1|12j7fg0,45,63,0|12q1svz,45,63,0|12q1sw0,48,59,1|132agrz,48,59,1|132ags0,45,63,0|138rvjz,45,63,0|138rvk0,48,59,1|13l0jfz,48,59,1|13l0jg0,45,63,0|13rhy7z,45,63,0|13rhy80,48,59,1|143qm3z,48,59,1|143qm40,45,63,0|14a80vz,45,63,0|14a80w0,48,59,1|14mgorz,48,59,1|14mgos0,45,63,0|14sy3jz,45,63,0|14sy3k0,48,59,1|1556rfz,48,59,1|1556rg0,45,63,0|15c14vz,45,63,0|15c14w0,48,59,1|15o9srz,48,59,1|15o9ss0,45,63,0|15ur7jz,45,63,0|15ur7k0,48,59,1|166zvfz,48,59,1|166zvg0,45,63,0|16dha7z,45,63,0|16dha80,48,59,1|16ppy3z,48,59,1|16ppy40,45,63,0|16w7cvz,45,63,0|16w7cw0,48,59,1|178g0rz,48,59,1|178g0s0,45,63,0|17exfjz,45,63,0|17exfk0,48,59,1|17r63fz,48,59,1|17r63g0,45,63,0|17xni7z,45,63,0|17xni80,48,59,1|189w63z,48,59,1|189w640,45,63,0|18gqjjz,45,63,0|18gqjk0,48,59,1|18sz7fz,48,59,1|18sz7g0,45,63,0|18zgm7z,45,63,0|18zgm80,48,59,1|19bpa3z,48,59,1|19bpa40,45,63,0|19i6ovz,45,63,0|19i6ow0,48,59,1|19ufcrz,48,59,1|19ufcs0,45,63,0|1a0wrjz,45,63,0|1a0wrk0,48,59,1|1ad5ffz,48,59,1|1ad5fg0,45,63,0|1ajmu7z,45,63,0|1ajmu80,48,59,1|1avvi3z,48,59,1|1avvi40,45,63,0|1b2pvjz,45,63,0|1b2pvk0,48,59,1|1beyjfz,48,59,1|1beyjg0,45,63,0|1blfy7z,45,63,0|1blfy80,48,59,1|1bxom3z,48,59,1|1bxom40,45,63,0|1c460vz,45,63,0|1c460w0,48,59,1|1cgeorz,48,59,1|1cgeos0,45,63,0|1cmw3jz,45,63,0|1cmw3k0,48,59,1|1cz4rfz,48,59,1|1cz4rg0,45,63,0|1d5m67z,45,63,0|1d5m680,48,59,1|1dhuu3z,48,59,1|1dhuu40,45,63,0|1doc8vz,45,63,0|1doc8w0,48,59,1|1e0kwrz,48,59,1|1e0kws0,45,63,0|1e7fa7z,45,63,0|1e7fa80,48,59,1|1ejny3z,48,59,1|1ejny40,45,63,0|1eq5cvz,45,63,0|1eq5cw0,48,59,1|1f2e0rz,48,59,1|1f2e0s0,45,63,0|1f8vfjz,45,63,0|1f8vfk0,48,59,1|1fl43fz,48,59,1|1fl43g0,45,63,0|1frli7z,45,63,0|1frli80,48,59,1|1g3u63z,48,59,1|1g3u640,45,63,0|1gabkvz,45,63,0|1gabkw0,48,59,1|1gmk8rz,48,59,1|1gmk8s0,45,63,0|1gt1njz,45,63,0|1gt1nk0,48,59,1|1h5abfz,48,59,1|1h5abg0,45,63,0|1hc4ovz,45,63,0|1hc4ow0,48,59,1|1hodcrz,48,59,1|1hodcs0,45,63,0|1huurjz,45,63,0|1huurk0,48,59,1|1i73ffz,48,59,1|1i73fg0,45,63,0|1idku7z,45,63,0|1idku80,48,59,1|1ipti3z,48,59,1|1ipti40,45,63,0|1iwawvz,45,63,0|1iwaww0,48,59,1|1j8jkrz,48,59,1|1j8jks0,45,63,0|1jf0zjz,45,63,0|1jf0zk0,48,59,1|1jr9nfz,48,59,1|1jr9ng0,45,63,0|1jy40vz,45,63,0|1jy40w0,48,59,1|1kacorz,48,59,1|1kacos0,45,63,0|1kgu3jz,45,63,0|1kgu3k0,48,59,1|1kt2rfz,48,59,1|1kt2rg0,45,63,0|1kzk67z,45,63,0|1kzk680,48,59,1|1lbsu3z,48,59,1|1lbsu40,45,63,0|1lia8vz,45,63,0|1lia8w0,48,59,1|1luiwrz,48,59,1|1luiws0,45,63,0|1m10bjz,45,63,0|1m10bk0,48,59,1|1md8zfz,48,59,1|1md8zg0,45,63,0|1mjqe7z,45,63,0|1mjqe80,48,59,1|1mvz23z,48,59,1|1mvz240,45,63,0|1n2tfjz,45,63,0|1n2tfk0,48,59,1|1nf23fz,48,59,1|1nf23g0,45,63,0|1nlji7z,45,63,0|1nlji80,48,59,1|1nxs63z,48,59,1|1nxs640,45,63,0|1o49kvz,45,63,0|1o49kw0,48,59,1|1ogi8rz,48,59,1|1ogi8s0,45,63,0|1omznjz,45,63,0|1omznk0,48,59,1|1oz8bfz,48,59,1|1oz8bg0,45,63,0|1p5pq7z,45,63,0|1p5pq80,48,59,1|1phye3z,48,59,1|1phye40,45,63,0|1posrjz,45,63,0|1posrk0,48,59,1|1q11ffz,48,59,1|1q11fg0,45,63,0|1q7iu7z,45,63,0|1q7iu80,48,59,1|1qjri3z,48,59,1|1qjri40,45,63,0|1qq8wvz,45,63,0|1qq8ww0,48,59,1|1r2hkrz,48,59,1|1r2hks0,45,63,0|1r8yzjz,45,63,0|1r8yzk0,48,59,1|1rl7nfz,48,59,1|1rl7ng0,45,63,0|1rrp27z,45,63,0|1rrp280,48,59,1|1s3xq3z,48,59,1|1s3xq40,45,63,0|1saf4vz,45,63,0|1saf4w0,48,59,1|1smnsrz,48,59,1|1smnss0,45,63,0|1sti67z,45,63,0|1sti680,48,59,1|1t5qu3z,48,59,1|1t5qu40,45,63,0|1tc88vz,45,63,0|1tc88w0,48,59,1|1togwrz,48,59,1|1togws0,45,63,0|1tuybjz,45,63,0|1tuybk0,48,59,1|1u76zfz,48,59,1|1u76zg0,45,63,0|1udoe7z,45,63,0|1udoe80,48,59,1|1upx23z,48,59,1|1upx240,45,63,0|1uwegvz,45,63,0|1uwegw0,48,59,1|1v8n4rz,48,59,1|1v8n4s0,45,63,0|1vf4jjz,45,63,0|1vf4jk0,48,59,1|1vrd7fz,48,59,1|1vrd7g0,45,63,0|NaN,45,63,0","America/Yakutat|,0,181,0|-1hc7qk0,0,181,0|-1hc7qjz,0,182,0|-1078vgi,0,182,0|-1078vgh,35,35,0|-ek1tg1,35,35,0|-ek1tg0,65,38,1|-cq2tg1,65,38,1|-cq2tg0,66,38,1|-cnos81,66,38,1|-cnos80,35,35,0|-cs9g1,35,35,0|-cs9g0,64,38,1|-3faw1,64,38,1|-3faw0,35,35,0|5xt7z,35,35,0|5xt80,64,38,1|farrz,64,38,1|fars0,35,35,0|onvvz,35,35,0|onvw0,64,38,1|ydt3z,64,38,1|ydt40,35,35,0|17qx7z,35,35,0|17qx80,64,38,1|1h3vrz,64,38,1|1h3vs0,35,35,0|1qgzvz,35,35,0|1qgzw0,64,38,1|1ztyfz,64,38,1|1ztyg0,35,35,0|23fnvz,35,35,0|23fnw0,64,38,1|2ik13z,64,38,1|2ik140,35,35,0|2ooh7z,35,35,0|2ooh80,64,38,1|31a3rz,64,38,1|31a3s0,35,35,0|3an7vz,35,35,0|3an7w0,64,38,1|3kd53z,64,38,1|3kd540,35,35,0|3tdajz,35,35,0|3tdak0,64,38,1|4337rz,64,38,1|4337s0,35,35,0|4cgbvz,35,35,0|4cgbw0,64,38,1|4ltafz,64,38,1|4ltag0,35,35,0|4v6ejz,35,35,0|4v6ek0,64,38,1|54jd3z,64,38,1|54jd40,35,35,0|5dwh7z,35,35,0|5dwh80,64,38,1|5n9frz,64,38,1|5n9fs0,35,35,0|5wmjvz,35,35,0|5wmjw0,64,38,1|65zifz,64,38,1|65zig0,35,35,0|6fcmjz,35,35,0|6fcmk0,64,38,1|6p2jrz,64,38,1|6p2js0,35,35,0|6y2p7z,35,35,0|6y2p80,64,38,1|77smfz,64,38,1|77smg0,35,35,0|79dybz,35,35,0|79dyc0,36,35,0|7h5qjz,36,35,0|7h5qk0,37,38,1|7qip3z,37,38,1|7qip40,36,35,0|7zvt7z,36,35,0|7zvt80,37,38,1|898rrz,37,38,1|898rs0,36,35,0|8ilvvz,36,35,0|8ilvw0,37,38,1|8ryufz,37,38,1|8ryug0,36,35,0|9092jz,36,35,0|9092k0,37,38,1|9aox3z,37,38,1|9aox40,36,35,0|9iz57z,36,35,0|9iz580,37,38,1|9tryfz,37,38,1|9tryg0,36,35,0|a1p7vz,36,35,0|a1p7w0,37,38,1|aci13z,37,38,1|aci140,36,35,0|akfajz,36,35,0|akfak0,37,38,1|av83rz,37,38,1|av83s0,36,35,0|b3ibvz,36,35,0|b3ibw0,37,38,1|bdy6fz,37,38,1|bdy6g0,36,35,0|bm8ejz,36,35,0|bm8ek0,37,38,1|bwo93z,37,38,1|bwo940,36,35,0|c4yh7z,36,35,0|c4yh80,37,38,1|cfrafz,37,38,1|cfrag0,36,35,0|cnojvz,36,35,0|cnojw0,37,38,1|cyhd3z,37,38,1|cyhd40,36,35,0|d6emjz,36,35,0|d6emk0,37,38,1|dh7frz,37,38,1|dh7fs0,36,35,0|dphnvz,36,35,0|dphnw0,37,38,1|dzxifz,37,38,1|dzxig0,36,35,0|e87qjz,36,35,0|e87qk0,37,38,1|einl3z,37,38,1|einl40,36,35,0|eqxt7z,36,35,0|eqxt80,37,38,1|f1dnrz,37,38,1|f1dns0,36,35,0|f9nvvz,36,35,0|f9nvw0,37,38,1|fkgp3z,37,38,1|fkgp40,36,35,0|fsdyjz,36,35,0|fsdyk0,37,38,1|g36rrz,37,38,1|g36rs0,36,35,0|gb417z,36,35,0|gb4180,37,38,1|glwufz,37,38,1|glwug0,36,35,0|gu72jz,36,35,0|gu72k0,37,38,1|h4mx3z,37,38,1|h4mx40,36,35,0|hcx57z,36,35,0|hcx580,37,38,1|hnczrz,37,38,1|hnczs0,36,35,0|hvn7vz,36,35,0|hvn7w0,37,38,1|i6g13z,37,38,1|i6g140,36,35,0|iedajz,36,35,0|iedak0,37,38,1|ip63rz,37,38,1|ip63s0,36,35,0|ix3d7z,36,35,0|ix3d80,37,38,1|j7w6fz,37,38,1|j7w6g0,36,35,0|jeqjvz,36,35,0|jeqjw0,37,38,1|jqz7rz,37,38,1|jqz7s0,36,35,0|jxgmjz,36,35,0|jxgmk0,37,38,1|k9pafz,37,38,1|k9pag0,36,35,0|kg6p7z,36,35,0|kg6p80,37,38,1|ksfd3z,37,38,1|ksfd40,36,35,0|kz9qjz,36,35,0|kz9qk0,37,38,1|lbiefz,37,38,1|lbieg0,36,35,0|lhzt7z,36,35,0|lhzt80,37,38,1|lu8h3z,37,38,1|lu8h40,36,35,0|m0pvvz,36,35,0|m0pvw0,37,38,1|mcyjrz,37,38,1|mcyjs0,36,35,0|mjfyjz,36,35,0|mjfyk0,37,38,1|mvomfz,37,38,1|mvomg0,36,35,0|n2617z,36,35,0|n26180,37,38,1|neep3z,37,38,1|neep40,36,35,0|nkw3vz,36,35,0|nkw3w0,37,38,1|nx4rrz,37,38,1|nx4rs0,36,35,0|o3z57z,36,35,0|o3z580,37,38,1|og7t3z,37,38,1|og7t40,36,35,0|omp7vz,36,35,0|omp7w0,37,38,1|oyxvrz,37,38,1|oyxvs0,36,35,0|p5fajz,36,35,0|p5fak0,37,38,1|phnyfz,37,38,1|phnyg0,36,35,0|po5d7z,36,35,0|po5d80,37,38,1|q0e13z,37,38,1|q0e140,36,35,0|q6vfvz,36,35,0|q6vfw0,37,38,1|qj43rz,37,38,1|qj43s0,36,35,0|qpyh7z,36,35,0|qpyh80,37,38,1|r2753z,37,38,1|r27540,36,35,0|r8ojvz,36,35,0|r8ojw0,37,38,1|rkx7rz,37,38,1|rkx7s0,36,35,0|rremjz,36,35,0|rremk0,37,38,1|s3nafz,37,38,1|s3nag0,36,35,0|sa4p7z,36,35,0|sa4p80,37,38,1|smdd3z,37,38,1|smdd40,36,35,0|ssurvz,36,35,0|ssurw0,37,38,1|t53frz,37,38,1|t53fs0,36,35,0|tbkujz,36,35,0|tbkuk0,37,38,1|tntifz,37,38,1|tntig0,36,35,0|tunvvz,36,35,0|tunvw0,37,38,1|u6wjrz,37,38,1|u6wjs0,36,35,0|uddyjz,36,35,0|uddyk0,37,38,1|upmmfz,37,38,1|upmmg0,36,35,0|uw417z,36,35,0|uw4180,37,38,1|v8cp3z,37,38,1|v8cp40,36,35,0|veu3vz,36,35,0|veu3w0,37,38,1|vr2rrz,37,38,1|vr2rs0,36,35,0|vxk6jz,36,35,0|vxk6k0,37,38,1|w9sufz,37,38,1|w9sug0,36,35,0|wgn7vz,36,35,0|wgn7w0,37,38,1|wsvvrz,37,38,1|wsvvs0,36,35,0|wzdajz,36,35,0|wzdak0,37,38,1|xblyfz,37,38,1|xblyg0,36,35,0|xi3d7z,36,35,0|xi3d80,37,38,1|xuc13z,37,38,1|xuc140,36,35,0|y0tfvz,36,35,0|y0tfw0,37,38,1|yd23rz,37,38,1|yd23s0,36,35,0|yjjijz,36,35,0|yjjik0,37,38,1|yvs6fz,37,38,1|yvs6g0,36,35,0|z29l7z,36,35,0|z29l80,37,38,1|zei93z,37,38,1|zei940,36,35,0|zlcmjz,36,35,0|zlcmk0,37,38,1|zxlafz,37,38,1|zxlag0,36,35,0|1042p7z,36,35,0|1042p80,37,38,1|10gbd3z,37,38,1|10gbd40,36,35,0|10msrvz,36,35,0|10msrw0,37,38,1|10z1frz,37,38,1|10z1fs0,36,35,0|115iujz,36,35,0|115iuk0,37,38,1|11hrifz,37,38,1|11hrig0,36,35,0|11o8x7z,36,35,0|11o8x80,37,38,1|120hl3z,37,38,1|120hl40,36,35,0|126yzvz,36,35,0|126yzw0,37,38,1|12j7nrz,37,38,1|12j7ns0,36,35,0|12q217z,36,35,0|12q2180,37,38,1|132ap3z,37,38,1|132ap40,36,35,0|138s3vz,36,35,0|138s3w0,37,38,1|13l0rrz,37,38,1|13l0rs0,36,35,0|13ri6jz,36,35,0|13ri6k0,37,38,1|143qufz,37,38,1|143qug0,36,35,0|14a897z,36,35,0|14a8980,37,38,1|14mgx3z,37,38,1|14mgx40,36,35,0|14sybvz,36,35,0|14sybw0,37,38,1|1556zrz,37,38,1|1556zs0,36,35,0|15c1d7z,36,35,0|15c1d80,37,38,1|15oa13z,37,38,1|15oa140,36,35,0|15urfvz,36,35,0|15urfw0,37,38,1|16703rz,37,38,1|16703s0,36,35,0|16dhijz,36,35,0|16dhik0,37,38,1|16pq6fz,37,38,1|16pq6g0,36,35,0|16w7l7z,36,35,0|16w7l80,37,38,1|178g93z,37,38,1|178g940,36,35,0|17exnvz,36,35,0|17exnw0,37,38,1|17r6brz,37,38,1|17r6bs0,36,35,0|17xnqjz,36,35,0|17xnqk0,37,38,1|189wefz,37,38,1|189weg0,36,35,0|18gqrvz,36,35,0|18gqrw0,37,38,1|18szfrz,37,38,1|18szfs0,36,35,0|18zgujz,36,35,0|18zguk0,37,38,1|19bpifz,37,38,1|19bpig0,36,35,0|19i6x7z,36,35,0|19i6x80,37,38,1|19ufl3z,37,38,1|19ufl40,36,35,0|1a0wzvz,36,35,0|1a0wzw0,37,38,1|1ad5nrz,37,38,1|1ad5ns0,36,35,0|1ajn2jz,36,35,0|1ajn2k0,37,38,1|1avvqfz,37,38,1|1avvqg0,36,35,0|1b2q3vz,36,35,0|1b2q3w0,37,38,1|1beyrrz,37,38,1|1beyrs0,36,35,0|1blg6jz,36,35,0|1blg6k0,37,38,1|1bxoufz,37,38,1|1bxoug0,36,35,0|1c4697z,36,35,0|1c46980,37,38,1|1cgex3z,37,38,1|1cgex40,36,35,0|1cmwbvz,36,35,0|1cmwbw0,37,38,1|1cz4zrz,37,38,1|1cz4zs0,36,35,0|1d5mejz,36,35,0|1d5mek0,37,38,1|1dhv2fz,37,38,1|1dhv2g0,36,35,0|1doch7z,36,35,0|1doch80,37,38,1|1e0l53z,37,38,1|1e0l540,36,35,0|1e7fijz,36,35,0|1e7fik0,37,38,1|1ejo6fz,37,38,1|1ejo6g0,36,35,0|1eq5l7z,36,35,0|1eq5l80,37,38,1|1f2e93z,37,38,1|1f2e940,36,35,0|1f8vnvz,36,35,0|1f8vnw0,37,38,1|1fl4brz,37,38,1|1fl4bs0,36,35,0|1frlqjz,36,35,0|1frlqk0,37,38,1|1g3uefz,37,38,1|1g3ueg0,36,35,0|1gabt7z,36,35,0|1gabt80,37,38,1|1gmkh3z,37,38,1|1gmkh40,36,35,0|1gt1vvz,36,35,0|1gt1vw0,37,38,1|1h5ajrz,37,38,1|1h5ajs0,36,35,0|1hc4x7z,36,35,0|1hc4x80,37,38,1|1hodl3z,37,38,1|1hodl40,36,35,0|1huuzvz,36,35,0|1huuzw0,37,38,1|1i73nrz,37,38,1|1i73ns0,36,35,0|1idl2jz,36,35,0|1idl2k0,37,38,1|1iptqfz,37,38,1|1iptqg0,36,35,0|1iwb57z,36,35,0|1iwb580,37,38,1|1j8jt3z,37,38,1|1j8jt40,36,35,0|1jf17vz,36,35,0|1jf17w0,37,38,1|1jr9vrz,37,38,1|1jr9vs0,36,35,0|1jy497z,36,35,0|1jy4980,37,38,1|1kacx3z,37,38,1|1kacx40,36,35,0|1kgubvz,36,35,0|1kgubw0,37,38,1|1kt2zrz,37,38,1|1kt2zs0,36,35,0|1kzkejz,36,35,0|1kzkek0,37,38,1|1lbt2fz,37,38,1|1lbt2g0,36,35,0|1liah7z,36,35,0|1liah80,37,38,1|1luj53z,37,38,1|1luj540,36,35,0|1m10jvz,36,35,0|1m10jw0,37,38,1|1md97rz,37,38,1|1md97s0,36,35,0|1mjqmjz,36,35,0|1mjqmk0,37,38,1|1mvzafz,37,38,1|1mvzag0,36,35,0|1n2tnvz,36,35,0|1n2tnw0,37,38,1|1nf2brz,37,38,1|1nf2bs0,36,35,0|1nljqjz,36,35,0|1nljqk0,37,38,1|1nxsefz,37,38,1|1nxseg0,36,35,0|1o49t7z,36,35,0|1o49t80,37,38,1|1ogih3z,37,38,1|1ogih40,36,35,0|1omzvvz,36,35,0|1omzvw0,37,38,1|1oz8jrz,37,38,1|1oz8js0,36,35,0|1p5pyjz,36,35,0|1p5pyk0,37,38,1|1phymfz,37,38,1|1phymg0,36,35,0|1poszvz,36,35,0|1poszw0,37,38,1|1q11nrz,37,38,1|1q11ns0,36,35,0|1q7j2jz,36,35,0|1q7j2k0,37,38,1|1qjrqfz,37,38,1|1qjrqg0,36,35,0|1qq957z,36,35,0|1qq9580,37,38,1|1r2ht3z,37,38,1|1r2ht40,36,35,0|1r8z7vz,36,35,0|1r8z7w0,37,38,1|1rl7vrz,37,38,1|1rl7vs0,36,35,0|1rrpajz,36,35,0|1rrpak0,37,38,1|1s3xyfz,37,38,1|1s3xyg0,36,35,0|1safd7z,36,35,0|1safd80,37,38,1|1smo13z,37,38,1|1smo140,36,35,0|1stiejz,36,35,0|1stiek0,37,38,1|1t5r2fz,37,38,1|1t5r2g0,36,35,0|1tc8h7z,36,35,0|1tc8h80,37,38,1|1toh53z,37,38,1|1toh540,36,35,0|1tuyjvz,36,35,0|1tuyjw0,37,38,1|1u777rz,37,38,1|1u777s0,36,35,0|1udomjz,36,35,0|1udomk0,37,38,1|1upxafz,37,38,1|1upxag0,36,35,0|1uwep7z,36,35,0|1uwep80,37,38,1|1v8nd3z,37,38,1|1v8nd40,36,35,0|1vf4rvz,36,35,0|1vf4rw0,37,38,1|1vrdfrz,37,38,1|1vrdfs0,36,35,0|NaN,36,35,0","America/Yellowknife|,59,1,0|-i9m2o1,59,1,0|-i9m2o0,44,62,0|-ek1z01,44,62,0|-ek1z00,57,63,1|-cq2tg1,57,63,1|-cq2tg0,58,63,1|-cnoxs1,58,63,1|-cnoxs0,44,62,0|-2g1tw1,44,62,0|-2g1tw0,60,59,1|-26btw1,60,59,1|-26btw0,44,62,0|5dwbnz,44,62,0|5dwbo0,47,63,1|5n9a7z,47,63,1|5n9a80,44,62,0|5wmebz,44,62,0|5wmec0,47,63,1|65zcvz,47,63,1|65zcw0,44,62,0|6fcgzz,44,62,0|6fch00,47,63,1|6p2e7z,47,63,1|6p2e80,44,62,0|6y2jnz,44,62,0|6y2jo0,47,63,1|77sgvz,47,63,1|77sgw0,44,62,0|7h5kzz,44,62,0|7h5l00,47,63,1|7qijjz,47,63,1|7qijk0,44,62,0|7zvnnz,44,62,0|7zvno0,47,63,1|898m7z,47,63,1|898m80,44,62,0|8ilqbz,44,62,0|8ilqc0,47,63,1|8ryovz,47,63,1|8ryow0,44,62,0|908wzz,44,62,0|908x00,47,63,1|9aorjz,47,63,1|9aork0,44,62,0|9iyznz,44,62,0|9iyzo0,47,63,1|9trsvz,47,63,1|9trsw0,44,62,0|a1p2bz,44,62,0|a1p2c0,47,63,1|achvjz,47,63,1|achvk0,44,62,0|akf4zz,44,62,0|akf500,47,63,1|av7y7z,47,63,1|av7y80,44,62,0|b3i6bz,44,62,0|b3i6c0,47,63,1|bdy0vz,47,63,1|bdy0w0,44,62,0|bm88zz,44,62,0|bm8900,47,63,1|bwo3jz,47,63,1|bwo3k0,44,62,0|c4ybnz,44,62,0|c4ybo0,47,63,1|cfr4vz,47,63,1|cfr4w0,44,62,0|cnoebz,44,62,0|cnoec0,47,63,1|cyh7jz,47,63,1|cyh7k0,44,62,0|d6egzz,44,62,0|d6eh00,47,63,1|dh7a7z,47,63,1|dh7a80,44,62,0|dphibz,44,62,0|dphic0,47,63,1|dzxcvz,47,63,1|dzxcw0,44,62,0|e87kzz,44,62,0|e87l00,47,63,1|einfjz,47,63,1|einfk0,44,62,0|eqxnnz,44,62,0|eqxno0,47,63,1|f1di7z,47,63,1|f1di80,44,62,0|f9nqbz,44,62,0|f9nqc0,47,63,1|fkgjjz,47,63,1|fkgjk0,44,62,0|fsdszz,44,62,0|fsdt00,47,63,1|g36m7z,47,63,1|g36m80,44,62,0|gb3vnz,44,62,0|gb3vo0,47,63,1|glwovz,47,63,1|glwow0,44,62,0|gu6wzz,44,62,0|gu6x00,47,63,1|h4mrjz,47,63,1|h4mrk0,44,62,0|hcwznz,44,62,0|hcwzo0,47,63,1|hncu7z,47,63,1|hncu80,44,62,0|hvn2bz,44,62,0|hvn2c0,47,63,1|i6fvjz,47,63,1|i6fvk0,44,62,0|ied4zz,44,62,0|ied500,47,63,1|ip5y7z,47,63,1|ip5y80,44,62,0|ix37nz,44,62,0|ix37o0,47,63,1|j7w0vz,47,63,1|j7w0w0,44,62,0|jeqebz,44,62,0|jeqec0,47,63,1|jqz27z,47,63,1|jqz280,44,62,0|jxggzz,44,62,0|jxgh00,47,63,1|k9p4vz,47,63,1|k9p4w0,44,62,0|kg6jnz,44,62,0|kg6jo0,47,63,1|ksf7jz,47,63,1|ksf7k0,44,62,0|kz9kzz,44,62,0|kz9l00,47,63,1|lbi8vz,47,63,1|lbi8w0,44,62,0|lhznnz,44,62,0|lhzno0,47,63,1|lu8bjz,47,63,1|lu8bk0,44,62,0|m0pqbz,44,62,0|m0pqc0,47,63,1|mcye7z,47,63,1|mcye80,44,62,0|mjfszz,44,62,0|mjft00,47,63,1|mvogvz,47,63,1|mvogw0,44,62,0|n25vnz,44,62,0|n25vo0,47,63,1|neejjz,47,63,1|neejk0,44,62,0|nkvybz,44,62,0|nkvyc0,47,63,1|nx4m7z,47,63,1|nx4m80,44,62,0|o3yznz,44,62,0|o3yzo0,47,63,1|og7njz,47,63,1|og7nk0,44,62,0|omp2bz,44,62,0|omp2c0,47,63,1|oyxq7z,47,63,1|oyxq80,44,62,0|p5f4zz,44,62,0|p5f500,47,63,1|phnsvz,47,63,1|phnsw0,44,62,0|po57nz,44,62,0|po57o0,47,63,1|q0dvjz,47,63,1|q0dvk0,44,62,0|q6vabz,44,62,0|q6vac0,47,63,1|qj3y7z,47,63,1|qj3y80,44,62,0|qpybnz,44,62,0|qpybo0,47,63,1|r26zjz,47,63,1|r26zk0,44,62,0|r8oebz,44,62,0|r8oec0,47,63,1|rkx27z,47,63,1|rkx280,44,62,0|rregzz,44,62,0|rreh00,47,63,1|s3n4vz,47,63,1|s3n4w0,44,62,0|sa4jnz,44,62,0|sa4jo0,47,63,1|smd7jz,47,63,1|smd7k0,44,62,0|ssumbz,44,62,0|ssumc0,47,63,1|t53a7z,47,63,1|t53a80,44,62,0|tbkozz,44,62,0|tbkp00,47,63,1|tntcvz,47,63,1|tntcw0,44,62,0|tunqbz,44,62,0|tunqc0,47,63,1|u6we7z,47,63,1|u6we80,44,62,0|uddszz,44,62,0|uddt00,47,63,1|upmgvz,47,63,1|upmgw0,44,62,0|uw3vnz,44,62,0|uw3vo0,47,63,1|v8cjjz,47,63,1|v8cjk0,44,62,0|vetybz,44,62,0|vetyc0,47,63,1|vr2m7z,47,63,1|vr2m80,44,62,0|vxk0zz,44,62,0|vxk100,47,63,1|w9sovz,47,63,1|w9sow0,44,62,0|wgn2bz,44,62,0|wgn2c0,47,63,1|wsvq7z,47,63,1|wsvq80,44,62,0|wzd4zz,44,62,0|wzd500,47,63,1|xblsvz,47,63,1|xblsw0,44,62,0|xi37nz,44,62,0|xi37o0,47,63,1|xubvjz,47,63,1|xubvk0,44,62,0|y0tabz,44,62,0|y0tac0,47,63,1|yd1y7z,47,63,1|yd1y80,44,62,0|yjjczz,44,62,0|yjjd00,47,63,1|yvs0vz,47,63,1|yvs0w0,44,62,0|z29fnz,44,62,0|z29fo0,47,63,1|zei3jz,47,63,1|zei3k0,44,62,0|zlcgzz,44,62,0|zlch00,47,63,1|zxl4vz,47,63,1|zxl4w0,44,62,0|1042jnz,44,62,0|1042jo0,47,63,1|10gb7jz,47,63,1|10gb7k0,44,62,0|10msmbz,44,62,0|10msmc0,47,63,1|10z1a7z,47,63,1|10z1a80,44,62,0|115iozz,44,62,0|115ip00,47,63,1|11hrcvz,47,63,1|11hrcw0,44,62,0|11o8rnz,44,62,0|11o8ro0,47,63,1|120hfjz,47,63,1|120hfk0,44,62,0|126yubz,44,62,0|126yuc0,47,63,1|12j7i7z,47,63,1|12j7i80,44,62,0|12q1vnz,44,62,0|12q1vo0,47,63,1|132ajjz,47,63,1|132ajk0,44,62,0|138rybz,44,62,0|138ryc0,47,63,1|13l0m7z,47,63,1|13l0m80,44,62,0|13ri0zz,44,62,0|13ri100,47,63,1|143qovz,47,63,1|143qow0,44,62,0|14a83nz,44,62,0|14a83o0,47,63,1|14mgrjz,47,63,1|14mgrk0,44,62,0|14sy6bz,44,62,0|14sy6c0,47,63,1|1556u7z,47,63,1|1556u80,44,62,0|15c17nz,44,62,0|15c17o0,47,63,1|15o9vjz,47,63,1|15o9vk0,44,62,0|15urabz,44,62,0|15urac0,47,63,1|166zy7z,47,63,1|166zy80,44,62,0|16dhczz,44,62,0|16dhd00,47,63,1|16pq0vz,47,63,1|16pq0w0,44,62,0|16w7fnz,44,62,0|16w7fo0,47,63,1|178g3jz,47,63,1|178g3k0,44,62,0|17exibz,44,62,0|17exic0,47,63,1|17r667z,47,63,1|17r6680,44,62,0|17xnkzz,44,62,0|17xnl00,47,63,1|189w8vz,47,63,1|189w8w0,44,62,0|18gqmbz,44,62,0|18gqmc0,47,63,1|18sza7z,47,63,1|18sza80,44,62,0|18zgozz,44,62,0|18zgp00,47,63,1|19bpcvz,47,63,1|19bpcw0,44,62,0|19i6rnz,44,62,0|19i6ro0,47,63,1|19uffjz,47,63,1|19uffk0,44,62,0|1a0wubz,44,62,0|1a0wuc0,47,63,1|1ad5i7z,47,63,1|1ad5i80,44,62,0|1ajmwzz,44,62,0|1ajmx00,47,63,1|1avvkvz,47,63,1|1avvkw0,44,62,0|1b2pybz,44,62,0|1b2pyc0,47,63,1|1beym7z,47,63,1|1beym80,44,62,0|1blg0zz,44,62,0|1blg100,47,63,1|1bxoovz,47,63,1|1bxoow0,44,62,0|1c463nz,44,62,0|1c463o0,47,63,1|1cgerjz,47,63,1|1cgerk0,44,62,0|1cmw6bz,44,62,0|1cmw6c0,47,63,1|1cz4u7z,47,63,1|1cz4u80,44,62,0|1d5m8zz,44,62,0|1d5m900,47,63,1|1dhuwvz,47,63,1|1dhuww0,44,62,0|1docbnz,44,62,0|1docbo0,47,63,1|1e0kzjz,47,63,1|1e0kzk0,44,62,0|1e7fczz,44,62,0|1e7fd00,47,63,1|1ejo0vz,47,63,1|1ejo0w0,44,62,0|1eq5fnz,44,62,0|1eq5fo0,47,63,1|1f2e3jz,47,63,1|1f2e3k0,44,62,0|1f8vibz,44,62,0|1f8vic0,47,63,1|1fl467z,47,63,1|1fl4680,44,62,0|1frlkzz,44,62,0|1frll00,47,63,1|1g3u8vz,47,63,1|1g3u8w0,44,62,0|1gabnnz,44,62,0|1gabno0,47,63,1|1gmkbjz,47,63,1|1gmkbk0,44,62,0|1gt1qbz,44,62,0|1gt1qc0,47,63,1|1h5ae7z,47,63,1|1h5ae80,44,62,0|1hc4rnz,44,62,0|1hc4ro0,47,63,1|1hodfjz,47,63,1|1hodfk0,44,62,0|1huuubz,44,62,0|1huuuc0,47,63,1|1i73i7z,47,63,1|1i73i80,44,62,0|1idkwzz,44,62,0|1idkx00,47,63,1|1iptkvz,47,63,1|1iptkw0,44,62,0|1iwaznz,44,62,0|1iwazo0,47,63,1|1j8jnjz,47,63,1|1j8jnk0,44,62,0|1jf12bz,44,62,0|1jf12c0,47,63,1|1jr9q7z,47,63,1|1jr9q80,44,62,0|1jy43nz,44,62,0|1jy43o0,47,63,1|1kacrjz,47,63,1|1kacrk0,44,62,0|1kgu6bz,44,62,0|1kgu6c0,47,63,1|1kt2u7z,47,63,1|1kt2u80,44,62,0|1kzk8zz,44,62,0|1kzk900,47,63,1|1lbswvz,47,63,1|1lbsww0,44,62,0|1liabnz,44,62,0|1liabo0,47,63,1|1luizjz,47,63,1|1luizk0,44,62,0|1m10ebz,44,62,0|1m10ec0,47,63,1|1md927z,47,63,1|1md9280,44,62,0|1mjqgzz,44,62,0|1mjqh00,47,63,1|1mvz4vz,47,63,1|1mvz4w0,44,62,0|1n2tibz,44,62,0|1n2tic0,47,63,1|1nf267z,47,63,1|1nf2680,44,62,0|1nljkzz,44,62,0|1nljl00,47,63,1|1nxs8vz,47,63,1|1nxs8w0,44,62,0|1o49nnz,44,62,0|1o49no0,47,63,1|1ogibjz,47,63,1|1ogibk0,44,62,0|1omzqbz,44,62,0|1omzqc0,47,63,1|1oz8e7z,47,63,1|1oz8e80,44,62,0|1p5pszz,44,62,0|1p5pt00,47,63,1|1phygvz,47,63,1|1phygw0,44,62,0|1posubz,44,62,0|1posuc0,47,63,1|1q11i7z,47,63,1|1q11i80,44,62,0|1q7iwzz,44,62,0|1q7ix00,47,63,1|1qjrkvz,47,63,1|1qjrkw0,44,62,0|1qq8znz,44,62,0|1qq8zo0,47,63,1|1r2hnjz,47,63,1|1r2hnk0,44,62,0|1r8z2bz,44,62,0|1r8z2c0,47,63,1|1rl7q7z,47,63,1|1rl7q80,44,62,0|1rrp4zz,44,62,0|1rrp500,47,63,1|1s3xsvz,47,63,1|1s3xsw0,44,62,0|1saf7nz,44,62,0|1saf7o0,47,63,1|1smnvjz,47,63,1|1smnvk0,44,62,0|1sti8zz,44,62,0|1sti900,47,63,1|1t5qwvz,47,63,1|1t5qww0,44,62,0|1tc8bnz,44,62,0|1tc8bo0,47,63,1|1togzjz,47,63,1|1togzk0,44,62,0|1tuyebz,44,62,0|1tuyec0,47,63,1|1u7727z,47,63,1|1u77280,44,62,0|1udogzz,44,62,0|1udoh00,47,63,1|1upx4vz,47,63,1|1upx4w0,44,62,0|1uwejnz,44,62,0|1uwejo0,47,63,1|1v8n7jz,47,63,1|1v8n7k0,44,62,0|1vf4mbz,44,62,0|1vf4mc0,47,63,1|1vrda7z,47,63,1|1vrda80,44,62,0|NaN,44,62,0","Antarctica/Casey|,59,1,0|-irxc1,59,1,0|-irxc0,88,183,0|kro7bz,88,183,0|kro7c0,89,184,0|kyrizz,89,184,0|kyrj00,88,183,0|ltqknz,88,183,0|ltqko0,89,184,0|lzr5vz,89,184,0|lzr5w0,88,183,0|ofen3z,88,183,0|ofen40,89,184,0|p5dwjz,89,184,0|p5dwk0,88,183,0|pg70vz,88,183,0|pg70w0,89,184,0|pogv3z,89,184,0|pogv40,88,183,0|pytbfz,88,183,0|pytbg0,89,184,0|q6tz3z,89,184,0|q6tz40,88,183,0|qhmv5n,88,183,0|qhmv5o,89,184,0|NaN,89,184,0","Antarctica/Davis|,59,1,0|-6rmdc1,59,1,0|-6rmdc0,90,185,0|-2p2zg1,90,185,0|-2p2zg0,59,1,0|-h6io1,59,1,0|-h6io0,90,185,0|kroa3z,90,185,0|kroa40,91,186,0|kz30vz,91,186,0|kz30w0,90,185,0|ltqnfz,90,185,0|ltqng0,91,186,0|lzre7z,91,186,0|lzre80,90,185,0|NaN,90,185,0","Antarctica/DumontDUrville|,0,187,0|-1ayytx5,0,187,0|-1ayytx4,92,188,0|-1354j8x,92,188,0|-1354j8w,93,189,0|NaN,93,189,0","Antarctica/Macquarie|,59,1,0|-10mb9c1,59,1,0|-10mb9c0,94,189,0|-rsj4w1,94,189,0|-rsj4w0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-qhmeg1,94,189,0|-qhmeg0,59,1,0|-bd1xc1,59,1,0|-bd1xc0,94,189,0|-16cow1,94,189,0|-16cow0,95,184,1|-wznk1,95,184,1|-wznk0,94,189,0|-m6rk1,94,189,0|-m6rk0,95,184,1|-fcgw1,95,184,1|-fcgw0,94,189,0|-3gow1,94,189,0|-3gow0,95,184,1|3dlrz,95,184,1|3dls0,94,189,0|f9drz,94,189,0|f9ds0,95,184,1|mgn3z,95,184,1|mgn40,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|1h2hrz,94,189,0|1h2hs0,95,184,1|1njtrz,95,184,1|1njts0,94,189,0|1zskfz,94,189,0|1zskg0,95,184,1|269wfz,95,184,1|269wg0,94,189,0|2iin3z,94,189,0|2iin40,95,184,1|2ozz3z,95,184,1|2ozz40,94,189,0|318prz,94,189,0|318ps0,95,184,1|3830fz,95,184,1|3830g0,94,189,0|3kbr3z,94,189,0|3kbr40,95,184,1|3qt33z,95,184,1|3qt340,94,189,0|431trz,94,189,0|431ts0,95,184,1|49j5rz,95,184,1|49j5s0,94,189,0|4lrwfz,94,189,0|4lrwg0,95,184,1|4s98fz,95,184,1|4s98g0,94,189,0|54hz3z,94,189,0|54hz40,95,184,1|5azb3z,95,184,1|5azb40,94,189,0|5n81rz,94,189,0|5n81s0,95,184,1|5tpdrz,95,184,1|5tpds0,94,189,0|65y4fz,94,189,0|65y4g0,95,184,1|6dvb3z,95,184,1|6dvb40,94,189,0|6p15rz,94,189,0|6p15s0,95,184,1|6wldrz,95,184,1|6wlds0,94,189,0|77r8fz,94,189,0|77r8g0,95,184,1|7e8kfz,95,184,1|7e8kg0,94,189,0|7qhb3z,94,189,0|7qhb40,95,184,1|7wyn3z,95,184,1|7wyn40,94,189,0|897drz,94,189,0|897ds0,95,184,1|8foprz,95,184,1|8fops0,94,189,0|8rkhrz,94,189,0|8rkhs0,95,184,1|8z4prz,95,184,1|8z4ps0,94,189,0|9anj3z,94,189,0|9anj40,95,184,1|9i7r3z,95,184,1|9i7r40,94,189,0|9tqkfz,94,189,0|9tqkg0,95,184,1|a0xtrz,95,184,1|a0xts0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|ajnwfz,95,184,1|ajnwg0,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b33wfz,95,184,1|b33wg0,94,189,0|bctwfz,94,189,0|bctwg0,95,184,1|bltz3z,95,184,1|bltz40,94,189,0|bvjz3z,94,189,0|bvjz40,95,184,1|c4k1rz,95,184,1|c4k1s0,94,189,0|cea1rz,94,189,0|cea1s0,95,184,1|cna4fz,95,184,1|cna4g0,94,189,0|cx04fz,94,189,0|cx04g0,95,184,1|d6073z,95,184,1|d60740,94,189,0|dfq73z,94,189,0|dfq740,95,184,1|dp38fz,95,184,1|dp38g0,94,189,0|dyt8fz,94,189,0|dyt8g0,95,184,1|e7tb3z,95,184,1|e7tb40,94,189,0|ehjb3z,94,189,0|ehjb40,95,184,1|eqjdrz,95,184,1|eqjds0,94,189,0|f09drz,94,189,0|f09ds0,95,184,1|f99gfz,95,184,1|f99gg0,94,189,0|fizgfz,94,189,0|fizgg0,95,184,1|frzj3z,95,184,1|frzj40,94,189,0|fzwprz,94,189,0|fzwps0,95,184,1|gaplrz,95,184,1|gapls0,94,189,0|gkskfz,94,189,0|gkskg0,95,184,1|gtsn3z,95,184,1|gtsn40,94,189,0|h3in3z,94,189,0|h3in40,95,184,1|hciprz,95,184,1|hcips0,94,189,0|hm8prz,94,189,0|hm8ps0,95,184,1|hv8sfz,95,184,1|hv8sg0,94,189,0|i4ysfz,94,189,0|i4ysg0,95,184,1|idyv3z,95,184,1|idyv40,94,189,0|inov3z,94,189,0|inov40,95,184,1|ix1wfz,95,184,1|ix1wg0,94,189,0|j6exrz,94,189,0|j6exs0,95,184,1|jff0fz,95,184,1|jff0g0,94,189,0|jphz3z,94,189,0|jphz40,95,184,1|jyv0fz,95,184,1|jyv0g0,94,189,0|k881rz,94,189,0|k881s0,95,184,1|khl33z,95,184,1|khl340,94,189,0|kqy4fz,94,189,0|kqy4g0,95,184,1|lj18fz,95,184,1|lj18g0,94,189,0|lse9rz,94,189,0|lse9s0,95,184,1|m1rb3z,95,184,1|m1rb40,94,189,0|mbhb3z,94,189,0|mbhb40,95,184,1|mkucfz,95,184,1|mkucg0,94,189,0|mu7drz,94,189,0|mu7ds0,95,184,1|n3kf3z,95,184,1|n3kf40,94,189,0|ncxgfz,94,189,0|ncxgg0,95,184,1|nmahrz,95,184,1|nmahs0,94,189,0|nvnj3z,94,189,0|nvnj40,95,184,1|o50kfz,95,184,1|o50kg0,94,189,0|oedlrz,94,189,0|oedls0,95,184,1|onqn3z,95,184,1|onqn40,94,189,0|ox3ofz,94,189,0|ox3og0,95,184,1|p6gprz,95,184,1|p6gps0,94,189,0|pg6prz,94,189,0|pg6ps0,95,184,1|ppjr3z,95,184,1|ppjr40,94,189,0|pywsfz,94,189,0|pywsg0,95,184,1|q89trz,95,184,1|q89ts0,94,189,0|qhmv3z,94,189,0|qhmv40,95,184,1|qqzwfz,95,184,1|qqzwg0,94,189,0|r0cxrz,94,189,0|r0cxs0,95,184,1|r9pz3z,95,184,1|r9pz40,94,189,0|rj30fz,94,189,0|rj30g0,95,184,1|rsg1rz,95,184,1|rsg1s0,94,189,0|s1t33z,94,189,0|s1t340,95,184,1|sbj33z,95,184,1|sbj340,94,189,0|skw4fz,94,189,0|skw4g0,95,184,1|su95rz,95,184,1|su95s0,94,189,0|t3m73z,94,189,0|t3m740,95,184,1|tcz8fz,95,184,1|tcz8g0,94,189,0|tmc9rz,94,189,0|tmc9s0,95,184,1|tvpb3z,95,184,1|tvpb40,94,189,0|u52cfz,94,189,0|u52cg0,95,184,1|uefdrz,95,184,1|uefds0,94,189,0|unsf3z,94,189,0|unsf40,95,184,1|ux5gfz,95,184,1|ux5gg0,94,189,0|v6vgfz,94,189,0|v6vgg0,95,184,1|vg8hrz,95,184,1|vg8hs0,94,189,0|vplj3z,94,189,0|vplj40,95,184,1|vyykfz,95,184,1|vyykg0,94,189,0|w8blrz,94,189,0|w8bls0,95,184,1|whon3z,95,184,1|whon40,94,189,0|wr1ofz,94,189,0|wr1og0,95,184,1|x0eprz,95,184,1|x0eps0,94,189,0|x9rr3z,94,189,0|x9rr40,95,184,1|xj4sfz,95,184,1|xj4sg0,94,189,0|xshtrz,94,189,0|xshts0,95,184,1|y1uv3z,95,184,1|y1uv40,94,189,0|ybkv3z,94,189,0|ybkv40,95,184,1|ykxwfz,95,184,1|ykxwg0,94,189,0|yuaxrz,94,189,0|yuaxs0,95,184,1|z3nz3z,95,184,1|z3nz40,94,189,0|zd10fz,94,189,0|zd10g0,95,184,1|zme1rz,95,184,1|zme1s0,94,189,0|zvr33z,94,189,0|zvr340,95,184,1|10544fz,95,184,1|10544g0,94,189,0|10eh5rz,94,189,0|10eh5s0,95,184,1|10nu73z,95,184,1|10nu740,94,189,0|10xk73z,94,189,0|10xk740,95,184,1|116x8fz,95,184,1|116x8g0,94,189,0|11ga9rz,94,189,0|11ga9s0,95,184,1|11pnb3z,95,184,1|11pnb40,94,189,0|11z0cfz,94,189,0|11z0cg0,95,184,1|128ddrz,95,184,1|128dds0,94,189,0|12hqf3z,94,189,0|12hqf40,95,184,1|12r3gfz,95,184,1|12r3gg0,94,189,0|130ghrz,94,189,0|130ghs0,95,184,1|139tj3z,95,184,1|139tj40,94,189,0|13j6kfz,94,189,0|13j6kg0,95,184,1|13sjlrz,95,184,1|13sjls0,94,189,0|1429lrz,94,189,0|1429ls0,95,184,1|14bmn3z,95,184,1|14bmn40,94,189,0|14kzofz,94,189,0|14kzog0,95,184,1|14ucprz,95,184,1|14ucps0,94,189,0|153pr3z,94,189,0|153pr40,95,184,1|15d2sfz,95,184,1|15d2sg0,94,189,0|15mftrz,94,189,0|15mfts0,95,184,1|15vsv3z,95,184,1|15vsv40,94,189,0|1655wfz,94,189,0|1655wg0,95,184,1|16eixrz,95,184,1|16eixs0,94,189,0|16nvz3z,94,189,0|16nvz40,95,184,1|16xlz3z,95,184,1|16xlz40,94,189,0|176z0fz,94,189,0|176z0g0,95,184,1|17gc1rz,95,184,1|17gc1s0,94,189,0|17pp33z,94,189,0|17pp340,95,184,1|17z24fz,95,184,1|17z24g0,94,189,0|188f5rz,94,189,0|188f5s0,95,184,1|18hs73z,95,184,1|18hs740,94,189,0|18r58fz,94,189,0|18r58g0,95,184,1|190i9rz,95,184,1|190i9s0,94,189,0|199vb3z,94,189,0|199vb40,95,184,1|19j8cfz,95,184,1|19j8cg0,94,189,0|19sycfz,94,189,0|19sycg0,95,184,1|1a2bdrz,95,184,1|1a2bds0,94,189,0|1abof3z,94,189,0|1abof40,95,184,1|1al1gfz,95,184,1|1al1gg0,94,189,0|1auehrz,94,189,0|1auehs0,95,184,1|1b3rj3z,95,184,1|1b3rj40,94,189,0|1bd4kfz,94,189,0|1bd4kg0,95,184,1|1bmhlrz,95,184,1|1bmhls0,94,189,0|1bvun3z,94,189,0|1bvun40,95,184,1|1c57ofz,95,184,1|1c57og0,94,189,0|1cekprz,94,189,0|1cekps0,95,184,1|1cnxr3z,95,184,1|1cnxr40,94,189,0|1cxnr3z,94,189,0|1cxnr40,95,184,1|1d70sfz,95,184,1|1d70sg0,94,189,0|1dgdtrz,94,189,0|1dgdts0,95,184,1|1dpqv3z,95,184,1|1dpqv40,94,189,0|1dz3wfz,94,189,0|1dz3wg0,95,184,1|1e8gxrz,95,184,1|1e8gxs0,94,189,0|1ehtz3z,94,189,0|1ehtz40,95,184,1|1er70fz,95,184,1|1er70g0,94,189,0|1f0k1rz,94,189,0|1f0k1s0,95,184,1|1f9x33z,95,184,1|1f9x340,94,189,0|1fjn33z,94,189,0|1fjn340,95,184,1|1ft04fz,95,184,1|1ft04g0,94,189,0|1g2d5rz,94,189,0|1g2d5s0,95,184,1|1gbq73z,95,184,1|1gbq740,94,189,0|1gl38fz,94,189,0|1gl38g0,95,184,1|1gug9rz,95,184,1|1gug9s0,94,189,0|1h3tb3z,94,189,0|1h3tb40,95,184,1|1hd6cfz,95,184,1|1hd6cg0,94,189,0|1hmjdrz,94,189,0|1hmjds0,95,184,1|1hvwf3z,95,184,1|1hvwf40,94,189,0|1i59gfz,94,189,0|1i59gg0,95,184,1|1iemhrz,95,184,1|1iemhs0,94,189,0|1iochrz,94,189,0|1iochs0,95,184,1|1ixpj3z,95,184,1|1ixpj40,94,189,0|1j72kfz,94,189,0|1j72kg0,95,184,1|1jgflrz,95,184,1|1jgfls0,94,189,0|1jpsn3z,94,189,0|1jpsn40,95,184,1|1jz5ofz,95,184,1|1jz5og0,94,189,0|1k8iprz,94,189,0|1k8ips0,95,184,1|1khvr3z,95,184,1|1khvr40,94,189,0|1kr8sfz,94,189,0|1kr8sg0,95,184,1|1l0ltrz,95,184,1|1l0lts0,94,189,0|1l9yv3z,94,189,0|1l9yv40,95,184,1|1ljov3z,95,184,1|1ljov40,94,189,0|1lt1wfz,94,189,0|1lt1wg0,95,184,1|1m2exrz,95,184,1|1m2exs0,94,189,0|1mbrz3z,94,189,0|1mbrz40,95,184,1|1ml50fz,95,184,1|1ml50g0,94,189,0|1mui1rz,94,189,0|1mui1s0,95,184,1|1n3v33z,95,184,1|1n3v340,94,189,0|1nd84fz,94,189,0|1nd84g0,95,184,1|1nml5rz,95,184,1|1nml5s0,94,189,0|1nvy73z,94,189,0|1nvy740,95,184,1|1o5b8fz,95,184,1|1o5b8g0,94,189,0|1of18fz,94,189,0|1of18g0,95,184,1|1ooe9rz,95,184,1|1ooe9s0,94,189,0|1oxrb3z,94,189,0|1oxrb40,95,184,1|1p74cfz,95,184,1|1p74cg0,94,189,0|1pghdrz,94,189,0|1pghds0,95,184,1|1ppuf3z,95,184,1|1ppuf40,94,189,0|1pz7gfz,94,189,0|1pz7gg0,95,184,1|1q8khrz,95,184,1|1q8khs0,94,189,0|1qhxj3z,94,189,0|1qhxj40,95,184,1|1qrakfz,95,184,1|1qrakg0,94,189,0|1r0nlrz,94,189,0|1r0nls0,95,184,1|1ra0n3z,95,184,1|1ra0n40,94,189,0|1rjqn3z,94,189,0|1rjqn40,95,184,1|1rt3ofz,95,184,1|1rt3og0,94,189,0|1s2gprz,94,189,0|1s2gps0,95,184,1|1sbtr3z,95,184,1|1sbtr40,94,189,0|1sl6sfz,94,189,0|1sl6sg0,95,184,1|1sujtrz,95,184,1|1sujts0,94,189,0|1t3wv3z,94,189,0|1t3wv40,95,184,1|1td9wfz,95,184,1|1td9wg0,94,189,0|1tmmxrz,94,189,0|1tmmxs0,95,184,1|1tvzz3z,95,184,1|1tvzz40,94,189,0|1u5pz3z,94,189,0|1u5pz40,95,184,1|1uf30fz,95,184,1|1uf30g0,94,189,0|1uog1rz,94,189,0|1uog1s0,95,184,1|1uxt33z,95,184,1|1uxt340,94,189,0|1v764fz,94,189,0|1v764g0,95,184,1|1vgj5rz,95,184,1|1vgj5s0,94,189,0|1vpw73z,94,189,0|1vpw740,95,184,1|NaN,95,184,1","Antarctica/Mawson|,59,1,0|-8aelc1,59,1,0|-8aelc0,96,190,0|krocvz,96,190,0|krocw0,91,186,0|NaN,91,186,0","Antarctica/McMurdo|,0,191,0|-1gsoz15,0,191,0|-1gsoz14,97,192,0|-m01p21,97,192,0|-m01p20,98,193,1|-ltxei1,98,193,1|-ltxei0,97,192,0|-lieie1,97,192,0|-lieie0,98,194,1|-lahd41,98,194,1|-lahd40,97,192,0|-kzofq1,97,192,0|-kzofq0,98,194,1|-krrag1,98,194,1|-krrag0,97,192,0|-kgyd21,97,192,0|-kgyd20,98,194,1|-k917s1,98,194,1|-k917s0,97,192,0|-jy8ae1,97,192,0|-jy8ae0,98,194,1|-jpy6g1,98,194,1|-jpy6g0,97,192,0|-jfi7q1,97,192,0|-jfi7q0,98,194,1|-j783s1,98,194,1|-j783s0,97,192,0|-iws521,97,192,0|-iws520,98,194,1|-imc941,98,194,1|-imc940,97,192,0|-ief121,97,192,0|-ief120,98,194,1|-i3m6g1,98,194,1|-i3m6g0,97,192,0|-hvoye1,97,192,0|-hvoye0,98,194,1|-hkw3s1,98,194,1|-hkw3s0,97,192,0|-hcyvq1,97,192,0|-hcyvq0,98,194,1|-h26141,98,194,1|-h26140,97,192,0|-gu8t21,97,192,0|-gu8t20,98,194,1|-gjfyg1,98,194,1|-gjfyg0,97,192,0|-gbiqe1,97,192,0|-gbiqe0,98,194,1|-g0cx41,98,194,1|-g0cx40,97,192,0|-fssnq1,97,192,0|-fssnq0,98,194,1|-fhmug1,98,194,1|-fhmug0,97,192,0|-f9pme1,97,192,0|-f9pme0,98,194,1|-ciy9c1,98,194,1|-ciy9c0,98,194,0|2ivg7z,98,194,0|2ivg80,99,195,1|2omuvz,99,195,1|2omuw0,98,194,0|318k7z,98,194,0|318k80,99,195,1|382uvz,99,195,1|382uw0,98,194,0|3kbljz,98,194,0|3kblk0,99,195,1|3qsxjz,99,195,1|3qsxk0,98,194,0|431o7z,98,194,0|431o80,99,195,1|49j07z,99,195,1|49j080,98,194,0|4lrqvz,98,194,0|4lrqw0,99,195,1|4s92vz,99,195,1|4s92w0,98,194,0|54htjz,98,194,0|54htk0,99,195,1|5az5jz,99,195,1|5az5k0,98,194,0|5n7w7z,98,194,0|5n7w80,99,195,1|5tp87z,99,195,1|5tp880,98,194,0|65xyvz,98,194,0|65xyw0,99,195,1|6cs9jz,99,195,1|6cs9k0,98,194,0|6p107z,98,194,0|6p1080,99,195,1|6vic7z,99,195,1|6vic80,98,194,0|77r2vz,98,194,0|77r2w0,99,195,1|7e8evz,99,195,1|7e8ew0,98,194,0|7qh5jz,98,194,0|7qh5k0,99,195,1|7wyhjz,99,195,1|7wyhk0,98,194,0|89787z,98,194,0|897880,99,195,1|8fok7z,99,195,1|8fok80,98,194,0|8rxavz,98,194,0|8rxaw0,99,195,1|8yemvz,99,195,1|8yemw0,98,194,0|9andjz,98,194,0|9andk0,99,195,1|9hho7z,99,195,1|9hho80,98,194,0|9tqevz,98,194,0|9tqew0,99,195,1|a07qvz,99,195,1|a07qw0,98,194,0|abdljz,98,194,0|abdlk0,99,195,1|ajnqvz,99,195,1|ajnqw0,98,194,0|au3o7z,98,194,0|au3o80,99,195,1|b2dtjz,99,195,1|b2dtk0,98,194,0|bctqvz,98,194,0|bctqw0,99,195,1|bl3w7z,99,195,1|bl3w80,98,194,0|bvjtjz,98,194,0|bvjtk0,99,195,1|c46xjz,99,195,1|c46xk0,98,194,0|ce9w7z,98,194,0|ce9w80,99,195,1|cmx07z,99,195,1|cmx080,98,194,0|cwzyvz,98,194,0|cwzyw0,99,195,1|d5n2vz,99,195,1|d5n2w0,98,194,0|dfq1jz,98,194,0|dfq1k0,99,195,1|dod5jz,99,195,1|dod5k0,98,194,0|dyt2vz,98,194,0|dyt2w0,99,195,1|e7387z,99,195,1|e73880,98,194,0|ehj5jz,98,194,0|ehj5k0,99,195,1|eptavz,99,195,1|eptaw0,98,194,0|f0987z,98,194,0|f09880,99,195,1|f8wc7z,99,195,1|f8wc80,98,194,0|fizavz,98,194,0|fizaw0,99,195,1|frmevz,99,195,1|frmew0,98,194,0|g1pdjz,98,194,0|g1pdk0,99,195,1|gachjz,99,195,1|gachk0,98,194,0|gksevz,98,194,0|gksew0,99,195,1|gt2k7z,99,195,1|gt2k80,98,194,0|h3ihjz,98,194,0|h3ihk0,99,195,1|hbsmvz,99,195,1|hbsmw0,98,194,0|hm8k7z,98,194,0|hm8k80,99,195,1|huvo7z,99,195,1|huvo80,98,194,0|i4ymvz,98,194,0|i4ymw0,99,195,1|idlqvz,99,195,1|idlqw0,98,194,0|inopjz,98,194,0|inopk0,99,195,1|iwbtjz,99,195,1|iwbtk0,98,194,0|j6es7z,98,194,0|j6es80,99,195,1|jf1w7z,99,195,1|jf1w80,98,194,0|jp4uvz,98,194,0|jp4uw0,99,195,1|jyuuvz,99,195,1|jyuuw0,98,194,0|k7uxjz,98,194,0|k7uxk0,99,195,1|khkxjz,99,195,1|khkxk0,98,194,0|kql07z,98,194,0|kql080,99,195,1|l0b07z,99,195,1|l0b080,98,194,0|l9b2vz,98,194,0|l9b2w0,99,195,1|lj12vz,99,195,1|lj12w0,98,194,0|ls15jz,98,194,0|ls15k0,99,195,1|m1r5jz,99,195,1|m1r5k0,98,194,0|mb46vz,98,194,0|mb46w0,99,195,1|mku6vz,99,195,1|mku6w0,98,194,0|mtu9jz,98,194,0|mtu9k0,99,195,1|n3k9jz,99,195,1|n3k9k0,98,194,0|nckc7z,98,194,0|nckc80,99,195,1|nmac7z,99,195,1|nmac80,98,194,0|nvaevz,98,194,0|nvaew0,99,195,1|o50evz,99,195,1|o50ew0,98,194,0|oe0hjz,98,194,0|oe0hk0,99,195,1|onqhjz,99,195,1|onqhk0,98,194,0|owqk7z,98,194,0|owqk80,99,195,1|p6gk7z,99,195,1|p6gk80,98,194,0|pftljz,98,194,0|pftlk0,99,195,1|ppjljz,99,195,1|ppjlk0,98,194,0|pyjo7z,98,194,0|pyjo80,99,195,1|q89o7z,99,195,1|q89o80,98,194,0|qh9qvz,98,194,0|qh9qw0,99,195,1|qqzqvz,99,195,1|qqzqw0,98,194,0|qzztjz,98,194,0|qzztk0,99,195,1|r9ptjz,99,195,1|r9ptk0,98,194,0|ripw7z,98,194,0|ripw80,99,195,1|rsfw7z,99,195,1|rsfw80,98,194,0|s1fyvz,98,194,0|s1fyw0,99,195,1|sbixjz,99,195,1|sbixk0,98,194,0|skj07z,98,194,0|skj080,99,195,1|su907z,99,195,1|su9080,98,194,0|t392vz,98,194,0|t392w0,99,195,1|tcz2vz,99,195,1|tcz2w0,98,194,0|tlz5jz,98,194,0|tlz5k0,99,195,1|tvp5jz,99,195,1|tvp5k0,98,194,0|u4p87z,98,194,0|u4p880,99,195,1|uef87z,99,195,1|uef880,98,194,0|unfavz,98,194,0|unfaw0,99,195,1|ux5avz,99,195,1|ux5aw0,98,194,0|v6ic7z,98,194,0|v6ic80,99,195,1|vg8c7z,99,195,1|vg8c80,98,194,0|vp8evz,98,194,0|vp8ew0,99,195,1|vyyevz,99,195,1|vyyew0,98,194,0|w7yhjz,98,194,0|w7yhk0,99,195,1|whohjz,99,195,1|whohk0,98,194,0|wqok7z,98,194,0|wqok80,99,195,1|x0ek7z,99,195,1|x0ek80,98,194,0|x9emvz,98,194,0|x9emw0,99,195,1|xj4mvz,99,195,1|xj4mw0,98,194,0|xs4pjz,98,194,0|xs4pk0,99,195,1|y1upjz,99,195,1|y1upk0,98,194,0|yb7qvz,98,194,0|yb7qw0,99,195,1|ykxqvz,99,195,1|ykxqw0,98,194,0|ytxtjz,98,194,0|ytxtk0,99,195,1|z3ntjz,99,195,1|z3ntk0,98,194,0|zcnw7z,98,194,0|zcnw80,99,195,1|zmdw7z,99,195,1|zmdw80,98,194,0|zvdyvz,98,194,0|zvdyw0,99,195,1|1053yvz,99,195,1|1053yw0,98,194,0|10e41jz,98,194,0|10e41k0,99,195,1|10nu1jz,99,195,1|10nu1k0,98,194,0|10x72vz,98,194,0|10x72w0,99,195,1|116x2vz,99,195,1|116x2w0,98,194,0|11fx5jz,98,194,0|11fx5k0,99,195,1|11pn5jz,99,195,1|11pn5k0,98,194,0|11yn87z,98,194,0|11yn880,99,195,1|128d87z,99,195,1|128d880,98,194,0|12hdavz,98,194,0|12hdaw0,99,195,1|12r3avz,99,195,1|12r3aw0,98,194,0|1303djz,98,194,0|1303dk0,99,195,1|139tdjz,99,195,1|139tdk0,98,194,0|13itg7z,98,194,0|13itg80,99,195,1|13sjg7z,99,195,1|13sjg80,98,194,0|141whjz,98,194,0|141whk0,99,195,1|14bmhjz,99,195,1|14bmhk0,98,194,0|14kmk7z,98,194,0|14kmk80,99,195,1|14uck7z,99,195,1|14uck80,98,194,0|153cmvz,98,194,0|153cmw0,99,195,1|15d2mvz,99,195,1|15d2mw0,98,194,0|15m2pjz,98,194,0|15m2pk0,99,195,1|15vspjz,99,195,1|15vspk0,98,194,0|164ss7z,98,194,0|164ss80,99,195,1|16eis7z,99,195,1|16eis80,98,194,0|16niuvz,98,194,0|16niuw0,99,195,1|16xltjz,99,195,1|16xltk0,98,194,0|176lw7z,98,194,0|176lw80,99,195,1|17gbw7z,99,195,1|17gbw80,98,194,0|17pbyvz,98,194,0|17pbyw0,99,195,1|17z1yvz,99,195,1|17z1yw0,98,194,0|18821jz,98,194,0|18821k0,99,195,1|18hs1jz,99,195,1|18hs1k0,98,194,0|18qs47z,98,194,0|18qs480,99,195,1|190i47z,99,195,1|190i480,98,194,0|199i6vz,98,194,0|199i6w0,99,195,1|19j86vz,99,195,1|19j86w0,98,194,0|19sl87z,98,194,0|19sl880,99,195,1|1a2b87z,99,195,1|1a2b880,98,194,0|1abbavz,98,194,0|1abbaw0,99,195,1|1al1avz,99,195,1|1al1aw0,98,194,0|1au1djz,98,194,0|1au1dk0,99,195,1|1b3rdjz,99,195,1|1b3rdk0,98,194,0|1bcrg7z,98,194,0|1bcrg80,99,195,1|1bmhg7z,99,195,1|1bmhg80,98,194,0|1bvhivz,98,194,0|1bvhiw0,99,195,1|1c57ivz,99,195,1|1c57iw0,98,194,0|1ce7ljz,98,194,0|1ce7lk0,99,195,1|1cnxljz,99,195,1|1cnxlk0,98,194,0|1cxamvz,98,194,0|1cxamw0,99,195,1|1d70mvz,99,195,1|1d70mw0,98,194,0|1dg0pjz,98,194,0|1dg0pk0,99,195,1|1dpqpjz,99,195,1|1dpqpk0,98,194,0|1dyqs7z,98,194,0|1dyqs80,99,195,1|1e8gs7z,99,195,1|1e8gs80,98,194,0|1ehguvz,98,194,0|1ehguw0,99,195,1|1er6uvz,99,195,1|1er6uw0,98,194,0|1f06xjz,98,194,0|1f06xk0,99,195,1|1f9wxjz,99,195,1|1f9wxk0,98,194,0|1fj9yvz,98,194,0|1fj9yw0,99,195,1|1fszyvz,99,195,1|1fszyw0,98,194,0|1g201jz,98,194,0|1g201k0,99,195,1|1gbq1jz,99,195,1|1gbq1k0,98,194,0|1gkq47z,98,194,0|1gkq480,99,195,1|1gug47z,99,195,1|1gug480,98,194,0|1h3g6vz,98,194,0|1h3g6w0,99,195,1|1hd66vz,99,195,1|1hd66w0,98,194,0|1hm69jz,98,194,0|1hm69k0,99,195,1|1hvw9jz,99,195,1|1hvw9k0,98,194,0|1i4wc7z,98,194,0|1i4wc80,99,195,1|1iemc7z,99,195,1|1iemc80,98,194,0|1inzdjz,98,194,0|1inzdk0,99,195,1|1ixpdjz,99,195,1|1ixpdk0,98,194,0|1j6pg7z,98,194,0|1j6pg80,99,195,1|1jgfg7z,99,195,1|1jgfg80,98,194,0|1jpfivz,98,194,0|1jpfiw0,99,195,1|1jz5ivz,99,195,1|1jz5iw0,98,194,0|1k85ljz,98,194,0|1k85lk0,99,195,1|1khvljz,99,195,1|1khvlk0,98,194,0|1kqvo7z,98,194,0|1kqvo80,99,195,1|1l0lo7z,99,195,1|1l0lo80,98,194,0|1l9lqvz,98,194,0|1l9lqw0,99,195,1|1ljopjz,99,195,1|1ljopk0,98,194,0|1lsos7z,98,194,0|1lsos80,99,195,1|1m2es7z,99,195,1|1m2es80,98,194,0|1mbeuvz,98,194,0|1mbeuw0,99,195,1|1ml4uvz,99,195,1|1ml4uw0,98,194,0|1mu4xjz,98,194,0|1mu4xk0,99,195,1|1n3uxjz,99,195,1|1n3uxk0,98,194,0|1ncv07z,98,194,0|1ncv080,99,195,1|1nml07z,99,195,1|1nml080,98,194,0|1nvl2vz,98,194,0|1nvl2w0,99,195,1|1o5b2vz,99,195,1|1o5b2w0,98,194,0|1oeo47z,98,194,0|1oeo480,99,195,1|1ooe47z,99,195,1|1ooe480,98,194,0|1oxe6vz,98,194,0|1oxe6w0,99,195,1|1p746vz,99,195,1|1p746w0,98,194,0|1pg49jz,98,194,0|1pg49k0,99,195,1|1ppu9jz,99,195,1|1ppu9k0,98,194,0|1pyuc7z,98,194,0|1pyuc80,99,195,1|1q8kc7z,99,195,1|1q8kc80,98,194,0|1qhkevz,98,194,0|1qhkew0,99,195,1|1qraevz,99,195,1|1qraew0,98,194,0|1r0ahjz,98,194,0|1r0ahk0,99,195,1|1ra0hjz,99,195,1|1ra0hk0,98,194,0|1rjdivz,98,194,0|1rjdiw0,99,195,1|1rt3ivz,99,195,1|1rt3iw0,98,194,0|1s23ljz,98,194,0|1s23lk0,99,195,1|1sbtljz,99,195,1|1sbtlk0,98,194,0|1skto7z,98,194,0|1skto80,99,195,1|1sujo7z,99,195,1|1sujo80,98,194,0|1t3jqvz,98,194,0|1t3jqw0,99,195,1|1td9qvz,99,195,1|1td9qw0,98,194,0|1tm9tjz,98,194,0|1tm9tk0,99,195,1|1tvztjz,99,195,1|1tvztk0,98,194,0|1u5cuvz,98,194,0|1u5cuw0,99,195,1|1uf2uvz,99,195,1|1uf2uw0,98,194,0|1uo2xjz,98,194,0|1uo2xk0,99,195,1|1uxsxjz,99,195,1|1uxsxk0,98,194,0|1v6t07z,98,194,0|1v6t080,99,195,1|1vgj07z,99,195,1|1vgj080,98,194,0|1vpj2vz,98,194,0|1vpj2w0,99,195,1|NaN,99,195,1","Antarctica/Palmer|,59,1,0|-2lxhc1,59,1,0|-2lxhc0,38,41,1|-2ivzo1,38,41,1|-2ivzo0,41,40,0|-275ow1,41,40,0|-275ow0,38,41,1|-2042c1,38,41,1|-2042c0,41,40,0|-1odrk1,41,40,0|-1odrk0,38,41,1|-1fovo1,38,41,1|-1fovo0,41,40,0|-16brk1,41,40,0|-16brk0,38,41,1|-wluc1,38,41,1|-wluc0,41,40,0|-n8q81,41,40,0|-n8q80,38,41,1|-dvro1,38,41,1|-dvro0,41,40,0|-4ink1,41,40,0|-4ink0,38,41,0|24aizz,38,41,0|24aj00,39,43,1|29bxjz,39,43,1|29bxk0,38,41,0|6fn4bz,38,41,0|6fn4c0,41,40,0|6nz73z,41,40,0|6nz740,38,41,1|6vwazz,38,41,1|6vwb00,41,40,0|76p9rz,41,40,0|76p9s0,38,41,1|7emdnz,38,41,1|7emdo0,41,40,0|7psb3z,41,40,0|7psb40,38,41,1|7xcgbz,38,41,1|7xcgc0,41,40,0|88idrz,41,40,0|88ids0,38,41,1|8g2izz,38,41,1|8g2j00,41,40,0|8r8gfz,41,40,0|8r8gg0,38,41,1|90lezz,38,41,1|90lf00,41,40,0|99yj3z,41,40,0|99yj40,38,41,1|9hvmzz,38,41,1|9hvn00,41,40,0|9solrz,41,40,0|9sols0,38,41,1|a0lpnz,38,41,1|a0lpo0,41,40,0|abrn3z,41,40,0|abrn40,38,41,1|ajbsbz,38,41,1|ajbsc0,41,40,0|at1v3z,41,40,0|at1v40,38,41,1|b21uzz,38,41,1|b21v00,41,40,0|bd7sfz,41,40,0|bd7sg0,38,41,1|bl4wbz,38,41,1|bl4wc0,41,40,0|bvxv3z,41,40,0|bvxv40,38,41,1|c3uyzz,38,41,1|c3uz00,41,40,0|cenxrz,41,40,0|cenxs0,38,41,1|cml1nz,38,41,1|cml1o0,41,40,0|cxe0fz,41,40,0|cxe0g0,38,41,1|d5b4bz,38,41,1|d5b4c0,41,40,0|dgh1rz,41,40,0|dgh1s0,38,41,1|do16zz,38,41,1|do1700,41,40,0|dz74fz,41,40,0|dz74g0,38,41,1|e7u5nz,38,41,1|e7u5o0,41,40,0|ehx73z,41,40,0|ehx740,38,41,1|epuazz,38,41,1|epub00,41,40,0|ezxcfz,41,40,0|ezxcg0,38,41,1|f9n9nz,38,41,1|f9n9o0,41,40,0|fjdcfz,41,40,0|fjdcg0,38,41,1|fragbz,38,41,1|fragc0,41,40,0|g2gdrz,41,40,0|g2gds0,38,41,1|ga0izz,38,41,1|ga0j00,41,40,0|gl6gfz,41,40,0|gl6gg0,38,41,1|gsqlnz,38,41,1|gsqlo0,41,40,0|h3wj3z,41,40,0|h3wj40,38,41,1|hbgobz,38,41,1|hbgoc0,41,40,0|hmmlrz,41,40,0|hmmls0,38,41,1|hujpnz,38,41,1|hujpo0,41,40,0|i5cofz,41,40,0|i5cog0,38,41,1|id9sbz,38,41,1|id9sc0,41,40,0|io2r3z,41,40,0|io2r40,38,41,1|ivzuzz,38,41,1|ivzv00,41,40,0|j75sfz,41,40,0|j75sg0,38,41,1|jepxnz,38,41,1|jepxo0,41,40,0|jpvv3z,41,40,0|jpvv40,38,41,1|jyiwbz,38,41,1|jyiwc0,41,40,0|k8lxrz,41,40,0|k8lxs0,38,41,1|kgj1nz,38,41,1|kgj1o0,41,40,0|krc0fz,41,40,0|krc0g0,38,41,1|l0c0bz,38,41,1|l0c0c0,41,40,0|la233z,41,40,0|la2340,38,41,1|lkuwbz,38,41,1|lkuwc0,41,40,0|lq9f3z,41,40,0|lq9f40,38,41,1|m380bz,38,41,1|m380c0,41,40,0|m9pf3z,41,40,0|m9pf40,38,41,1|mly2zz,38,41,1|mly300,41,40,0|mssgfz,41,40,0|mssgg0,38,41,1|n4o5nz,38,41,1|n4o5o0,41,40,0|nbij3z,41,40,0|nbij40,38,41,1|o776zz,38,41,1|o77700,41,40,0|obvsfz,41,40,0|obvsg0,38,41,1|ohn4bz,38,41,1|ohn4c0,38,41,0|NaN,38,41,0","Antarctica/Rothera|,59,1,0|3lxrzz,59,1,0|3lxs00,38,41,0|NaN,38,41,0","Antarctica/Syowa|,0,196,0|-bwgbbh,0,196,0|-bwgbbg,100,4,0|NaN,100,4,0","Antarctica/Troll|,59,1,0|ibrunz,59,1,0|ibruo0,16,1,0|idzk3z,16,1,0|idzk40,101,9,1|ip5erz,101,9,1|ip5es0,16,1,0|iwpmrz,16,1,0|iwpms0,101,9,1|j7vhfz,101,9,1|j7vhg0,16,1,0|jffpfz,16,1,0|jffpg0,101,9,1|jqlk3z,101,9,1|jqlk40,16,1,0|jyiqrz,16,1,0|jyiqs0,101,9,1|k9bmrz,101,9,1|k9bms0,16,1,0|kh8tfz,16,1,0|kh8tg0,101,9,1|ks1pfz,101,9,1|ks1pg0,16,1,0|kzyw3z,16,1,0|kzyw40,101,9,1|lb4qrz,101,9,1|lb4qs0,16,1,0|lioyrz,16,1,0|lioys0,101,9,1|ltutfz,101,9,1|ltutg0,16,1,0|m1f1fz,16,1,0|m1f1g0,101,9,1|mckw3z,101,9,1|mckw40,16,1,0|mki2rz,16,1,0|mki2s0,101,9,1|mvayrz,101,9,1|mvays0,16,1,0|n385fz,16,1,0|n385g0,101,9,1|ne11fz,101,9,1|ne11g0,16,1,0|nly83z,16,1,0|nly840,101,9,1|nwr43z,101,9,1|nwr440,16,1,0|o4oarz,16,1,0|o4oas0,101,9,1|ofu5fz,101,9,1|ofu5g0,16,1,0|onedfz,16,1,0|onedg0,101,9,1|oyk83z,101,9,1|oyk840,16,1,0|p64g3z,16,1,0|p64g40,101,9,1|phaarz,101,9,1|phaas0,16,1,0|pp7hfz,16,1,0|pp7hg0,101,9,1|q00dfz,101,9,1|q00dg0,16,1,0|q7xk3z,16,1,0|q7xk40,101,9,1|qiqg3z,101,9,1|qiqg40,16,1,0|qqnmrz,16,1,0|qqnms0,101,9,1|r1thfz,101,9,1|r1thg0,16,1,0|r9dpfz,16,1,0|r9dpg0,101,9,1|rkjk3z,101,9,1|rkjk40,16,1,0|rs3s3z,16,1,0|rs3s40,101,9,1|s39mrz,101,9,1|s39ms0,16,1,0|sb6tfz,16,1,0|sb6tg0,101,9,1|slzpfz,101,9,1|slzpg0,16,1,0|stww3z,16,1,0|stww40,101,9,1|t4ps3z,101,9,1|t4ps40,16,1,0|tcmyrz,16,1,0|tcmys0,101,9,1|tnfurz,101,9,1|tnfus0,16,1,0|tvd1fz,16,1,0|tvd1g0,101,9,1|u6iw3z,101,9,1|u6iw40,16,1,0|ue343z,16,1,0|ue3440,101,9,1|up8yrz,101,9,1|up8ys0,16,1,0|uwt6rz,16,1,0|uwt6s0,101,9,1|v7z1fz,101,9,1|v7z1g0,16,1,0|vfw83z,16,1,0|vfw840,101,9,1|vqp43z,101,9,1|vqp440,16,1,0|vymarz,16,1,0|vymas0,101,9,1|w9f6rz,101,9,1|w9f6s0,16,1,0|whcdfz,16,1,0|whcdg0,101,9,1|wsi83z,101,9,1|wsi840,16,1,0|x02g3z,16,1,0|x02g40,101,9,1|xb8arz,101,9,1|xb8as0,16,1,0|xisirz,16,1,0|xisis0,101,9,1|xtydfz,101,9,1|xtydg0,16,1,0|y1ilfz,16,1,0|y1ilg0,101,9,1|ycog3z,101,9,1|ycog40,16,1,0|yklmrz,16,1,0|yklms0,101,9,1|yveirz,101,9,1|yveis0,16,1,0|z3bpfz,16,1,0|z3bpg0,101,9,1|ze4lfz,101,9,1|ze4lg0,16,1,0|zm1s3z,16,1,0|zm1s40,101,9,1|zx7mrz,101,9,1|zx7ms0,16,1,0|104rurz,16,1,0|104rus0,101,9,1|10fxpfz,101,9,1|10fxpg0,16,1,0|10nhxfz,16,1,0|10nhxg0,101,9,1|10yns3z,101,9,1|10yns40,16,1,0|116kyrz,16,1,0|116kys0,101,9,1|11hdurz,101,9,1|11hdus0,16,1,0|11pb1fz,16,1,0|11pb1g0,101,9,1|1203xfz,101,9,1|1203xg0,16,1,0|128143z,16,1,0|1281440,101,9,1|12iu03z,101,9,1|12iu040,16,1,0|12qr6rz,16,1,0|12qr6s0,101,9,1|131x1fz,101,9,1|131x1g0,16,1,0|139h9fz,16,1,0|139h9g0,101,9,1|13kn43z,101,9,1|13kn440,16,1,0|13s7c3z,16,1,0|13s7c40,101,9,1|143d6rz,101,9,1|143d6s0,16,1,0|14badfz,16,1,0|14badg0,101,9,1|14m39fz,101,9,1|14m39g0,16,1,0|14u0g3z,16,1,0|14u0g40,101,9,1|154tc3z,101,9,1|154tc40,16,1,0|15cqirz,16,1,0|15cqis0,101,9,1|15nwdfz,101,9,1|15nwdg0,16,1,0|15vglfz,16,1,0|15vglg0,101,9,1|166mg3z,101,9,1|166mg40,16,1,0|16e6o3z,16,1,0|16e6o40,101,9,1|16pcirz,101,9,1|16pcis0,16,1,0|16x9pfz,16,1,0|16x9pg0,101,9,1|1782lfz,101,9,1|1782lg0,16,1,0|17fzs3z,16,1,0|17fzs40,101,9,1|17qso3z,101,9,1|17qso40,16,1,0|17ypurz,16,1,0|17ypus0,101,9,1|189iqrz,101,9,1|189iqs0,16,1,0|18hfxfz,16,1,0|18hfxg0,101,9,1|18sls3z,101,9,1|18sls40,16,1,0|190603z,16,1,0|1906040,101,9,1|19bburz,101,9,1|19bbus0,16,1,0|19iw2rz,16,1,0|19iw2s0,101,9,1|19u1xfz,101,9,1|19u1xg0,16,1,0|1a1z43z,16,1,0|1a1z440,101,9,1|1acs03z,101,9,1|1acs040,16,1,0|1akp6rz,16,1,0|1akp6s0,101,9,1|1avi2rz,101,9,1|1avi2s0,16,1,0|1b3f9fz,16,1,0|1b3f9g0,101,9,1|1bel43z,101,9,1|1bel440,16,1,0|1bm5c3z,16,1,0|1bm5c40,101,9,1|1bxb6rz,101,9,1|1bxb6s0,16,1,0|1c4verz,16,1,0|1c4ves0,101,9,1|1cg19fz,101,9,1|1cg19g0,16,1,0|1cnlhfz,16,1,0|1cnlhg0,101,9,1|1cyrc3z,101,9,1|1cyrc40,16,1,0|1d6oirz,16,1,0|1d6ois0,101,9,1|1dhherz,101,9,1|1dhhes0,16,1,0|1dpelfz,16,1,0|1dpelg0,101,9,1|1e07hfz,101,9,1|1e07hg0,16,1,0|1e84o3z,16,1,0|1e84o40,101,9,1|1ejairz,101,9,1|1ejais0,16,1,0|1equqrz,16,1,0|1equqs0,101,9,1|1f20lfz,101,9,1|1f20lg0,16,1,0|1f9ktfz,16,1,0|1f9ktg0,101,9,1|1fkqo3z,101,9,1|1fkqo40,16,1,0|1fsnurz,16,1,0|1fsnus0,101,9,1|1g3gqrz,101,9,1|1g3gqs0,16,1,0|1gbdxfz,16,1,0|1gbdxg0,101,9,1|1gm6tfz,101,9,1|1gm6tg0,16,1,0|1gu403z,16,1,0|1gu4040,101,9,1|1h4ww3z,101,9,1|1h4ww40,16,1,0|1hcu2rz,16,1,0|1hcu2s0,101,9,1|1hnzxfz,101,9,1|1hnzxg0,16,1,0|1hvk5fz,16,1,0|1hvk5g0,101,9,1|1i6q03z,101,9,1|1i6q040,16,1,0|1iea83z,16,1,0|1iea840,101,9,1|1ipg2rz,101,9,1|1ipg2s0,16,1,0|1ixd9fz,16,1,0|1ixd9g0,101,9,1|1j865fz,101,9,1|1j865g0,16,1,0|1jg3c3z,16,1,0|1jg3c40,101,9,1|1jqw83z,101,9,1|1jqw840,16,1,0|1jyterz,16,1,0|1jytes0,101,9,1|1k9z9fz,101,9,1|1k9z9g0,16,1,0|1khjhfz,16,1,0|1khjhg0,101,9,1|1kspc3z,101,9,1|1kspc40,16,1,0|1l09k3z,16,1,0|1l09k40,101,9,1|1lbferz,101,9,1|1lbfes0,16,1,0|1ljclfz,16,1,0|1ljclg0,101,9,1|1lu5hfz,101,9,1|1lu5hg0,16,1,0|1m22o3z,16,1,0|1m22o40,101,9,1|1mcvk3z,101,9,1|1mcvk40,16,1,0|1mksqrz,16,1,0|1mksqs0,101,9,1|1mvlmrz,101,9,1|1mvlms0,16,1,0|1n3itfz,16,1,0|1n3itg0,101,9,1|1neoo3z,101,9,1|1neoo40,16,1,0|1nm8w3z,16,1,0|1nm8w40,101,9,1|1nxeqrz,101,9,1|1nxeqs0,16,1,0|1o4yyrz,16,1,0|1o4yys0,101,9,1|1og4tfz,101,9,1|1og4tg0,16,1,0|1oo203z,16,1,0|1oo2040,101,9,1|1oyuw3z,101,9,1|1oyuw40,16,1,0|1p6s2rz,16,1,0|1p6s2s0,101,9,1|1phkyrz,101,9,1|1phkys0,16,1,0|1ppi5fz,16,1,0|1ppi5g0,101,9,1|1q0o03z,101,9,1|1q0o040,16,1,0|1q8883z,16,1,0|1q88840,101,9,1|1qje2rz,101,9,1|1qje2s0,16,1,0|1qqyarz,16,1,0|1qqyas0,101,9,1|1r245fz,101,9,1|1r245g0,16,1,0|1r9odfz,16,1,0|1r9odg0,101,9,1|1rku83z,101,9,1|1rku840,16,1,0|1rsrerz,16,1,0|1rsres0,101,9,1|1s3karz,101,9,1|1s3kas0,16,1,0|1sbhhfz,16,1,0|1sbhhg0,101,9,1|1smadfz,101,9,1|1smadg0,16,1,0|1su7k3z,16,1,0|1su7k40,101,9,1|1t5derz,101,9,1|1t5des0,16,1,0|1tcxmrz,16,1,0|1tcxms0,101,9,1|1to3hfz,101,9,1|1to3hg0,16,1,0|1tvnpfz,16,1,0|1tvnpg0,101,9,1|1u6tk3z,101,9,1|1u6tk40,16,1,0|1ueqqrz,16,1,0|1ueqqs0,101,9,1|1upjmrz,101,9,1|1upjms0,16,1,0|1uxgtfz,16,1,0|1uxgtg0,101,9,1|1v89pfz,101,9,1|1v89pg0,16,1,0|1vg6w3z,16,1,0|1vg6w40,101,9,1|1vqzs3z,101,9,1|1vqzs40,16,1,0|NaN,16,1,0","Antarctica/Vostok|,59,1,0|-6aaao1,59,1,0|-6aaao0,96,190,0|NaN,96,190,0","Arctic/Longyearbyen|,0,197,0|-1353tzp,0,197,0|-1353tzo,8,8,0|-rzayo1,8,8,0|-rzayo0,9,9,1|-rskiw1,9,9,1|-rskiw0,8,8,0|-fc7s81,8,8,0|-fc7s80,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cnnmk1,9,9,1|-cnnmk0,8,8,0|-5mxh81,8,8,0|-5mxh80,9,9,1|-5d7h81,9,9,1|-5d7h80,8,8,0|-53ufw1,8,8,0|-53ufw0,9,9,1|-4uhek1,9,9,1|-4uhek0,8,8,0|-4l4d81,8,8,0|-4l4d80,9,9,1|-4brbw1,9,9,1|-4brbw0,8,8,0|-42eak1,8,8,0|-42eak0,9,9,1|-3t1981,9,9,1|-3t1980,8,8,0|-3jo7w1,8,8,0|-3jo7w0,9,9,1|-3ab6k1,9,9,1|-3ab6k0,8,8,0|-30y581,8,8,0|-30y580,9,9,1|-2r8581,9,9,1|-2r8580,8,8,0|-2g2ak1,8,8,0|-2g2ak0,9,9,1|-28i2k1,9,9,1|-28i2k0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Asia/Aden|,0,196,0|-bwgbbh,0,196,0|-bwgbbg,100,4,0|NaN,100,4,0","Asia/Almaty|,0,198,0|-nu1a91,0,198,0|-nu1a90,91,186,0|-kmr9w1,91,186,0|-kmr9w0,96,190,0|5vaxzz,96,190,0|5vay00,90,185,1|64pr7z,90,185,1|64pr80,96,190,0|6e2vbz,96,190,0|6e2vc0,90,185,1|6nhojz,90,185,1|6nhok0,96,190,0|6wusnz,96,190,0|6wuso0,90,185,1|769lvz,90,185,1|769lw0,96,190,0|7foknz,96,190,0|7foko0,90,185,1|7p1rjz,90,185,1|7p1rk0,96,190,0|7yesvz,96,190,0|7yesw0,90,185,1|87ru7z,90,185,1|87ru80,96,190,0|8h4vjz,96,190,0|8h4vk0,90,185,1|8qhwvz,90,185,1|8qhww0,96,190,0|8zuy7z,96,190,0|8zuy80,90,185,1|997zjz,90,185,1|997zk0,96,190,0|9il0vz,96,190,0|9il0w0,90,185,1|9ry27z,90,185,1|9ry280,96,190,0|a1b3jz,96,190,0|a1b3k0,90,185,1|aao4vz,90,185,1|aao4w0,96,190,0|ak167z,96,190,0|ak1680,90,185,1|atr67z,90,185,1|atr680,96,190,0|b347jz,96,190,0|b347k0,96,190,1|bchbnz,96,190,1|bchbo0,91,186,0|bi8qbz,91,186,0|bi8qc0,96,190,0|blua7z,96,190,0|blua80,90,185,1|bv7bjz,90,185,1|bv7bk0,96,190,0|c4kcvz,96,190,0|c4kcw0,90,185,1|cdxe7z,90,185,1|cdxe80,96,190,0|cnafjz,96,190,0|cnafk0,90,185,1|cwngvz,90,185,1|cwngw0,96,190,0|d60i7z,96,190,0|d60i80,90,185,1|dfdjjz,90,185,1|dfdjk0,96,190,0|dp3jjz,96,190,0|dp3jk0,90,185,1|dzwfjz,90,185,1|dzwfk0,96,190,0|e7tm7z,96,190,0|e7tm80,90,185,1|eimi7z,90,185,1|eimi80,96,190,0|eqjovz,96,190,0|eqjow0,90,185,1|f1ckvz,90,185,1|f1ckw0,96,190,0|f99rjz,96,190,0|f99rk0,90,185,1|fkfm7z,90,185,1|fkfm80,96,190,0|frzu7z,96,190,0|frzu80,90,185,1|g35ovz,90,185,1|g35ow0,96,190,0|gapwvz,96,190,0|gapww0,90,185,1|glvrjz,90,185,1|glvrk0,96,190,0|gtsy7z,96,190,0|gtsy80,90,185,1|h4lu7z,90,185,1|h4lu80,96,190,0|hcj0vz,96,190,0|hcj0w0,90,185,1|hnbwvz,90,185,1|hnbww0,96,190,0|hv93jz,96,190,0|hv93k0,90,185,1|i6ey7z,90,185,1|i6ey80,96,190,0|NaN,96,190,0","Asia/Amman|,0,199,0|-kcrtbl,0,199,0|-kcrtbk,14,9,0|1sed3z,14,9,0|1sed40,15,4,1|1yeybz,15,4,1|1yeyc0,14,9,0|29bmfz,14,9,0|29bmg0,15,4,1|2h6vnz,15,4,1|2h6vo0,14,9,0|2s3jrz,14,9,0|2s3js0,15,4,1|2zyszz,15,4,1|2zyt00,14,9,0|3axbrz,14,9,0|3axbs0,15,4,1|3kdznz,15,4,1|3kdzo0,14,9,0|3tp93z,14,9,0|3tp940,15,4,1|41kibz,15,4,1|41kic0,14,9,0|4cfbrz,14,9,0|4cfbs0,15,4,1|4kakzz,15,4,1|4kal00,14,9,0|7ygt3z,14,9,0|7ygt40,15,4,1|87vmbz,15,4,1|87vmc0,14,9,0|8heafz,14,9,0|8heag0,15,4,1|8qr8zz,15,4,1|8qr900,14,9,0|904d3z,14,9,0|904d40,15,4,1|99hbnz,15,4,1|99hbo0,14,9,0|9iufrz,14,9,0|9iufs0,15,4,1|9skczz,15,4,1|9skd00,14,9,0|a3ivrz,14,9,0|a3ivs0,15,4,1|abafnz,15,4,1|abafo0,14,9,0|alqfrz,14,9,0|alqfs0,15,4,1|au0ibz,15,4,1|au0ic0,14,9,0|b3zufz,14,9,0|b3zug0,15,4,1|bcdmbz,15,4,1|bcdmc0,14,9,0|bmgnrz,14,9,0|bmgns0,15,4,1|bvgnnz,15,4,1|bvgno0,14,9,0|c4trrz,14,9,0|c4trs0,15,4,1|ce6qbz,15,4,1|ce6qc0,14,9,0|cnjufz,14,9,0|cnjug0,15,4,1|cw6vnz,15,4,1|cw6vo0,14,9,0|d6mvrz,14,9,0|d6mvs0,15,4,1|dex13z,15,4,1|dex140,14,9,0|dpcyfz,14,9,0|dpcyg0,15,4,1|dy02fz,15,4,1|dy02g0,14,9,0|e8313z,14,9,0|e83140,15,4,1|egq53z,15,4,1|egq540,14,9,0|eqt3rz,14,9,0|eqt3s0,15,4,1|ezg7rz,15,4,1|ezg7s0,14,9,0|fe5ufz,14,9,0|fe5ug0,15,4,1|fij93z,15,4,1|fij940,14,9,0|fs7efz,14,9,0|fs7eg0,15,4,1|g1mafz,15,4,1|g1mag0,14,9,0|gaxh3z,14,9,0|gaxh40,15,4,1|gkcd3z,15,4,1|gkcd40,14,9,0|gtpefz,14,9,0|gtpeg0,15,4,1|h32frz,15,4,1|h32fs0,14,9,0|hcfh3z,14,9,0|hcfh40,15,4,1|hn8d3z,15,4,1|hn8d40,14,9,0|hv5jrz,14,9,0|hv5js0,15,4,1|i5lh3z,15,4,1|i5lh40,14,9,0|ie8l3z,14,9,0|ie8l40,15,4,1|inlmfz,15,4,1|inlmg0,14,9,0|iwynrz,14,9,0|iwyns0,15,4,1|j7rjrz,15,4,1|j7rjs0,14,9,0|jfoqfz,14,9,0|jfoqg0,15,4,1|jqhmfz,15,4,1|jqhmg0,14,9,0|jyet3z,14,9,0|jyet40,15,4,1|k9knrz,15,4,1|k9kns0,14,9,0|kh4vrz,14,9,0|kh4vs0,15,4,1|ksaqfz,15,4,1|ksaqg0,14,9,0|kzuyfz,14,9,0|kzuyg0,15,4,1|lb0t3z,15,4,1|lb0t40,14,9,0|lixzrz,14,9,0|lixzs0,15,4,1|ltqvrz,15,4,1|ltqvs0,14,9,0|m1o2fz,14,9,0|m1o2g0,15,4,1|my2nnz,15,4,1|my2no0,14,9,0|n347rz,14,9,0|n347s0,15,4,1|nea2fz,15,4,1|nea2g0,14,9,0|nluafz,14,9,0|nluag0,15,4,1|nx053z,15,4,1|nx0540,14,9,0|o4xbrz,14,9,0|o4xbs0,15,4,1|ofq7rz,15,4,1|ofq7s0,14,9,0|onnefz,14,9,0|onneg0,15,4,1|oygafz,15,4,1|oygag0,14,9,0|p6dh3z,14,9,0|p6dh40,15,4,1|ph6d3z,15,4,1|ph6d40,14,9,0|pp3jrz,14,9,0|pp3js0,15,4,1|pzwfrz,15,4,1|pzwfs0,14,9,0|q7tmfz,14,9,0|q7tmg0,15,4,1|qizh3z,15,4,1|qizh40,14,9,0|qqjp3z,14,9,0|qqjp40,15,4,1|r1pjrz,15,4,1|r1pjs0,14,9,0|r7tx3z,14,9,0|r7tx40,15,4,1|rkfmfz,15,4,1|rkfmg0,14,9,0|rqjzrz,14,9,0|rqjzs0,15,4,1|s35p3z,15,4,1|s35p40,14,9,0|s9n13z,14,9,0|s9n140,15,4,1|slvrrz,15,4,1|slvrs0,14,9,0|ssd3rz,14,9,0|ssd3s0,15,4,1|t4yt3z,15,4,1|t4yt40,14,9,0|tb36fz,14,9,0|tb36g0,15,4,1|tnovrz,15,4,1|tnovs0,14,9,0|ttt93z,14,9,0|ttt940,15,4,1|u6eyfz,15,4,1|u6eyg0,14,9,0|ucjbrz,14,9,0|ucjbs0,15,4,1|up513z,15,4,1|up5140,14,9,0|uv9efz,14,9,0|uv9eg0,15,4,1|v7v3rz,15,4,1|v7v3s0,14,9,0|vecfrz,14,9,0|vecfs0,15,4,1|vql6fz,15,4,1|vql6g0,14,9,0|vx2ifz,14,9,0|vx2ig0,15,4,1|w9o7rz,15,4,1|w9o7s0,14,9,0|wfsl3z,14,9,0|wfsl40,15,4,1|wseafz,15,4,1|wseag0,14,9,0|wyinrz,14,9,0|wyins0,15,4,1|xb4d3z,15,4,1|xb4d40,14,9,0|xh8qfz,14,9,0|xh8qg0,15,4,1|xtufrz,15,4,1|xtufs0,14,9,0|xzyt3z,14,9,0|xzyt40,15,4,1|yckifz,15,4,1|yckig0,14,9,0|yj1ufz,14,9,0|yj1ug0,15,4,1|yvnjrz,15,4,1|yvnjs0,14,9,0|z1rx3z,14,9,0|z1rx40,15,4,1|zedmfz,15,4,1|zedmg0,14,9,0|zkhzrz,14,9,0|zkhzs0,15,4,1|zx3p3z,15,4,1|zx3p40,14,9,0|10382fz,14,9,0|10382g0,15,4,1|10ftrrz,15,4,1|10ftrs0,14,9,0|10ly53z,14,9,0|10ly540,15,4,1|10yjufz,15,4,1|10yjug0,14,9,0|11516fz,14,9,0|11516g0,15,4,1|11h9x3z,15,4,1|11h9x40,14,9,0|11nr93z,14,9,0|11nr940,15,4,1|120cyfz,15,4,1|120cyg0,14,9,0|126hbrz,14,9,0|126hbs0,15,4,1|12j313z,15,4,1|12j3140,14,9,0|12p7efz,14,9,0|12p7eg0,15,4,1|131t3rz,15,4,1|131t3s0,14,9,0|137xh3z,14,9,0|137xh40,15,4,1|13kj6fz,15,4,1|13kj6g0,14,9,0|13qnjrz,14,9,0|13qnjs0,15,4,1|143993z,15,4,1|1439940,14,9,0|149ql3z,14,9,0|149ql40,15,4,1|14lzbrz,15,4,1|14lzbs0,14,9,0|14sgnrz,14,9,0|14sgns0,15,4,1|1552d3z,15,4,1|1552d40,14,9,0|15b6qfz,14,9,0|15b6qg0,15,4,1|15nsfrz,15,4,1|15nsfs0,14,9,0|15twt3z,14,9,0|15twt40,15,4,1|166iifz,15,4,1|166iig0,14,9,0|16cmvrz,14,9,0|16cmvs0,15,4,1|16p8l3z,15,4,1|16p8l40,14,9,0|16vpx3z,14,9,0|16vpx40,15,4,1|177ynrz,15,4,1|177yns0,14,9,0|17efzrz,14,9,0|17efzs0,15,4,1|17r1p3z,15,4,1|17r1p40,14,9,0|17x62fz,14,9,0|17x62g0,15,4,1|189rrrz,15,4,1|189rrs0,14,9,0|18fw53z,14,9,0|18fw540,15,4,1|18shufz,15,4,1|18shug0,14,9,0|18ym7rz,14,9,0|18ym7s0,15,4,1|19b7x3z,15,4,1|19b7x40,14,9,0|19hcafz,14,9,0|19hcag0,15,4,1|19txzrz,15,4,1|19txzs0,14,9,0|1a0fbrz,14,9,0|1a0fbs0,15,4,1|1aco2fz,15,4,1|1aco2g0,14,9,0|1aj5efz,14,9,0|1aj5eg0,15,4,1|1avr3rz,15,4,1|1avr3s0,14,9,0|1b1vh3z,14,9,0|1b1vh40,15,4,1|1beh6fz,15,4,1|1beh6g0,14,9,0|1bkljrz,14,9,0|1bkljs0,15,4,1|1bx793z,15,4,1|1bx7940,14,9,0|1c3bmfz,14,9,0|1c3bmg0,15,4,1|1cfxbrz,15,4,1|1cfxbs0,14,9,0|1cm1p3z,14,9,0|1cm1p40,15,4,1|1cynefz,15,4,1|1cyneg0,14,9,0|1d54qfz,14,9,0|1d54qg0,15,4,1|1dhqfrz,15,4,1|1dhqfs0,14,9,0|1dnut3z,14,9,0|1dnut40,15,4,1|1e0gifz,15,4,1|1e0gig0,14,9,0|1e6kvrz,14,9,0|1e6kvs0,15,4,1|1ej6l3z,15,4,1|1ej6l40,14,9,0|1epayfz,14,9,0|1epayg0,15,4,1|1f1wnrz,15,4,1|1f1wns0,14,9,0|1f8113z,14,9,0|1f81140,15,4,1|1fkmqfz,15,4,1|1fkmqg0,14,9,0|1fr42fz,14,9,0|1fr42g0,15,4,1|1g3ct3z,15,4,1|1g3ct40,14,9,0|1g9u53z,14,9,0|1g9u540,15,4,1|1gmfufz,15,4,1|1gmfug0,14,9,0|1gsk7rz,14,9,0|1gsk7s0,15,4,1|1h55x3z,15,4,1|1h55x40,14,9,0|1hbaafz,14,9,0|1hbaag0,15,4,1|1hnvzrz,15,4,1|1hnvzs0,14,9,0|1hu0d3z,14,9,0|1hu0d40,15,4,1|1i6m2fz,15,4,1|1i6m2g0,14,9,0|1icqfrz,14,9,0|1icqfs0,15,4,1|1ipc53z,15,4,1|1ipc540,14,9,0|1ivth3z,14,9,0|1ivth40,15,4,1|1j827rz,15,4,1|1j827s0,14,9,0|1jejjrz,14,9,0|1jejjs0,15,4,1|1jr593z,15,4,1|1jr5940,14,9,0|1jx9mfz,14,9,0|1jx9mg0,15,4,1|1k9vbrz,15,4,1|1k9vbs0,14,9,0|1kfzp3z,14,9,0|1kfzp40,15,4,1|1kslefz,15,4,1|1ksleg0,14,9,0|1kyprrz,14,9,0|1kyprs0,15,4,1|1lbbh3z,15,4,1|1lbbh40,14,9,0|1lhst3z,14,9,0|1lhst40,15,4,1|1lu1jrz,15,4,1|1lu1js0,14,9,0|1m0ivrz,14,9,0|1m0ivs0,15,4,1|1md4l3z,15,4,1|1md4l40,14,9,0|1mj8yfz,14,9,0|1mj8yg0,15,4,1|1mvunrz,15,4,1|1mvuns0,14,9,0|1n1z13z,14,9,0|1n1z140,15,4,1|1nekqfz,15,4,1|1nekqg0,14,9,0|1nkp3rz,14,9,0|1nkp3s0,15,4,1|1nxat3z,15,4,1|1nxat40,14,9,0|1o3f6fz,14,9,0|1o3f6g0,15,4,1|1og0vrz,15,4,1|1og0vs0,14,9,0|1omi7rz,14,9,0|1omi7s0,15,4,1|1oyqyfz,15,4,1|1oyqyg0,14,9,0|1p58afz,14,9,0|1p58ag0,15,4,1|1phtzrz,15,4,1|1phtzs0,14,9,0|1pnyd3z,14,9,0|1pnyd40,15,4,1|1q0k2fz,15,4,1|1q0k2g0,14,9,0|1q6ofrz,14,9,0|1q6ofs0,15,4,1|1qja53z,15,4,1|1qja540,14,9,0|1qpeifz,14,9,0|1qpeig0,15,4,1|1r207rz,15,4,1|1r207s0,14,9,0|1r84l3z,14,9,0|1r84l40,15,4,1|1rkqafz,15,4,1|1rkqag0,14,9,0|1rr7mfz,14,9,0|1rr7mg0,15,4,1|1s3tbrz,15,4,1|1s3tbs0,14,9,0|1s9xp3z,14,9,0|1s9xp40,15,4,1|1smjefz,15,4,1|1smjeg0,14,9,0|1ssnrrz,14,9,0|1ssnrs0,15,4,1|1t59h3z,15,4,1|1t59h40,14,9,0|1tbdufz,14,9,0|1tbdug0,15,4,1|1tnzjrz,15,4,1|1tnzjs0,14,9,0|1tu3x3z,14,9,0|1tu3x40,15,4,1|1u6pmfz,15,4,1|1u6pmg0,14,9,0|1ud6yfz,14,9,0|1ud6yg0,15,4,1|1upfp3z,15,4,1|1upfp40,14,9,0|1uvx13z,14,9,0|1uvx140,15,4,1|1v8iqfz,15,4,1|1v8iqg0,14,9,0|1ven3rz,14,9,0|1ven3s0,15,4,1|1vr8t3z,15,4,1|1vr8t40,14,9,0|NaN,14,9,0","Asia/Anadyr|,0,200,0|-nu1sv9,0,200,0|-nu1sv8,102,194,0|-kmrtc1,102,194,0|-kmrtc0,103,195,0|5vaejz,103,195,0|5vaek0,104,201,1|64p7rz,104,201,1|64p7s0,103,195,0|6e2bvz,103,195,0|6e2bw0,103,195,1|6nh7vz,103,195,1|6nh7w0,102,194,0|6wubzz,102,194,0|6wuc00,103,195,1|76957z,103,195,1|769580,102,194,0|7fo3zz,102,194,0|7fo400,103,195,1|7p1avz,103,195,1|7p1aw0,102,194,0|7yec7z,102,194,0|7yec80,103,195,1|87rdjz,103,195,1|87rdk0,102,194,0|8h4evz,102,194,0|8h4ew0,103,195,1|8qhg7z,103,195,1|8qhg80,102,194,0|8zuhjz,102,194,0|8zuhk0,103,195,1|997ivz,103,195,1|997iw0,102,194,0|9ikk7z,102,194,0|9ikk80,103,195,1|9rxljz,103,195,1|9rxlk0,102,194,0|a1amvz,102,194,0|a1amw0,103,195,1|aano7z,103,195,1|aano80,102,194,0|ak0pjz,102,194,0|ak0pk0,103,195,1|atqpjz,103,195,1|atqpk0,102,194,0|b33qvz,102,194,0|b33qw0,102,194,1|bcguzz,102,194,1|bcgv00,89,184,0|bi89nz,89,184,0|bi89o0,102,194,0|blttjz,102,194,0|blttk0,103,195,1|bv6uvz,103,195,1|bv6uw0,102,194,0|c4jw7z,102,194,0|c4jw80,103,195,1|cdwxjz,103,195,1|cdwxk0,102,194,0|cn9yvz,102,194,0|cn9yw0,103,195,1|cwn07z,103,195,1|cwn080,102,194,0|d601jz,102,194,0|d601k0,103,195,1|dfd2vz,103,195,1|dfd2w0,102,194,0|dp32vz,102,194,0|dp32w0,103,195,1|dzvyvz,103,195,1|dzvyw0,102,194,0|e7t5jz,102,194,0|e7t5k0,103,195,1|eim1jz,103,195,1|eim1k0,102,194,0|eqj87z,102,194,0|eqj880,103,195,1|f1c47z,103,195,1|f1c480,102,194,0|f99avz,102,194,0|f99aw0,103,195,1|fkf5jz,103,195,1|fkf5k0,102,194,0|frzdjz,102,194,0|frzdk0,103,195,1|g3587z,103,195,1|g35880,102,194,0|gapg7z,102,194,0|gapg80,103,195,1|glvavz,103,195,1|glvaw0,102,194,0|gtshjz,102,194,0|gtshk0,103,195,1|h4ldjz,103,195,1|h4ldk0,102,194,0|hcik7z,102,194,0|hcik80,103,195,1|hnbg7z,103,195,1|hnbg80,102,194,0|hv8mvz,102,194,0|hv8mw0,103,195,1|i6ehjz,103,195,1|i6ehk0,102,194,0|idypjz,102,194,0|idypk0,103,195,1|ip4k7z,103,195,1|ip4k80,102,194,0|iwos7z,102,194,0|iwos80,103,195,1|j7umvz,103,195,1|j7umw0,102,194,0|jfeuvz,102,194,0|jfeuw0,103,195,1|jqkpjz,103,195,1|jqkpk0,102,194,0|jyhw7z,102,194,0|jyhw80,103,195,1|k9as7z,103,195,1|k9as80,102,194,0|kh7yvz,102,194,0|kh7yw0,103,195,1|ks0uvz,103,195,1|ks0uw0,102,194,0|kzy1jz,102,194,0|kzy1k0,102,194,1|lb3yzz,102,194,1|lb3z00,89,184,0|lio6zz,89,184,0|lio700,102,194,0|NaN,102,194,0","Asia/Aqtau|,0,202,0|-nu15b5,0,202,0|-nu15b4,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|64pwrz,91,186,0|64pws0,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,105,203,0|d60nrz,105,203,0|d60ns0,91,186,1|dfdp3z,91,186,1|dfdp40,105,203,0|dp3p3z,105,203,0|dp3p40,91,186,1|dzwl3z,91,186,1|dzwl40,105,203,0|e7trrz,105,203,0|e7trs0,91,186,1|eimnrz,91,186,1|eimns0,105,203,0|eqjufz,105,203,0|eqjug0,91,186,1|f1cqfz,91,186,1|f1cqg0,105,203,0|f99x3z,105,203,0|f99x40,91,186,1|fkfrrz,91,186,1|fkfrs0,105,203,0|frzzrz,105,203,0|frzzs0,91,186,1|g35ufz,91,186,1|g35ug0,105,203,0|gaq2fz,105,203,0|gaq2g0,91,186,1|glvx3z,91,186,1|glvx40,105,203,0|gtt3rz,105,203,0|gtt3s0,91,186,1|h4lzrz,91,186,1|h4lzs0,105,203,0|hcj6fz,105,203,0|hcj6g0,91,186,1|hnc2fz,91,186,1|hnc2g0,105,203,0|hv993z,105,203,0|hv9940,91,186,1|i6f3rz,91,186,1|i6f3s0,91,186,0|NaN,91,186,0","Asia/Aqtobe|,0,204,0|-nu16l5,0,204,0|-nu16l4,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,91,186,0|d60kzz,91,186,0|d60l00,96,190,1|dfdmbz,96,190,1|dfdmc0,91,186,0|dp3mbz,91,186,0|dp3mc0,96,190,1|dzwibz,96,190,1|dzwic0,91,186,0|e7tozz,91,186,0|e7tp00,96,190,1|eimkzz,96,190,1|eiml00,91,186,0|eqjrnz,91,186,0|eqjro0,96,190,1|f1cnnz,96,190,1|f1cno0,91,186,0|f99ubz,91,186,0|f99uc0,96,190,1|fkfozz,96,190,1|fkfp00,91,186,0|frzwzz,91,186,0|frzx00,96,190,1|g35rnz,96,190,1|g35ro0,91,186,0|gapznz,91,186,0|gapzo0,96,190,1|glvubz,96,190,1|glvuc0,91,186,0|gtt0zz,91,186,0|gtt100,96,190,1|h4lwzz,96,190,1|h4lx00,91,186,0|hcj3nz,91,186,0|hcj3o0,96,190,1|hnbznz,96,190,1|hnbzo0,91,186,0|hv96bz,91,186,0|hv96c0,96,190,1|i6f0zz,96,190,1|i6f100,91,186,0|NaN,91,186,0","Asia/Ashgabat|,0,205,0|-nu16t9,0,205,0|-nu16t8,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,91,186,0|6e2y3z,91,186,0|6e2y40,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|NaN,91,186,0","Asia/Atyrau|,0,206,0|-nu15m9,0,206,0|-nu15m8,100,4,0|-kmr4c1,100,4,0|-kmr4c0,91,186,0|64pwrz,91,186,0|64pws0,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,91,186,0|d60kzz,91,186,0|d60l00,96,190,1|dfdmbz,96,190,1|dfdmc0,91,186,0|dp3mbz,91,186,0|dp3mc0,96,190,1|dzwibz,96,190,1|dzwic0,91,186,0|e7tozz,91,186,0|e7tp00,96,190,1|eimkzz,96,190,1|eiml00,91,186,0|eqjrnz,91,186,0|eqjro0,96,190,1|f1cnnz,96,190,1|f1cno0,91,186,0|f99ubz,91,186,0|f99uc0,91,186,1|fkfrrz,91,186,1|fkfrs0,105,203,0|frzzrz,105,203,0|frzzs0,91,186,1|g35ufz,91,186,1|g35ug0,105,203,0|gaq2fz,105,203,0|gaq2g0,91,186,1|glvx3z,91,186,1|glvx40,105,203,0|gtt3rz,105,203,0|gtt3s0,91,186,1|h4lzrz,91,186,1|h4lzs0,105,203,0|hcj6fz,105,203,0|hcj6g0,91,186,1|hnc2fz,91,186,1|hnc2g0,105,203,0|hv993z,105,203,0|hv9940,91,186,1|i6f3rz,91,186,1|i6f3s0,91,186,0|NaN,91,186,0","Asia/Baghdad|,0,207,0|-15r1hk5,0,207,0|-15r1hk4,54,208,0|-r50g81,54,208,0|-r50g80,100,4,0|6fmnnz,100,4,0|6fmno0,105,203,1|6nhwvz,105,203,1|6nhww0,100,4,0|6wt6bz,100,4,0|6wt6c0,105,203,1|769u7z,105,203,1|769u80,100,4,0|7foszz,100,4,0|7fot00,105,203,1|7p3m7z,105,203,1|7p3m80,100,4,0|7ygqbz,100,4,0|7ygqc0,105,203,1|87rzrz,105,203,1|87rzs0,100,4,0|8h513z,100,4,0|8h5140,105,203,1|8qi2fz,105,203,1|8qi2g0,100,4,0|8zv3rz,100,4,0|8zv3s0,105,203,1|99853z,105,203,1|998540,100,4,0|9il6fz,100,4,0|9il6g0,105,203,1|9ry7rz,105,203,1|9ry7s0,100,4,0|a1b93z,100,4,0|a1b940,105,203,1|aaoafz,105,203,1|aaoag0,100,4,0|ak1brz,100,4,0|ak1bs0,105,203,1|atrbrz,105,203,1|atrbs0,100,4,0|b36dbz,100,4,0|b36dc0,105,203,1|bcl9bz,105,203,1|bcl9c0,100,4,0|bm05bz,100,4,0|bm05c0,105,203,1|bvf1bz,105,203,1|bvf1c0,100,4,0|c4s2nz,100,4,0|c4s2o0,105,203,1|ce6ynz,105,203,1|ce6yo0,100,4,0|cnjzzz,100,4,0|cnk000,105,203,1|cwyvzz,105,203,1|cwyw00,100,4,0|d6bxbz,100,4,0|d6bxc0,105,203,1|dfqtbz,105,203,1|dfqtc0,100,4,0|dp5pbz,100,4,0|dp5pc0,105,203,1|dyklbz,105,203,1|dyklc0,100,4,0|e7xmnz,100,4,0|e7xmo0,105,203,1|ehcinz,105,203,1|ehcio0,100,4,0|eqpjzz,100,4,0|eqpk00,105,203,1|f04fzz,105,203,1|f04g00,100,4,0|f9hhbz,100,4,0|f9hhc0,105,203,1|fiwdbz,105,203,1|fiwdc0,100,4,0|fsb9bz,100,4,0|fsb9c0,105,203,1|g1q5bz,105,203,1|g1q5c0,100,4,0|gb36nz,100,4,0|gb36o0,105,203,1|gki2nz,105,203,1|gki2o0,100,4,0|gtv3zz,100,4,0|gtv400,105,203,1|h39zzz,105,203,1|h3a000,100,4,0|hcn1bz,100,4,0|hcn1c0,105,203,1|hm1xbz,105,203,1|hm1xc0,100,4,0|hvgtbz,100,4,0|hvgtc0,105,203,1|i4vpbz,105,203,1|i4vpc0,100,4,0|ie8qnz,100,4,0|ie8qo0,105,203,1|innmnz,105,203,1|innmo0,100,4,0|ix0nzz,100,4,0|ix0o00,105,203,1|j6fjzz,105,203,1|j6fk00,100,4,0|jfslbz,100,4,0|jfslc0,105,203,1|jp7hbz,105,203,1|jp7hc0,100,4,0|NaN,100,4,0","Asia/Bahrain|,0,209,0|-q3gmvl,0,209,0|-q3gmvk,105,203,0|19d0vz,105,203,0|19d0w0,100,4,0|NaN,100,4,0","Asia/Baku|,0,210,0|-nu158d,0,210,0|-nu158c,100,4,0|-6p7kc1,100,4,0|-6p7kc0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,91,186,1|aaoafz,91,186,1|aaoag0,105,203,0|ak1brz,105,203,0|ak1bs0,91,186,1|atrbrz,91,186,1|atrbs0,105,203,0|b34d3z,105,203,0|b34d40,105,203,1|bchh7z,105,203,1|bchh80,100,4,0|bluijz,100,4,0|bluik0,105,203,1|bv7jvz,105,203,1|bv7jw0,105,203,0|dp3xfz,105,203,0|dp3xg0,91,186,1|dzwtfz,91,186,1|dzwtg0,105,203,0|e7txbz,105,203,0|e7txc0,91,186,1|eimtbz,91,186,1|eimtc0,105,203,0|eqjzzz,105,203,0|eqk000,91,186,1|f1cvzz,91,186,1|f1cw00,105,203,0|f9a2nz,105,203,0|f9a2o0,91,186,1|fkfxbz,91,186,1|fkfxc0,105,203,0|fs05bz,105,203,0|fs05c0,91,186,1|g35zzz,91,186,1|g36000,105,203,0|gaq7zz,105,203,0|gaq800,91,186,1|glw2nz,91,186,1|glw2o0,105,203,0|gtt9bz,105,203,0|gtt9c0,91,186,1|h4m5bz,91,186,1|h4m5c0,105,203,0|hcjbzz,105,203,0|hcjc00,91,186,1|hnc7zz,91,186,1|hnc800,105,203,0|hv9enz,105,203,0|hv9eo0,91,186,1|i6f9bz,91,186,1|i6f9c0,105,203,0|idzhbz,105,203,0|idzhc0,91,186,1|ip5bzz,91,186,1|ip5c00,105,203,0|iwpjzz,105,203,0|iwpk00,91,186,1|j7venz,91,186,1|j7veo0,105,203,0|jffmnz,105,203,0|jffmo0,91,186,1|jqlhbz,91,186,1|jqlhc0,105,203,0|jyinzz,105,203,0|jyio00,91,186,1|k9bjzz,91,186,1|k9bk00,105,203,0|kh8qnz,105,203,0|kh8qo0,91,186,1|ks1mnz,91,186,1|ks1mo0,105,203,0|kzytbz,105,203,0|kzytc0,91,186,1|lb4nzz,91,186,1|lb4o00,105,203,0|liovzz,105,203,0|liow00,91,186,1|ltuqnz,91,186,1|ltuqo0,105,203,0|m1eynz,105,203,0|m1eyo0,91,186,1|mcktbz,91,186,1|mcktc0,105,203,0|mkhzzz,105,203,0|mki000,91,186,1|mvavzz,91,186,1|mvaw00,105,203,0|n382nz,105,203,0|n382o0,91,186,1|ne0ynz,91,186,1|ne0yo0,105,203,0|nly5bz,105,203,0|nly5c0,91,186,1|nwr1bz,91,186,1|nwr1c0,105,203,0|NaN,105,203,0","Asia/Bangkok|,0,211,0|-1ayyla5,0,211,0|-1ayyla4,54,211,0|-pysda5,54,211,0|-pysda4,90,185,0|NaN,90,185,0","Asia/Barnaul|,0,212,0|-q4ljid,0,212,0|-q4ljic,96,190,0|-kmrco1,96,190,0|-kmrco0,90,185,0|5vav7z,90,185,0|5vav80,88,183,1|64pofz,88,183,1|64pog0,90,185,0|6e2sjz,90,185,0|6e2sk0,88,183,1|6nhlrz,88,183,1|6nhls0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1orz,88,183,1|7p1os0,90,185,0|7yeq3z,90,185,0|7yeq40,88,183,1|87rrfz,88,183,1|87rrg0,90,185,0|8h4srz,90,185,0|8h4ss0,88,183,1|8qhu3z,88,183,1|8qhu40,90,185,0|8zuvfz,90,185,0|8zuvg0,88,183,1|997wrz,88,183,1|997ws0,90,185,0|9iky3z,90,185,0|9iky40,88,183,1|9rxzfz,88,183,1|9rxzg0,90,185,0|a1b0rz,90,185,0|a1b0s0,88,183,1|aao23z,88,183,1|aao240,90,185,0|ak13fz,90,185,0|ak13g0,88,183,1|atr3fz,88,183,1|atr3g0,90,185,0|b344rz,90,185,0|b344s0,90,185,1|bch8vz,90,185,1|bch8w0,96,190,0|bi8njz,96,190,0|bi8nk0,90,185,0|blu7fz,90,185,0|blu7g0,88,183,1|bv78rz,88,183,1|bv78s0,90,185,0|c4ka3z,90,185,0|c4ka40,88,183,1|cdxbfz,88,183,1|cdxbg0,90,185,0|cnacrz,90,185,0|cnacs0,88,183,1|cwne3z,88,183,1|cwne40,90,185,0|d60ffz,90,185,0|d60fg0,88,183,1|d98v3z,88,183,1|d98v40,90,185,1|dfdjjz,90,185,1|dfdjk0,96,190,0|dp3jjz,96,190,0|dp3jk0,90,185,1|dzwfjz,90,185,1|dzwfk0,96,190,0|e7tm7z,96,190,0|e7tm80,90,185,1|eimi7z,90,185,1|eimi80,96,190,0|eqjovz,96,190,0|eqjow0,90,185,1|f1ckvz,90,185,1|f1ckw0,96,190,0|f99rjz,96,190,0|f99rk0,90,185,1|fkfm7z,90,185,1|fkfm80,96,190,0|frzu7z,96,190,0|frzu80,90,185,1|g35ovz,90,185,1|g35ow0,96,190,0|gapwvz,96,190,0|gapww0,90,185,1|glvrjz,90,185,1|glvrk0,96,190,0|gtsy7z,96,190,0|gtsy80,90,185,1|h4lu7z,90,185,1|h4lu80,96,190,0|hcj0vz,96,190,0|hcj0w0,90,185,1|hnbwvz,90,185,1|hnbww0,96,190,0|hv93jz,96,190,0|hv93k0,90,185,1|i6ey7z,90,185,1|i6ey80,96,190,0|idz67z,96,190,0|idz680,90,185,1|ip50vz,90,185,1|ip50w0,96,190,0|iwp8vz,96,190,0|iwp8w0,90,185,1|j7v3jz,90,185,1|j7v3k0,96,190,0|jffbjz,96,190,0|jffbk0,90,185,1|jql67z,90,185,1|jql680,96,190,0|jyicvz,96,190,0|jyicw0,90,185,1|k9b8vz,90,185,1|k9b8w0,96,190,0|kh8fjz,96,190,0|kh8fk0,90,185,1|ks1bjz,90,185,1|ks1bk0,96,190,0|kzyi7z,96,190,0|kzyi80,90,185,1|lb4cvz,90,185,1|lb4cw0,96,190,0|liokvz,96,190,0|liokw0,90,185,0|ne0krz,90,185,0|ne0ks0,96,190,0|o4nwvz,96,190,0|o4nww0,90,185,0|NaN,90,185,0","Asia/Beirut|,0,213,0|-1ayy98p,0,213,0|-1ayy98o,14,9,0|-pyzew1,14,9,0|-pyzew0,15,4,1|-po4r01,15,4,1|-po4r00,14,9,0|-pfwdk1,14,9,0|-pfwdk0,15,4,1|-p6hkc1,15,4,1|-p6hkc0,14,9,0|-oxj9k1,14,9,0|-oxj9k0,15,4,1|-ongdo1,15,4,1|-ongdo0,14,9,0|-oddc81,14,9,0|-oddc80,15,4,1|-o5t701,15,4,1|-o5t700,14,9,0|-6m2iw1,14,9,0|-6m2iw0,15,4,1|-6e79o1,15,4,1|-6e79o0,14,9,0|-63alk1,14,9,0|-63alk0,15,4,1|-5vfcc1,15,4,1|-5vfcc0,14,9,0|-5kio81,14,9,0|-5kio80,15,4,1|-5cnf01,15,4,1|-5cnf00,14,9,0|-51ow81,14,9,0|-51ow80,15,4,1|-4ttn01,15,4,1|-4ttn00,14,9,0|-4iwyw1,14,9,0|-4iwyw0,15,4,1|-4b1po1,15,4,1|-4b1po0,14,9,0|1ag2fz,14,9,0|1ag2g0,15,4,1|1fn0zz,15,4,1|1fn100,14,9,0|1qjp3z,14,9,0|1qjp40,15,4,1|1yeybz,15,4,1|1yeyc0,14,9,0|29bmfz,14,9,0|29bmg0,15,4,1|2h6vnz,15,4,1|2h6vo0,14,9,0|2s3jrz,14,9,0|2s3js0,15,4,1|2zyszz,15,4,1|2zyt00,14,9,0|3axbrz,14,9,0|3axbs0,15,4,1|3iskzz,15,4,1|3isl00,14,9,0|3tp93z,14,9,0|3tp940,15,4,1|41kibz,15,4,1|41kic0,14,9,0|4cfbrz,14,9,0|4cfbs0,15,4,1|4kakzz,15,4,1|4kal00,14,9,0|7h8frz,14,9,0|7h8fs0,15,4,1|7pvgzz,15,4,1|7pvh00,14,9,0|800d3z,14,9,0|800d40,15,4,1|88nebz,15,4,1|88nec0,14,9,0|8isafz,14,9,0|8isag0,15,4,1|8rfbnz,15,4,1|8rfbo0,14,9,0|91k7rz,14,9,0|91k7s0,15,4,1|9a78zz,15,4,1|9a7900,14,9,0|9lzefz,14,9,0|9lzeg0,15,4,1|9t10zz,15,4,1|9t1100,14,9,0|a3ml3z,14,9,0|a3ml40,15,4,1|absybz,15,4,1|absyc0,14,9,0|alxufz,14,9,0|alxug0,15,4,1|aukvnz,15,4,1|aukvo0,14,9,0|b4prrz,14,9,0|b4prs0,15,4,1|bdcszz,15,4,1|bdct00,14,9,0|bnjjrz,14,9,0|bnjjs0,15,4,1|bvkczz,15,4,1|bvkd00,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dygnnz,15,4,1|dygno0,14,9,0|e7trrz,14,9,0|e7trs0,15,4,1|eh6qbz,15,4,1|eh6qc0,14,9,0|eqjufz,14,9,0|eqjug0,15,4,1|ezwszz,15,4,1|ezwt00,14,9,0|f99x3z,14,9,0|f99x40,15,4,1|fkfozz,15,4,1|fkfp00,14,9,0|frzzrz,14,9,0|frzzs0,15,4,1|g35rnz,15,4,1|g35ro0,14,9,0|gaq2fz,14,9,0|gaq2g0,15,4,1|glvubz,15,4,1|glvuc0,14,9,0|gtt3rz,14,9,0|gtt3s0,15,4,1|h4lwzz,15,4,1|h4lx00,14,9,0|hcj6fz,14,9,0|hcj6g0,15,4,1|hnbznz,15,4,1|hnbzo0,14,9,0|hv993z,14,9,0|hv9940,15,4,1|i6f0zz,15,4,1|i6f100,14,9,0|idzbrz,14,9,0|idzbs0,15,4,1|ip53nz,15,4,1|ip53o0,14,9,0|iwpefz,14,9,0|iwpeg0,15,4,1|j7v6bz,15,4,1|j7v6c0,14,9,0|jffh3z,14,9,0|jffh40,15,4,1|jql8zz,15,4,1|jql900,14,9,0|jyiifz,14,9,0|jyiig0,15,4,1|k9bbnz,15,4,1|k9bbo0,14,9,0|kh8l3z,14,9,0|kh8l40,15,4,1|ks1ebz,15,4,1|ks1ec0,14,9,0|kzynrz,14,9,0|kzyns0,15,4,1|lb4fnz,15,4,1|lb4fo0,14,9,0|lioqfz,14,9,0|lioqg0,15,4,1|ltuibz,15,4,1|ltuic0,14,9,0|m1et3z,14,9,0|m1et40,15,4,1|mckkzz,15,4,1|mckl00,14,9,0|mkhufz,14,9,0|mkhug0,15,4,1|mvannz,15,4,1|mvano0,14,9,0|n37x3z,14,9,0|n37x40,15,4,1|ne0qbz,15,4,1|ne0qc0,14,9,0|nlxzrz,14,9,0|nlxzs0,15,4,1|nwqszz,15,4,1|nwqt00,14,9,0|o4o2fz,14,9,0|o4o2g0,15,4,1|oftubz,15,4,1|oftuc0,14,9,0|one53z,14,9,0|one540,15,4,1|oyjwzz,15,4,1|oyjx00,14,9,0|p647rz,14,9,0|p647s0,15,4,1|ph9znz,15,4,1|ph9zo0,14,9,0|pp793z,14,9,0|pp7940,15,4,1|q002bz,15,4,1|q002c0,14,9,0|q7xbrz,14,9,0|q7xbs0,15,4,1|qiq4zz,15,4,1|qiq500,14,9,0|qqnefz,14,9,0|qqneg0,15,4,1|r1t6bz,15,4,1|r1t6c0,14,9,0|r9dh3z,14,9,0|r9dh40,15,4,1|rkj8zz,15,4,1|rkj900,14,9,0|rs3jrz,14,9,0|rs3js0,15,4,1|s39bnz,15,4,1|s39bo0,14,9,0|sb6l3z,14,9,0|sb6l40,15,4,1|slzebz,15,4,1|slzec0,14,9,0|stwnrz,14,9,0|stwns0,15,4,1|t4pgzz,15,4,1|t4ph00,14,9,0|tcmqfz,14,9,0|tcmqg0,15,4,1|tnfjnz,15,4,1|tnfjo0,14,9,0|tvct3z,14,9,0|tvct40,15,4,1|u6ikzz,15,4,1|u6il00,14,9,0|ue2vrz,14,9,0|ue2vs0,15,4,1|up8nnz,15,4,1|up8no0,14,9,0|uwsyfz,14,9,0|uwsyg0,15,4,1|v7yqbz,15,4,1|v7yqc0,14,9,0|vfvzrz,14,9,0|vfvzs0,15,4,1|vqoszz,15,4,1|vqot00,14,9,0|vym2fz,14,9,0|vym2g0,15,4,1|w9evnz,15,4,1|w9evo0,14,9,0|whc53z,14,9,0|whc540,15,4,1|wshwzz,15,4,1|wshx00,14,9,0|x027rz,14,9,0|x027s0,15,4,1|xb7znz,15,4,1|xb7zo0,14,9,0|xisafz,14,9,0|xisag0,15,4,1|xty2bz,15,4,1|xty2c0,14,9,0|y1id3z,14,9,0|y1id40,15,4,1|yco4zz,15,4,1|yco500,14,9,0|yklefz,14,9,0|ykleg0,15,4,1|yve7nz,15,4,1|yve7o0,14,9,0|z3bh3z,14,9,0|z3bh40,15,4,1|ze4abz,15,4,1|ze4ac0,14,9,0|zm1jrz,14,9,0|zm1js0,15,4,1|zx7bnz,15,4,1|zx7bo0,14,9,0|104rmfz,14,9,0|104rmg0,15,4,1|10fxebz,15,4,1|10fxec0,14,9,0|10nhp3z,14,9,0|10nhp40,15,4,1|10yngzz,15,4,1|10ynh00,14,9,0|116kqfz,14,9,0|116kqg0,15,4,1|11hdjnz,15,4,1|11hdjo0,14,9,0|11pat3z,14,9,0|11pat40,15,4,1|1203mbz,15,4,1|1203mc0,14,9,0|1280vrz,14,9,0|1280vs0,15,4,1|12itozz,15,4,1|12itp00,14,9,0|12qqyfz,14,9,0|12qqyg0,15,4,1|131wqbz,15,4,1|131wqc0,14,9,0|139h13z,14,9,0|139h140,15,4,1|13kmszz,15,4,1|13kmt00,14,9,0|13s73rz,14,9,0|13s73s0,15,4,1|143cvnz,15,4,1|143cvo0,14,9,0|14ba53z,14,9,0|14ba540,15,4,1|14m2ybz,15,4,1|14m2yc0,14,9,0|14u07rz,14,9,0|14u07s0,15,4,1|154t0zz,15,4,1|154t100,14,9,0|15cqafz,14,9,0|15cqag0,15,4,1|15nw2bz,15,4,1|15nw2c0,14,9,0|15vgd3z,14,9,0|15vgd40,15,4,1|166m4zz,15,4,1|166m500,14,9,0|16e6frz,14,9,0|16e6fs0,15,4,1|16pc7nz,15,4,1|16pc7o0,14,9,0|16x9h3z,14,9,0|16x9h40,15,4,1|1782abz,15,4,1|1782ac0,14,9,0|17fzjrz,14,9,0|17fzjs0,15,4,1|17qsczz,15,4,1|17qsd00,14,9,0|17ypmfz,14,9,0|17ypmg0,15,4,1|189ifnz,15,4,1|189ifo0,14,9,0|18hfp3z,14,9,0|18hfp40,15,4,1|18slgzz,15,4,1|18slh00,14,9,0|1905rrz,14,9,0|1905rs0,15,4,1|19bbjnz,15,4,1|19bbjo0,14,9,0|19ivufz,14,9,0|19ivug0,15,4,1|19u1mbz,15,4,1|19u1mc0,14,9,0|1a1yvrz,14,9,0|1a1yvs0,15,4,1|1acrozz,15,4,1|1acrp00,14,9,0|1akoyfz,14,9,0|1akoyg0,15,4,1|1avhrnz,15,4,1|1avhro0,14,9,0|1b3f13z,14,9,0|1b3f140,15,4,1|1bekszz,15,4,1|1bekt00,14,9,0|1bm53rz,14,9,0|1bm53s0,15,4,1|1bxavnz,15,4,1|1bxavo0,14,9,0|1c4v6fz,14,9,0|1c4v6g0,15,4,1|1cg0ybz,15,4,1|1cg0yc0,14,9,0|1cnl93z,14,9,0|1cnl940,15,4,1|1cyr0zz,15,4,1|1cyr100,14,9,0|1d6oafz,14,9,0|1d6oag0,15,4,1|1dhh3nz,15,4,1|1dhh3o0,14,9,0|1dped3z,14,9,0|1dped40,15,4,1|1e076bz,15,4,1|1e076c0,14,9,0|1e84frz,14,9,0|1e84fs0,15,4,1|1eja7nz,15,4,1|1eja7o0,14,9,0|1equifz,14,9,0|1equig0,15,4,1|1f20abz,15,4,1|1f20ac0,14,9,0|1f9kl3z,14,9,0|1f9kl40,15,4,1|1fkqczz,15,4,1|1fkqd00,14,9,0|1fsnmfz,14,9,0|1fsnmg0,15,4,1|1g3gfnz,15,4,1|1g3gfo0,14,9,0|1gbdp3z,14,9,0|1gbdp40,15,4,1|1gm6ibz,15,4,1|1gm6ic0,14,9,0|1gu3rrz,14,9,0|1gu3rs0,15,4,1|1h4wkzz,15,4,1|1h4wl00,14,9,0|1hctufz,14,9,0|1hctug0,15,4,1|1hnzmbz,15,4,1|1hnzmc0,14,9,0|1hvjx3z,14,9,0|1hvjx40,15,4,1|1i6pozz,15,4,1|1i6pp00,14,9,0|1ie9zrz,14,9,0|1ie9zs0,15,4,1|1ipfrnz,15,4,1|1ipfro0,14,9,0|1ixd13z,14,9,0|1ixd140,15,4,1|1j85ubz,15,4,1|1j85uc0,14,9,0|1jg33rz,14,9,0|1jg33s0,15,4,1|1jqvwzz,15,4,1|1jqvx00,14,9,0|1jyt6fz,14,9,0|1jyt6g0,15,4,1|1k9yybz,15,4,1|1k9yyc0,14,9,0|1khj93z,14,9,0|1khj940,15,4,1|1ksp0zz,15,4,1|1ksp100,14,9,0|1l09brz,14,9,0|1l09bs0,15,4,1|1lbf3nz,15,4,1|1lbf3o0,14,9,0|1ljcd3z,14,9,0|1ljcd40,15,4,1|1lu56bz,15,4,1|1lu56c0,14,9,0|1m22frz,14,9,0|1m22fs0,15,4,1|1mcv8zz,15,4,1|1mcv900,14,9,0|1mksifz,14,9,0|1mksig0,15,4,1|1mvlbnz,15,4,1|1mvlbo0,14,9,0|1n3il3z,14,9,0|1n3il40,15,4,1|1neoczz,15,4,1|1neod00,14,9,0|1nm8nrz,14,9,0|1nm8ns0,15,4,1|1nxefnz,15,4,1|1nxefo0,14,9,0|1o4yqfz,14,9,0|1o4yqg0,15,4,1|1og4ibz,15,4,1|1og4ic0,14,9,0|1oo1rrz,14,9,0|1oo1rs0,15,4,1|1oyukzz,15,4,1|1oyul00,14,9,0|1p6rufz,14,9,0|1p6rug0,15,4,1|1phknnz,15,4,1|1phkno0,14,9,0|1pphx3z,14,9,0|1pphx40,15,4,1|1q0nozz,15,4,1|1q0np00,14,9,0|1q87zrz,14,9,0|1q87zs0,15,4,1|1qjdrnz,15,4,1|1qjdro0,14,9,0|1qqy2fz,14,9,0|1qqy2g0,15,4,1|1r23ubz,15,4,1|1r23uc0,14,9,0|1r9o53z,14,9,0|1r9o540,15,4,1|1rktwzz,15,4,1|1rktx00,14,9,0|1rsr6fz,14,9,0|1rsr6g0,15,4,1|1s3jznz,15,4,1|1s3jzo0,14,9,0|1sbh93z,14,9,0|1sbh940,15,4,1|1sma2bz,15,4,1|1sma2c0,14,9,0|1su7brz,14,9,0|1su7bs0,15,4,1|1t5d3nz,15,4,1|1t5d3o0,14,9,0|1tcxefz,14,9,0|1tcxeg0,15,4,1|1to36bz,15,4,1|1to36c0,14,9,0|1tvnh3z,14,9,0|1tvnh40,15,4,1|1u6t8zz,15,4,1|1u6t900,14,9,0|1ueqifz,14,9,0|1ueqig0,15,4,1|1upjbnz,15,4,1|1upjbo0,14,9,0|1uxgl3z,14,9,0|1uxgl40,15,4,1|1v89ebz,15,4,1|1v89ec0,14,9,0|1vg6nrz,14,9,0|1vg6ns0,15,4,1|1vqzgzz,15,4,1|1vqzh00,14,9,0|NaN,14,9,0","Asia/Bishkek|,0,214,0|-nu19td,0,214,0|-nu19tc,91,186,0|-kmr9w1,91,186,0|-kmr9w0,96,190,0|5vaxzz,96,190,0|5vay00,90,185,1|64pr7z,90,185,1|64pr80,96,190,0|6e2vbz,96,190,0|6e2vc0,90,185,1|6nhojz,90,185,1|6nhok0,96,190,0|6wusnz,96,190,0|6wuso0,90,185,1|769lvz,90,185,1|769lw0,96,190,0|7foknz,96,190,0|7foko0,90,185,1|7p1rjz,90,185,1|7p1rk0,96,190,0|7yesvz,96,190,0|7yesw0,90,185,1|87ru7z,90,185,1|87ru80,96,190,0|8h4vjz,96,190,0|8h4vk0,90,185,1|8qhwvz,90,185,1|8qhww0,96,190,0|8zuy7z,96,190,0|8zuy80,90,185,1|997zjz,90,185,1|997zk0,96,190,0|9il0vz,96,190,0|9il0w0,90,185,1|9ry27z,90,185,1|9ry280,96,190,0|a1b3jz,96,190,0|a1b3k0,90,185,1|aao4vz,90,185,1|aao4w0,96,190,0|ak167z,96,190,0|ak1680,90,185,1|atr67z,90,185,1|atr680,96,190,0|b347jz,96,190,0|b347k0,96,190,1|bazjjz,96,190,1|bazjk0,91,186,0|bmk4rz,91,186,0|bmk4s0,96,190,1|bv75zz,96,190,1|bv7600,91,186,0|c5a7fz,91,186,0|c5a7g0,96,190,1|cdx8nz,96,190,1|cdx8o0,91,186,0|co0a3z,91,186,0|co0a40,96,190,1|cwnbbz,96,190,1|cwnbc0,91,186,0|d6qcrz,91,186,0|d6qcs0,96,190,1|dfddzz,96,190,1|dfde00,91,186,0|dpgffz,91,186,0|dpgfg0,96,190,1|dygfbz,96,190,1|dygfc0,91,186,0|e7tqdz,91,186,0|e7tqe0,96,190,1|eimjlz,96,190,1|eimjm0,91,186,0|eqjt1z,91,186,0|eqjt20,96,190,1|f1cm9z,96,190,1|f1cma0,91,186,0|f99vpz,91,186,0|f99vq0,96,190,1|fkfnlz,96,190,1|fkfnm0,91,186,0|frzydz,91,186,0|frzye0,96,190,1|g35q9z,96,190,1|g35qa0,91,186,0|gaq11z,91,186,0|gaq120,96,190,1|glvsxz,96,190,1|glvsy0,91,186,0|gtt2dz,91,186,0|gtt2e0,96,190,1|h4lvlz,96,190,1|h4lvm0,91,186,0|hcj51z,91,186,0|hcj520,96,190,1|hnby9z,96,190,1|hnbya0,91,186,0|hv97pz,91,186,0|hv97q0,96,190,1|i6ezlz,96,190,1|i6ezm0,91,186,0|idzadz,91,186,0|idzae0,96,190,1|il2knz,96,190,1|il2ko0,96,190,0|NaN,96,190,0","Asia/Brunei|,0,215,0|-mvofy5,0,215,0|-mvofy4,106,216,0|-jb6i61,106,216,0|-jb6i60,88,183,0|NaN,88,183,0","Asia/Chita|,0,217,0|-q4cfoh,0,217,0|-q4cfog,88,183,0|-kmri81,88,183,0|-kmri80,107,218,0|5vapnz,107,218,0|5vapo0,93,189,1|64pivz,93,189,1|64piw0,107,218,0|6e2mzz,107,218,0|6e2n00,93,189,1|6nhg7z,93,189,1|6nhg80,107,218,0|6wukbz,107,218,0|6wukc0,93,189,1|769djz,93,189,1|769dk0,107,218,0|7focbz,107,218,0|7focc0,93,189,1|7p1j7z,93,189,1|7p1j80,107,218,0|7yekjz,107,218,0|7yekk0,93,189,1|87rlvz,93,189,1|87rlw0,107,218,0|8h4n7z,107,218,0|8h4n80,93,189,1|8qhojz,93,189,1|8qhok0,107,218,0|8zupvz,107,218,0|8zupw0,93,189,1|997r7z,93,189,1|997r80,107,218,0|9iksjz,107,218,0|9iksk0,93,189,1|9rxtvz,93,189,1|9rxtw0,107,218,0|a1av7z,107,218,0|a1av80,93,189,1|aanwjz,93,189,1|aanwk0,107,218,0|ak0xvz,107,218,0|ak0xw0,93,189,1|atqxvz,93,189,1|atqxw0,107,218,0|b33z7z,107,218,0|b33z80,107,218,1|bch3bz,107,218,1|bch3c0,88,183,0|bi8hzz,88,183,0|bi8i00,107,218,0|blu1vz,107,218,0|blu1w0,93,189,1|bv737z,93,189,1|bv7380,107,218,0|c4k4jz,107,218,0|c4k4k0,93,189,1|cdx5vz,93,189,1|cdx5w0,107,218,0|cna77z,107,218,0|cna780,93,189,1|cwn8jz,93,189,1|cwn8k0,107,218,0|d609vz,107,218,0|d609w0,93,189,1|dfdb7z,93,189,1|dfdb80,107,218,0|dp3b7z,107,218,0|dp3b80,93,189,1|dzw77z,93,189,1|dzw780,107,218,0|e7tdvz,107,218,0|e7tdw0,93,189,1|eim9vz,93,189,1|eim9w0,107,218,0|eqjgjz,107,218,0|eqjgk0,93,189,1|f1ccjz,93,189,1|f1cck0,107,218,0|f99j7z,107,218,0|f99j80,93,189,1|fkfdvz,93,189,1|fkfdw0,107,218,0|frzlvz,107,218,0|frzlw0,93,189,1|g35gjz,93,189,1|g35gk0,107,218,0|gapojz,107,218,0|gapok0,93,189,1|glvj7z,93,189,1|glvj80,107,218,0|gtspvz,107,218,0|gtspw0,93,189,1|h4llvz,93,189,1|h4llw0,107,218,0|hcisjz,107,218,0|hcisk0,93,189,1|hnbojz,93,189,1|hnbok0,107,218,0|hv8v7z,107,218,0|hv8v80,93,189,1|i6epvz,93,189,1|i6epw0,107,218,0|idyxvz,107,218,0|idyxw0,93,189,1|ip4sjz,93,189,1|ip4sk0,107,218,0|iwp0jz,107,218,0|iwp0k0,93,189,1|j7uv7z,93,189,1|j7uv80,107,218,0|jff37z,107,218,0|jff380,93,189,1|jqkxvz,93,189,1|jqkxw0,107,218,0|jyi4jz,107,218,0|jyi4k0,93,189,1|k9b0jz,93,189,1|k9b0k0,107,218,0|kh877z,107,218,0|kh8780,93,189,1|ks137z,93,189,1|ks1380,107,218,0|kzy9vz,107,218,0|kzy9w0,93,189,1|lb44jz,93,189,1|lb44k0,107,218,0|liocjz,107,218,0|liock0,93,189,0|ne0cfz,93,189,0|ne0cg0,88,183,0|o4nrbz,88,183,0|o4nrc0,107,218,0|NaN,107,218,0","Asia/Choibalsan|,0,219,0|-xmct7d,0,219,0|-xmct7c,90,185,0|46akjz,90,185,0|46akk0,88,183,0|6wun3z,88,183,0|6wun40,93,189,1|769djz,93,189,1|769dk0,107,218,0|7focbz,107,218,0|7focc0,93,189,1|7p1avz,93,189,1|7p1aw0,107,218,0|7yeezz,107,218,0|7yef00,93,189,1|87rdjz,93,189,1|87rdk0,107,218,0|8h4hnz,107,218,0|8h4ho0,93,189,1|8qhg7z,93,189,1|8qhg80,107,218,0|8zukbz,107,218,0|8zukc0,93,189,1|997ivz,93,189,1|997iw0,107,218,0|9ikmzz,107,218,0|9ikn00,93,189,1|9rxljz,93,189,1|9rxlk0,107,218,0|a1apnz,107,218,0|a1apo0,93,189,1|aano7z,93,189,1|aano80,107,218,0|ak0sbz,107,218,0|ak0sc0,93,189,1|atqpjz,93,189,1|atqpk0,107,218,0|b33tnz,107,218,0|b33to0,93,189,1|bcgs7z,93,189,1|bcgs80,107,218,0|bltwbz,107,218,0|bltwc0,93,189,1|bv6uvz,93,189,1|bv6uw0,107,218,0|c4jyzz,107,218,0|c4jz00,93,189,1|cdwxjz,93,189,1|cdwxk0,107,218,0|cna1nz,107,218,0|cna1o0,93,189,1|cwn07z,93,189,1|cwn080,107,218,0|d604bz,107,218,0|d604c0,93,189,1|dfd2vz,93,189,1|dfd2w0,107,218,0|dp35nz,107,218,0|dp35o0,93,189,1|dyg47z,93,189,1|dyg480,107,218,0|e7t8bz,107,218,0|e7t8c0,93,189,1|eh66vz,93,189,1|eh66w0,107,218,0|eqjazz,107,218,0|eqjb00,93,189,1|ezw9jz,93,189,1|ezw9k0,107,218,0|gcgn7z,107,218,0|gcgn80,93,189,1|gkdr3z,93,189,1|gkdr40,107,218,0|gtqv7z,107,218,0|gtqv80,93,189,1|h33trz,93,189,1|h33ts0,107,218,0|hcgxvz,107,218,0|hcgxw0,93,189,1|hltwfz,93,189,1|hltwg0,107,218,0|hv70jz,107,218,0|hv70k0,93,189,1|i4jz3z,93,189,1|i4jz40,107,218,0|idx37z,107,218,0|idx380,93,189,1|ina1rz,93,189,1|ina1s0,107,218,0|iwn5vz,107,218,0|iwn5w0,93,189,1|j6d33z,93,189,1|j6d340,107,218,0|jyjtnz,107,218,0|jyjto0,88,183,0|nlvtzz,88,183,0|nlvu00,107,218,1|nv8mzz,107,218,1|nv8n00,88,183,0|o4lwnz,88,183,0|o4lwo0,107,218,1|odypnz,107,218,1|odypo0,88,183,0|NaN,88,183,0","Asia/Colombo|,0,220,0|-1ayyhgd,0,220,0|-1ayyhgc,20,221,0|-xehasl,20,221,0|-xehask,108,222,0|-elvwm1,108,222,0|-elvwm0,96,190,1|-e9lco1,96,190,1|-e9lco0,109,223,1|-cmw9u1,109,223,1|-cmw9u0,108,222,0|drxa1z,108,222,0|drxa20,109,223,0|dzufbz,109,223,0|dzufc0,96,190,0|ixq61z,96,190,0|ixq620,108,222,0|NaN,108,222,0","Asia/Damascus|,0,224,0|-q3gk21,0,224,0|-q3gk20,14,9,0|-pxwdc1,14,9,0|-pxwdc0,15,4,1|-pp9c41,15,4,1|-pp9c40,14,9,0|-pf6ao1,14,9,0|-pf6ao0,15,4,1|-p6j9g1,15,4,1|-p6j9g0,14,9,0|-owg801,14,9,0|-owg800,15,4,1|-ont6s1,15,4,1|-ont6s0,14,9,0|-odq5c1,14,9,0|-odq5c0,15,4,1|-o4q5g1,15,4,1|-o4q5g0,14,9,0|-408lc1,14,9,0|-408lc0,15,4,1|-3s9ms1,15,4,1|-3s9ms0,14,9,0|-3hcyo1,14,9,0|-3hcyo0,15,4,1|-39jk41,15,4,1|-39jk40,14,9,0|-2yj6o1,14,9,0|-2yj6o0,15,4,1|-2qnxg1,15,4,1|-2qnxg0,14,9,0|-2fr9c1,14,9,0|-2fr9c0,15,4,1|-27xus1,15,4,1|-27xus0,14,9,0|-1xcao1,14,9,0|-1xcao0,15,4,1|-1p42s1,15,4,1|-1p42s0,14,9,0|-1e7eo1,14,9,0|-1e7eo0,15,4,1|-16c5g1,15,4,1|-16c5g0,14,9,0|-vdmo1,14,9,0|-vdmo0,15,4,1|-nidg1,15,4,1|-nidg0,14,9,0|-clpc1,14,9,0|-clpc0,15,4,1|-4qg41,15,4,1|-4qg40,14,9,0|667zz,14,9,0|66800,15,4,1|e1h7z,15,4,1|e1h80,14,9,0|oy5bz,14,9,0|oy5c0,15,4,1|wtejz,15,4,1|wtek0,14,9,0|17rxbz,14,9,0|17rxc0,15,4,1|1fn6jz,15,4,1|1fn6k0,14,9,0|1qjunz,14,9,0|1qjuo0,15,4,1|1yf3vz,15,4,1|1yf3w0,14,9,0|29brzz,14,9,0|29bs00,15,4,1|2h717z,15,4,1|2h7180,14,9,0|2s3pbz,14,9,0|2s3pc0,15,4,1|2zyyjz,15,4,1|2zyyk0,14,9,0|3axhbz,14,9,0|3axhc0,15,4,1|3isqjz,15,4,1|3isqk0,14,9,0|3tpenz,14,9,0|3tpeo0,15,4,1|4013vz,15,4,1|4013w0,14,9,0|4chbzz,14,9,0|4chc00,15,4,1|4it17z,15,4,1|4it180,14,9,0|6xa2nz,14,9,0|6xa2o0,15,4,1|76a2jz,15,4,1|76a2k0,14,9,0|7g3unz,14,9,0|7g3uo0,15,4,1|7p3ujz,15,4,1|7p3uk0,14,9,0|8ezenz,14,9,0|8ezeo0,15,4,1|8r2ijz,15,4,1|8r2ik0,14,9,0|8yfenz,14,9,0|8yfeo0,15,4,1|9az6jz,15,4,1|9az6k0,14,9,0|9hz3zz,14,9,0|9hz400,15,4,1|9tsyjz,15,4,1|9tsyk0,14,9,0|a1knzz,14,9,0|a1ko00,15,4,1|ab1bvz,15,4,1|ab1bw0,14,9,0|akefzz,14,9,0|akeg00,15,4,1|atrejz,15,4,1|atrek0,14,9,0|b367rz,14,9,0|b367s0,15,4,1|bcl0zz,15,4,1|bcl100,14,9,0|bmcyfz,14,9,0|bmcyg0,15,4,1|bveszz,15,4,1|bvet00,14,9,0|c4gt3z,14,9,0|c4gt40,15,4,1|cdvmbz,15,4,1|cdvmc0,14,9,0|cnjufz,14,9,0|cnjug0,15,4,1|cwynnz,15,4,1|cwyno0,14,9,0|d6brrz,14,9,0|d6brs0,15,4,1|dfqkzz,15,4,1|dfql00,14,9,0|dp5jrz,14,9,0|dp5js0,15,4,1|dykczz,15,4,1|dykd00,14,9,0|e7vmfz,14,9,0|e7vmg0,15,4,1|ehcabz,15,4,1|ehcac0,14,9,0|eqlp3z,14,9,0|eqlp40,15,4,1|f047nz,15,4,1|f047o0,14,9,0|f9hbrz,14,9,0|f9hbs0,15,4,1|fiw4zz,15,4,1|fiw500,14,9,0|fsb3rz,14,9,0|fsb3s0,15,4,1|g1pwzz,15,4,1|g1px00,14,9,0|gb313z,14,9,0|gb3140,15,4,1|gkhubz,15,4,1|gkhuc0,14,9,0|gtuyfz,14,9,0|gtuyg0,15,4,1|h39rnz,15,4,1|h39ro0,14,9,0|hcmvrz,14,9,0|hcmvs0,15,4,1|hm1ozz,15,4,1|hm1p00,14,9,0|hvgnrz,14,9,0|hvgns0,15,4,1|i4vgzz,15,4,1|i4vh00,14,9,0|ie8l3z,14,9,0|ie8l40,15,4,1|innebz,15,4,1|innec0,14,9,0|ix0ifz,14,9,0|ix0ig0,15,4,1|j5ynnz,15,4,1|j5yno0,14,9,0|jfoqfz,14,9,0|jfoqg0,15,4,1|jquibz,15,4,1|jquic0,14,9,0|jyrrrz,14,9,0|jyrrs0,15,4,1|k9mfnz,15,4,1|k9mfo0,14,9,0|kh4vrz,14,9,0|kh4vs0,15,4,1|ksannz,15,4,1|ksano0,14,9,0|l07x3z,14,9,0|l07x40,15,4,1|lb0qbz,15,4,1|lb0qc0,14,9,0|lixzrz,14,9,0|lixzs0,15,4,1|ltqszz,15,4,1|ltqt00,14,9,0|m1o2fz,14,9,0|m1o2g0,15,4,1|mcgvnz,15,4,1|mcgvo0,14,9,0|mke53z,14,9,0|mke540,15,4,1|mv6ybz,15,4,1|mv6yc0,14,9,0|n347rz,14,9,0|n347s0,15,4,1|ne9znz,15,4,1|ne9zo0,14,9,0|nluafz,14,9,0|nluag0,15,4,1|nx02bz,15,4,1|nx02c0,14,9,0|o4kd3z,14,9,0|o4kd40,15,4,1|ofq4zz,15,4,1|ofq500,14,9,0|onnefz,14,9,0|onneg0,15,4,1|oyg7nz,15,4,1|oyg7o0,14,9,0|p6dh3z,14,9,0|p6dh40,15,4,1|ph6abz,15,4,1|ph6ac0,14,9,0|pp3jrz,14,9,0|pp3js0,15,4,1|pzwczz,15,4,1|pzwd00,14,9,0|q7tmfz,14,9,0|q7tmg0,15,4,1|qizebz,15,4,1|qizec0,14,9,0|qqjp3z,14,9,0|qqjp40,15,4,1|r1pgzz,15,4,1|r1ph00,14,9,0|r99rrz,14,9,0|r99rs0,15,4,1|rkfjnz,15,4,1|rkfjo0,14,9,0|rsct3z,14,9,0|rsct40,15,4,1|s35mbz,15,4,1|s35mc0,14,9,0|sb2vrz,14,9,0|sb2vs0,15,4,1|slvozz,15,4,1|slvp00,14,9,0|stsyfz,14,9,0|stsyg0,15,4,1|t4yqbz,15,4,1|t4yqc0,14,9,0|tcj13z,14,9,0|tcj140,15,4,1|tnoszz,15,4,1|tnot00,14,9,0|tv93rz,14,9,0|tv93s0,15,4,1|u6evnz,15,4,1|u6evo0,14,9,0|uec53z,14,9,0|uec540,15,4,1|up4ybz,15,4,1|up4yc0,14,9,0|ux27rz,14,9,0|ux27s0,15,4,1|v7v0zz,15,4,1|v7v100,14,9,0|vfsafz,14,9,0|vfsag0,15,4,1|vql3nz,15,4,1|vql3o0,14,9,0|vyid3z,14,9,0|vyid40,15,4,1|w9o4zz,15,4,1|w9o500,14,9,0|wh8frz,14,9,0|wh8fs0,15,4,1|wse7nz,15,4,1|wse7o0,14,9,0|wzyifz,14,9,0|wzyig0,15,4,1|xb4abz,15,4,1|xb4ac0,14,9,0|xj1jrz,14,9,0|xj1js0,15,4,1|xtuczz,15,4,1|xtud00,14,9,0|y1rmfz,14,9,0|y1rmg0,15,4,1|yckfnz,15,4,1|yckfo0,14,9,0|ykhp3z,14,9,0|ykhp40,15,4,1|yvngzz,15,4,1|yvnh00,14,9,0|z37rrz,14,9,0|z37rs0,15,4,1|zedjnz,15,4,1|zedjo0,14,9,0|zlxufz,14,9,0|zlxug0,15,4,1|zx3mbz,15,4,1|zx3mc0,14,9,0|104nx3z,14,9,0|104nx40,15,4,1|10ftozz,15,4,1|10ftp00,14,9,0|10nqyfz,14,9,0|10nqyg0,15,4,1|10yjrnz,15,4,1|10yjro0,14,9,0|116h13z,14,9,0|116h140,15,4,1|11h9ubz,15,4,1|11h9uc0,14,9,0|11p73rz,14,9,0|11p73s0,15,4,1|120cvnz,15,4,1|120cvo0,14,9,0|127x6fz,14,9,0|127x6g0,15,4,1|12j2ybz,15,4,1|12j2yc0,14,9,0|12qn93z,14,9,0|12qn940,15,4,1|131t0zz,15,4,1|131t100,14,9,0|139qafz,14,9,0|139qag0,15,4,1|13kj3nz,15,4,1|13kj3o0,14,9,0|13sgd3z,14,9,0|13sgd40,15,4,1|14396bz,15,4,1|14396c0,14,9,0|14b6frz,14,9,0|14b6fs0,15,4,1|14lz8zz,15,4,1|14lz900,14,9,0|14twifz,14,9,0|14twig0,15,4,1|1552abz,15,4,1|1552ac0,14,9,0|15cml3z,14,9,0|15cml40,15,4,1|15nsczz,15,4,1|15nsd00,14,9,0|15vcnrz,14,9,0|15vcns0,15,4,1|166ifnz,15,4,1|166ifo0,14,9,0|16efp3z,14,9,0|16efp40,15,4,1|16p8ibz,15,4,1|16p8ic0,14,9,0|16x5rrz,14,9,0|16x5rs0,15,4,1|177ykzz,15,4,1|177yl00,14,9,0|17fvufz,14,9,0|17fvug0,15,4,1|17r1mbz,15,4,1|17r1mc0,14,9,0|17ylx3z,14,9,0|17ylx40,15,4,1|189rozz,15,4,1|189rp00,14,9,0|18hbzrz,14,9,0|18hbzs0,15,4,1|18shrnz,15,4,1|18shro0,14,9,0|190f13z,14,9,0|190f140,15,4,1|19b7ubz,15,4,1|19b7uc0,14,9,0|19j53rz,14,9,0|19j53s0,15,4,1|19txwzz,15,4,1|19txx00,14,9,0|1a1v6fz,14,9,0|1a1v6g0,15,4,1|1acnznz,15,4,1|1acnzo0,14,9,0|1akl93z,14,9,0|1akl940,15,4,1|1avr0zz,15,4,1|1avr100,14,9,0|1b3bbrz,14,9,0|1b3bbs0,15,4,1|1beh3nz,15,4,1|1beh3o0,14,9,0|1bm1efz,14,9,0|1bm1eg0,15,4,1|1bx76bz,15,4,1|1bx76c0,14,9,0|1c54frz,14,9,0|1c54fs0,15,4,1|1cfx8zz,15,4,1|1cfx900,14,9,0|1cnuifz,14,9,0|1cnuig0,15,4,1|1cynbnz,15,4,1|1cynbo0,14,9,0|1d6kl3z,14,9,0|1d6kl40,15,4,1|1dhqczz,15,4,1|1dhqd00,14,9,0|1dpanrz,14,9,0|1dpans0,15,4,1|1e0gfnz,15,4,1|1e0gfo0,14,9,0|1e80qfz,14,9,0|1e80qg0,15,4,1|1ej6ibz,15,4,1|1ej6ic0,14,9,0|1eqqt3z,14,9,0|1eqqt40,15,4,1|1f1wkzz,15,4,1|1f1wl00,14,9,0|1f9tufz,14,9,0|1f9tug0,15,4,1|1fkmnnz,15,4,1|1fkmno0,14,9,0|1fsjx3z,14,9,0|1fsjx40,15,4,1|1g3cqbz,15,4,1|1g3cqc0,14,9,0|1gb9zrz,14,9,0|1gb9zs0,15,4,1|1gmfrnz,15,4,1|1gmfro0,14,9,0|1gu02fz,14,9,0|1gu02g0,15,4,1|1h55ubz,15,4,1|1h55uc0,14,9,0|1hcq53z,14,9,0|1hcq540,15,4,1|1hnvwzz,15,4,1|1hnvx00,14,9,0|1hvt6fz,14,9,0|1hvt6g0,15,4,1|1i6lznz,15,4,1|1i6lzo0,14,9,0|1iej93z,14,9,0|1iej940,15,4,1|1ipc2bz,15,4,1|1ipc2c0,14,9,0|1ix9brz,14,9,0|1ix9bs0,15,4,1|1j824zz,15,4,1|1j82500,14,9,0|1jfzefz,14,9,0|1jfzeg0,15,4,1|1jr56bz,15,4,1|1jr56c0,14,9,0|1jyph3z,14,9,0|1jyph40,15,4,1|1k9v8zz,15,4,1|1k9v900,14,9,0|1khfjrz,14,9,0|1khfjs0,15,4,1|1kslbnz,15,4,1|1kslbo0,14,9,0|1l0il3z,14,9,0|1l0il40,15,4,1|1lbbebz,15,4,1|1lbbec0,14,9,0|1lj8nrz,14,9,0|1lj8ns0,15,4,1|1lu1gzz,15,4,1|1lu1h00,14,9,0|1m1yqfz,14,9,0|1m1yqg0,15,4,1|1md4ibz,15,4,1|1md4ic0,14,9,0|1mkot3z,14,9,0|1mkot40,15,4,1|1mvukzz,15,4,1|1mvul00,14,9,0|1n3evrz,14,9,0|1n3evs0,15,4,1|1neknnz,15,4,1|1nekno0,14,9,0|1nmhx3z,14,9,0|1nmhx40,15,4,1|1nxaqbz,15,4,1|1nxaqc0,14,9,0|1o57zrz,14,9,0|1o57zs0,15,4,1|1og0szz,15,4,1|1og0t00,14,9,0|1ony2fz,14,9,0|1ony2g0,15,4,1|1oyqvnz,15,4,1|1oyqvo0,14,9,0|1p6o53z,14,9,0|1p6o540,15,4,1|1phtwzz,15,4,1|1phtx00,14,9,0|1ppe7rz,14,9,0|1ppe7s0,15,4,1|1q0jznz,15,4,1|1q0jzo0,14,9,0|1q84afz,14,9,0|1q84ag0,15,4,1|1qja2bz,15,4,1|1qja2c0,14,9,0|1qr7brz,14,9,0|1qr7bs0,15,4,1|1r204zz,15,4,1|1r20500,14,9,0|1r9xefz,14,9,0|1r9xeg0,15,4,1|1rkq7nz,15,4,1|1rkq7o0,14,9,0|1rsnh3z,14,9,0|1rsnh40,15,4,1|1s3t8zz,15,4,1|1s3t900,14,9,0|1sbdjrz,14,9,0|1sbdjs0,15,4,1|1smjbnz,15,4,1|1smjbo0,14,9,0|1su3mfz,14,9,0|1su3mg0,15,4,1|1t59ebz,15,4,1|1t59ec0,14,9,0|1tctp3z,14,9,0|1tctp40,15,4,1|1tnzgzz,15,4,1|1tnzh00,14,9,0|1tvwqfz,14,9,0|1tvwqg0,15,4,1|1u6pjnz,15,4,1|1u6pjo0,14,9,0|1uemt3z,14,9,0|1uemt40,15,4,1|1upfmbz,15,4,1|1upfmc0,14,9,0|1uxcvrz,14,9,0|1uxcvs0,15,4,1|1v8innz,15,4,1|1v8ino0,14,9,0|1vg2yfz,14,9,0|1vg2yg0,15,4,1|1vr8qbz,15,4,1|1vr8qc0,14,9,0|NaN,14,9,0","Asia/Dhaka|,0,225,0|-15r1q2t,0,225,0|-15r1q2s,77,226,0|-eqtpox,77,226,0|-eqtpow,109,223,0|-ef78q1,109,223,0|-ef78q0,108,222,0|-e9lba1,108,222,0|-e9lba0,109,223,0|-9j0ne1,109,223,0|-9j0ne0,96,190,0|klhwjz,96,190,0|klhwk0,90,185,1|kvj0jz,90,185,1|kvj0k0,96,190,0|NaN,96,190,0","Asia/Dili|,0,227,0|-u9s4l9,0,227,0|-u9s4l8,88,183,0|-ejfac1,88,183,0|-ejfac0,107,218,0|3b0hnz,107,218,0|3b0ho0,88,183,0|g0zlrz,88,183,0|g0zls0,107,218,0|NaN,107,218,0","Asia/Dubai|,0,228,0|-q3gnkp,0,228,0|-q3gnko,105,203,0|NaN,105,203,0","Asia/Dushanbe|,0,229,0|-nu18qp,0,229,0|-nu18qo,91,186,0|-kmr9w1,91,186,0|-kmr9w0,96,190,0|5vaxzz,96,190,0|5vay00,90,185,1|64pr7z,90,185,1|64pr80,96,190,0|6e2vbz,96,190,0|6e2vc0,90,185,1|6nhojz,90,185,1|6nhok0,96,190,0|6wusnz,96,190,0|6wuso0,90,185,1|769lvz,90,185,1|769lw0,96,190,0|7foknz,96,190,0|7foko0,90,185,1|7p1rjz,90,185,1|7p1rk0,96,190,0|7yesvz,96,190,0|7yesw0,90,185,1|87ru7z,90,185,1|87ru80,96,190,0|8h4vjz,96,190,0|8h4vk0,90,185,1|8qhwvz,90,185,1|8qhww0,96,190,0|8zuy7z,96,190,0|8zuy80,90,185,1|997zjz,90,185,1|997zk0,96,190,0|9il0vz,96,190,0|9il0w0,90,185,1|9ry27z,90,185,1|9ry280,96,190,0|a1b3jz,96,190,0|a1b3k0,90,185,1|aao4vz,90,185,1|aao4w0,96,190,0|ak167z,96,190,0|ak1680,90,185,1|atr67z,90,185,1|atr680,96,190,0|b347jz,96,190,0|b347k0,96,190,1|bbgabz,96,190,1|bbgac0,91,186,0|NaN,91,186,0","Asia/Famagusta|,0,230,0|-p4bqad,0,230,0|-p4bqac,14,9,0|2r67rz,14,9,0|2r67s0,15,4,1|30j6bz,15,4,1|30j6c0,14,9,0|3bn93z,14,9,0|3bn940,15,4,1|3jb3nz,15,4,1|3jb3o0,14,9,0|3s9efz,14,9,0|3s9eg0,15,4,1|419ebz,15,4,1|419ec0,14,9,0|4azh3z,14,9,0|4azh40,15,4,1|4keabz,15,4,1|4keac0,14,9,0|4tpjrz,14,9,0|4tpjs0,15,4,1|532ibz,15,4,1|532ic0,14,9,0|5csl3z,14,9,0|5csl40,15,4,1|5lskzz,15,4,1|5lsl00,14,9,0|5v5p3z,14,9,0|5v5p40,15,4,1|64innz,15,4,1|64ino0,14,9,0|6dvrrz,14,9,0|6dvrs0,15,4,1|6n8qbz,15,4,1|6n8qc0,14,9,0|6wlufz,14,9,0|6wlug0,15,4,1|75yszz,15,4,1|75yt00,14,9,0|7fbx3z,14,9,0|7fbx40,15,4,1|7p1ubz,15,4,1|7p1uc0,14,9,0|7yeyfz,14,9,0|7yeyg0,15,4,1|87rwzz,15,4,1|87rx00,14,9,0|8h513z,14,9,0|8h5140,15,4,1|8qhznz,15,4,1|8qhzo0,14,9,0|8zv3rz,14,9,0|8zv3s0,15,4,1|9982bz,15,4,1|9982c0,14,9,0|9il6fz,14,9,0|9il6g0,15,4,1|9ry4zz,15,4,1|9ry500,14,9,0|a1b93z,14,9,0|a1b940,15,4,1|aao7nz,15,4,1|aao7o0,14,9,0|ak1brz,14,9,0|ak1bs0,15,4,1|atr8zz,15,4,1|atr900,14,9,0|b34d3z,14,9,0|b34d40,15,4,1|bchbnz,15,4,1|bchbo0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dygnnz,15,4,1|dygno0,14,9,0|e7trrz,14,9,0|e7trs0,15,4,1|eh6qbz,15,4,1|eh6qc0,14,9,0|eqjufz,14,9,0|eqjug0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|od5jnz,15,4,1|od5jo0,100,4,0|oyk83z,100,4,0|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Asia/Gaza|,0,231,0|-1054x1t,0,231,0|-1054x1s,14,9,0|-ffv401,14,9,0|-ffv400,15,4,1|-f9l6o1,15,4,1|-f9l6o0,14,9,0|-f765c1,14,9,0|-f765c0,15,4,1|-e6fxc1,15,4,1|-e6fxc0,14,9,0|-dyoao1,14,9,0|-dyoao0,15,4,1|-dno001,15,4,1|-dno000,14,9,0|-dfuio1,14,9,0|-dfuio0,15,4,1|-d4u801,15,4,1|-d4u800,14,9,0|-cwatc1,14,9,0|-cwatc0,15,4,1|-cm2ao1,15,4,1|-cm2ao0,14,9,0|-cdiw01,14,9,0|-cdiw00,15,4,1|-c3adc1,15,4,1|-c3adc0,14,9,0|-6lluw1,14,9,0|-6lluw0,15,4,1|-6e79o1,15,4,1|-6e79o0,14,9,0|-63alk1,14,9,0|-63alk0,15,4,1|-5vfcc1,15,4,1|-5vfcc0,14,9,0|-5kilg1,14,9,0|-5kilg0,15,4,1|-5cp1c1,15,4,1|-5cp1c0,14,9,0|-51otg1,14,9,0|-51otg0,15,4,1|-4tv9c1,15,4,1|-4tv9c0,14,9,0|-4iww41,14,9,0|-4iww40,15,4,1|-4b3c01,15,4,1|-4b3c00,14,9,0|-404ys1,14,9,0|-404ys0,15,4,1|-3sbeo1,15,4,1|-3sbeo0,14,9,0|-3hd1g1,14,9,0|-3hd1g0,15,4,1|-39jhc1,15,4,1|-39jhc0,14,9,0|-2yj9g1,14,9,0|-2yj9g0,15,4,1|-2qppc1,15,4,1|-2qppc0,14,9,0|-2frc41,14,9,0|-2frc40,15,4,1|-27xs01,15,4,1|-27xs00,14,9,0|-1wzes1,14,9,0|-1wzes0,15,4,1|-1p4001,15,4,1|-1p4000,14,9,0|-1e7hg1,14,9,0|-1e7hg0,15,4,1|-1ceto1,15,4,1|-1ceto0,110,9,0|2crp3z,110,9,0|2crp40,111,4,1|2ht3nz,111,4,1|2ht3o0,110,9,0|2rj6fz,110,9,0|2rj6g0,111,4,1|2ydebz,111,4,1|2ydec0,110,9,0|5iwyfz,110,9,0|5iwyg0,111,4,1|5l2qfz,111,4,1|5l2qg0,110,9,0|7hhp3z,110,9,0|7hhp40,111,4,1|7n93rz,111,4,1|7n93s0,110,9,0|7z4vrz,110,9,0|7z4vs0,111,4,1|86c2bz,111,4,1|86c2c0,110,9,0|8jnrrz,110,9,0|8jnrs0,111,4,1|8pf3nz,111,4,1|8pf3o0,110,9,0|90ql3z,110,9,0|90ql40,111,4,1|98i4zz,111,4,1|98i500,110,9,0|9jb3rz,110,9,0|9jb3s0,111,4,1|9qv8zz,111,4,1|9qv900,110,9,0|a342fz,110,9,0|a342g0,111,4,1|a9lbnz,111,4,1|a9lbo0,110,9,0|ak1brz,110,9,0|ak1bs0,111,4,1|aryfnz,111,4,1|aryfo0,110,9,0|b2refz,110,9,0|b2reg0,111,4,1|bb1gzz,111,4,1|bb1h00,110,9,0|blufrz,110,9,0|blufs0,111,4,1|bu4ibz,111,4,1|bu4ic0,110,9,0|c4trrz,110,9,0|c4trs0,111,4,1|ccukzz,111,4,1|ccul00,110,9,0|cnjufz,110,9,0|cnjug0,111,4,1|cv7ozz,111,4,1|cv7p00,110,9,0|d69x3z,110,9,0|d69x40,111,4,1|deaqbz,111,4,1|deaqc0,110,9,0|dkh13z,110,9,0|dkh140,14,9,0|dpcyfz,14,9,0|dpcyg0,15,4,1|dy02fz,15,4,1|dy02g0,14,9,0|e8313z,14,9,0|e83140,15,4,1|egq53z,15,4,1|egq540,14,9,0|eqt3rz,14,9,0|eqt3s0,15,4,1|ezg7rz,15,4,1|ezg7s0,14,9,0|fa93rz,14,9,0|fa93s0,15,4,1|fjm2bz,15,4,1|fjm2c0,14,9,0|ftc53z,14,9,0|ftc540,15,4,1|g2p3nz,15,4,1|g2p3o0,14,9,0|gc27rz,14,9,0|gc27s0,15,4,1|glf6bz,15,4,1|glf6c0,14,9,0|gusafz,14,9,0|gusag0,15,4,1|h458zz,15,4,1|h45900,14,9,0|hdid3z,14,9,0|hdid40,15,4,1|hmvbnz,15,4,1|hmvbo0,14,9,0|hw8frz,14,9,0|hw8fs0,15,4,1|i4vjrz,15,4,1|i4vjs0,14,9,0|ieyifz,14,9,0|ieyig0,15,4,1|int3vz,15,4,1|int3w0,14,9,0|ix0ifz,14,9,0|ix0ig0,15,4,1|j5ynnz,15,4,1|j5yno0,14,9,0|jfsfrz,14,9,0|jfsfs0,15,4,1|joa2jz,15,4,1|joa2k0,14,9,0|jyet3z,14,9,0|jyet40,15,4,1|k6bwzz,15,4,1|k6bx00,14,9,0|kh4vrz,14,9,0|kh4vs0,15,4,1|kpf13z,15,4,1|kpf140,14,9,0|kzwt5n,14,9,0|kzwt5o,15,4,1|l6yfnz,15,4,1|l6yfo0,14,9,0|lixztn,14,9,0|lixzto,15,4,1|lp7ubz,15,4,1|lp7uc0,14,9,0|m1o2fz,14,9,0|m1o2g0,15,4,1|mao53z,15,4,1|mao540,14,9,0|mke53z,14,9,0|mke540,15,4,1|mtr3nz,15,4,1|mtr3o0,14,9,0|n347rz,14,9,0|n347s0,15,4,1|ndx0zz,15,4,1|ndx100,14,9,0|nlw53z,14,9,0|nlw540,15,4,1|nwn6fz,15,4,1|nwn6g0,14,9,0|o4majz,14,9,0|o4mak0,15,4,1|ofs2fz,15,4,1|ofs2g0,14,9,0|oncd7z,14,9,0|oncd80,15,4,1|oyi53z,15,4,1|oyi540,14,9,0|p62fvz,14,9,0|p62fw0,15,4,1|ph87rz,15,4,1|ph87s0,14,9,0|pp3jrz,14,9,0|pp3js0,15,4,1|pzy7nz,15,4,1|pzy7o0,14,9,0|q7vh3z,14,9,0|q7vh40,15,4,1|qiod3z,15,4,1|qiod40,14,9,0|qqljrz,14,9,0|qqljs0,15,4,1|r1pjrz,15,4,1|r1pjs0,14,9,0|r9bmfz,14,9,0|r9bmg0,15,4,1|rkfmfz,15,4,1|rkfmg0,14,9,0|rs1p3z,14,9,0|rs1p40,15,4,1|s35p3z,15,4,1|s35p40,14,9,0|sb4qfz,14,9,0|sb4qg0,15,4,1|slvrrz,15,4,1|slvrs0,14,9,0|stut3z,14,9,0|stut40,15,4,1|t4yt3z,15,4,1|t4yt40,14,9,0|tckvrz,14,9,0|tckvs0,15,4,1|tnovrz,15,4,1|tnovs0,14,9,0|tvayfz,14,9,0|tvayg0,15,4,1|u6eyfz,15,4,1|u6eyg0,14,9,0|ue113z,14,9,0|ue1140,15,4,1|up513z,15,4,1|up5140,14,9,0|uwr3rz,14,9,0|uwr3s0,15,4,1|v7v3rz,15,4,1|v7v3s0,14,9,0|vfu53z,14,9,0|vfu540,15,4,1|vql6fz,15,4,1|vql6g0,14,9,0|vyk7rz,14,9,0|vyk7s0,15,4,1|w9o7rz,15,4,1|w9o7s0,14,9,0|whaafz,14,9,0|whaag0,15,4,1|wseafz,15,4,1|wseag0,14,9,0|x00d3z,14,9,0|x00d40,15,4,1|xb4d3z,15,4,1|xb4d40,14,9,0|xiqfrz,14,9,0|xiqfs0,15,4,1|xtufrz,15,4,1|xtufs0,14,9,0|y1gifz,14,9,0|y1gig0,15,4,1|yckifz,15,4,1|yckig0,14,9,0|ykjjrz,14,9,0|ykjjs0,15,4,1|yvnjrz,15,4,1|yvnjs0,14,9,0|z39mfz,14,9,0|z39mg0,15,4,1|zedmfz,15,4,1|zedmg0,14,9,0|zlzp3z,14,9,0|zlzp40,15,4,1|zx3p3z,15,4,1|zx3p40,14,9,0|104prrz,14,9,0|104prs0,15,4,1|10ftrrz,15,4,1|10ftrs0,14,9,0|10nfufz,14,9,0|10nfug0,15,4,1|10yjufz,15,4,1|10yjug0,14,9,0|116ivrz,14,9,0|116ivs0,15,4,1|11h9x3z,15,4,1|11h9x40,14,9,0|11p8yfz,14,9,0|11p8yg0,15,4,1|120cyfz,15,4,1|120cyg0,14,9,0|127z13z,14,9,0|127z140,15,4,1|12j313z,15,4,1|12j3140,14,9,0|12qp3rz,14,9,0|12qp3s0,15,4,1|131t3rz,15,4,1|131t3s0,14,9,0|139f6fz,14,9,0|139f6g0,15,4,1|13kj6fz,15,4,1|13kj6g0,14,9,0|13s593z,14,9,0|13s5940,15,4,1|143993z,15,4,1|1439940,14,9,0|14b8afz,14,9,0|14b8ag0,15,4,1|14lzbrz,15,4,1|14lzbs0,14,9,0|14tyd3z,14,9,0|14tyd40,15,4,1|1552d3z,15,4,1|1552d40,14,9,0|15cofrz,14,9,0|15cofs0,15,4,1|15nsfrz,15,4,1|15nsfs0,14,9,0|15veifz,14,9,0|15veig0,15,4,1|166iifz,15,4,1|166iig0,14,9,0|16e4l3z,14,9,0|16e4l40,15,4,1|16p8l3z,15,4,1|16p8l40,14,9,0|16x7mfz,14,9,0|16x7mg0,15,4,1|177ynrz,15,4,1|177yns0,14,9,0|17fxp3z,14,9,0|17fxp40,15,4,1|17r1p3z,15,4,1|17r1p40,14,9,0|17ynrrz,14,9,0|17ynrs0,15,4,1|189rrrz,15,4,1|189rrs0,14,9,0|18hdufz,14,9,0|18hdug0,15,4,1|18shufz,15,4,1|18shug0,14,9,0|1903x3z,14,9,0|1903x40,15,4,1|19b7x3z,15,4,1|19b7x40,14,9,0|19itzrz,14,9,0|19itzs0,15,4,1|19txzrz,15,4,1|19txzs0,14,9,0|1a1x13z,14,9,0|1a1x140,15,4,1|1aco2fz,15,4,1|1aco2g0,14,9,0|1akn3rz,14,9,0|1akn3s0,15,4,1|1avr3rz,15,4,1|1avr3s0,14,9,0|1b3d6fz,14,9,0|1b3d6g0,15,4,1|1beh6fz,15,4,1|1beh6g0,14,9,0|1bm393z,14,9,0|1bm3940,15,4,1|1bx793z,15,4,1|1bx7940,14,9,0|1c4tbrz,14,9,0|1c4tbs0,15,4,1|1cfxbrz,15,4,1|1cfxbs0,14,9,0|1cnjefz,14,9,0|1cnjeg0,15,4,1|1cynefz,15,4,1|1cyneg0,14,9,0|1d6mfrz,14,9,0|1d6mfs0,15,4,1|1dhqfrz,15,4,1|1dhqfs0,14,9,0|1dpcifz,14,9,0|1dpcig0,15,4,1|1e0gifz,15,4,1|1e0gig0,14,9,0|1e82l3z,14,9,0|1e82l40,15,4,1|1ej6l3z,15,4,1|1ej6l40,14,9,0|1eqsnrz,14,9,0|1eqsns0,15,4,1|1f1wnrz,15,4,1|1f1wns0,14,9,0|1f9iqfz,14,9,0|1f9iqg0,15,4,1|1fkmqfz,15,4,1|1fkmqg0,14,9,0|1fslrrz,14,9,0|1fslrs0,15,4,1|1g3ct3z,15,4,1|1g3ct40,14,9,0|1gbbufz,14,9,0|1gbbug0,15,4,1|1gmfufz,15,4,1|1gmfug0,14,9,0|1gu1x3z,14,9,0|1gu1x40,15,4,1|1h55x3z,15,4,1|1h55x40,14,9,0|1hcrzrz,14,9,0|1hcrzs0,15,4,1|1hnvzrz,15,4,1|1hnvzs0,14,9,0|1hvi2fz,14,9,0|1hvi2g0,15,4,1|1i6m2fz,15,4,1|1i6m2g0,14,9,0|1ie853z,14,9,0|1ie8540,15,4,1|1ipc53z,15,4,1|1ipc540,14,9,0|1ixb6fz,14,9,0|1ixb6g0,15,4,1|1j827rz,15,4,1|1j827s0,14,9,0|1jg193z,14,9,0|1jg1940,15,4,1|1jr593z,15,4,1|1jr5940,14,9,0|1jyrbrz,14,9,0|1jyrbs0,15,4,1|1k9vbrz,15,4,1|1k9vbs0,14,9,0|1khhefz,14,9,0|1khheg0,15,4,1|1kslefz,15,4,1|1ksleg0,14,9,0|1l07h3z,14,9,0|1l07h40,15,4,1|1lbbh3z,15,4,1|1lbbh40,14,9,0|1ljaifz,14,9,0|1ljaig0,15,4,1|1lu1jrz,15,4,1|1lu1js0,14,9,0|1m20l3z,14,9,0|1m20l40,15,4,1|1md4l3z,15,4,1|1md4l40,14,9,0|1mkqnrz,14,9,0|1mkqns0,15,4,1|1mvunrz,15,4,1|1mvuns0,14,9,0|1n3gqfz,14,9,0|1n3gqg0,15,4,1|1nekqfz,15,4,1|1nekqg0,14,9,0|1nm6t3z,14,9,0|1nm6t40,15,4,1|1nxat3z,15,4,1|1nxat40,14,9,0|1o4wvrz,14,9,0|1o4wvs0,15,4,1|1og0vrz,15,4,1|1og0vs0,14,9,0|1onzx3z,14,9,0|1onzx40,15,4,1|1oyqyfz,15,4,1|1oyqyg0,14,9,0|1p6pzrz,14,9,0|1p6pzs0,15,4,1|1phtzrz,15,4,1|1phtzs0,14,9,0|1ppg2fz,14,9,0|1ppg2g0,15,4,1|1q0k2fz,15,4,1|1q0k2g0,14,9,0|1q8653z,14,9,0|1q86540,15,4,1|1qja53z,15,4,1|1qja540,14,9,0|1qqw7rz,14,9,0|1qqw7s0,15,4,1|1r207rz,15,4,1|1r207s0,14,9,0|1r9mafz,14,9,0|1r9mag0,15,4,1|1rkqafz,15,4,1|1rkqag0,14,9,0|1rspbrz,14,9,0|1rspbs0,15,4,1|1s3tbrz,15,4,1|1s3tbs0,14,9,0|1sbfefz,14,9,0|1sbfeg0,15,4,1|1smjefz,15,4,1|1smjeg0,14,9,0|1su5h3z,14,9,0|1su5h40,15,4,1|1t59h3z,15,4,1|1t59h40,14,9,0|1tcvjrz,14,9,0|1tcvjs0,15,4,1|1tnzjrz,15,4,1|1tnzjs0,14,9,0|1tvlmfz,14,9,0|1tvlmg0,15,4,1|1u6pmfz,15,4,1|1u6pmg0,14,9,0|1ueonrz,14,9,0|1ueons0,15,4,1|1upfp3z,15,4,1|1upfp40,14,9,0|1uxeqfz,14,9,0|1uxeqg0,15,4,1|1v8iqfz,15,4,1|1v8iqg0,14,9,0|1vg4t3z,14,9,0|1vg4t40,15,4,1|1vr8t3z,15,4,1|1vr8t40,14,9,0|NaN,14,9,0","Asia/Hebron|,0,232,0|-1054x60,0,232,0|-1054x5z,14,9,0|-ffv401,14,9,0|-ffv400,15,4,1|-f9l6o1,15,4,1|-f9l6o0,14,9,0|-f765c1,14,9,0|-f765c0,15,4,1|-e6fxc1,15,4,1|-e6fxc0,14,9,0|-dyoao1,14,9,0|-dyoao0,15,4,1|-dno001,15,4,1|-dno000,14,9,0|-dfuio1,14,9,0|-dfuio0,15,4,1|-d4u801,15,4,1|-d4u800,14,9,0|-cwatc1,14,9,0|-cwatc0,15,4,1|-cm2ao1,15,4,1|-cm2ao0,14,9,0|-cdiw01,14,9,0|-cdiw00,15,4,1|-c3adc1,15,4,1|-c3adc0,14,9,0|-6lluw1,14,9,0|-6lluw0,15,4,1|-6e79o1,15,4,1|-6e79o0,14,9,0|-63alk1,14,9,0|-63alk0,15,4,1|-5vfcc1,15,4,1|-5vfcc0,14,9,0|-5kilg1,14,9,0|-5kilg0,15,4,1|-5cp1c1,15,4,1|-5cp1c0,14,9,0|-51otg1,14,9,0|-51otg0,15,4,1|-4tv9c1,15,4,1|-4tv9c0,14,9,0|-4iww41,14,9,0|-4iww40,15,4,1|-4b3c01,15,4,1|-4b3c00,14,9,0|-404ys1,14,9,0|-404ys0,15,4,1|-3sbeo1,15,4,1|-3sbeo0,14,9,0|-3hd1g1,14,9,0|-3hd1g0,15,4,1|-39jhc1,15,4,1|-39jhc0,14,9,0|-2yj9g1,14,9,0|-2yj9g0,15,4,1|-2qppc1,15,4,1|-2qppc0,14,9,0|-2frc41,14,9,0|-2frc40,15,4,1|-27xs01,15,4,1|-27xs00,14,9,0|-1wzes1,14,9,0|-1wzes0,15,4,1|-1p4001,15,4,1|-1p4000,14,9,0|-1e7hg1,14,9,0|-1e7hg0,15,4,1|-1ceto1,15,4,1|-1ceto0,110,9,0|2crp3z,110,9,0|2crp40,111,4,1|2ht3nz,111,4,1|2ht3o0,110,9,0|2rj6fz,110,9,0|2rj6g0,111,4,1|2ydebz,111,4,1|2ydec0,110,9,0|5iwyfz,110,9,0|5iwyg0,111,4,1|5l2qfz,111,4,1|5l2qg0,110,9,0|7hhp3z,110,9,0|7hhp40,111,4,1|7n93rz,111,4,1|7n93s0,110,9,0|7z4vrz,110,9,0|7z4vs0,111,4,1|86c2bz,111,4,1|86c2c0,110,9,0|8jnrrz,110,9,0|8jnrs0,111,4,1|8pf3nz,111,4,1|8pf3o0,110,9,0|90ql3z,110,9,0|90ql40,111,4,1|98i4zz,111,4,1|98i500,110,9,0|9jb3rz,110,9,0|9jb3s0,111,4,1|9qv8zz,111,4,1|9qv900,110,9,0|a342fz,110,9,0|a342g0,111,4,1|a9lbnz,111,4,1|a9lbo0,110,9,0|ak1brz,110,9,0|ak1bs0,111,4,1|aryfnz,111,4,1|aryfo0,110,9,0|b2refz,110,9,0|b2reg0,111,4,1|bb1gzz,111,4,1|bb1h00,110,9,0|blufrz,110,9,0|blufs0,111,4,1|bu4ibz,111,4,1|bu4ic0,110,9,0|c4trrz,110,9,0|c4trs0,111,4,1|ccukzz,111,4,1|ccul00,110,9,0|cnjufz,110,9,0|cnjug0,111,4,1|cv7ozz,111,4,1|cv7p00,110,9,0|d69x3z,110,9,0|d69x40,111,4,1|deaqbz,111,4,1|deaqc0,110,9,0|dkh13z,110,9,0|dkh140,14,9,0|dpcyfz,14,9,0|dpcyg0,15,4,1|dy02fz,15,4,1|dy02g0,14,9,0|e8313z,14,9,0|e83140,15,4,1|egq53z,15,4,1|egq540,14,9,0|eqt3rz,14,9,0|eqt3s0,15,4,1|ezg7rz,15,4,1|ezg7s0,14,9,0|fa93rz,14,9,0|fa93s0,15,4,1|fjm2bz,15,4,1|fjm2c0,14,9,0|ftc53z,14,9,0|ftc540,15,4,1|g2p3nz,15,4,1|g2p3o0,14,9,0|gc27rz,14,9,0|gc27s0,15,4,1|glf6bz,15,4,1|glf6c0,14,9,0|gusafz,14,9,0|gusag0,15,4,1|h458zz,15,4,1|h45900,14,9,0|hdid3z,14,9,0|hdid40,15,4,1|hmvbnz,15,4,1|hmvbo0,14,9,0|hw8frz,14,9,0|hw8fs0,15,4,1|i4vjrz,15,4,1|i4vjs0,14,9,0|ieyifz,14,9,0|ieyig0,15,4,1|int3vz,15,4,1|int3w0,14,9,0|ix0ifz,14,9,0|ix0ig0,15,4,1|j5ynnz,15,4,1|j5yno0,14,9,0|jfsfrz,14,9,0|jfsfs0,15,4,1|joa2jz,15,4,1|joa2k0,14,9,0|jyet3z,14,9,0|jyet40,15,4,1|k6hgzz,15,4,1|k6hh00,14,9,0|kh4vrz,14,9,0|kh4vs0,15,4,1|kpf13z,15,4,1|kpf140,14,9,0|kzuyfz,14,9,0|kzuyg0,15,4,1|l6yfnz,15,4,1|l6yfo0,14,9,0|lixztn,14,9,0|lixzto,15,4,1|lp7ubz,15,4,1|lp7uc0,14,9,0|lqpmfz,14,9,0|lqpmg0,15,4,1|lsaybz,15,4,1|lsayc0,14,9,0|m1o2fz,14,9,0|m1o2g0,15,4,1|mao53z,15,4,1|mao540,14,9,0|mke53z,14,9,0|mke540,15,4,1|mtr3nz,15,4,1|mtr3o0,14,9,0|n347rz,14,9,0|n347s0,15,4,1|ndx0zz,15,4,1|ndx100,14,9,0|nlw53z,14,9,0|nlw540,15,4,1|nwn6fz,15,4,1|nwn6g0,14,9,0|o4majz,14,9,0|o4mak0,15,4,1|ofs2fz,15,4,1|ofs2g0,14,9,0|oncd7z,14,9,0|oncd80,15,4,1|oyi53z,15,4,1|oyi540,14,9,0|p62fvz,14,9,0|p62fw0,15,4,1|ph87rz,15,4,1|ph87s0,14,9,0|pp3jrz,14,9,0|pp3js0,15,4,1|pzy7nz,15,4,1|pzy7o0,14,9,0|q7vh3z,14,9,0|q7vh40,15,4,1|qiod3z,15,4,1|qiod40,14,9,0|qqljrz,14,9,0|qqljs0,15,4,1|r1pjrz,15,4,1|r1pjs0,14,9,0|r9bmfz,14,9,0|r9bmg0,15,4,1|rkfmfz,15,4,1|rkfmg0,14,9,0|rs1p3z,14,9,0|rs1p40,15,4,1|s35p3z,15,4,1|s35p40,14,9,0|sb4qfz,14,9,0|sb4qg0,15,4,1|slvrrz,15,4,1|slvrs0,14,9,0|stut3z,14,9,0|stut40,15,4,1|t4yt3z,15,4,1|t4yt40,14,9,0|tckvrz,14,9,0|tckvs0,15,4,1|tnovrz,15,4,1|tnovs0,14,9,0|tvayfz,14,9,0|tvayg0,15,4,1|u6eyfz,15,4,1|u6eyg0,14,9,0|ue113z,14,9,0|ue1140,15,4,1|up513z,15,4,1|up5140,14,9,0|uwr3rz,14,9,0|uwr3s0,15,4,1|v7v3rz,15,4,1|v7v3s0,14,9,0|vfu53z,14,9,0|vfu540,15,4,1|vql6fz,15,4,1|vql6g0,14,9,0|vyk7rz,14,9,0|vyk7s0,15,4,1|w9o7rz,15,4,1|w9o7s0,14,9,0|whaafz,14,9,0|whaag0,15,4,1|wseafz,15,4,1|wseag0,14,9,0|x00d3z,14,9,0|x00d40,15,4,1|xb4d3z,15,4,1|xb4d40,14,9,0|xiqfrz,14,9,0|xiqfs0,15,4,1|xtufrz,15,4,1|xtufs0,14,9,0|y1gifz,14,9,0|y1gig0,15,4,1|yckifz,15,4,1|yckig0,14,9,0|ykjjrz,14,9,0|ykjjs0,15,4,1|yvnjrz,15,4,1|yvnjs0,14,9,0|z39mfz,14,9,0|z39mg0,15,4,1|zedmfz,15,4,1|zedmg0,14,9,0|zlzp3z,14,9,0|zlzp40,15,4,1|zx3p3z,15,4,1|zx3p40,14,9,0|104prrz,14,9,0|104prs0,15,4,1|10ftrrz,15,4,1|10ftrs0,14,9,0|10nfufz,14,9,0|10nfug0,15,4,1|10yjufz,15,4,1|10yjug0,14,9,0|116ivrz,14,9,0|116ivs0,15,4,1|11h9x3z,15,4,1|11h9x40,14,9,0|11p8yfz,14,9,0|11p8yg0,15,4,1|120cyfz,15,4,1|120cyg0,14,9,0|127z13z,14,9,0|127z140,15,4,1|12j313z,15,4,1|12j3140,14,9,0|12qp3rz,14,9,0|12qp3s0,15,4,1|131t3rz,15,4,1|131t3s0,14,9,0|139f6fz,14,9,0|139f6g0,15,4,1|13kj6fz,15,4,1|13kj6g0,14,9,0|13s593z,14,9,0|13s5940,15,4,1|143993z,15,4,1|1439940,14,9,0|14b8afz,14,9,0|14b8ag0,15,4,1|14lzbrz,15,4,1|14lzbs0,14,9,0|14tyd3z,14,9,0|14tyd40,15,4,1|1552d3z,15,4,1|1552d40,14,9,0|15cofrz,14,9,0|15cofs0,15,4,1|15nsfrz,15,4,1|15nsfs0,14,9,0|15veifz,14,9,0|15veig0,15,4,1|166iifz,15,4,1|166iig0,14,9,0|16e4l3z,14,9,0|16e4l40,15,4,1|16p8l3z,15,4,1|16p8l40,14,9,0|16x7mfz,14,9,0|16x7mg0,15,4,1|177ynrz,15,4,1|177yns0,14,9,0|17fxp3z,14,9,0|17fxp40,15,4,1|17r1p3z,15,4,1|17r1p40,14,9,0|17ynrrz,14,9,0|17ynrs0,15,4,1|189rrrz,15,4,1|189rrs0,14,9,0|18hdufz,14,9,0|18hdug0,15,4,1|18shufz,15,4,1|18shug0,14,9,0|1903x3z,14,9,0|1903x40,15,4,1|19b7x3z,15,4,1|19b7x40,14,9,0|19itzrz,14,9,0|19itzs0,15,4,1|19txzrz,15,4,1|19txzs0,14,9,0|1a1x13z,14,9,0|1a1x140,15,4,1|1aco2fz,15,4,1|1aco2g0,14,9,0|1akn3rz,14,9,0|1akn3s0,15,4,1|1avr3rz,15,4,1|1avr3s0,14,9,0|1b3d6fz,14,9,0|1b3d6g0,15,4,1|1beh6fz,15,4,1|1beh6g0,14,9,0|1bm393z,14,9,0|1bm3940,15,4,1|1bx793z,15,4,1|1bx7940,14,9,0|1c4tbrz,14,9,0|1c4tbs0,15,4,1|1cfxbrz,15,4,1|1cfxbs0,14,9,0|1cnjefz,14,9,0|1cnjeg0,15,4,1|1cynefz,15,4,1|1cyneg0,14,9,0|1d6mfrz,14,9,0|1d6mfs0,15,4,1|1dhqfrz,15,4,1|1dhqfs0,14,9,0|1dpcifz,14,9,0|1dpcig0,15,4,1|1e0gifz,15,4,1|1e0gig0,14,9,0|1e82l3z,14,9,0|1e82l40,15,4,1|1ej6l3z,15,4,1|1ej6l40,14,9,0|1eqsnrz,14,9,0|1eqsns0,15,4,1|1f1wnrz,15,4,1|1f1wns0,14,9,0|1f9iqfz,14,9,0|1f9iqg0,15,4,1|1fkmqfz,15,4,1|1fkmqg0,14,9,0|1fslrrz,14,9,0|1fslrs0,15,4,1|1g3ct3z,15,4,1|1g3ct40,14,9,0|1gbbufz,14,9,0|1gbbug0,15,4,1|1gmfufz,15,4,1|1gmfug0,14,9,0|1gu1x3z,14,9,0|1gu1x40,15,4,1|1h55x3z,15,4,1|1h55x40,14,9,0|1hcrzrz,14,9,0|1hcrzs0,15,4,1|1hnvzrz,15,4,1|1hnvzs0,14,9,0|1hvi2fz,14,9,0|1hvi2g0,15,4,1|1i6m2fz,15,4,1|1i6m2g0,14,9,0|1ie853z,14,9,0|1ie8540,15,4,1|1ipc53z,15,4,1|1ipc540,14,9,0|1ixb6fz,14,9,0|1ixb6g0,15,4,1|1j827rz,15,4,1|1j827s0,14,9,0|1jg193z,14,9,0|1jg1940,15,4,1|1jr593z,15,4,1|1jr5940,14,9,0|1jyrbrz,14,9,0|1jyrbs0,15,4,1|1k9vbrz,15,4,1|1k9vbs0,14,9,0|1khhefz,14,9,0|1khheg0,15,4,1|1kslefz,15,4,1|1ksleg0,14,9,0|1l07h3z,14,9,0|1l07h40,15,4,1|1lbbh3z,15,4,1|1lbbh40,14,9,0|1ljaifz,14,9,0|1ljaig0,15,4,1|1lu1jrz,15,4,1|1lu1js0,14,9,0|1m20l3z,14,9,0|1m20l40,15,4,1|1md4l3z,15,4,1|1md4l40,14,9,0|1mkqnrz,14,9,0|1mkqns0,15,4,1|1mvunrz,15,4,1|1mvuns0,14,9,0|1n3gqfz,14,9,0|1n3gqg0,15,4,1|1nekqfz,15,4,1|1nekqg0,14,9,0|1nm6t3z,14,9,0|1nm6t40,15,4,1|1nxat3z,15,4,1|1nxat40,14,9,0|1o4wvrz,14,9,0|1o4wvs0,15,4,1|1og0vrz,15,4,1|1og0vs0,14,9,0|1onzx3z,14,9,0|1onzx40,15,4,1|1oyqyfz,15,4,1|1oyqyg0,14,9,0|1p6pzrz,14,9,0|1p6pzs0,15,4,1|1phtzrz,15,4,1|1phtzs0,14,9,0|1ppg2fz,14,9,0|1ppg2g0,15,4,1|1q0k2fz,15,4,1|1q0k2g0,14,9,0|1q8653z,14,9,0|1q86540,15,4,1|1qja53z,15,4,1|1qja540,14,9,0|1qqw7rz,14,9,0|1qqw7s0,15,4,1|1r207rz,15,4,1|1r207s0,14,9,0|1r9mafz,14,9,0|1r9mag0,15,4,1|1rkqafz,15,4,1|1rkqag0,14,9,0|1rspbrz,14,9,0|1rspbs0,15,4,1|1s3tbrz,15,4,1|1s3tbs0,14,9,0|1sbfefz,14,9,0|1sbfeg0,15,4,1|1smjefz,15,4,1|1smjeg0,14,9,0|1su5h3z,14,9,0|1su5h40,15,4,1|1t59h3z,15,4,1|1t59h40,14,9,0|1tcvjrz,14,9,0|1tcvjs0,15,4,1|1tnzjrz,15,4,1|1tnzjs0,14,9,0|1tvlmfz,14,9,0|1tvlmg0,15,4,1|1u6pmfz,15,4,1|1u6pmg0,14,9,0|1ueonrz,14,9,0|1ueons0,15,4,1|1upfp3z,15,4,1|1upfp40,14,9,0|1uxeqfz,14,9,0|1uxeqg0,15,4,1|1v8iqfz,15,4,1|1v8iqg0,14,9,0|1vg4t3z,14,9,0|1vg4t40,15,4,1|1vr8t3z,15,4,1|1vr8t40,14,9,0|NaN,14,9,0","Asia/Ho_Chi_Minh|,0,233,0|-x56935,0,233,0|-x56934,112,234,0|-umdqev,112,234,0|-umdqeu,90,185,0|-e3bkw1,90,185,0|-e3bkw0,88,183,0|-cxyro1,88,183,0|-cxyro0,107,218,0|-cp63o1,107,218,0|-cp63o0,90,185,0|-bvja41,90,185,0|-bvja40,88,183,0|-7kjq81,88,183,0|-7kjq80,90,185,0|-57xfk1,90,185,0|-57xfk0,88,183,0|2uaprz,88,183,0|2uaps0,90,185,0|NaN,90,185,0","Asia/Hong_Kong|,0,235,0|-y0i0s1,0,235,0|-y0i0s0,113,183,0|-ewdn81,113,183,0|-ewdn80,114,218,1|-eqtn81,114,218,1|-eqtn80,115,236,1|-emgia1,115,236,1|-emgia0,116,218,0|-cl7cs1,116,218,0|-cl7cs0,113,183,0|-cda8w1,113,183,0|-cda8w0,114,218,1|-c1r5u1,114,218,1|-c1r5u0,113,183,0|-buwv61,113,183,0|-buwv60,114,218,1|-bj1361,114,218,1|-bj1360,113,183,0|-bb3wi1,113,183,0|-bb3wi0,114,218,1|-b1qv61,114,218,1|-b1qv60,113,183,0|-attoi1,113,183,0|-attoi0,114,218,1|-aj0si1,114,218,1|-aj0si0,113,183,0|-ab3lu1,113,183,0|-ab3lu0,114,218,1|-a0apu1,114,218,1|-a0apu0,113,183,0|-9sdj61,113,183,0|-9sdj60,114,218,1|-9hkn61,114,218,1|-9hkn60,113,183,0|-99ahu1,113,183,0|-99ahu0,114,218,1|-8yhlu1,114,218,1|-8yhlu0,113,183,0|-8qkf61,113,183,0|-8qkf60,114,218,1|-8frly1,114,218,1|-8frly0,113,183,0|-88k9u1,113,183,0|-88k9u0,114,218,1|-7x1ja1,114,218,1|-7x1ja0,113,183,0|-7pu761,113,183,0|-7pu760,114,218,1|-7dyhy1,114,218,1|-7dyhy0,113,183,0|-7744i1,113,183,0|-7744i0,114,218,1|-6v8fa1,114,218,1|-6v8fa0,113,183,0|-6o1361,113,183,0|-6o1360,114,218,1|-6cicm1,114,218,1|-6cicm0,113,183,0|-65b0i1,113,183,0|-65b0i0,114,218,1|-5ts9y1,114,218,1|-5ts9y0,113,183,0|-5mkxu1,113,183,0|-5mkxu0,114,218,1|-5b27a1,114,218,1|-5b27a0,113,183,0|-53uv61,113,183,0|-53uv60,114,218,1|-4rz5y1,114,218,1|-4rz5y0,113,183,0|-4l4si1,113,183,0|-4l4si0,114,218,1|-4993a1,114,218,1|-4993a0,113,183,0|-42epu1,113,183,0|-42epu0,114,218,1|-3qj0m1,114,218,1|-3qj0m0,113,183,0|-3jboi1,113,183,0|-3jboi0,114,218,1|-37sxy1,114,218,1|-37sxy0,113,183,0|-30llu1,113,183,0|-30llu0,114,218,1|-2p2va1,114,218,1|-2p2va0,113,183,0|-2gfoi1,113,183,0|-2gfoi0,114,218,1|-272py1,114,218,1|-272py0,113,183,0|-1xplu1,113,183,0|-1xplu0,114,218,1|-1ocna1,114,218,1|-1ocna0,113,183,0|-1ezj61,113,183,0|-1ezj60,114,218,1|-159ly1,114,218,1|-159ly0,113,183,0|-vwhu1,113,183,0|-vwhu0,114,218,1|-mjja1,114,218,1|-mjja0,113,183,0|-d6f61,113,183,0|-d6f60,114,218,1|-3tgm1,114,218,1|-3tgm0,113,183,0|5jnhz,113,183,0|5jni0,114,218,1|ewm1z,114,218,1|ewm20,113,183,0|o9q5z,113,183,0|o9q60,114,218,1|xmopz,114,218,1|xmoq0,113,183,0|16zstz,113,183,0|16zsu0,114,218,1|1gpq1z,114,218,1|1gpq20,113,183,0|1q2u5z,113,183,0|1q2u60,114,218,1|1zfspz,114,218,1|1zfsq0,113,183,0|231i5z,113,183,0|231i60,114,218,1|2i5vdz,114,218,1|2i5ve0,113,183,0|2rizhz,113,183,0|2rizi0,114,218,1|30vy1z,114,218,1|30vy20,113,183,0|3a925z,113,183,0|3a9260,114,218,1|3jm0pz,114,218,1|3jm0q0,113,183,0|4vv4tz,113,183,0|4vv4u0,114,218,1|5457dz,114,218,1|5457e0,113,183,0|NaN,113,183,0","Asia/Hovd|,0,237,0|-xmcoz1,0,237,0|-xmcoz0,96,190,0|46anbz,96,190,0|46anc0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1gfz,88,183,1|7p1gg0,90,185,0|7yekjz,90,185,0|7yekk0,88,183,1|87rj3z,88,183,1|87rj40,90,185,0|8h4n7z,90,185,0|8h4n80,88,183,1|8qhlrz,88,183,1|8qhls0,90,185,0|8zupvz,90,185,0|8zupw0,88,183,1|997ofz,88,183,1|997og0,90,185,0|9iksjz,90,185,0|9iksk0,88,183,1|9rxr3z,88,183,1|9rxr40,90,185,0|a1av7z,90,185,0|a1av80,88,183,1|aantrz,88,183,1|aants0,90,185,0|ak0xvz,90,185,0|ak0xw0,88,183,1|atqv3z,88,183,1|atqv40,90,185,0|b33z7z,90,185,0|b33z80,88,183,1|bcgxrz,88,183,1|bcgxs0,90,185,0|blu1vz,90,185,0|blu1w0,88,183,1|bv70fz,88,183,1|bv70g0,90,185,0|c4k4jz,90,185,0|c4k4k0,88,183,1|cdx33z,88,183,1|cdx340,90,185,0|cna77z,90,185,0|cna780,88,183,1|cwn5rz,88,183,1|cwn5s0,90,185,0|d609vz,90,185,0|d609w0,88,183,1|dfd8fz,88,183,1|dfd8g0,90,185,0|dp3b7z,90,185,0|dp3b80,88,183,1|dyg9rz,88,183,1|dyg9s0,90,185,0|e7tdvz,90,185,0|e7tdw0,88,183,1|eh6cfz,88,183,1|eh6cg0,90,185,0|eqjgjz,90,185,0|eqjgk0,88,183,1|ezwf3z,88,183,1|ezwf40,90,185,0|gcgsrz,90,185,0|gcgss0,88,183,1|gkdwnz,88,183,1|gkdwo0,90,185,0|gtr0rz,90,185,0|gtr0s0,88,183,1|h33zbz,88,183,1|h33zc0,90,185,0|hch3fz,90,185,0|hch3g0,88,183,1|hlu1zz,88,183,1|hlu200,90,185,0|hv763z,90,185,0|hv7640,88,183,1|i4k4nz,88,183,1|i4k4o0,90,185,0|idx8rz,90,185,0|idx8s0,88,183,1|ina7bz,88,183,1|ina7c0,90,185,0|iwnbfz,90,185,0|iwnbg0,88,183,1|j6d8nz,88,183,1|j6d8o0,90,185,0|nlvwrz,90,185,0|nlvws0,88,183,1|nv8prz,88,183,1|nv8ps0,90,185,0|o4lzfz,90,185,0|o4lzg0,88,183,1|odysfz,88,183,1|odysg0,90,185,0|NaN,90,185,0","Asia/Irkutsk|,0,238,0|-1ayylz6,0,238,0|-1ayylz5,117,238,0|-q28gn6,117,238,0|-q28gn5,90,185,0|-kmrfg1,90,185,0|-kmrfg0,88,183,0|5vasfz,88,183,0|5vasg0,107,218,1|64plnz,107,218,1|64plo0,88,183,0|6e2prz,88,183,0|6e2ps0,107,218,1|6nhizz,107,218,1|6nhj00,88,183,0|6wun3z,88,183,0|6wun40,107,218,1|769gbz,107,218,1|769gc0,88,183,0|7fof3z,88,183,0|7fof40,107,218,1|7p1lzz,107,218,1|7p1m00,88,183,0|7yenbz,88,183,0|7yenc0,107,218,1|87ronz,107,218,1|87roo0,88,183,0|8h4pzz,88,183,0|8h4q00,107,218,1|8qhrbz,107,218,1|8qhrc0,88,183,0|8zusnz,88,183,0|8zuso0,107,218,1|997tzz,107,218,1|997u00,88,183,0|9ikvbz,88,183,0|9ikvc0,107,218,1|9rxwnz,107,218,1|9rxwo0,88,183,0|a1axzz,88,183,0|a1ay00,107,218,1|aanzbz,107,218,1|aanzc0,88,183,0|ak10nz,88,183,0|ak10o0,107,218,1|atr0nz,107,218,1|atr0o0,88,183,0|b341zz,88,183,0|b34200,88,183,1|bch63z,88,183,1|bch640,90,185,0|bi8krz,90,185,0|bi8ks0,88,183,0|blu4nz,88,183,0|blu4o0,107,218,1|bv75zz,107,218,1|bv7600,88,183,0|c4k7bz,88,183,0|c4k7c0,107,218,1|cdx8nz,107,218,1|cdx8o0,88,183,0|cna9zz,88,183,0|cnaa00,107,218,1|cwnbbz,107,218,1|cwnbc0,88,183,0|d60cnz,88,183,0|d60co0,107,218,1|dfddzz,107,218,1|dfde00,88,183,0|dp3dzz,88,183,0|dp3e00,107,218,1|dzw9zz,107,218,1|dzwa00,88,183,0|e7tgnz,88,183,0|e7tgo0,107,218,1|eimcnz,107,218,1|eimco0,88,183,0|eqjjbz,88,183,0|eqjjc0,107,218,1|f1cfbz,107,218,1|f1cfc0,88,183,0|f99lzz,88,183,0|f99m00,107,218,1|fkfgnz,107,218,1|fkfgo0,88,183,0|frzonz,88,183,0|frzoo0,107,218,1|g35jbz,107,218,1|g35jc0,88,183,0|gaprbz,88,183,0|gaprc0,107,218,1|glvlzz,107,218,1|glvm00,88,183,0|gtssnz,88,183,0|gtsso0,107,218,1|h4lonz,107,218,1|h4loo0,88,183,0|hcivbz,88,183,0|hcivc0,107,218,1|hnbrbz,107,218,1|hnbrc0,88,183,0|hv8xzz,88,183,0|hv8y00,107,218,1|i6esnz,107,218,1|i6eso0,88,183,0|idz0nz,88,183,0|idz0o0,107,218,1|ip4vbz,107,218,1|ip4vc0,88,183,0|iwp3bz,88,183,0|iwp3c0,107,218,1|j7uxzz,107,218,1|j7uy00,88,183,0|jff5zz,88,183,0|jff600,107,218,1|jql0nz,107,218,1|jql0o0,88,183,0|jyi7bz,88,183,0|jyi7c0,107,218,1|k9b3bz,107,218,1|k9b3c0,88,183,0|kh89zz,88,183,0|kh8a00,107,218,1|ks15zz,107,218,1|ks1600,88,183,0|kzycnz,88,183,0|kzyco0,107,218,1|lb47bz,107,218,1|lb47c0,88,183,0|liofbz,88,183,0|liofc0,107,218,0|ne0f7z,107,218,0|ne0f80,88,183,0|NaN,88,183,0","Asia/Jakarta|,0,239,0|-1hftyg1,0,239,0|-1hftyg0,54,239,0|-o0bdpd,54,239,0|-o0bdpc,118,240,0|-jebgdd,118,240,0|-jebgdc,106,216,0|-ehxgu1,106,216,0|-ehxgu0,107,218,0|-co37o1,107,218,0|-co37o0,106,216,0|-bb5zi1,106,216,0|-bb5zi0,88,183,0|-a9m681,88,183,0|-a9m680,106,216,0|-34ru61,106,216,0|-34ru60,119,185,0|NaN,119,185,0","Asia/Jayapura|,0,241,0|-jebm21,0,241,0|-jebm20,107,218,0|-d7zvo1,107,218,0|-d7zvo0,120,242,0|-34rzq1,120,242,0|-34rzq0,121,218,0|NaN,121,218,0","Asia/Jerusalem|,0,243,0|-1ayy96v,0,243,0|-1ayy96u,122,244,0|-r50eih,122,244,0|-r50eig,110,9,0|-ffv401,110,9,0|-ffv400,111,4,1|-f9l6o1,111,4,1|-f9l6o0,110,9,0|-f765c1,110,9,0|-f765c0,111,4,1|-e6fxc1,111,4,1|-e6fxc0,110,9,0|-dyoao1,110,9,0|-dyoao0,111,4,1|-dno001,111,4,1|-dno000,110,9,0|-dfuio1,110,9,0|-dfuio0,111,4,1|-d4u801,111,4,1|-d4u800,110,9,0|-cwatc1,110,9,0|-cwatc0,111,4,1|-cm2ao1,111,4,1|-cm2ao0,110,9,0|-cdiw01,110,9,0|-cdiw00,111,4,1|-c3adc1,111,4,1|-c3adc0,110,9,0|-ba0o01,110,9,0|-ba0o00,123,203,1|-b4tmo1,123,203,1|-b4tmo0,111,4,1|-b1oo01,111,4,1|-b1oo00,110,9,0|-asdhc1,110,9,0|-asdhc0,111,4,1|-aiwqo1,111,4,1|-aiwqo0,110,9,0|-aadc01,110,9,0|-aadc00,111,4,1|-a2juo1,111,4,1|-a2juo0,110,9,0|-9sd6o1,110,9,0|-9sd6o0,111,4,1|-9gudc1,111,4,1|-9gudc0,110,9,0|-98k801,110,9,0|-98k800,111,4,1|-8z76o1,111,4,1|-8z76o0,110,9,0|-8q7401,110,9,0|-8q7400,111,4,1|-8i9xc1,111,4,1|-8i9xc0,110,9,0|-848dc1,110,9,0|-848dc0,111,4,1|-7zjuo1,111,4,1|-7zjuo0,110,9,0|-7liao1,110,9,0|-7liao0,111,4,1|-7gts01,111,4,1|-7gts00,110,9,0|-7356o1,110,9,0|-7356o0,111,4,1|-6x0tc1,111,4,1|-6x0tc0,110,9,0|-6m7xc1,110,9,0|-6m7xc0,111,4,1|-6enpc1,111,4,1|-6enpc0,110,9,0|2crp3z,110,9,0|2crp40,111,4,1|2ht3nz,111,4,1|2ht3o0,110,9,0|2rj6fz,110,9,0|2rj6g0,111,4,1|2ydebz,111,4,1|2ydec0,110,9,0|5iwyfz,110,9,0|5iwyg0,111,4,1|5l2qfz,111,4,1|5l2qg0,110,9,0|7hhp3z,110,9,0|7hhp40,111,4,1|7n93rz,111,4,1|7n93s0,110,9,0|7z4vrz,110,9,0|7z4vs0,111,4,1|86c2bz,111,4,1|86c2c0,110,9,0|8jnrrz,110,9,0|8jnrs0,111,4,1|8pf3nz,111,4,1|8pf3o0,110,9,0|90ql3z,110,9,0|90ql40,111,4,1|98i4zz,111,4,1|98i500,110,9,0|9jb3rz,110,9,0|9jb3s0,111,4,1|9qv8zz,111,4,1|9qv900,110,9,0|a342fz,110,9,0|a342g0,111,4,1|a9lbnz,111,4,1|a9lbo0,110,9,0|ak1brz,110,9,0|ak1bs0,111,4,1|aryfnz,111,4,1|aryfo0,110,9,0|b2refz,110,9,0|b2reg0,111,4,1|bb1gzz,111,4,1|bb1h00,110,9,0|blufrz,110,9,0|blufs0,111,4,1|bu4ibz,111,4,1|bu4ic0,110,9,0|c4trrz,110,9,0|c4trs0,111,4,1|ccukzz,111,4,1|ccul00,110,9,0|cnjufz,110,9,0|cnjug0,111,4,1|cv7ozz,111,4,1|cv7p00,110,9,0|d69x3z,110,9,0|d69x40,111,4,1|deaqbz,111,4,1|deaqc0,110,9,0|doa2fz,110,9,0|doa2g0,111,4,1|dxskzz,111,4,1|dxsl00,110,9,0|e7d3rz,110,9,0|e7d3s0,111,4,1|eggszz,111,4,1|eggt00,110,9,0|eq36fz,110,9,0|eq36g0,111,4,1|eytwzz,111,4,1|eytx00,110,9,0|f9jbzz,110,9,0|f9jc00,111,4,1|fhgfvz,111,4,1|fhgfw0,110,9,0|fszbzz,110,9,0|fszc00,111,4,1|g1z93z,111,4,1|g1z940,110,9,0|gbhx7z,110,9,0|gbhx80,111,4,1|gk4yfz,111,4,1|gk4yg0,110,9,0|gtph7z,110,9,0|gtph80,111,4,1|h3kyfz,111,4,1|h3kyg0,110,9,0|hcfjvz,110,9,0|hcfjw0,111,4,1|hm5h3z,111,4,1|hm5h40,110,9,0|hvrujz,110,9,0|hvruk0,111,4,1|i4evrz,111,4,1|i4evs0,110,9,0|ie8qnz,110,9,0|ie8qo0,111,4,1|io2d7z,111,4,1|io2d80,110,9,0|iwytbz,110,9,0|iwytc0,111,4,1|j6fh7z,111,4,1|j6fh80,110,9,0|jfovzz,110,9,0|jfow00,111,4,1|jofmjz,111,4,1|jofmk0,110,9,0|jyeynz,110,9,0|jyeyo0,111,4,1|k88l7z,111,4,1|k88l80,110,9,0|kh51bz,110,9,0|kh51c0,111,4,1|kqlp7z,111,4,1|kqlp80,110,9,0|kzv3zz,110,9,0|kzv400,111,4,1|l8lujz,111,4,1|l8luk0,110,9,0|liy5bz,110,9,0|liy5c0,111,4,1|lset7z,111,4,1|lset80,110,9,0|m1o7zz,110,9,0|m1o800,111,4,1|marx7z,111,4,1|marx80,110,9,0|mkeanz,110,9,0|mkeao0,111,4,1|mvat7z,111,4,1|mvat80,110,9,0|n34dbz,110,9,0|n34dc0,111,4,1|ne0vvz,111,4,1|ne0vw0,110,9,0|nlufzz,110,9,0|nlug00,111,4,1|nwqyjz,111,4,1|nwqyk0,110,9,0|o4kinz,110,9,0|o4kio0,111,4,1|oftzvz,111,4,1|oftzw0,110,9,0|onalbz,110,9,0|onalc0,111,4,1|oyk2jz,111,4,1|oyk2k0,110,9,0|p60nzz,110,9,0|p60o00,111,4,1|pha57z,111,4,1|pha580,110,9,0|pp3pbz,110,9,0|pp3pc0,111,4,1|q007vz,111,4,1|q007w0,110,9,0|q7trzz,110,9,0|q7ts00,111,4,1|qiqajz,111,4,1|qiqak0,110,9,0|qqjunz,110,9,0|qqjuo0,111,4,1|r1tbvz,111,4,1|r1tbw0,110,9,0|r99xbz,110,9,0|r99xc0,111,4,1|rkjejz,111,4,1|rkjek0,110,9,0|rrzzzz,110,9,0|rs0000,111,4,1|s39h7z,111,4,1|s39h80,110,9,0|sb31bz,110,9,0|sb31c0,111,4,1|slzjvz,111,4,1|slzjw0,110,9,0|stt3zz,110,9,0|stt400,111,4,1|t4pmjz,111,4,1|t4pmk0,110,9,0|tcj6nz,110,9,0|tcj6o0,111,4,1|tnfp7z,111,4,1|tnfp80,110,9,0|tv99bz,110,9,0|tv99c0,111,4,1|u6iqjz,111,4,1|u6iqk0,110,9,0|udzbzz,110,9,0|udzc00,111,4,1|up8t7z,111,4,1|up8t80,110,9,0|uwpenz,110,9,0|uwpeo0,111,4,1|v7yvvz,111,4,1|v7yvw0,110,9,0|vfsfzz,110,9,0|vfsg00,111,4,1|vqoyjz,111,4,1|vqoyk0,110,9,0|vyiinz,110,9,0|vyiio0,111,4,1|w9f17z,111,4,1|w9f180,110,9,0|wh8lbz,110,9,0|wh8lc0,111,4,1|wsi2jz,111,4,1|wsi2k0,110,9,0|wzynzz,110,9,0|wzyo00,111,4,1|xb857z,111,4,1|xb8580,110,9,0|xioqnz,110,9,0|xioqo0,111,4,1|xty7vz,111,4,1|xty7w0,110,9,0|y1etbz,110,9,0|y1etc0,111,4,1|ycoajz,111,4,1|ycoak0,110,9,0|ykhunz,110,9,0|ykhuo0,111,4,1|yved7z,111,4,1|yved80,110,9,0|z37xbz,110,9,0|z37xc0,111,4,1|ze4fvz,111,4,1|ze4fw0,110,9,0|zlxzzz,110,9,0|zly000,111,4,1|zx7h7z,111,4,1|zx7h80,110,9,0|104o2nz,110,9,0|104o2o0,111,4,1|10fxjvz,111,4,1|10fxjw0,110,9,0|10ne5bz,110,9,0|10ne5c0,111,4,1|10ynmjz,111,4,1|10ynmk0,110,9,0|116h6nz,110,9,0|116h6o0,111,4,1|11hdp7z,111,4,1|11hdp80,110,9,0|11p79bz,110,9,0|11p79c0,111,4,1|1203rvz,111,4,1|1203rw0,110,9,0|127xbzz,110,9,0|127xc00,111,4,1|12itujz,111,4,1|12ituk0,110,9,0|12qnenz,110,9,0|12qneo0,111,4,1|131wvvz,111,4,1|131wvw0,110,9,0|139dhbz,110,9,0|139dhc0,111,4,1|13kmyjz,111,4,1|13kmyk0,110,9,0|13s3jzz,110,9,0|13s3k00,111,4,1|143d17z,111,4,1|143d180,110,9,0|14b6lbz,110,9,0|14b6lc0,111,4,1|14m33vz,111,4,1|14m33w0,110,9,0|14twnzz,110,9,0|14two00,111,4,1|154t6jz,111,4,1|154t6k0,110,9,0|15cmqnz,110,9,0|15cmqo0,111,4,1|15nw7vz,111,4,1|15nw7w0,110,9,0|15vctbz,110,9,0|15vctc0,111,4,1|166majz,111,4,1|166mak0,110,9,0|16e2vzz,110,9,0|16e2w00,111,4,1|16pcd7z,111,4,1|16pcd80,110,9,0|16x5xbz,110,9,0|16x5xc0,111,4,1|1782fvz,111,4,1|1782fw0,110,9,0|17fvzzz,110,9,0|17fw000,111,4,1|17qsijz,111,4,1|17qsik0,110,9,0|17ym2nz,110,9,0|17ym2o0,111,4,1|189il7z,111,4,1|189il80,110,9,0|18hc5bz,110,9,0|18hc5c0,111,4,1|18slmjz,111,4,1|18slmk0,110,9,0|19027zz,110,9,0|1902800,111,4,1|19bbp7z,111,4,1|19bbp80,110,9,0|19isanz,110,9,0|19isao0,111,4,1|19u1rvz,111,4,1|19u1rw0,110,9,0|1a1vbzz,110,9,0|1a1vc00,111,4,1|1acrujz,111,4,1|1acruk0,110,9,0|1aklenz,110,9,0|1akleo0,111,4,1|1avhx7z,111,4,1|1avhx80,110,9,0|1b3bhbz,110,9,0|1b3bhc0,111,4,1|1bekyjz,111,4,1|1bekyk0,110,9,0|1bm1jzz,110,9,0|1bm1k00,111,4,1|1bxb17z,111,4,1|1bxb180,110,9,0|1c4rmnz,110,9,0|1c4rmo0,111,4,1|1cg13vz,111,4,1|1cg13w0,110,9,0|1cnhpbz,110,9,0|1cnhpc0,111,4,1|1cyr6jz,111,4,1|1cyr6k0,110,9,0|1d6kqnz,110,9,0|1d6kqo0,111,4,1|1dhh97z,111,4,1|1dhh980,110,9,0|1dpatbz,110,9,0|1dpatc0,111,4,1|1e07bvz,111,4,1|1e07bw0,110,9,0|1e80vzz,110,9,0|1e80w00,111,4,1|1ejad7z,111,4,1|1ejad80,110,9,0|1eqqynz,110,9,0|1eqqyo0,111,4,1|1f20fvz,111,4,1|1f20fw0,110,9,0|1f9h1bz,110,9,0|1f9h1c0,111,4,1|1fkqijz,111,4,1|1fkqik0,110,9,0|1fsk2nz,110,9,0|1fsk2o0,111,4,1|1g3gl7z,111,4,1|1g3gl80,110,9,0|1gba5bz,110,9,0|1gba5c0,111,4,1|1gm6nvz,111,4,1|1gm6nw0,110,9,0|1gu07zz,110,9,0|1gu0800,111,4,1|1h4wqjz,111,4,1|1h4wqk0,110,9,0|1hcqanz,110,9,0|1hcqao0,111,4,1|1hnzrvz,111,4,1|1hnzrw0,110,9,0|1hvgdbz,110,9,0|1hvgdc0,111,4,1|1i6pujz,111,4,1|1i6puk0,110,9,0|1ie6fzz,110,9,0|1ie6g00,111,4,1|1ipfx7z,111,4,1|1ipfx80,110,9,0|1ix9hbz,110,9,0|1ix9hc0,111,4,1|1j85zvz,111,4,1|1j85zw0,110,9,0|1jfzjzz,110,9,0|1jfzk00,111,4,1|1jqw2jz,111,4,1|1jqw2k0,110,9,0|1jypmnz,110,9,0|1jypmo0,111,4,1|1k9z3vz,111,4,1|1k9z3w0,110,9,0|1khfpbz,110,9,0|1khfpc0,111,4,1|1ksp6jz,111,4,1|1ksp6k0,110,9,0|1l05rzz,110,9,0|1l05s00,111,4,1|1lbf97z,111,4,1|1lbf980,110,9,0|1lj8tbz,110,9,0|1lj8tc0,111,4,1|1lu5bvz,111,4,1|1lu5bw0,110,9,0|1m1yvzz,110,9,0|1m1yw00,111,4,1|1mcvejz,111,4,1|1mcvek0,110,9,0|1mkoynz,110,9,0|1mkoyo0,111,4,1|1mvlh7z,111,4,1|1mvlh80,110,9,0|1n3f1bz,110,9,0|1n3f1c0,111,4,1|1neoijz,111,4,1|1neoik0,110,9,0|1nm53zz,110,9,0|1nm5400,111,4,1|1nxel7z,111,4,1|1nxel80,110,9,0|1o4v6nz,110,9,0|1o4v6o0,111,4,1|1og4nvz,111,4,1|1og4nw0,110,9,0|1ony7zz,110,9,0|1ony800,111,4,1|1oyuqjz,111,4,1|1oyuqk0,110,9,0|1p6oanz,110,9,0|1p6oao0,111,4,1|1phkt7z,111,4,1|1phkt80,110,9,0|1ppedbz,110,9,0|1ppedc0,111,4,1|1q0nujz,111,4,1|1q0nuk0,110,9,0|1q84fzz,110,9,0|1q84g00,111,4,1|1qjdx7z,111,4,1|1qjdx80,110,9,0|1qquinz,110,9,0|1qquio0,111,4,1|1r23zvz,111,4,1|1r23zw0,110,9,0|1r9klbz,110,9,0|1r9klc0,111,4,1|1rku2jz,111,4,1|1rku2k0,110,9,0|1rsnmnz,110,9,0|1rsnmo0,111,4,1|1s3k57z,111,4,1|1s3k580,110,9,0|1sbdpbz,110,9,0|1sbdpc0,111,4,1|1sma7vz,111,4,1|1sma7w0,110,9,0|1su3rzz,110,9,0|1su3s00,111,4,1|1t5d97z,111,4,1|1t5d980,110,9,0|1tctunz,110,9,0|1tctuo0,111,4,1|1to3bvz,111,4,1|1to3bw0,110,9,0|1tvjxbz,110,9,0|1tvjxc0,111,4,1|1u6tejz,111,4,1|1u6tek0,110,9,0|1uemynz,110,9,0|1uemyo0,111,4,1|1upjh7z,111,4,1|1upjh80,110,9,0|1uxd1bz,110,9,0|1uxd1c0,111,4,1|1v89jvz,111,4,1|1v89jw0,110,9,0|1vg33zz,110,9,0|1vg3400,111,4,1|1vqzmjz,111,4,1|1vqzmk0,110,9,0|NaN,110,9,0","Asia/Kabul|,0,245,0|-15r1m5d,0,245,0|-15r1m5c,105,203,0|-d1pkg1,105,203,0|-d1pkg0,124,246,0|NaN,124,246,0","Asia/Kamchatka|,0,247,0|-olrupp,0,247,0|-olrupo,89,184,0|-kmrqk1,89,184,0|-kmrqk0,102,194,0|5vahbz,102,194,0|5vahc0,103,195,1|64pajz,103,195,1|64pak0,102,194,0|6e2enz,102,194,0|6e2eo0,103,195,1|6nh7vz,103,195,1|6nh7w0,102,194,0|6wubzz,102,194,0|6wuc00,103,195,1|76957z,103,195,1|769580,102,194,0|7fo3zz,102,194,0|7fo400,103,195,1|7p1avz,103,195,1|7p1aw0,102,194,0|7yec7z,102,194,0|7yec80,103,195,1|87rdjz,103,195,1|87rdk0,102,194,0|8h4evz,102,194,0|8h4ew0,103,195,1|8qhg7z,103,195,1|8qhg80,102,194,0|8zuhjz,102,194,0|8zuhk0,103,195,1|997ivz,103,195,1|997iw0,102,194,0|9ikk7z,102,194,0|9ikk80,103,195,1|9rxljz,103,195,1|9rxlk0,102,194,0|a1amvz,102,194,0|a1amw0,103,195,1|aano7z,103,195,1|aano80,102,194,0|ak0pjz,102,194,0|ak0pk0,103,195,1|atqpjz,103,195,1|atqpk0,102,194,0|b33qvz,102,194,0|b33qw0,102,194,1|bcguzz,102,194,1|bcgv00,89,184,0|bi89nz,89,184,0|bi89o0,102,194,0|blttjz,102,194,0|blttk0,103,195,1|bv6uvz,103,195,1|bv6uw0,102,194,0|c4jw7z,102,194,0|c4jw80,103,195,1|cdwxjz,103,195,1|cdwxk0,102,194,0|cn9yvz,102,194,0|cn9yw0,103,195,1|cwn07z,103,195,1|cwn080,102,194,0|d601jz,102,194,0|d601k0,103,195,1|dfd2vz,103,195,1|dfd2w0,102,194,0|dp32vz,102,194,0|dp32w0,103,195,1|dzvyvz,103,195,1|dzvyw0,102,194,0|e7t5jz,102,194,0|e7t5k0,103,195,1|eim1jz,103,195,1|eim1k0,102,194,0|eqj87z,102,194,0|eqj880,103,195,1|f1c47z,103,195,1|f1c480,102,194,0|f99avz,102,194,0|f99aw0,103,195,1|fkf5jz,103,195,1|fkf5k0,102,194,0|frzdjz,102,194,0|frzdk0,103,195,1|g3587z,103,195,1|g35880,102,194,0|gapg7z,102,194,0|gapg80,103,195,1|glvavz,103,195,1|glvaw0,102,194,0|gtshjz,102,194,0|gtshk0,103,195,1|h4ldjz,103,195,1|h4ldk0,102,194,0|hcik7z,102,194,0|hcik80,103,195,1|hnbg7z,103,195,1|hnbg80,102,194,0|hv8mvz,102,194,0|hv8mw0,103,195,1|i6ehjz,103,195,1|i6ehk0,102,194,0|idypjz,102,194,0|idypk0,103,195,1|ip4k7z,103,195,1|ip4k80,102,194,0|iwos7z,102,194,0|iwos80,103,195,1|j7umvz,103,195,1|j7umw0,102,194,0|jfeuvz,102,194,0|jfeuw0,103,195,1|jqkpjz,103,195,1|jqkpk0,102,194,0|jyhw7z,102,194,0|jyhw80,103,195,1|k9as7z,103,195,1|k9as80,102,194,0|kh7yvz,102,194,0|kh7yw0,103,195,1|ks0uvz,103,195,1|ks0uw0,102,194,0|kzy1jz,102,194,0|kzy1k0,102,194,1|lb3yzz,102,194,1|lb3z00,89,184,0|lio6zz,89,184,0|lio700,102,194,0|NaN,102,194,0","Asia/Karachi|,0,248,0|-wvpb31,0,248,0|-wvpb30,108,222,0|-e9lba1,108,222,0|-e9lba0,109,223,1|-cmya21,109,223,1|-cmya20,108,222,0|-9j0km1,108,222,0|-9j0km0,91,186,0|n33fz,91,186,0|n33g0,125,186,0|gu5u3z,125,186,0|gu5u40,126,190,1|h3isnz,126,190,1|h3iso0,125,186,0|k1qy3z,125,186,0|k1qy40,126,190,1|k9m7bz,126,190,1|k9m7c0,125,186,0|ki3u3z,125,186,0|ki3u40,126,190,1|kse4nz,126,190,1|kse4o0,125,186,0|NaN,125,186,0","Asia/Kathmandu|,0,249,0|-q3gt4t,0,249,0|-q3gt4s,108,222,0|8clspz,108,222,0|8clsq0,127,250,0|NaN,127,250,0","Asia/Khandyga|,0,251,0|-q4cjrq,0,251,0|-q4cjrp,88,183,0|-kmri81,88,183,0|-kmri80,107,218,0|5vapnz,107,218,0|5vapo0,93,189,1|64pivz,93,189,1|64piw0,107,218,0|6e2mzz,107,218,0|6e2n00,93,189,1|6nhg7z,93,189,1|6nhg80,107,218,0|6wukbz,107,218,0|6wukc0,93,189,1|769djz,93,189,1|769dk0,107,218,0|7focbz,107,218,0|7focc0,93,189,1|7p1j7z,93,189,1|7p1j80,107,218,0|7yekjz,107,218,0|7yekk0,93,189,1|87rlvz,93,189,1|87rlw0,107,218,0|8h4n7z,107,218,0|8h4n80,93,189,1|8qhojz,93,189,1|8qhok0,107,218,0|8zupvz,107,218,0|8zupw0,93,189,1|997r7z,93,189,1|997r80,107,218,0|9iksjz,107,218,0|9iksk0,93,189,1|9rxtvz,93,189,1|9rxtw0,107,218,0|a1av7z,107,218,0|a1av80,93,189,1|aanwjz,93,189,1|aanwk0,107,218,0|ak0xvz,107,218,0|ak0xw0,93,189,1|atqxvz,93,189,1|atqxw0,107,218,0|b33z7z,107,218,0|b33z80,107,218,1|bch3bz,107,218,1|bch3c0,88,183,0|bi8hzz,88,183,0|bi8i00,107,218,0|blu1vz,107,218,0|blu1w0,93,189,1|bv737z,93,189,1|bv7380,107,218,0|c4k4jz,107,218,0|c4k4k0,93,189,1|cdx5vz,93,189,1|cdx5w0,107,218,0|cna77z,107,218,0|cna780,93,189,1|cwn8jz,93,189,1|cwn8k0,107,218,0|d609vz,107,218,0|d609w0,93,189,1|dfdb7z,93,189,1|dfdb80,107,218,0|dp3b7z,107,218,0|dp3b80,93,189,1|dzw77z,93,189,1|dzw780,107,218,0|e7tdvz,107,218,0|e7tdw0,93,189,1|eim9vz,93,189,1|eim9w0,107,218,0|eqjgjz,107,218,0|eqjgk0,93,189,1|f1ccjz,93,189,1|f1cck0,107,218,0|f99j7z,107,218,0|f99j80,93,189,1|fkfdvz,93,189,1|fkfdw0,107,218,0|frzlvz,107,218,0|frzlw0,93,189,1|g35gjz,93,189,1|g35gk0,107,218,0|gapojz,107,218,0|gapok0,93,189,1|glvj7z,93,189,1|glvj80,107,218,0|gtspvz,107,218,0|gtspw0,93,189,1|h4llvz,93,189,1|h4llw0,107,218,0|hcisjz,107,218,0|hcisk0,93,189,1|hnbojz,93,189,1|hnbok0,107,218,0|hqrlnz,107,218,0|hqrlo0,93,189,0|hv8sfz,93,189,0|hv8sg0,89,184,1|i6en3z,89,184,1|i6en40,93,189,0|idyv3z,93,189,0|idyv40,89,184,1|ip4prz,89,184,1|ip4ps0,93,189,0|iwoxrz,93,189,0|iwoxs0,89,184,1|j7usfz,89,184,1|j7usg0,93,189,0|jff0fz,93,189,0|jff0g0,89,184,1|jqkv3z,89,184,1|jqkv40,93,189,0|jyi1rz,93,189,0|jyi1s0,89,184,1|k9axrz,89,184,1|k9axs0,93,189,0|kh84fz,93,189,0|kh84g0,89,184,1|ks10fz,89,184,1|ks10g0,93,189,0|kzy73z,93,189,0|kzy740,89,184,1|lb41rz,89,184,1|lb41s0,93,189,0|lio9rz,93,189,0|lio9s0,89,184,0|lreurz,89,184,0|lreus0,93,189,0|ne0cfz,93,189,0|ne0cg0,107,218,0|NaN,107,218,0","Asia/Kolkata|,0,252,0|-1oaa315,0,252,0|-1oaa314,77,226,0|-1g6thox,77,226,0|-1g6thow,20,253,0|-xehavb,20,253,0|-xehava,110,222,0|-eqtom1,110,222,0|-eqtom0,109,223,1|-ef78q1,109,223,1|-ef78q0,110,222,0|-e9lba1,110,222,0|-e9lba0,109,223,1|-cmya21,109,223,1|-cmya20,110,222,0|NaN,110,222,0","Asia/Krasnoyarsk|,0,254,0|-q37l73,0,254,0|-q37l72,96,190,0|-kmrco1,96,190,0|-kmrco0,90,185,0|5vav7z,90,185,0|5vav80,88,183,1|64pofz,88,183,1|64pog0,90,185,0|6e2sjz,90,185,0|6e2sk0,88,183,1|6nhlrz,88,183,1|6nhls0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1orz,88,183,1|7p1os0,90,185,0|7yeq3z,90,185,0|7yeq40,88,183,1|87rrfz,88,183,1|87rrg0,90,185,0|8h4srz,90,185,0|8h4ss0,88,183,1|8qhu3z,88,183,1|8qhu40,90,185,0|8zuvfz,90,185,0|8zuvg0,88,183,1|997wrz,88,183,1|997ws0,90,185,0|9iky3z,90,185,0|9iky40,88,183,1|9rxzfz,88,183,1|9rxzg0,90,185,0|a1b0rz,90,185,0|a1b0s0,88,183,1|aao23z,88,183,1|aao240,90,185,0|ak13fz,90,185,0|ak13g0,88,183,1|atr3fz,88,183,1|atr3g0,90,185,0|b344rz,90,185,0|b344s0,90,185,1|bch8vz,90,185,1|bch8w0,96,190,0|bi8njz,96,190,0|bi8nk0,90,185,0|blu7fz,90,185,0|blu7g0,88,183,1|bv78rz,88,183,1|bv78s0,90,185,0|c4ka3z,90,185,0|c4ka40,88,183,1|cdxbfz,88,183,1|cdxbg0,90,185,0|cnacrz,90,185,0|cnacs0,88,183,1|cwne3z,88,183,1|cwne40,90,185,0|d60ffz,90,185,0|d60fg0,88,183,1|dfdgrz,88,183,1|dfdgs0,90,185,0|dp3grz,90,185,0|dp3gs0,88,183,1|dzwcrz,88,183,1|dzwcs0,90,185,0|e7tjfz,90,185,0|e7tjg0,88,183,1|eimffz,88,183,1|eimfg0,90,185,0|eqjm3z,90,185,0|eqjm40,88,183,1|f1ci3z,88,183,1|f1ci40,90,185,0|f99orz,90,185,0|f99os0,88,183,1|fkfjfz,88,183,1|fkfjg0,90,185,0|frzrfz,90,185,0|frzrg0,88,183,1|g35m3z,88,183,1|g35m40,90,185,0|gapu3z,90,185,0|gapu40,88,183,1|glvorz,88,183,1|glvos0,90,185,0|gtsvfz,90,185,0|gtsvg0,88,183,1|h4lrfz,88,183,1|h4lrg0,90,185,0|hciy3z,90,185,0|hciy40,88,183,1|hnbu3z,88,183,1|hnbu40,90,185,0|hv90rz,90,185,0|hv90s0,88,183,1|i6evfz,88,183,1|i6evg0,90,185,0|idz3fz,90,185,0|idz3g0,88,183,1|ip4y3z,88,183,1|ip4y40,90,185,0|iwp63z,90,185,0|iwp640,88,183,1|j7v0rz,88,183,1|j7v0s0,90,185,0|jff8rz,90,185,0|jff8s0,88,183,1|jql3fz,88,183,1|jql3g0,90,185,0|jyia3z,90,185,0|jyia40,88,183,1|k9b63z,88,183,1|k9b640,90,185,0|kh8crz,90,185,0|kh8cs0,88,183,1|ks18rz,88,183,1|ks18s0,90,185,0|kzyffz,90,185,0|kzyfg0,88,183,1|lb4a3z,88,183,1|lb4a40,90,185,0|lioi3z,90,185,0|lioi40,88,183,0|ne0hzz,88,183,0|ne0i00,90,185,0|NaN,90,185,0","Asia/Kuala_Lumpur|,0,255,0|-100ew5z,0,255,0|-100ew5y,84,256,0|-xphpwe,84,256,0|-xphpwd,90,185,0|-jb6gs1,90,185,0|-jb6gs0,118,240,1|-hquppd,118,240,1|-hquppc,118,240,0|-esddpd,118,240,0|-esddpc,106,216,0|-ejqa61,106,216,0|-ejqa60,107,218,0|-conl01,107,218,0|-conl00,106,216,0|69g35z,106,216,0|69g360,88,183,0|NaN,88,183,0","Asia/Kuching|,0,257,0|-mvof3l,0,257,0|-mvof3k,106,216,0|-jb6i61,106,216,0|-jb6i60,88,183,0|-hwgm81,88,183,0|-hwgm80,128,258,1|-hrs4hd,128,258,1|-hrs4hc,88,183,0|-hdmu81,88,183,0|-hdmu80,128,258,1|-h8ychd,128,258,1|-h8ychc,88,183,0|-guuww1,88,183,0|-guuww0,128,258,1|-gq6f5d,128,258,1|-gq6f5c,88,183,0|-gc2zk1,88,183,0|-gc2zk0,128,258,1|-g7ehtd,128,258,1|-g7ehtc,88,183,0|-ftb281,88,183,0|-ftb280,128,258,1|-fomkhd,128,258,1|-fomkhc,88,183,0|-faha81,88,183,0|-faha80,128,258,1|-f5sshd,128,258,1|-f5sshc,88,183,0|-erpcw1,88,183,0|-erpcw0,128,258,1|-en0v5d,128,258,1|-en0v5c,88,183,0|-ejqbk1,88,183,0|-ejqbk0,107,218,0|-conl01,107,218,0|-conl00,88,183,0|NaN,88,183,0","Asia/Kuwait|,0,196,0|-bwgbbh,0,196,0|-bwgbbg,100,4,0|NaN,100,4,0","Asia/Macau|,0,259,0|-y0i2cz,0,259,0|-y0i2cy,45,183,0|-emm3o1,45,183,0|-emm3o0,107,218,0|-efxfs1,107,218,0|-efxfs0,93,189,1|-e5lak1,93,189,1|-e5lak0,107,218,0|-dx5ig1,107,218,0|-dx5ig0,93,189,1|-dpa981,93,189,1|-dpa980,107,218,0|-cnoec1,107,218,0|-cnoec0,45,183,0|-ccrt01,45,183,0|-ccrt00,48,218,1|-c4wh01,48,218,1|-c4wh00,45,183,0|-buk901,45,183,0|-buk900,48,218,1|-bizl01,48,218,1|-bizl00,45,183,0|-bb2ec1,45,183,0|-bb2ec0,48,218,1|-b1pd01,48,218,1|-b1pd00,45,183,0|-atu101,45,183,0|-atu100,48,218,1|-aj1501,48,218,1|-aj1500,45,183,0|-ab3yc1,45,183,0|-ab3yc0,48,218,1|-a0b2c1,48,218,1|-a0b2c0,45,183,0|-9sdvo1,45,183,0|-9sdvo0,48,218,1|-9hj501,48,218,1|-9hj500,45,183,0|-99auc1,45,183,0|-99auc0,48,218,1|-8yhyc1,48,218,1|-8yhyc0,45,183,0|-8qkro1,45,183,0|-8qkro0,48,218,1|-8frvo1,48,218,1|-8frvo0,45,183,0|-88kmc1,45,183,0|-88kmc0,48,218,1|-7x1t01,48,218,1|-7x1t00,45,183,0|-7pujo1,45,183,0|-7pujo0,48,218,1|-7dyro1,48,218,1|-7dyro0,45,183,0|-774h01,45,183,0|-774h00,48,218,1|-6v8fa1,48,218,1|-6v8fa0,45,183,0|-6o1361,45,183,0|-6o1360,48,218,1|-6cicm1,48,218,1|-6cicm0,45,183,0|-65b0i1,45,183,0|-65b0i0,48,218,1|-5ts9y1,48,218,1|-5ts9y0,45,183,0|-5mkxu1,45,183,0|-5mkxu0,48,218,1|-5b27a1,48,218,1|-5b27a0,45,183,0|-53uv61,45,183,0|-53uv60,48,218,1|-4rz5y1,48,218,1|-4rz5y0,45,183,0|-4l4si1,45,183,0|-4l4si0,48,218,1|-4993a1,48,218,1|-4993a0,45,183,0|-42epu1,45,183,0|-42epu0,48,218,1|-3qj0m1,48,218,1|-3qj0m0,45,183,0|-3jboi1,45,183,0|-3jboi0,48,218,1|-37sxy1,48,218,1|-37sxy0,45,183,0|-30llu1,45,183,0|-30llu0,48,218,1|-2p2va1,48,218,1|-2p2va0,45,183,0|-2gfoi1,45,183,0|-2gfoi0,48,218,1|-272sq1,48,218,1|-272sq0,45,183,0|-1xplu1,45,183,0|-1xplu0,48,218,1|-1ocq21,48,218,1|-1ocq20,45,183,0|-1ezj61,45,183,0|-1ezj60,48,218,1|-159ly1,48,218,1|-159ly0,45,183,0|-vwhu1,45,183,0|-vwhu0,48,218,1|-mjja1,48,218,1|-mjja0,45,183,0|-d6f61,45,183,0|-d6f60,48,218,1|-3tgm1,48,218,1|-3tgm0,45,183,0|5jnhz,45,183,0|5jni0,48,218,1|ewm1z,48,218,1|ewm20,45,183,0|o9q5z,45,183,0|o9q60,48,218,1|xmopz,48,218,1|xmoq0,45,183,0|16zstz,45,183,0|16zsu0,48,218,1|1gpq1z,48,218,1|1gpq20,45,183,0|1q2u5z,45,183,0|1q2u60,48,218,1|1zfspz,48,218,1|1zfsq0,45,183,0|231i5z,45,183,0|231i60,48,218,1|2i5vdz,48,218,1|2i5ve0,45,183,0|2rizhz,45,183,0|2rizi0,48,218,1|30vy1z,48,218,1|30vy20,45,183,0|3a925z,45,183,0|3a9260,48,218,1|3jm0pz,48,218,1|3jm0q0,45,183,0|4vv4tz,45,183,0|4vv4u0,48,218,1|5457dz,48,218,1|5457e0,45,183,0|NaN,45,183,0","Asia/Magadan|,0,260,0|-nu1nxd,0,260,0|-nu1nxc,93,189,0|-kmrns1,93,189,0|-kmrns0,89,184,0|5vak3z,89,184,0|5vak40,102,194,1|64pdbz,102,194,1|64pdc0,89,184,0|6e2hfz,89,184,0|6e2hg0,102,194,1|6nhanz,102,194,1|6nhao0,89,184,0|6wuerz,89,184,0|6wues0,102,194,1|7697zz,102,194,1|769800,89,184,0|7fo6rz,89,184,0|7fo6s0,102,194,1|7p1dnz,102,194,1|7p1do0,89,184,0|7yeezz,89,184,0|7yef00,102,194,1|87rgbz,102,194,1|87rgc0,89,184,0|8h4hnz,89,184,0|8h4ho0,102,194,1|8qhizz,102,194,1|8qhj00,89,184,0|8zukbz,89,184,0|8zukc0,102,194,1|997lnz,102,194,1|997lo0,89,184,0|9ikmzz,89,184,0|9ikn00,102,194,1|9rxobz,102,194,1|9rxoc0,89,184,0|a1apnz,89,184,0|a1apo0,102,194,1|aanqzz,102,194,1|aanr00,89,184,0|ak0sbz,89,184,0|ak0sc0,102,194,1|atqsbz,102,194,1|atqsc0,89,184,0|b33tnz,89,184,0|b33to0,89,184,1|bcgxrz,89,184,1|bcgxs0,93,189,0|bi8cfz,93,189,0|bi8cg0,89,184,0|bltwbz,89,184,0|bltwc0,102,194,1|bv6xnz,102,194,1|bv6xo0,89,184,0|c4jyzz,89,184,0|c4jz00,102,194,1|cdx0bz,102,194,1|cdx0c0,89,184,0|cna1nz,89,184,0|cna1o0,102,194,1|cwn2zz,102,194,1|cwn300,89,184,0|d604bz,89,184,0|d604c0,102,194,1|dfd5nz,102,194,1|dfd5o0,89,184,0|dp35nz,89,184,0|dp35o0,102,194,1|dzw1nz,102,194,1|dzw1o0,89,184,0|e7t8bz,89,184,0|e7t8c0,102,194,1|eim4bz,102,194,1|eim4c0,89,184,0|eqjazz,89,184,0|eqjb00,102,194,1|f1c6zz,102,194,1|f1c700,89,184,0|f99dnz,89,184,0|f99do0,102,194,1|fkf8bz,102,194,1|fkf8c0,89,184,0|frzgbz,89,184,0|frzgc0,102,194,1|g35azz,102,194,1|g35b00,89,184,0|gapizz,89,184,0|gapj00,102,194,1|glvdnz,102,194,1|glvdo0,89,184,0|gtskbz,89,184,0|gtskc0,102,194,1|h4lgbz,102,194,1|h4lgc0,89,184,0|hcimzz,89,184,0|hcin00,102,194,1|hnbizz,102,194,1|hnbj00,89,184,0|hv8pnz,89,184,0|hv8po0,102,194,1|i6ekbz,102,194,1|i6ekc0,89,184,0|idysbz,89,184,0|idysc0,102,194,1|ip4mzz,102,194,1|ip4n00,89,184,0|iwouzz,89,184,0|iwov00,102,194,1|j7upnz,102,194,1|j7upo0,89,184,0|jfexnz,89,184,0|jfexo0,102,194,1|jqksbz,102,194,1|jqksc0,89,184,0|jyhyzz,89,184,0|jyhz00,102,194,1|k9auzz,102,194,1|k9av00,89,184,0|kh81nz,89,184,0|kh81o0,102,194,1|ks0xnz,102,194,1|ks0xo0,89,184,0|kzy4bz,89,184,0|kzy4c0,102,194,1|lb3yzz,102,194,1|lb3z00,89,184,0|lio6zz,89,184,0|lio700,102,194,0|ne06vz,102,194,0|ne06w0,93,189,0|o63gfz,93,189,0|o63gg0,89,184,0|NaN,89,184,0","Asia/Makassar|,0,261,0|-q3gzg1,0,261,0|-q3gzg0,20,261,0|-jebi41,20,261,0|-jebi40,88,183,0|-ek3a81,88,183,0|-ek3a80,107,218,0|-co37o1,107,218,0|-co37o0,129,183,0|NaN,129,183,0","Asia/Manila|,0,262,0|-1t8ix2p,0,262,0|-1t8ix2o,0,263,0|-10va3qp,0,263,0|-10va3qo,46,183,0|-hb5y81,46,183,0|-hb5y80,56,218,1|-h6fno1,56,218,1|-h6fno0,46,183,0|-efxa81,46,183,0|-efxa80,116,218,0|-d4ux01,116,218,0|-d4ux00,46,183,0|-87fsw1,46,183,0|-87fsw0,56,218,1|-83bqc1,56,218,1|-83bqc0,46,183,0|4aen3z,46,183,0|4aen40,56,218,1|4jtgbz,56,218,1|4jtgc0,46,183,0|NaN,46,183,0","Asia/Muscat|,0,228,0|-q3gnkp,0,228,0|-q3gnko,105,203,0|NaN,105,203,0","Asia/Nicosia|,0,264,0|-p4bq6h,0,264,0|-p4bq6g,14,9,0|2r67rz,14,9,0|2r67s0,15,4,1|30j6bz,15,4,1|30j6c0,14,9,0|3bn93z,14,9,0|3bn940,15,4,1|3jb3nz,15,4,1|3jb3o0,14,9,0|3s9efz,14,9,0|3s9eg0,15,4,1|419ebz,15,4,1|419ec0,14,9,0|4azh3z,14,9,0|4azh40,15,4,1|4keabz,15,4,1|4keac0,14,9,0|4tpjrz,14,9,0|4tpjs0,15,4,1|532ibz,15,4,1|532ic0,14,9,0|5csl3z,14,9,0|5csl40,15,4,1|5lskzz,15,4,1|5lsl00,14,9,0|5v5p3z,14,9,0|5v5p40,15,4,1|64innz,15,4,1|64ino0,14,9,0|6dvrrz,14,9,0|6dvrs0,15,4,1|6n8qbz,15,4,1|6n8qc0,14,9,0|6wlufz,14,9,0|6wlug0,15,4,1|75yszz,15,4,1|75yt00,14,9,0|7fbx3z,14,9,0|7fbx40,15,4,1|7p1ubz,15,4,1|7p1uc0,14,9,0|7yeyfz,14,9,0|7yeyg0,15,4,1|87rwzz,15,4,1|87rx00,14,9,0|8h513z,14,9,0|8h5140,15,4,1|8qhznz,15,4,1|8qhzo0,14,9,0|8zv3rz,14,9,0|8zv3s0,15,4,1|9982bz,15,4,1|9982c0,14,9,0|9il6fz,14,9,0|9il6g0,15,4,1|9ry4zz,15,4,1|9ry500,14,9,0|a1b93z,14,9,0|a1b940,15,4,1|aao7nz,15,4,1|aao7o0,14,9,0|ak1brz,14,9,0|ak1bs0,15,4,1|atr8zz,15,4,1|atr900,14,9,0|b34d3z,14,9,0|b34d40,15,4,1|bchbnz,15,4,1|bchbo0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dygnnz,15,4,1|dygno0,14,9,0|e7trrz,14,9,0|e7trs0,15,4,1|eh6qbz,15,4,1|eh6qc0,14,9,0|eqjufz,14,9,0|eqjug0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Asia/Novokuznetsk|,0,265,0|-nu36td,0,265,0|-nu36tc,96,190,0|-kmrco1,96,190,0|-kmrco0,90,185,0|5vav7z,90,185,0|5vav80,88,183,1|64pofz,88,183,1|64pog0,90,185,0|6e2sjz,90,185,0|6e2sk0,88,183,1|6nhlrz,88,183,1|6nhls0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1orz,88,183,1|7p1os0,90,185,0|7yeq3z,90,185,0|7yeq40,88,183,1|87rrfz,88,183,1|87rrg0,90,185,0|8h4srz,90,185,0|8h4ss0,88,183,1|8qhu3z,88,183,1|8qhu40,90,185,0|8zuvfz,90,185,0|8zuvg0,88,183,1|997wrz,88,183,1|997ws0,90,185,0|9iky3z,90,185,0|9iky40,88,183,1|9rxzfz,88,183,1|9rxzg0,90,185,0|a1b0rz,90,185,0|a1b0s0,88,183,1|aao23z,88,183,1|aao240,90,185,0|ak13fz,90,185,0|ak13g0,88,183,1|atr3fz,88,183,1|atr3g0,90,185,0|b344rz,90,185,0|b344s0,90,185,1|bch8vz,90,185,1|bch8w0,96,190,0|bi8njz,96,190,0|bi8nk0,90,185,0|blu7fz,90,185,0|blu7g0,88,183,1|bv78rz,88,183,1|bv78s0,90,185,0|c4ka3z,90,185,0|c4ka40,88,183,1|cdxbfz,88,183,1|cdxbg0,90,185,0|cnacrz,90,185,0|cnacs0,88,183,1|cwne3z,88,183,1|cwne40,90,185,0|d60ffz,90,185,0|d60fg0,88,183,1|dfdgrz,88,183,1|dfdgs0,90,185,0|dp3grz,90,185,0|dp3gs0,88,183,1|dzwcrz,88,183,1|dzwcs0,90,185,0|e7tjfz,90,185,0|e7tjg0,88,183,1|eimffz,88,183,1|eimfg0,90,185,0|eqjm3z,90,185,0|eqjm40,88,183,1|f1ci3z,88,183,1|f1ci40,90,185,0|f99orz,90,185,0|f99os0,88,183,1|fkfjfz,88,183,1|fkfjg0,90,185,0|frzrfz,90,185,0|frzrg0,88,183,1|g35m3z,88,183,1|g35m40,90,185,0|gapu3z,90,185,0|gapu40,88,183,1|glvorz,88,183,1|glvos0,90,185,0|gtsvfz,90,185,0|gtsvg0,88,183,1|h4lrfz,88,183,1|h4lrg0,90,185,0|hciy3z,90,185,0|hciy40,88,183,1|hnbu3z,88,183,1|hnbu40,90,185,0|hv90rz,90,185,0|hv90s0,88,183,1|i6evfz,88,183,1|i6evg0,90,185,0|idz3fz,90,185,0|idz3g0,88,183,1|ip4y3z,88,183,1|ip4y40,90,185,0|iwp63z,90,185,0|iwp640,88,183,1|j7v0rz,88,183,1|j7v0s0,90,185,0|jff8rz,90,185,0|jff8s0,88,183,1|jql3fz,88,183,1|jql3g0,90,185,0|jyia3z,90,185,0|jyia40,88,183,1|k9b63z,88,183,1|k9b640,90,185,0|kh8crz,90,185,0|kh8cs0,88,183,1|ks18rz,88,183,1|ks18s0,90,185,0|kzyffz,90,185,0|kzyfg0,90,185,1|lb4cvz,90,185,1|lb4cw0,96,190,0|liokvz,96,190,0|liokw0,90,185,0|NaN,90,185,0","Asia/Novosibirsk|,0,266,0|-q4do0t,0,266,0|-q4do0s,96,190,0|-kmrco1,96,190,0|-kmrco0,90,185,0|5vav7z,90,185,0|5vav80,88,183,1|64pofz,88,183,1|64pog0,90,185,0|6e2sjz,90,185,0|6e2sk0,88,183,1|6nhlrz,88,183,1|6nhls0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1orz,88,183,1|7p1os0,90,185,0|7yeq3z,90,185,0|7yeq40,88,183,1|87rrfz,88,183,1|87rrg0,90,185,0|8h4srz,90,185,0|8h4ss0,88,183,1|8qhu3z,88,183,1|8qhu40,90,185,0|8zuvfz,90,185,0|8zuvg0,88,183,1|997wrz,88,183,1|997ws0,90,185,0|9iky3z,90,185,0|9iky40,88,183,1|9rxzfz,88,183,1|9rxzg0,90,185,0|a1b0rz,90,185,0|a1b0s0,88,183,1|aao23z,88,183,1|aao240,90,185,0|ak13fz,90,185,0|ak13g0,88,183,1|atr3fz,88,183,1|atr3g0,90,185,0|b344rz,90,185,0|b344s0,90,185,1|bch8vz,90,185,1|bch8w0,96,190,0|bi8njz,96,190,0|bi8nk0,90,185,0|blu7fz,90,185,0|blu7g0,88,183,1|bv78rz,88,183,1|bv78s0,90,185,0|c4ka3z,90,185,0|c4ka40,88,183,1|c7fr3z,88,183,1|c7fr40,90,185,1|cdxe7z,90,185,1|cdxe80,96,190,0|cnafjz,96,190,0|cnafk0,90,185,1|cwngvz,90,185,1|cwngw0,96,190,0|d60i7z,96,190,0|d60i80,90,185,1|dfdjjz,90,185,1|dfdjk0,96,190,0|dp3jjz,96,190,0|dp3jk0,90,185,1|dzwfjz,90,185,1|dzwfk0,96,190,0|e7tm7z,96,190,0|e7tm80,90,185,1|eimi7z,90,185,1|eimi80,96,190,0|eqjovz,96,190,0|eqjow0,90,185,1|f1ckvz,90,185,1|f1ckw0,96,190,0|f99rjz,96,190,0|f99rk0,90,185,1|fkfm7z,90,185,1|fkfm80,96,190,0|frzu7z,96,190,0|frzu80,90,185,1|g35ovz,90,185,1|g35ow0,96,190,0|gapwvz,96,190,0|gapww0,90,185,1|glvrjz,90,185,1|glvrk0,96,190,0|gtsy7z,96,190,0|gtsy80,90,185,1|h4lu7z,90,185,1|h4lu80,96,190,0|hcj0vz,96,190,0|hcj0w0,90,185,1|hnbwvz,90,185,1|hnbww0,96,190,0|hv93jz,96,190,0|hv93k0,90,185,1|i6ey7z,90,185,1|i6ey80,96,190,0|idz67z,96,190,0|idz680,90,185,1|ip50vz,90,185,1|ip50w0,96,190,0|iwp8vz,96,190,0|iwp8w0,90,185,1|j7v3jz,90,185,1|j7v3k0,96,190,0|jffbjz,96,190,0|jffbk0,90,185,1|jql67z,90,185,1|jql680,96,190,0|jyicvz,96,190,0|jyicw0,90,185,1|k9b8vz,90,185,1|k9b8w0,96,190,0|kh8fjz,96,190,0|kh8fk0,90,185,1|ks1bjz,90,185,1|ks1bk0,96,190,0|kzyi7z,96,190,0|kzyi80,90,185,1|lb4cvz,90,185,1|lb4cw0,96,190,0|liokvz,96,190,0|liokw0,90,185,0|ne0krz,90,185,0|ne0ks0,96,190,0|oasa7z,96,190,0|oasa80,90,185,0|NaN,90,185,0","Asia/Omsk|,0,267,0|-q5xmx7,0,267,0|-q5xmx6,91,186,0|-kmr9w1,91,186,0|-kmr9w0,96,190,0|5vaxzz,96,190,0|5vay00,90,185,1|64pr7z,90,185,1|64pr80,96,190,0|6e2vbz,96,190,0|6e2vc0,90,185,1|6nhojz,90,185,1|6nhok0,96,190,0|6wusnz,96,190,0|6wuso0,90,185,1|769lvz,90,185,1|769lw0,96,190,0|7foknz,96,190,0|7foko0,90,185,1|7p1rjz,90,185,1|7p1rk0,96,190,0|7yesvz,96,190,0|7yesw0,90,185,1|87ru7z,90,185,1|87ru80,96,190,0|8h4vjz,96,190,0|8h4vk0,90,185,1|8qhwvz,90,185,1|8qhww0,96,190,0|8zuy7z,96,190,0|8zuy80,90,185,1|997zjz,90,185,1|997zk0,96,190,0|9il0vz,96,190,0|9il0w0,90,185,1|9ry27z,90,185,1|9ry280,96,190,0|a1b3jz,96,190,0|a1b3k0,90,185,1|aao4vz,90,185,1|aao4w0,96,190,0|ak167z,96,190,0|ak1680,90,185,1|atr67z,90,185,1|atr680,96,190,0|b347jz,96,190,0|b347k0,96,190,1|bchbnz,96,190,1|bchbo0,91,186,0|bi8qbz,91,186,0|bi8qc0,96,190,0|blua7z,96,190,0|blua80,90,185,1|bv7bjz,90,185,1|bv7bk0,96,190,0|c4kcvz,96,190,0|c4kcw0,90,185,1|cdxe7z,90,185,1|cdxe80,96,190,0|cnafjz,96,190,0|cnafk0,90,185,1|cwngvz,90,185,1|cwngw0,96,190,0|d60i7z,96,190,0|d60i80,90,185,1|dfdjjz,90,185,1|dfdjk0,96,190,0|dp3jjz,96,190,0|dp3jk0,90,185,1|dzwfjz,90,185,1|dzwfk0,96,190,0|e7tm7z,96,190,0|e7tm80,90,185,1|eimi7z,90,185,1|eimi80,96,190,0|eqjovz,96,190,0|eqjow0,90,185,1|f1ckvz,90,185,1|f1ckw0,96,190,0|f99rjz,96,190,0|f99rk0,90,185,1|fkfm7z,90,185,1|fkfm80,96,190,0|frzu7z,96,190,0|frzu80,90,185,1|g35ovz,90,185,1|g35ow0,96,190,0|gapwvz,96,190,0|gapww0,90,185,1|glvrjz,90,185,1|glvrk0,96,190,0|gtsy7z,96,190,0|gtsy80,90,185,1|h4lu7z,90,185,1|h4lu80,96,190,0|hcj0vz,96,190,0|hcj0w0,90,185,1|hnbwvz,90,185,1|hnbww0,96,190,0|hv93jz,96,190,0|hv93k0,90,185,1|i6ey7z,90,185,1|i6ey80,96,190,0|idz67z,96,190,0|idz680,90,185,1|ip50vz,90,185,1|ip50w0,96,190,0|iwp8vz,96,190,0|iwp8w0,90,185,1|j7v3jz,90,185,1|j7v3k0,96,190,0|jffbjz,96,190,0|jffbk0,90,185,1|jql67z,90,185,1|jql680,96,190,0|jyicvz,96,190,0|jyicw0,90,185,1|k9b8vz,90,185,1|k9b8w0,96,190,0|kh8fjz,96,190,0|kh8fk0,90,185,1|ks1bjz,90,185,1|ks1bk0,96,190,0|kzyi7z,96,190,0|kzyi80,90,185,1|lb4cvz,90,185,1|lb4cw0,96,190,0|liokvz,96,190,0|liokw0,90,185,0|ne0krz,90,185,0|ne0ks0,96,190,0|NaN,96,190,0","Asia/Oral|,0,268,0|-nu15id,0,268,0|-nu15ic,100,4,0|-kmr4c1,100,4,0|-kmr4c0,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,91,186,1|aaoafz,91,186,1|aaoag0,105,203,0|ak1brz,105,203,0|ak1bs0,91,186,1|atrbrz,91,186,1|atrbs0,105,203,0|b34d3z,105,203,0|b34d40,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,91,186,1|bv7h3z,91,186,1|bv7h40,105,203,0|c4kifz,105,203,0|c4kig0,91,186,1|cdxjrz,91,186,1|cdxjs0,105,203,0|cnal3z,105,203,0|cnal40,91,186,1|cwnmfz,91,186,1|cwnmg0,105,203,0|d60nrz,105,203,0|d60ns0,91,186,1|dfdp3z,91,186,1|dfdp40,105,203,0|dp3p3z,105,203,0|dp3p40,91,186,1|dzwl3z,91,186,1|dzwl40,105,203,0|e7trrz,105,203,0|e7trs0,91,186,1|eimnrz,91,186,1|eimns0,105,203,0|eqjufz,105,203,0|eqjug0,91,186,1|f1cqfz,91,186,1|f1cqg0,105,203,0|f99x3z,105,203,0|f99x40,91,186,1|fkfrrz,91,186,1|fkfrs0,105,203,0|frzzrz,105,203,0|frzzs0,91,186,1|g35ufz,91,186,1|g35ug0,105,203,0|gaq2fz,105,203,0|gaq2g0,91,186,1|glvx3z,91,186,1|glvx40,105,203,0|gtt3rz,105,203,0|gtt3s0,91,186,1|h4lzrz,91,186,1|h4lzs0,105,203,0|hcj6fz,105,203,0|hcj6g0,91,186,1|hnc2fz,91,186,1|hnc2g0,105,203,0|hv993z,105,203,0|hv9940,91,186,1|i6f3rz,91,186,1|i6f3s0,91,186,0|NaN,91,186,0","Asia/Phnom_Penh|,0,211,0|-1ayyla5,0,211,0|-1ayyla4,54,211,0|-pysda5,54,211,0|-pysda4,90,185,0|NaN,90,185,0","Asia/Pontianak|,0,269,0|-w6piwx,0,269,0|-w6piww,5,269,0|-jebg8x,5,269,0|-jebg8w,106,216,0|-eknm61,106,216,0|-eknm60,107,218,0|-co37o1,107,218,0|-co37o0,106,216,0|-bb5zi1,106,216,0|-bb5zi0,88,183,0|-a9m681,88,183,0|-a9m680,106,216,0|-34ru61,106,216,0|-34ru60,129,183,0|9e5gfz,129,183,0|9e5gg0,119,185,0|NaN,119,185,0","Asia/Pyongyang|,0,270,0|-w895yd,0,270,0|-w895yc,130,236,0|-u9s4y1,130,236,0|-u9s4y0,116,218,0|-cpmro1,116,218,0|-cpmro0,130,218,0|nt2uzz,130,218,0|nt2v00,130,236,0|p87lnz,130,236,0|p87lo0,130,218,0|NaN,130,218,0","Asia/Qatar|,0,209,0|-q3gmvl,0,209,0|-q3gmvk,105,203,0|19d0vz,105,203,0|19d0w0,100,4,0|NaN,100,4,0","Asia/Qostanay|,0,271,0|-nu17s5,0,271,0|-nu17s4,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,91,186,0|d60kzz,91,186,0|d60l00,96,190,1|dfdmbz,96,190,1|dfdmc0,91,186,0|dp3mbz,91,186,0|dp3mc0,96,190,1|dzwibz,96,190,1|dzwic0,91,186,0|e7tozz,91,186,0|e7tp00,96,190,1|eimkzz,96,190,1|eiml00,91,186,0|eqjrnz,91,186,0|eqjro0,96,190,1|f1cnnz,96,190,1|f1cno0,91,186,0|f99ubz,91,186,0|f99uc0,96,190,1|fkfozz,96,190,1|fkfp00,91,186,0|frzwzz,91,186,0|frzx00,96,190,1|g35rnz,96,190,1|g35ro0,91,186,0|gapznz,91,186,0|gapzo0,96,190,1|glvubz,96,190,1|glvuc0,91,186,0|gtt0zz,91,186,0|gtt100,96,190,1|h4lwzz,96,190,1|h4lx00,91,186,0|hcj3nz,91,186,0|hcj3o0,96,190,1|hnbznz,96,190,1|hnbzo0,91,186,0|hv96bz,91,186,0|hv96c0,96,190,1|i6f0zz,96,190,1|i6f100,96,190,0|NaN,96,190,0","Asia/Qyzylorda|,0,272,0|-nu184h,0,272,0|-nu184g,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,91,186,0|bi8qbz,91,186,0|bi8qc0,96,190,0|blua7z,96,190,0|blua80,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,91,186,0|d60kzz,91,186,0|d60l00,96,190,1|dfdmbz,96,190,1|dfdmc0,91,186,0|dp3mbz,91,186,0|dp3mc0,96,190,1|dzwibz,96,190,1|dzwic0,91,186,0|e7tozz,91,186,0|e7tp00,96,190,1|eimkzz,96,190,1|eiml00,91,186,0|eqjrnz,91,186,0|eqjro0,96,190,1|f1cnnz,96,190,1|f1cno0,91,186,0|f99ubz,91,186,0|f99uc0,96,190,1|fkfozz,96,190,1|fkfp00,91,186,0|frzwzz,91,186,0|frzx00,96,190,1|g35rnz,96,190,1|g35ro0,91,186,0|gapznz,91,186,0|gapzo0,96,190,1|glvubz,96,190,1|glvuc0,91,186,0|gtt0zz,91,186,0|gtt100,96,190,1|h4lwzz,96,190,1|h4lx00,91,186,0|hcj3nz,91,186,0|hcj3o0,96,190,1|hnbznz,96,190,1|hnbzo0,91,186,0|hv96bz,91,186,0|hv96c0,96,190,1|i6f0zz,96,190,1|i6f100,96,190,0|pk1rbz,96,190,0|pk1rc0,91,186,0|NaN,91,186,0","Asia/Riyadh|,0,196,0|-bwgbbh,0,196,0|-bwgbbg,100,4,0|NaN,100,4,0","Asia/Sakhalin|,0,273,0|-xl87rd,0,273,0|-xl87rc,107,218,0|-cpkx01,107,218,0|-cpkx00,89,184,0|5vak3z,89,184,0|5vak40,102,194,1|64pdbz,102,194,1|64pdc0,89,184,0|6e2hfz,89,184,0|6e2hg0,102,194,1|6nhanz,102,194,1|6nhao0,89,184,0|6wuerz,89,184,0|6wues0,102,194,1|7697zz,102,194,1|769800,89,184,0|7fo6rz,89,184,0|7fo6s0,102,194,1|7p1dnz,102,194,1|7p1do0,89,184,0|7yeezz,89,184,0|7yef00,102,194,1|87rgbz,102,194,1|87rgc0,89,184,0|8h4hnz,89,184,0|8h4ho0,102,194,1|8qhizz,102,194,1|8qhj00,89,184,0|8zukbz,89,184,0|8zukc0,102,194,1|997lnz,102,194,1|997lo0,89,184,0|9ikmzz,89,184,0|9ikn00,102,194,1|9rxobz,102,194,1|9rxoc0,89,184,0|a1apnz,89,184,0|a1apo0,102,194,1|aanqzz,102,194,1|aanr00,89,184,0|ak0sbz,89,184,0|ak0sc0,102,194,1|atqsbz,102,194,1|atqsc0,89,184,0|b33tnz,89,184,0|b33to0,89,184,1|bcgxrz,89,184,1|bcgxs0,93,189,0|bi8cfz,93,189,0|bi8cg0,89,184,0|bltwbz,89,184,0|bltwc0,102,194,1|bv6xnz,102,194,1|bv6xo0,89,184,0|c4jyzz,89,184,0|c4jz00,102,194,1|cdx0bz,102,194,1|cdx0c0,89,184,0|cna1nz,89,184,0|cna1o0,102,194,1|cwn2zz,102,194,1|cwn300,89,184,0|d604bz,89,184,0|d604c0,102,194,1|dfd5nz,102,194,1|dfd5o0,89,184,0|dp35nz,89,184,0|dp35o0,102,194,1|dzw1nz,102,194,1|dzw1o0,89,184,0|e7t8bz,89,184,0|e7t8c0,89,184,1|eim73z,89,184,1|eim740,93,189,0|eqjdrz,93,189,0|eqjds0,89,184,1|f1c9rz,89,184,1|f1c9s0,93,189,0|f99gfz,93,189,0|f99gg0,89,184,1|fkfb3z,89,184,1|fkfb40,93,189,0|frzj3z,93,189,0|frzj40,89,184,1|g35drz,89,184,1|g35ds0,93,189,0|gaplrz,93,189,0|gapls0,89,184,1|glvgfz,89,184,1|glvgg0,93,189,0|gtsn3z,93,189,0|gtsn40,89,184,1|h4lj3z,89,184,1|h4lj40,93,189,0|hciprz,93,189,0|hcips0,89,184,1|hnblrz,89,184,1|hnbls0,93,189,0|hv8sfz,93,189,0|hv8sg0,89,184,1|i6en3z,89,184,1|i6en40,93,189,0|idyv3z,93,189,0|idyv40,89,184,1|ip4prz,89,184,1|ip4ps0,93,189,0|iwoxrz,93,189,0|iwoxs0,89,184,1|j7usfz,89,184,1|j7usg0,93,189,0|jff0fz,93,189,0|jff0g0,89,184,1|jqkv3z,89,184,1|jqkv40,93,189,0|jyi1rz,93,189,0|jyi1s0,89,184,1|k9axrz,89,184,1|k9axs0,93,189,0|kh84fz,93,189,0|kh84g0,89,184,1|ks10fz,89,184,1|ks10g0,93,189,0|kzy73z,93,189,0|kzy740,89,184,1|lb41rz,89,184,1|lb41s0,93,189,0|lio9rz,93,189,0|lio9s0,89,184,0|ne09nz,89,184,0|ne09o0,93,189,0|o4nlrz,93,189,0|o4nls0,89,184,0|NaN,89,184,0","Asia/Samarkand|,0,274,0|-nu18ei,0,274,0|-nu18eh,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,96,190,0|6e2vbz,96,190,0|6e2vc0,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,96,190,1|bchbnz,96,190,1|bchbo0,91,186,0|NaN,91,186,0","Asia/Seoul|,0,275,0|-w8966h,0,275,0|-w8966g,130,236,0|-u9s4y1,130,236,0|-u9s4y0,116,218,0|-couzo1,116,218,0|-couzo0,130,218,0|-b9kp01,130,218,0|-b9kp00,131,189,1|-b486g1,131,189,1|-b486g0,130,218,0|-atu101,130,218,0|-atu100,131,189,1|-aljyg1,131,189,1|-aljyg0,130,218,0|-ab5t01,130,218,0|-ab5t00,131,189,1|-a2tvs1,131,189,1|-a2tvs0,130,218,0|-9ql2c1,130,218,0|-9ql2c0,131,189,1|-9k3t41,131,189,1|-9k3t40,130,218,0|-88kmc1,130,218,0|-88kmc0,130,236,0|-7nhbm1,130,236,0|-7nhbm0,131,242,1|-7gy7q1,131,242,1|-7gy7q0,130,236,0|-73vrm1,130,236,0|-73vrm0,131,242,1|-6x1jq1,131,242,1|-6x1jq0,130,236,0|-6lvma1,130,236,0|-6lvma0,131,242,1|-6eofq1,131,242,1|-6eofq0,130,236,0|-635jm1,130,236,0|-635jm0,131,242,1|-5vyd21,131,242,1|-5vyd20,130,236,0|-5kfgy1,130,236,0|-5kfgy0,131,242,1|-5d8ae1,131,242,1|-5d8ae0,130,236,0|-51pea1,130,236,0|-51pea0,131,242,1|-4ui7q1,131,242,1|-4ui7q0,130,236,0|-4dqfm1,130,236,0|-4dqfm0,130,218,0|920hvz,130,218,0|920hw0,131,189,1|99xojz,131,189,1|99xok0,130,218,0|9kqkjz,130,218,0|9kqkk0,131,189,1|9snr7z,131,189,1|9snr80,130,218,0|NaN,130,218,0","Asia/Shanghai|,0,276,0|-100eztk,0,276,0|-100eztj,45,183,0|-qh00w1,45,183,0|-qh00w0,48,218,1|-q87fo1,48,218,1|-q87fo0,45,183,0|-ffvq81,45,183,0|-ffvq80,48,218,1|-f8zno1,48,218,1|-f8zno0,45,183,0|-f148w1,45,183,0|-f148w0,48,218,1|-ep6p01,48,218,1|-ep6p00,45,183,0|-ekjy81,45,183,0|-ekjy80,48,218,1|-cp63o1,48,218,1|-cp63o0,45,183,0|-cc1sw1,45,183,0|-cc1sw0,48,218,1|-c4wh01,48,218,1|-c4wh00,45,183,0|-butfk1,45,183,0|-butfk0,48,218,1|-bkj501,48,218,1|-bkj500,45,183,0|-bb60w1,45,183,0|-bb60w0,48,218,1|-b3aro1,48,218,1|-b3aro0,45,183,0|-ase3k1,45,183,0|-ase3k0,48,218,1|-ar06c1,48,218,1|-ar06c0,45,183,0|8ixjbz,45,183,0|8ixjc0,48,218,1|8prr7z,48,218,1|8prr80,45,183,0|90kpzz,45,183,0|90kq00,48,218,1|98htvz,48,218,1|98htw0,45,183,0|9jnrbz,45,183,0|9jnrc0,48,218,1|9r7wjz,48,218,1|9r7wk0,45,183,0|a2dtzz,45,183,0|a2du00,48,218,1|aaaxvz,48,218,1|aaaxw0,45,183,0|al3wnz,45,183,0|al3wo0,48,218,1|at10jz,48,218,1|at10k0,45,183,0|b3tzbz,45,183,0|b3tzc0,48,218,1|bbr37z,48,218,1|bbr380,45,183,0|NaN,45,183,0","Asia/Singapore|,0,256,0|-100ewke,0,256,0|-100ewkd,84,256,0|-xphpwe,84,256,0|-xphpwd,90,185,0|-jb6gs1,90,185,0|-jb6gs0,118,240,1|-hquppd,118,240,1|-hquppc,118,240,0|-esddpd,118,240,0|-esddpc,106,216,0|-ejqa61,106,216,0|-ejqa60,107,218,0|-conl01,107,218,0|-conl00,106,216,0|69g35z,106,216,0|69g360,88,183,0|NaN,88,183,0","Asia/Srednekolymsk|,0,277,0|-nu1ogt,0,277,0|-nu1ogs,93,189,0|-kmrns1,93,189,0|-kmrns0,89,184,0|5vak3z,89,184,0|5vak40,102,194,1|64pdbz,102,194,1|64pdc0,89,184,0|6e2hfz,89,184,0|6e2hg0,102,194,1|6nhanz,102,194,1|6nhao0,89,184,0|6wuerz,89,184,0|6wues0,102,194,1|7697zz,102,194,1|769800,89,184,0|7fo6rz,89,184,0|7fo6s0,102,194,1|7p1dnz,102,194,1|7p1do0,89,184,0|7yeezz,89,184,0|7yef00,102,194,1|87rgbz,102,194,1|87rgc0,89,184,0|8h4hnz,89,184,0|8h4ho0,102,194,1|8qhizz,102,194,1|8qhj00,89,184,0|8zukbz,89,184,0|8zukc0,102,194,1|997lnz,102,194,1|997lo0,89,184,0|9ikmzz,89,184,0|9ikn00,102,194,1|9rxobz,102,194,1|9rxoc0,89,184,0|a1apnz,89,184,0|a1apo0,102,194,1|aanqzz,102,194,1|aanr00,89,184,0|ak0sbz,89,184,0|ak0sc0,102,194,1|atqsbz,102,194,1|atqsc0,89,184,0|b33tnz,89,184,0|b33to0,89,184,1|bcgxrz,89,184,1|bcgxs0,93,189,0|bi8cfz,93,189,0|bi8cg0,89,184,0|bltwbz,89,184,0|bltwc0,102,194,1|bv6xnz,102,194,1|bv6xo0,89,184,0|c4jyzz,89,184,0|c4jz00,102,194,1|cdx0bz,102,194,1|cdx0c0,89,184,0|cna1nz,89,184,0|cna1o0,102,194,1|cwn2zz,102,194,1|cwn300,89,184,0|d604bz,89,184,0|d604c0,102,194,1|dfd5nz,102,194,1|dfd5o0,89,184,0|dp35nz,89,184,0|dp35o0,102,194,1|dzw1nz,102,194,1|dzw1o0,89,184,0|e7t8bz,89,184,0|e7t8c0,102,194,1|eim4bz,102,194,1|eim4c0,89,184,0|eqjazz,89,184,0|eqjb00,102,194,1|f1c6zz,102,194,1|f1c700,89,184,0|f99dnz,89,184,0|f99do0,102,194,1|fkf8bz,102,194,1|fkf8c0,89,184,0|frzgbz,89,184,0|frzgc0,102,194,1|g35azz,102,194,1|g35b00,89,184,0|gapizz,89,184,0|gapj00,102,194,1|glvdnz,102,194,1|glvdo0,89,184,0|gtskbz,89,184,0|gtskc0,102,194,1|h4lgbz,102,194,1|h4lgc0,89,184,0|hcimzz,89,184,0|hcin00,102,194,1|hnbizz,102,194,1|hnbj00,89,184,0|hv8pnz,89,184,0|hv8po0,102,194,1|i6ekbz,102,194,1|i6ekc0,89,184,0|idysbz,89,184,0|idysc0,102,194,1|ip4mzz,102,194,1|ip4n00,89,184,0|iwouzz,89,184,0|iwov00,102,194,1|j7upnz,102,194,1|j7upo0,89,184,0|jfexnz,89,184,0|jfexo0,102,194,1|jqksbz,102,194,1|jqksc0,89,184,0|jyhyzz,89,184,0|jyhz00,102,194,1|k9auzz,102,194,1|k9av00,89,184,0|kh81nz,89,184,0|kh81o0,102,194,1|ks0xnz,102,194,1|ks0xo0,89,184,0|kzy4bz,89,184,0|kzy4c0,102,194,1|lb3yzz,102,194,1|lb3z00,89,184,0|lio6zz,89,184,0|lio700,102,194,0|ne06vz,102,194,0|ne06w0,89,184,0|NaN,89,184,0","Asia/Taipei|,0,278,0|-12mch61,0,278,0|-12mch60,45,183,0|-gtzfk1,45,183,0|-gtzfk0,116,218,0|-co6u81,116,218,0|-co6u80,45,183,0|-cc1sw1,45,183,0|-cc1sw0,48,218,1|-c4wh01,48,218,1|-c4wh00,45,183,0|-butfk1,45,183,0|-butfk0,48,218,1|-bkj501,48,218,1|-bkj500,45,183,0|-bb60w1,45,183,0|-bb60w0,48,218,1|-b3aro1,48,218,1|-b3aro0,45,183,0|-ase3k1,45,183,0|-ase3k0,48,218,1|-akiuc1,48,218,1|-akiuc0,45,183,0|-a9m681,45,183,0|-a9m680,48,218,1|-a1qx01,48,218,1|-a1qx00,45,183,0|-9qu8w1,45,183,0|-9qu8w0,48,218,1|-9iyzo1,48,218,1|-9iyzo0,45,183,0|-9b5fk1,45,183,0|-9b5fk0,48,218,1|-8yjt01,48,218,1|-8yjt00,45,183,0|-8qs3k1,45,183,0|-8qs3k0,48,218,1|-8frvo1,48,218,1|-8frvo0,45,183,0|-880681,45,183,0|-880680,48,218,1|-7wzyc1,48,218,1|-7wzyc0,45,183,0|-7p88w1,45,183,0|-7p88w0,48,218,1|-7ftfo1,48,218,1|-7ftfo0,45,183,0|-76egw1,45,183,0|-76egw0,48,218,1|-6wzno1,48,218,1|-6wzno0,45,183,0|-6nmjk1,45,183,0|-6nmjk0,48,218,1|-6e7qc1,48,218,1|-6e7qc0,45,183,0|-64um81,45,183,0|-64um80,48,218,1|-5vft01,48,218,1|-5vft00,45,183,0|-5m2ow1,45,183,0|-5m2ow0,48,218,1|-5cnvo1,48,218,1|-5cnvo0,45,183,0|-503y81,45,183,0|-503y80,48,218,1|-4tu3o1,48,218,1|-4tu3o0,45,183,0|-4hc0w1,45,183,0|-4hc0w0,48,218,1|-4b26c1,48,218,1|-4b26c0,45,183,0|27rlrz,45,183,0|27rls0,48,218,1|2h6ezz,48,218,1|2h6f00,45,183,0|2qjj3z,45,183,0|2qjj40,48,218,1|2zycbz,48,218,1|2zycc0,45,183,0|4ydlrz,45,183,0|4ydls0,48,218,1|533wbz,48,218,1|533wc0,45,183,0|NaN,45,183,0","Asia/Tashkent|,0,279,0|-nu18u0,0,279,0|-nu18tz,91,186,0|-kmr9w1,91,186,0|-kmr9w0,96,190,0|5vaxzz,96,190,0|5vay00,90,185,1|64pr7z,90,185,1|64pr80,96,190,0|6e2vbz,96,190,0|6e2vc0,90,185,1|6nhojz,90,185,1|6nhok0,96,190,0|6wusnz,96,190,0|6wuso0,90,185,1|769lvz,90,185,1|769lw0,96,190,0|7foknz,96,190,0|7foko0,90,185,1|7p1rjz,90,185,1|7p1rk0,96,190,0|7yesvz,96,190,0|7yesw0,90,185,1|87ru7z,90,185,1|87ru80,96,190,0|8h4vjz,96,190,0|8h4vk0,90,185,1|8qhwvz,90,185,1|8qhww0,96,190,0|8zuy7z,96,190,0|8zuy80,90,185,1|997zjz,90,185,1|997zk0,96,190,0|9il0vz,96,190,0|9il0w0,90,185,1|9ry27z,90,185,1|9ry280,96,190,0|a1b3jz,96,190,0|a1b3k0,90,185,1|aao4vz,90,185,1|aao4w0,96,190,0|ak167z,96,190,0|ak1680,90,185,1|atr67z,90,185,1|atr680,96,190,0|b347jz,96,190,0|b347k0,96,190,1|bchbnz,96,190,1|bchbo0,91,186,0|NaN,91,186,0","Asia/Tbilisi|,0,280,0|-1ayyayo,0,280,0|-1ayyayn,132,280,0|-nu14ao,132,280,0|-nu14an,100,4,0|-6p7kc1,100,4,0|-6p7kc0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,91,186,1|aaoafz,91,186,1|aaoag0,105,203,0|ak1brz,105,203,0|ak1bs0,91,186,1|atrbrz,91,186,1|atrbs0,105,203,0|b34d3z,105,203,0|b34d40,105,203,1|bchh7z,105,203,1|bchh80,100,4,0|bluczz,100,4,0|blud00,105,203,1|bv7bjz,105,203,1|bv7bk0,100,4,0|c4kfnz,100,4,0|c4kfo0,105,203,1|cdxe7z,105,203,1|cdxe80,100,4,0|cnaibz,100,4,0|cnaic0,105,203,1|cwngvz,105,203,1|cwngw0,105,203,0|d60i7z,105,203,0|d60i80,91,186,1|dfdgrz,91,186,1|dfdgs0,105,203,0|dp3jjz,105,203,0|dp3jk0,91,186,1|eimffz,91,186,1|eimfg0,105,203,0|eqjovz,105,203,0|eqjow0,91,186,1|f1ci3z,91,186,1|f1ci40,105,203,0|f99rjz,105,203,0|f99rk0,91,186,1|fkfjfz,91,186,1|fkfjg0,105,203,0|frzu7z,105,203,0|frzu80,91,186,1|g35m3z,91,186,1|g35m40,105,203,0|gapwvz,105,203,0|gapww0,91,186,1|glvorz,91,186,1|glvos0,105,203,0|gtsy7z,105,203,0|gtsy80,91,186,1|h4lrfz,91,186,1|h4lrg0,105,203,0|hcj0vz,105,203,0|hcj0w0,91,186,1|hnbu3z,91,186,1|hnbu40,105,203,0|hv93jz,105,203,0|hv93k0,91,186,1|hzxjfz,91,186,1|hzxjg0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,0|NaN,105,203,0","Asia/Tehran|,0,281,0|-s6m6ux,0,281,0|-s6m6uw,133,281,0|-cixlix,133,281,0|-cixliw,134,282,0|435vlz,134,282,0|435vm0,105,203,0|4ad3jz,105,203,0|4ad3k0,91,186,1|4ldbfz,91,186,1|4ldbg0,105,203,0|4p2q7z,105,203,0|4p2q80,134,282,0|4t529z,134,282,0|4t52a0,124,246,1|52i0tz,124,246,1|52i0u0,134,282,0|5byu9z,134,282,0|5byua0,124,246,1|5lj7hz,124,246,1|5lj7i0,134,282,0|b4tcxz,134,282,0|b4tcy0,124,246,1|bc48tz,124,246,1|bc48u0,134,282,0|blhcxz,134,282,0|blhcy0,124,246,1|buy0tz,124,246,1|buy0u0,134,282,0|c49a9z,134,282,0|c49aa0,124,246,1|cdpy5z,124,246,1|cdpy60,134,282,0|cn17lz,134,282,0|cn17m0,124,246,1|cwhvhz,124,246,1|cwhvi0,134,282,0|d5t4xz,134,282,0|d5t4y0,124,246,1|df9stz,124,246,1|df9su0,134,282,0|dol29z,134,282,0|dol2a0,124,246,1|dy1q5z,124,246,1|dy1q60,134,282,0|e7eu9z,134,282,0|e7eua0,124,246,1|egvi5z,124,246,1|egvi60,134,282,0|eq6rlz,134,282,0|eq6rm0,124,246,1|eznfhz,124,246,1|eznfi0,134,282,0|f8yoxz,134,282,0|f8yoy0,124,246,1|fifctz,124,246,1|fifcu0,134,282,0|frqm9z,134,282,0|frqma0,124,246,1|g17a5z,124,246,1|g17a60,134,282,0|gake9z,134,282,0|gakea0,124,246,1|gk125z,124,246,1|gk1260,134,282,0|gtcblz,134,282,0|gtcbm0,124,246,1|h2szhz,124,246,1|h2szi0,134,282,0|hc48xz,134,282,0|hc48y0,124,246,1|hlkwtz,124,246,1|hlkwu0,134,282,0|huw69z,134,282,0|huw6a0,124,246,1|i4cu5z,124,246,1|i4cu60,134,282,0|idpy9z,134,282,0|idpya0,124,246,1|in6m5z,124,246,1|in6m60,134,282,0|jy1q9z,134,282,0|jy1qa0,124,246,1|k7ie5z,124,246,1|k7ie60,134,282,0|kgvi9z,134,282,0|kgvia0,124,246,1|kqc65z,124,246,1|kqc660,134,282,0|kznflz,134,282,0|kznfm0,124,246,1|l943hz,124,246,1|l943i0,134,282,0|lifcxz,134,282,0|lifcy0,124,246,1|lrw0tz,124,246,1|lrw0u0,134,282,0|m17a9z,134,282,0|m17aa0,124,246,1|many5z,124,246,1|many60,134,282,0|mk129z,134,282,0|mk12a0,124,246,1|mthq5z,124,246,1|mthq60,134,282,0|n2szlz,134,282,0|n2szm0,124,246,1|nc9nhz,124,246,1|nc9ni0,134,282,0|nlkwxz,134,282,0|nlkwy0,124,246,1|nv1ktz,124,246,1|nv1ku0,134,282,0|o4cu9z,134,282,0|o4cua0,124,246,1|odti5z,124,246,1|odti60,134,282,0|on6m9z,134,282,0|on6ma0,124,246,1|owna5z,124,246,1|owna60,134,282,0|p5yjlz,134,282,0|p5yjm0,124,246,1|pff7hz,124,246,1|pff7i0,134,282,0|poqgxz,134,282,0|poqgy0,124,246,1|py74tz,124,246,1|py74u0,134,282,0|q7ie9z,134,282,0|q7iea0,124,246,1|qgz25z,124,246,1|qgz260,134,282,0|qqc69z,134,282,0|qqc6a0,124,246,1|qzsu5z,124,246,1|qzsu60,134,282,0|r943lz,134,282,0|r943m0,124,246,1|rikrhz,124,246,1|rikri0,134,282,0|rrw0xz,134,282,0|rrw0y0,124,246,1|s1cotz,124,246,1|s1cou0,134,282,0|sany9z,134,282,0|sanya0,124,246,1|sk4m5z,124,246,1|sk4m60,134,282,0|sthq9z,134,282,0|sthqa0,124,246,1|t2ye5z,124,246,1|t2ye60,134,282,0|tc9nlz,134,282,0|tc9nm0,124,246,1|tlqbhz,124,246,1|tlqbi0,134,282,0|tv1kxz,134,282,0|tv1ky0,124,246,1|u4i8tz,124,246,1|u4i8u0,134,282,0|udti9z,134,282,0|udtia0,124,246,1|una65z,124,246,1|una660,134,282,0|uwlflz,134,282,0|uwlfm0,124,246,1|v623hz,124,246,1|v623i0,134,282,0|vff7lz,134,282,0|vff7m0,124,246,1|vovvhz,124,246,1|vovvi0,134,282,0|vy74xz,134,282,0|vy74y0,124,246,1|w7nstz,124,246,1|w7nsu0,134,282,0|wgz29z,134,282,0|wgz2a0,124,246,1|wqfq5z,124,246,1|wqfq60,134,282,0|wzqzlz,134,282,0|wzqzm0,124,246,1|x97nhz,124,246,1|x97ni0,134,282,0|xikrlz,134,282,0|xikrm0,124,246,1|xs1fhz,124,246,1|xs1fi0,134,282,0|y1coxz,134,282,0|y1coy0,124,246,1|yatctz,124,246,1|yatcu0,134,282,0|yk4m9z,134,282,0|yk4ma0,124,246,1|ytla5z,124,246,1|ytla60,134,282,0|z2wjlz,134,282,0|z2wjm0,124,246,1|zcd7hz,124,246,1|zcd7i0,134,282,0|zlqblz,134,282,0|zlqbm0,124,246,1|zv6zhz,124,246,1|zv6zi0,134,282,0|104i8xz,134,282,0|104i8y0,124,246,1|10dywtz,124,246,1|10dywu0,134,282,0|10na69z,134,282,0|10na6a0,124,246,1|10wqu5z,124,246,1|10wqu60,134,282,0|11623lz,134,282,0|11623m0,124,246,1|11firhz,124,246,1|11firi0,134,282,0|11ovvlz,134,282,0|11ovvm0,124,246,1|11ycjhz,124,246,1|11ycji0,134,282,0|127nsxz,134,282,0|127nsy0,124,246,1|12h4gtz,124,246,1|12h4gu0,134,282,0|12qfq9z,134,282,0|12qfqa0,124,246,1|12zwe5z,124,246,1|12zwe60,134,282,0|1397nlz,134,282,0|1397nm0,124,246,1|13iobhz,124,246,1|13iobi0,134,282,0|13s1flz,134,282,0|13s1fm0,124,246,1|141i3hz,124,246,1|141i3i0,134,282,0|14atcxz,134,282,0|14atcy0,124,246,1|14ka0tz,124,246,1|14ka0u0,134,282,0|14tla9z,134,282,0|14tlaa0,124,246,1|1531y5z,124,246,1|1531y60,134,282,0|15cd7lz,134,282,0|15cd7m0,124,246,1|15ltvhz,124,246,1|15ltvi0,134,282,0|15v6zlz,134,282,0|15v6zm0,124,246,1|164nnhz,124,246,1|164nni0,134,282,0|16dywxz,134,282,0|16dywy0,124,246,1|16nfktz,124,246,1|16nfku0,134,282,0|16wqu9z,134,282,0|16wqua0,124,246,1|1767i5z,124,246,1|1767i60,134,282,0|17firlz,134,282,0|17firm0,124,246,1|17ozfhz,124,246,1|17ozfi0,134,282,0|17ycjlz,134,282,0|17ycjm0,124,246,1|187t7hz,124,246,1|187t7i0,134,282,0|18h4gxz,134,282,0|18h4gy0,124,246,1|18ql4tz,124,246,1|18ql4u0,134,282,0|18zwe9z,134,282,0|18zwea0,124,246,1|199d25z,124,246,1|199d260,134,282,0|19ioblz,134,282,0|19iobm0,124,246,1|19s4zhz,124,246,1|19s4zi0,134,282,0|1a1i3lz,134,282,0|1a1i3m0,124,246,1|1aayrhz,124,246,1|1aayri0,134,282,0|1aka0xz,134,282,0|1aka0y0,124,246,1|1atqotz,124,246,1|1atqou0,134,282,0|1b31y9z,134,282,0|1b31ya0,124,246,1|1bcim5z,124,246,1|1bcim60,134,282,0|1bltvlz,134,282,0|1bltvm0,124,246,1|1bvajhz,124,246,1|1bvaji0,134,282,0|1c4lsxz,134,282,0|1c4lsy0,124,246,1|1ce2gtz,124,246,1|1ce2gu0,134,282,0|1cnfkxz,134,282,0|1cnfky0,124,246,1|1cww8tz,124,246,1|1cww8u0,134,282,0|1d67i9z,134,282,0|1d67ia0,124,246,1|1dfo65z,124,246,1|1dfo660,134,282,0|1dozflz,134,282,0|1dozfm0,124,246,1|1dyg3hz,124,246,1|1dyg3i0,134,282,0|1e7rcxz,134,282,0|1e7rcy0,124,246,1|1eh80tz,124,246,1|1eh80u0,134,282,0|1eql4xz,134,282,0|1eql4y0,124,246,1|1f01stz,124,246,1|1f01su0,134,282,0|1f9d29z,134,282,0|1f9d2a0,124,246,1|1fitq5z,124,246,1|1fitq60,134,282,0|1fs4zlz,134,282,0|1fs4zm0,124,246,1|1g1lnhz,124,246,1|1g1lni0,134,282,0|1gawwxz,134,282,0|1gawwy0,124,246,1|1gkdktz,124,246,1|1gkdku0,134,282,0|1gtqoxz,134,282,0|1gtqoy0,124,246,1|1h37ctz,124,246,1|1h37cu0,134,282,0|1hcim9z,134,282,0|1hcima0,124,246,1|1hlza5z,124,246,1|1hlza60,134,282,0|1hvajlz,134,282,0|1hvajm0,124,246,1|1i4r7hz,124,246,1|1i4r7i0,134,282,0|1ie2gxz,134,282,0|1ie2gy0,124,246,1|1inj4tz,124,246,1|1inj4u0,134,282,0|1iww8xz,134,282,0|1iww8y0,124,246,1|1j6cwtz,124,246,1|1j6cwu0,134,282,0|1jfo69z,134,282,0|1jfo6a0,124,246,1|1jp4u5z,124,246,1|1jp4u60,134,282,0|1jyg3lz,134,282,0|1jyg3m0,124,246,1|1k7wrhz,124,246,1|1k7wri0,134,282,0|1kh80xz,134,282,0|1kh80y0,124,246,1|1kqootz,124,246,1|1kqoou0,134,282,0|1l01sxz,134,282,0|1l01sy0,124,246,1|1l9igtz,124,246,1|1l9igu0,134,282,0|1litq9z,134,282,0|1litqa0,124,246,1|1lsae5z,124,246,1|1lsae60,134,282,0|1m1lnlz,134,282,0|1m1lnm0,124,246,1|1mb2bhz,124,246,1|1mb2bi0,134,282,0|1mkdkxz,134,282,0|1mkdky0,124,246,1|1mtu8tz,124,246,1|1mtu8u0,134,282,0|1n37cxz,134,282,0|1n37cy0,124,246,1|1nco0tz,124,246,1|1nco0u0,134,282,0|1nlza9z,134,282,0|1nlzaa0,124,246,1|1nvfy5z,124,246,1|1nvfy60,134,282,0|1o4r7lz,134,282,0|1o4r7m0,124,246,1|1oe7vhz,124,246,1|1oe7vi0,134,282,0|1onj4xz,134,282,0|1onj4y0,124,246,1|1owzstz,124,246,1|1owzsu0,134,282,0|1p6cwxz,134,282,0|1p6cwy0,124,246,1|1pftktz,124,246,1|1pftku0,134,282,0|1pp4u9z,134,282,0|1pp4ua0,124,246,1|1pyli5z,124,246,1|1pyli60,134,282,0|1q7wrlz,134,282,0|1q7wrm0,124,246,1|1qhdfhz,124,246,1|1qhdfi0,134,282,0|1qqooxz,134,282,0|1qqooy0,124,246,1|1r05ctz,124,246,1|1r05cu0,134,282,0|1r9gm9z,134,282,0|1r9gma0,124,246,1|1rixa5z,124,246,1|1rixa60,134,282,0|1rsae9z,134,282,0|1rsaea0,124,246,1|1s1r25z,124,246,1|1s1r260,134,282,0|1sb2blz,134,282,0|1sb2bm0,124,246,1|1skizhz,124,246,1|1skizi0,134,282,0|1stu8xz,134,282,0|1stu8y0,124,246,1|1t3awtz,124,246,1|1t3awu0,134,282,0|1tcm69z,134,282,0|1tcm6a0,124,246,1|1tm2u5z,124,246,1|1tm2u60,134,282,0|1tvfy9z,134,282,0|1tvfya0,124,246,1|1u4wm5z,124,246,1|1u4wm60,134,282,0|1ue7vlz,134,282,0|1ue7vm0,124,246,1|1unojhz,124,246,1|1unoji0,134,282,0|1uwzsxz,134,282,0|1uwzsy0,124,246,1|1v6ggtz,124,246,1|1v6ggu0,134,282,0|1vfrq9z,134,282,0|1vfrqa0,124,246,1|1vp8e5z,124,246,1|1vp8e60,134,282,0|NaN,134,282,0","Asia/Thimphu|,0,283,0|-bojclp,0,283,0|-bojclo,108,222,0|99fa1z,108,222,0|99fa20,96,190,0|NaN,96,190,0","Asia/Tokyo|,0,284,0|-16snno1,0,284,0|-16snno0,116,218,0|-bb4901,116,218,0|-bb4900,135,189,1|-b49yc1,135,189,1|-b49yc0,116,218,0|-atu101,116,218,0|-atu100,135,189,1|-aljvo1,135,189,1|-aljvo0,116,218,0|-a9b501,116,218,0|-a9b500,135,189,1|-a2tt01,135,189,1|-a2tt00,116,218,0|-9ql2c1,116,218,0|-9ql2c0,135,189,1|-9k3qc1,135,189,1|-9k3qc0,116,218,0|NaN,116,218,0","Asia/Tomsk|,0,285,0|-q3zbqg,0,285,0|-q3zbqf,96,190,0|-kmrco1,96,190,0|-kmrco0,90,185,0|5vav7z,90,185,0|5vav80,88,183,1|64pofz,88,183,1|64pog0,90,185,0|6e2sjz,90,185,0|6e2sk0,88,183,1|6nhlrz,88,183,1|6nhls0,90,185,0|6wupvz,90,185,0|6wupw0,88,183,1|769j3z,88,183,1|769j40,90,185,0|7fohvz,90,185,0|7fohw0,88,183,1|7p1orz,88,183,1|7p1os0,90,185,0|7yeq3z,90,185,0|7yeq40,88,183,1|87rrfz,88,183,1|87rrg0,90,185,0|8h4srz,90,185,0|8h4ss0,88,183,1|8qhu3z,88,183,1|8qhu40,90,185,0|8zuvfz,90,185,0|8zuvg0,88,183,1|997wrz,88,183,1|997ws0,90,185,0|9iky3z,90,185,0|9iky40,88,183,1|9rxzfz,88,183,1|9rxzg0,90,185,0|a1b0rz,90,185,0|a1b0s0,88,183,1|aao23z,88,183,1|aao240,90,185,0|ak13fz,90,185,0|ak13g0,88,183,1|atr3fz,88,183,1|atr3g0,90,185,0|b344rz,90,185,0|b344s0,90,185,1|bch8vz,90,185,1|bch8w0,96,190,0|bi8njz,96,190,0|bi8nk0,90,185,0|blu7fz,90,185,0|blu7g0,88,183,1|bv78rz,88,183,1|bv78s0,90,185,0|c4ka3z,90,185,0|c4ka40,88,183,1|cdxbfz,88,183,1|cdxbg0,90,185,0|cnacrz,90,185,0|cnacs0,88,183,1|cwne3z,88,183,1|cwne40,90,185,0|d60ffz,90,185,0|d60fg0,88,183,1|dfdgrz,88,183,1|dfdgs0,90,185,0|dp3grz,90,185,0|dp3gs0,88,183,1|dzwcrz,88,183,1|dzwcs0,90,185,0|e7tjfz,90,185,0|e7tjg0,88,183,1|eimffz,88,183,1|eimfg0,90,185,0|eqjm3z,90,185,0|eqjm40,88,183,1|f1ci3z,88,183,1|f1ci40,90,185,0|f99orz,90,185,0|f99os0,88,183,1|fkfjfz,88,183,1|fkfjg0,90,185,0|frzrfz,90,185,0|frzrg0,88,183,1|g35m3z,88,183,1|g35m40,90,185,0|gapu3z,90,185,0|gapu40,88,183,1|glvorz,88,183,1|glvos0,90,185,0|gtsvfz,90,185,0|gtsvg0,88,183,1|gvea3z,88,183,1|gvea40,90,185,1|h4lu7z,90,185,1|h4lu80,96,190,0|hcj0vz,96,190,0|hcj0w0,90,185,1|hnbwvz,90,185,1|hnbww0,96,190,0|hv93jz,96,190,0|hv93k0,90,185,1|i6ey7z,90,185,1|i6ey80,96,190,0|idz67z,96,190,0|idz680,90,185,1|ip50vz,90,185,1|ip50w0,96,190,0|iwp8vz,96,190,0|iwp8w0,90,185,1|j7v3jz,90,185,1|j7v3k0,96,190,0|jffbjz,96,190,0|jffbk0,90,185,1|jql67z,90,185,1|jql680,96,190,0|jyicvz,96,190,0|jyicw0,90,185,1|k9b8vz,90,185,1|k9b8w0,96,190,0|kh8fjz,96,190,0|kh8fk0,90,185,1|ks1bjz,90,185,1|ks1bk0,96,190,0|kzyi7z,96,190,0|kzyi80,90,185,1|lb4cvz,90,185,1|lb4cw0,96,190,0|liokvz,96,190,0|liokw0,90,185,0|ne0krz,90,185,0|ne0ks0,96,190,0|o7wkvz,96,190,0|o7wkw0,90,185,0|NaN,90,185,0","Asia/Ulaanbaatar|,0,286,0|-xmcrsl,0,286,0|-xmcrsk,90,185,0|46akjz,90,185,0|46akk0,88,183,0|6wun3z,88,183,0|6wun40,107,218,1|769gbz,107,218,1|769gc0,88,183,0|7fof3z,88,183,0|7fof40,107,218,1|7p1dnz,107,218,1|7p1do0,88,183,0|7yehrz,88,183,0|7yehs0,107,218,1|87rgbz,107,218,1|87rgc0,88,183,0|8h4kfz,88,183,0|8h4kg0,107,218,1|8qhizz,107,218,1|8qhj00,88,183,0|8zun3z,88,183,0|8zun40,107,218,1|997lnz,107,218,1|997lo0,88,183,0|9ikprz,88,183,0|9ikps0,107,218,1|9rxobz,107,218,1|9rxoc0,88,183,0|a1asfz,88,183,0|a1asg0,107,218,1|aanqzz,107,218,1|aanr00,88,183,0|ak0v3z,88,183,0|ak0v40,107,218,1|atqsbz,107,218,1|atqsc0,88,183,0|b33wfz,88,183,0|b33wg0,107,218,1|bcguzz,107,218,1|bcgv00,88,183,0|bltz3z,88,183,0|bltz40,107,218,1|bv6xnz,107,218,1|bv6xo0,88,183,0|c4k1rz,88,183,0|c4k1s0,107,218,1|cdx0bz,107,218,1|cdx0c0,88,183,0|cna4fz,88,183,0|cna4g0,107,218,1|cwn2zz,107,218,1|cwn300,88,183,0|d6073z,88,183,0|d60740,107,218,1|dfd5nz,107,218,1|dfd5o0,88,183,0|dp38fz,88,183,0|dp38g0,107,218,1|dyg6zz,107,218,1|dyg700,88,183,0|e7tb3z,88,183,0|e7tb40,107,218,1|eh69nz,107,218,1|eh69o0,88,183,0|eqjdrz,88,183,0|eqjds0,107,218,1|ezwcbz,107,218,1|ezwcc0,88,183,0|gcgpzz,88,183,0|gcgq00,107,218,1|gkdtvz,107,218,1|gkdtw0,88,183,0|gtqxzz,88,183,0|gtqy00,107,218,1|h33wjz,107,218,1|h33wk0,88,183,0|hch0nz,88,183,0|hch0o0,107,218,1|hltz7z,107,218,1|hltz80,88,183,0|hv73bz,88,183,0|hv73c0,107,218,1|i4k1vz,107,218,1|i4k1w0,88,183,0|idx5zz,88,183,0|idx600,107,218,1|ina4jz,107,218,1|ina4k0,88,183,0|iwn8nz,88,183,0|iwn8o0,107,218,1|j6d5vz,107,218,1|j6d5w0,88,183,0|nlvtzz,88,183,0|nlvu00,107,218,1|nv8mzz,107,218,1|nv8n00,88,183,0|o4lwnz,88,183,0|o4lwo0,107,218,1|odypnz,107,218,1|odypo0,88,183,0|NaN,88,183,0","Asia/Urumqi|,0,287,0|-lx5pjx,0,287,0|-lx5pjw,96,190,0|NaN,96,190,0","Asia/Ust-Nera|,0,288,0|-q4cl6v,0,288,0|-q4cl6u,88,183,0|-kmri81,88,183,0|-kmri80,107,218,0|5vapnz,107,218,0|5vapo0,102,194,1|64pdbz,102,194,1|64pdc0,89,184,0|6e2hfz,89,184,0|6e2hg0,102,194,1|6nhanz,102,194,1|6nhao0,89,184,0|6wuerz,89,184,0|6wues0,102,194,1|7697zz,102,194,1|769800,89,184,0|7fo6rz,89,184,0|7fo6s0,102,194,1|7p1dnz,102,194,1|7p1do0,89,184,0|7yeezz,89,184,0|7yef00,102,194,1|87rgbz,102,194,1|87rgc0,89,184,0|8h4hnz,89,184,0|8h4ho0,102,194,1|8qhizz,102,194,1|8qhj00,89,184,0|8zukbz,89,184,0|8zukc0,102,194,1|997lnz,102,194,1|997lo0,89,184,0|9ikmzz,89,184,0|9ikn00,102,194,1|9rxobz,102,194,1|9rxoc0,89,184,0|a1apnz,89,184,0|a1apo0,102,194,1|aanqzz,102,194,1|aanr00,89,184,0|ak0sbz,89,184,0|ak0sc0,102,194,1|atqsbz,102,194,1|atqsc0,89,184,0|b33tnz,89,184,0|b33to0,89,184,1|bcgxrz,89,184,1|bcgxs0,93,189,0|bi8cfz,93,189,0|bi8cg0,89,184,0|bltwbz,89,184,0|bltwc0,102,194,1|bv6xnz,102,194,1|bv6xo0,89,184,0|c4jyzz,89,184,0|c4jz00,102,194,1|cdx0bz,102,194,1|cdx0c0,89,184,0|cna1nz,89,184,0|cna1o0,102,194,1|cwn2zz,102,194,1|cwn300,89,184,0|d604bz,89,184,0|d604c0,102,194,1|dfd5nz,102,194,1|dfd5o0,89,184,0|dp35nz,89,184,0|dp35o0,102,194,1|dzw1nz,102,194,1|dzw1o0,89,184,0|e7t8bz,89,184,0|e7t8c0,102,194,1|eim4bz,102,194,1|eim4c0,89,184,0|eqjazz,89,184,0|eqjb00,102,194,1|f1c6zz,102,194,1|f1c700,89,184,0|f99dnz,89,184,0|f99do0,102,194,1|fkf8bz,102,194,1|fkf8c0,89,184,0|frzgbz,89,184,0|frzgc0,102,194,1|g35azz,102,194,1|g35b00,89,184,0|gapizz,89,184,0|gapj00,102,194,1|glvdnz,102,194,1|glvdo0,89,184,0|gtskbz,89,184,0|gtskc0,102,194,1|h4lgbz,102,194,1|h4lgc0,89,184,0|hcimzz,89,184,0|hcin00,102,194,1|hnbizz,102,194,1|hnbj00,89,184,0|hv8pnz,89,184,0|hv8po0,102,194,1|i6ekbz,102,194,1|i6ekc0,89,184,0|idysbz,89,184,0|idysc0,102,194,1|ip4mzz,102,194,1|ip4n00,89,184,0|iwouzz,89,184,0|iwov00,102,194,1|j7upnz,102,194,1|j7upo0,89,184,0|jfexnz,89,184,0|jfexo0,102,194,1|jqksbz,102,194,1|jqksc0,89,184,0|jyhyzz,89,184,0|jyhz00,102,194,1|k9auzz,102,194,1|k9av00,89,184,0|kh81nz,89,184,0|kh81o0,102,194,1|ks0xnz,102,194,1|ks0xo0,89,184,0|kzy4bz,89,184,0|kzy4c0,102,194,1|lb3yzz,102,194,1|lb3z00,89,184,0|lio6zz,89,184,0|lio700,102,194,0|lrerzz,102,194,0|lres00,89,184,0|ne09nz,89,184,0|ne09o0,93,189,0|NaN,93,189,0","Asia/Vientiane|,0,211,0|-1ayyla5,0,211,0|-1ayyla4,54,211,0|-pysda5,54,211,0|-pysda4,90,185,0|NaN,90,185,0","Asia/Vladivostok|,0,289,0|-oligf8,0,289,0|-oligf7,107,218,0|-kmrl01,107,218,0|-kmrl00,93,189,0|5vamvz,93,189,0|5vamw0,89,184,1|64pg3z,89,184,1|64pg40,93,189,0|6e2k7z,93,189,0|6e2k80,89,184,1|6nhdfz,89,184,1|6nhdg0,93,189,0|6wuhjz,93,189,0|6wuhk0,89,184,1|769arz,89,184,1|769as0,93,189,0|7fo9jz,93,189,0|7fo9k0,89,184,1|7p1gfz,89,184,1|7p1gg0,93,189,0|7yehrz,93,189,0|7yehs0,89,184,1|87rj3z,89,184,1|87rj40,93,189,0|8h4kfz,93,189,0|8h4kg0,89,184,1|8qhlrz,89,184,1|8qhls0,93,189,0|8zun3z,93,189,0|8zun40,89,184,1|997ofz,89,184,1|997og0,93,189,0|9ikprz,93,189,0|9ikps0,89,184,1|9rxr3z,89,184,1|9rxr40,93,189,0|a1asfz,93,189,0|a1asg0,89,184,1|aantrz,89,184,1|aants0,93,189,0|ak0v3z,93,189,0|ak0v40,89,184,1|atqv3z,89,184,1|atqv40,93,189,0|b33wfz,93,189,0|b33wg0,93,189,1|bch0jz,93,189,1|bch0k0,107,218,0|bi8f7z,107,218,0|bi8f80,93,189,0|bltz3z,93,189,0|bltz40,89,184,1|bv70fz,89,184,1|bv70g0,93,189,0|c4k1rz,93,189,0|c4k1s0,89,184,1|cdx33z,89,184,1|cdx340,93,189,0|cna4fz,93,189,0|cna4g0,89,184,1|cwn5rz,89,184,1|cwn5s0,93,189,0|d6073z,93,189,0|d60740,89,184,1|dfd8fz,89,184,1|dfd8g0,93,189,0|dp38fz,93,189,0|dp38g0,89,184,1|dzw4fz,89,184,1|dzw4g0,93,189,0|e7tb3z,93,189,0|e7tb40,89,184,1|eim73z,89,184,1|eim740,93,189,0|eqjdrz,93,189,0|eqjds0,89,184,1|f1c9rz,89,184,1|f1c9s0,93,189,0|f99gfz,93,189,0|f99gg0,89,184,1|fkfb3z,89,184,1|fkfb40,93,189,0|frzj3z,93,189,0|frzj40,89,184,1|g35drz,89,184,1|g35ds0,93,189,0|gaplrz,93,189,0|gapls0,89,184,1|glvgfz,89,184,1|glvgg0,93,189,0|gtsn3z,93,189,0|gtsn40,89,184,1|h4lj3z,89,184,1|h4lj40,93,189,0|hciprz,93,189,0|hcips0,89,184,1|hnblrz,89,184,1|hnbls0,93,189,0|hv8sfz,93,189,0|hv8sg0,89,184,1|i6en3z,89,184,1|i6en40,93,189,0|idyv3z,93,189,0|idyv40,89,184,1|ip4prz,89,184,1|ip4ps0,93,189,0|iwoxrz,93,189,0|iwoxs0,89,184,1|j7usfz,89,184,1|j7usg0,93,189,0|jff0fz,93,189,0|jff0g0,89,184,1|jqkv3z,89,184,1|jqkv40,93,189,0|jyi1rz,93,189,0|jyi1s0,89,184,1|k9axrz,89,184,1|k9axs0,93,189,0|kh84fz,93,189,0|kh84g0,89,184,1|ks10fz,89,184,1|ks10g0,93,189,0|kzy73z,93,189,0|kzy740,89,184,1|lb41rz,89,184,1|lb41s0,93,189,0|lio9rz,93,189,0|lio9s0,89,184,0|ne09nz,89,184,0|ne09o0,93,189,0|NaN,93,189,0","Asia/Yakutsk|,0,290,0|-q4cioz,0,290,0|-q4cioy,88,183,0|-kmri81,88,183,0|-kmri80,107,218,0|5vapnz,107,218,0|5vapo0,93,189,1|64pivz,93,189,1|64piw0,107,218,0|6e2mzz,107,218,0|6e2n00,93,189,1|6nhg7z,93,189,1|6nhg80,107,218,0|6wukbz,107,218,0|6wukc0,93,189,1|769djz,93,189,1|769dk0,107,218,0|7focbz,107,218,0|7focc0,93,189,1|7p1j7z,93,189,1|7p1j80,107,218,0|7yekjz,107,218,0|7yekk0,93,189,1|87rlvz,93,189,1|87rlw0,107,218,0|8h4n7z,107,218,0|8h4n80,93,189,1|8qhojz,93,189,1|8qhok0,107,218,0|8zupvz,107,218,0|8zupw0,93,189,1|997r7z,93,189,1|997r80,107,218,0|9iksjz,107,218,0|9iksk0,93,189,1|9rxtvz,93,189,1|9rxtw0,107,218,0|a1av7z,107,218,0|a1av80,93,189,1|aanwjz,93,189,1|aanwk0,107,218,0|ak0xvz,107,218,0|ak0xw0,93,189,1|atqxvz,93,189,1|atqxw0,107,218,0|b33z7z,107,218,0|b33z80,107,218,1|bch3bz,107,218,1|bch3c0,88,183,0|bi8hzz,88,183,0|bi8i00,107,218,0|blu1vz,107,218,0|blu1w0,93,189,1|bv737z,93,189,1|bv7380,107,218,0|c4k4jz,107,218,0|c4k4k0,93,189,1|cdx5vz,93,189,1|cdx5w0,107,218,0|cna77z,107,218,0|cna780,93,189,1|cwn8jz,93,189,1|cwn8k0,107,218,0|d609vz,107,218,0|d609w0,93,189,1|dfdb7z,93,189,1|dfdb80,107,218,0|dp3b7z,107,218,0|dp3b80,93,189,1|dzw77z,93,189,1|dzw780,107,218,0|e7tdvz,107,218,0|e7tdw0,93,189,1|eim9vz,93,189,1|eim9w0,107,218,0|eqjgjz,107,218,0|eqjgk0,93,189,1|f1ccjz,93,189,1|f1cck0,107,218,0|f99j7z,107,218,0|f99j80,93,189,1|fkfdvz,93,189,1|fkfdw0,107,218,0|frzlvz,107,218,0|frzlw0,93,189,1|g35gjz,93,189,1|g35gk0,107,218,0|gapojz,107,218,0|gapok0,93,189,1|glvj7z,93,189,1|glvj80,107,218,0|gtspvz,107,218,0|gtspw0,93,189,1|h4llvz,93,189,1|h4llw0,107,218,0|hcisjz,107,218,0|hcisk0,93,189,1|hnbojz,93,189,1|hnbok0,107,218,0|hv8v7z,107,218,0|hv8v80,93,189,1|i6epvz,93,189,1|i6epw0,107,218,0|idyxvz,107,218,0|idyxw0,93,189,1|ip4sjz,93,189,1|ip4sk0,107,218,0|iwp0jz,107,218,0|iwp0k0,93,189,1|j7uv7z,93,189,1|j7uv80,107,218,0|jff37z,107,218,0|jff380,93,189,1|jqkxvz,93,189,1|jqkxw0,107,218,0|jyi4jz,107,218,0|jyi4k0,93,189,1|k9b0jz,93,189,1|k9b0k0,107,218,0|kh877z,107,218,0|kh8780,93,189,1|ks137z,93,189,1|ks1380,107,218,0|kzy9vz,107,218,0|kzy9w0,93,189,1|lb44jz,93,189,1|lb44k0,107,218,0|liocjz,107,218,0|liock0,93,189,0|ne0cfz,93,189,0|ne0cg0,107,218,0|NaN,107,218,0","Asia/Yangon|,0,291,0|-1ayykhc,0,291,0|-1ayykhb,136,291,0|-q3gv5c,136,291,0|-q3gv5b,109,223,0|-efx621,109,223,0|-efx620,107,218,0|-cvg101,107,218,0|-cvg100,109,223,0|NaN,109,223,0","Asia/Yekaterinburg|,0,292,0|-rx5hwa,0,292,0|-rx5hw9,5,293,0|-qc75z6,5,293,0|-qc75z5,105,203,0|-kmr741,105,203,0|-kmr740,91,186,0|5vb0rz,91,186,0|5vb0s0,96,190,1|64ptzz,96,190,1|64pu00,91,186,0|6e2y3z,91,186,0|6e2y40,96,190,1|6nhrbz,96,190,1|6nhrc0,91,186,0|6wuvfz,91,186,0|6wuvg0,96,190,1|769onz,96,190,1|769oo0,91,186,0|7fonfz,91,186,0|7fong0,96,190,1|7p1ubz,96,190,1|7p1uc0,91,186,0|7yevnz,91,186,0|7yevo0,96,190,1|87rwzz,96,190,1|87rx00,91,186,0|8h4ybz,91,186,0|8h4yc0,96,190,1|8qhznz,96,190,1|8qhzo0,91,186,0|8zv0zz,91,186,0|8zv100,96,190,1|9982bz,96,190,1|9982c0,91,186,0|9il3nz,91,186,0|9il3o0,96,190,1|9ry4zz,96,190,1|9ry500,91,186,0|a1b6bz,91,186,0|a1b6c0,96,190,1|aao7nz,96,190,1|aao7o0,91,186,0|ak18zz,91,186,0|ak1900,96,190,1|atr8zz,96,190,1|atr900,91,186,0|b34abz,91,186,0|b34ac0,91,186,1|bchefz,91,186,1|bcheg0,105,203,0|bi8t3z,105,203,0|bi8t40,91,186,0|bluczz,91,186,0|blud00,96,190,1|bv7ebz,96,190,1|bv7ec0,91,186,0|c4kfnz,91,186,0|c4kfo0,96,190,1|cdxgzz,96,190,1|cdxh00,91,186,0|cnaibz,91,186,0|cnaic0,96,190,1|cwnjnz,96,190,1|cwnjo0,91,186,0|d60kzz,91,186,0|d60l00,96,190,1|dfdmbz,96,190,1|dfdmc0,91,186,0|dp3mbz,91,186,0|dp3mc0,96,190,1|dzwibz,96,190,1|dzwic0,91,186,0|e7tozz,91,186,0|e7tp00,96,190,1|eimkzz,96,190,1|eiml00,91,186,0|eqjrnz,91,186,0|eqjro0,96,190,1|f1cnnz,96,190,1|f1cno0,91,186,0|f99ubz,91,186,0|f99uc0,96,190,1|fkfozz,96,190,1|fkfp00,91,186,0|frzwzz,91,186,0|frzx00,96,190,1|g35rnz,96,190,1|g35ro0,91,186,0|gapznz,91,186,0|gapzo0,96,190,1|glvubz,96,190,1|glvuc0,91,186,0|gtt0zz,91,186,0|gtt100,96,190,1|h4lwzz,96,190,1|h4lx00,91,186,0|hcj3nz,91,186,0|hcj3o0,96,190,1|hnbznz,96,190,1|hnbzo0,91,186,0|hv96bz,91,186,0|hv96c0,96,190,1|i6f0zz,96,190,1|i6f100,91,186,0|idz8zz,91,186,0|idz900,96,190,1|ip53nz,96,190,1|ip53o0,91,186,0|iwpbnz,91,186,0|iwpbo0,96,190,1|j7v6bz,96,190,1|j7v6c0,91,186,0|jffebz,91,186,0|jffec0,96,190,1|jql8zz,96,190,1|jql900,91,186,0|jyifnz,91,186,0|jyifo0,96,190,1|k9bbnz,96,190,1|k9bbo0,91,186,0|kh8ibz,91,186,0|kh8ic0,96,190,1|ks1ebz,96,190,1|ks1ec0,91,186,0|kzykzz,91,186,0|kzyl00,96,190,1|lb4fnz,96,190,1|lb4fo0,91,186,0|lionnz,91,186,0|liono0,96,190,0|ne0njz,96,190,0|ne0nk0,91,186,0|NaN,91,186,0","Asia/Yerevan|,0,294,0|-nu148p,0,294,0|-nu148o,100,4,0|-6p7kc1,100,4,0|-6p7kc0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,91,186,1|aaoafz,91,186,1|aaoag0,105,203,0|ak1brz,105,203,0|ak1bs0,91,186,1|atrbrz,91,186,1|atrbs0,105,203,0|b34d3z,105,203,0|b34d40,105,203,1|bchh7z,105,203,1|bchh80,100,4,0|bluijz,100,4,0|bluik0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,105,203,0|e7trrz,105,203,0|e7trs0,91,186,1|eimnrz,91,186,1|eimns0,105,203,0|eqjufz,105,203,0|eqjug0,91,186,1|f1cqfz,91,186,1|f1cqg0,105,203,0|f99x3z,105,203,0|f99x40,91,186,1|fkfrrz,91,186,1|fkfrs0,105,203,0|frzzrz,105,203,0|frzzs0,91,186,1|g35ufz,91,186,1|g35ug0,105,203,0|gaq2fz,105,203,0|gaq2g0,91,186,1|glvx3z,91,186,1|glvx40,105,203,0|gtt3rz,105,203,0|gtt3s0,91,186,1|h4lzrz,91,186,1|h4lzs0,105,203,0|hcj6fz,105,203,0|hcj6g0,91,186,1|hnc2fz,91,186,1|hnc2g0,105,203,0|hv993z,105,203,0|hv9940,91,186,1|i6f3rz,91,186,1|i6f3s0,105,203,0|idzbrz,105,203,0|idzbs0,91,186,1|ip56fz,91,186,1|ip56g0,105,203,0|iwpefz,105,203,0|iwpeg0,91,186,1|j7v93z,91,186,1|j7v940,105,203,0|jffh3z,105,203,0|jffh40,91,186,1|jqlbrz,91,186,1|jqlbs0,105,203,0|jyiifz,105,203,0|jyiig0,91,186,1|k9befz,91,186,1|k9beg0,105,203,0|kh8l3z,105,203,0|kh8l40,91,186,1|ks1h3z,91,186,1|ks1h40,105,203,0|kzynrz,105,203,0|kzyns0,91,186,1|lb4ifz,91,186,1|lb4ig0,105,203,0|lioqfz,105,203,0|lioqg0,91,186,1|ltul3z,91,186,1|ltul40,105,203,0|NaN,105,203,0","Atlantic/Azores|,0,295,0|-18vsdwx,0,295,0|-18vsdww,77,296,0|-u9rbs1,77,296,0|-u9rbs0,39,43,0|-rxwvw1,39,43,0|-rxwvw0,12,13,1|-rqwyg1,12,13,1|-rqwyg0,39,43,0|-rkqt81,39,43,0|-rkqt80,12,13,1|-r90l81,12,13,1|-r90l80,39,43,0|-r1x181,39,43,0|-r1x180,12,13,1|-qq8nw1,12,13,1|-qq8nw0,39,43,0|-qj6yk1,39,43,0|-qj6yk0,12,13,1|-q7gqk1,12,13,1|-q7gqk0,39,43,0|-q0d6k1,39,43,0|-q0d6k0,12,13,1|-pomyk1,12,13,1|-pomyk0,39,43,0|-phl981,39,43,0|-phl980,12,13,1|-p5v181,12,13,1|-p5v180,39,43,0|-nusl81,39,43,0|-nusl80,12,13,1|-nlhek1,12,13,1|-nlhek0,39,43,0|-mt6vw1,39,43,0|-mt6vw0,12,13,1|-mkjrw1,12,13,1|-mkjrw0,39,43,0|-matrw1,39,43,0|-matrw0,12,13,1|-m1tp81,12,13,1|-m1tp80,39,43,0|-lrqqk1,39,43,0|-lrqqk0,12,13,1|-liqnw1,12,13,1|-liqnw0,39,43,0|-l8np81,39,43,0|-l8np80,12,13,1|-l00l81,12,13,1|-l00l80,39,43,0|-k77jw1,39,43,0|-k77jw0,12,13,1|-jykfw1,12,13,1|-jykfw0,39,43,0|-jp7ek1,39,43,0|-jp7ek0,12,13,1|-jfud81,12,13,1|-jfud80,39,43,0|-ineak1,39,43,0|-ineak0,12,13,1|-ie1981,12,13,1|-ie1980,39,43,0|-i516k1,39,43,0|-i516k0,12,13,1|-hvb6k1,12,13,1|-hvb6k0,39,43,0|-hl87w1,39,43,0|-hl87w0,12,13,1|-hcl3w1,12,13,1|-hcl3w0,39,43,0|-h382k1,39,43,0|-h382k0,12,13,1|-gtv181,12,13,1|-gtv180,39,43,0|-gkuyk1,39,43,0|-gkuyk0,12,13,1|-gb4yk1,12,13,1|-gb4yk0,39,43,0|-g11zw1,39,43,0|-g11zw0,12,13,1|-fpw581,12,13,1|-fpw580,39,43,0|-fkunw1,39,43,0|-fkunw0,12,13,1|-f9buk1,12,13,1|-f9buk0,39,43,0|-ezyt81,39,43,0|-ezyt80,12,13,1|-eqjx81,12,13,1|-eqjx80,39,43,0|-eibmk1,39,43,0|-eibmk0,12,13,1|-eg5xc1,12,13,1|-eg5xc0,16,1,1|-eaeio1,16,1,1|-eaeio0,12,13,1|-e6st81,12,13,1|-e6st80,39,43,0|-dzljw1,39,43,0|-dzljw0,12,13,1|-dxstc1,12,13,1|-dxstc0,16,1,1|-dqyio1,16,1,1|-dqyio0,12,13,1|-dnprw1,12,13,1|-dnprw0,39,43,0|-dgvh81,39,43,0|-dgvh80,12,13,1|-deps01,12,13,1|-deps00,16,1,1|-d88g01,16,1,1|-d88g00,12,13,1|-d4zp81,12,13,1|-d4zp80,39,43,0|-cy5ek1,39,43,0|-cy5ek0,12,13,1|-cvzpc1,12,13,1|-cvzpc0,16,1,1|-cpidc1,16,1,1|-cpidc0,12,13,1|-cm9mk1,12,13,1|-cm9mk0,39,43,0|-cdzh81,39,43,0|-cdzh80,12,13,1|-c4mfw1,12,13,1|-c4mfw0,39,43,0|-bv9681,39,43,0|-bv9680,12,13,1|-blw4w1,12,13,1|-blw4w0,39,43,0|-bcj3k1,39,43,0|-bcj3k0,12,13,1|-b36281,12,13,1|-b36280,39,43,0|-att0w1,39,43,0|-att0w0,12,13,1|-akfzk1,12,13,1|-akfzk0,39,43,0|-ab2y81,39,43,0|-ab2y80,12,13,1|-a1pww1,12,13,1|-a1pww0,39,43,0|-9scvk1,39,43,0|-9scvk0,12,13,1|-9imvk1,12,13,1|-9imvk0,39,43,0|-999u81,39,43,0|-999u80,12,13,1|-8zwsw1,12,13,1|-8zwsw0,39,43,0|-8qjrk1,39,43,0|-8qjrk0,12,13,1|-8h6q81,12,13,1|-8h6q80,39,43,0|-87tow1,39,43,0|-87tow0,12,13,1|-7ygnk1,12,13,1|-7ygnk0,39,43,0|-7p3m81,39,43,0|-7p3m80,12,13,1|-7fqkw1,12,13,1|-7fqkw0,39,43,0|-76djk1,39,43,0|-76djk0,12,13,1|-6wnjk1,12,13,1|-6wnjk0,39,43,0|-6nai81,39,43,0|-6nai80,12,13,1|-6dxgw1,12,13,1|-6dxgw0,39,43,0|-64kfk1,39,43,0|-64kfk0,12,13,1|-5v7e81,12,13,1|-5v7e80,39,43,0|-5lucw1,39,43,0|-5lucw0,12,13,1|-5chbk1,12,13,1|-5chbk0,39,43,0|-534a81,39,43,0|-534a80,12,13,1|-4tr8w1,12,13,1|-4tr8w0,39,43,0|-4ke7k1,39,43,0|-4ke7k0,12,13,1|-4b1681,12,13,1|-4b1680,39,43,0|-41o4w1,39,43,0|-41o4w0,12,13,1|-3ry4w1,12,13,1|-3ry4w0,39,43,0|-3il3k1,39,43,0|-3il3k0,12,13,1|-398281,12,13,1|-398280,39,43,0|-2zv0w1,39,43,0|-2zv0w0,12,13,1|-2qhzk1,12,13,1|-2qhzk0,39,43,0|-2h4y81,39,43,0|-2h4y80,12,13,1|-27rww1,12,13,1|-27rww0,39,43,0|-1yevk1,39,43,0|-1yevk0,12,13,0|3rwo3z,12,13,0|3rwo40,16,1,1|419pfz,16,1,1|419pg0,12,13,0|4azpfz,12,13,0|4azpg0,16,1,1|4kcqrz,16,1,1|4kcqs0,12,13,0|4tps3z,12,13,0|4tps40,16,1,1|532w7z,16,1,1|532w80,12,13,0|5cfurz,12,13,0|5cfus0,16,1,1|5lsyvz,16,1,1|5lsyw0,12,13,0|5v607z,12,13,0|5v6080,16,1,1|64j1jz,16,1,1|64j1k0,12,13,0|6dw2vz,12,13,0|6dw2w0,16,1,1|6n947z,16,1,1|6n9480,12,13,0|6wm8bz,12,13,0|6wm8c0,16,1,1|75z6vz,16,1,1|75z6w0,12,13,0|7fc87z,12,13,0|7fc880,16,1,1|7p287z,16,1,1|7p2880,12,13,0|7yf9jz,12,13,0|7yf9k0,16,1,1|87savz,16,1,1|87saw0,12,13,0|8h5c7z,12,13,0|8h5c80,16,1,1|8qidjz,16,1,1|8qidk0,12,13,0|8zvevz,12,13,0|8zvew0,16,1,1|998g7z,16,1,1|998g80,12,13,0|9ilhjz,12,13,0|9ilhk0,16,1,1|9ryivz,16,1,1|9ryiw0,12,13,0|a1bk7z,12,13,0|a1bk80,16,1,1|aaoljz,16,1,1|aaolk0,12,13,0|ak1mvz,12,13,0|ak1mw0,16,1,1|atrmvz,16,1,1|atrmw0,12,13,0|b34o7z,12,13,0|b34o80,16,1,1|bchpjz,16,1,1|bchpk0,12,13,0|bluqvz,12,13,0|bluqw0,16,1,1|bv7s7z,16,1,1|bv7s80,6,1,0|c4kqrz,6,1,0|c4kqs0,16,1,1|cdxs3z,16,1,1|cdxs40,12,13,0|cnatfz,12,13,0|cnatg0,16,1,1|cwnurz,16,1,1|cwnus0,12,13,0|d60w3z,12,13,0|d60w40,16,1,1|dfdxfz,16,1,1|dfdxg0,12,13,0|dp3xfz,12,13,0|dp3xg0,16,1,1|dzwtfz,16,1,1|dzwtg0,12,13,0|e7u03z,12,13,0|e7u040,16,1,1|eimw3z,16,1,1|eimw40,12,13,0|eqk2rz,12,13,0|eqk2s0,16,1,1|f1cyrz,16,1,1|f1cys0,12,13,0|f9a5fz,12,13,0|f9a5g0,16,1,1|fkg03z,16,1,1|fkg040,12,13,0|fs083z,12,13,0|fs0840,16,1,1|g362rz,16,1,1|g362s0,12,13,0|gaqarz,12,13,0|gaqas0,16,1,1|glw5fz,16,1,1|glw5g0,12,13,0|gttc3z,12,13,0|gttc40,16,1,1|h4m83z,16,1,1|h4m840,12,13,0|hcjerz,12,13,0|hcjes0,16,1,1|hncarz,16,1,1|hncas0,12,13,0|hv9hfz,12,13,0|hv9hg0,16,1,1|i6fc3z,16,1,1|i6fc40,12,13,0|idzk3z,12,13,0|idzk40,16,1,1|ip5erz,16,1,1|ip5es0,12,13,0|iwpmrz,12,13,0|iwpms0,16,1,1|j7vhfz,16,1,1|j7vhg0,12,13,0|jffpfz,12,13,0|jffpg0,16,1,1|jqlk3z,16,1,1|jqlk40,12,13,0|jyiqrz,12,13,0|jyiqs0,16,1,1|k9bmrz,16,1,1|k9bms0,12,13,0|kh8tfz,12,13,0|kh8tg0,16,1,1|ks1pfz,16,1,1|ks1pg0,12,13,0|kzyw3z,12,13,0|kzyw40,16,1,1|lb4qrz,16,1,1|lb4qs0,12,13,0|lioyrz,12,13,0|lioys0,16,1,1|ltutfz,16,1,1|ltutg0,12,13,0|m1f1fz,12,13,0|m1f1g0,16,1,1|mckw3z,16,1,1|mckw40,12,13,0|mki2rz,12,13,0|mki2s0,16,1,1|mvayrz,16,1,1|mvays0,12,13,0|n385fz,12,13,0|n385g0,16,1,1|ne11fz,16,1,1|ne11g0,12,13,0|nly83z,12,13,0|nly840,16,1,1|nwr43z,16,1,1|nwr440,12,13,0|o4oarz,12,13,0|o4oas0,16,1,1|ofu5fz,16,1,1|ofu5g0,12,13,0|onedfz,12,13,0|onedg0,16,1,1|oyk83z,16,1,1|oyk840,12,13,0|p64g3z,12,13,0|p64g40,16,1,1|phaarz,16,1,1|phaas0,12,13,0|pp7hfz,12,13,0|pp7hg0,16,1,1|q00dfz,16,1,1|q00dg0,12,13,0|q7xk3z,12,13,0|q7xk40,16,1,1|qiqg3z,16,1,1|qiqg40,12,13,0|qqnmrz,12,13,0|qqnms0,16,1,1|r1thfz,16,1,1|r1thg0,12,13,0|r9dpfz,12,13,0|r9dpg0,16,1,1|rkjk3z,16,1,1|rkjk40,12,13,0|rs3s3z,12,13,0|rs3s40,16,1,1|s39mrz,16,1,1|s39ms0,12,13,0|sb6tfz,12,13,0|sb6tg0,16,1,1|slzpfz,16,1,1|slzpg0,12,13,0|stww3z,12,13,0|stww40,16,1,1|t4ps3z,16,1,1|t4ps40,12,13,0|tcmyrz,12,13,0|tcmys0,16,1,1|tnfurz,16,1,1|tnfus0,12,13,0|tvd1fz,12,13,0|tvd1g0,16,1,1|u6iw3z,16,1,1|u6iw40,12,13,0|ue343z,12,13,0|ue3440,16,1,1|up8yrz,16,1,1|up8ys0,12,13,0|uwt6rz,12,13,0|uwt6s0,16,1,1|v7z1fz,16,1,1|v7z1g0,12,13,0|vfw83z,12,13,0|vfw840,16,1,1|vqp43z,16,1,1|vqp440,12,13,0|vymarz,12,13,0|vymas0,16,1,1|w9f6rz,16,1,1|w9f6s0,12,13,0|whcdfz,12,13,0|whcdg0,16,1,1|wsi83z,16,1,1|wsi840,12,13,0|x02g3z,12,13,0|x02g40,16,1,1|xb8arz,16,1,1|xb8as0,12,13,0|xisirz,12,13,0|xisis0,16,1,1|xtydfz,16,1,1|xtydg0,12,13,0|y1ilfz,12,13,0|y1ilg0,16,1,1|ycog3z,16,1,1|ycog40,12,13,0|yklmrz,12,13,0|yklms0,16,1,1|yveirz,16,1,1|yveis0,12,13,0|z3bpfz,12,13,0|z3bpg0,16,1,1|ze4lfz,16,1,1|ze4lg0,12,13,0|zm1s3z,12,13,0|zm1s40,16,1,1|zx7mrz,16,1,1|zx7ms0,12,13,0|104rurz,12,13,0|104rus0,16,1,1|10fxpfz,16,1,1|10fxpg0,12,13,0|10nhxfz,12,13,0|10nhxg0,16,1,1|10yns3z,16,1,1|10yns40,12,13,0|116kyrz,12,13,0|116kys0,16,1,1|11hdurz,16,1,1|11hdus0,12,13,0|11pb1fz,12,13,0|11pb1g0,16,1,1|1203xfz,16,1,1|1203xg0,12,13,0|128143z,12,13,0|1281440,16,1,1|12iu03z,16,1,1|12iu040,12,13,0|12qr6rz,12,13,0|12qr6s0,16,1,1|131x1fz,16,1,1|131x1g0,12,13,0|139h9fz,12,13,0|139h9g0,16,1,1|13kn43z,16,1,1|13kn440,12,13,0|13s7c3z,12,13,0|13s7c40,16,1,1|143d6rz,16,1,1|143d6s0,12,13,0|14badfz,12,13,0|14badg0,16,1,1|14m39fz,16,1,1|14m39g0,12,13,0|14u0g3z,12,13,0|14u0g40,16,1,1|154tc3z,16,1,1|154tc40,12,13,0|15cqirz,12,13,0|15cqis0,16,1,1|15nwdfz,16,1,1|15nwdg0,12,13,0|15vglfz,12,13,0|15vglg0,16,1,1|166mg3z,16,1,1|166mg40,12,13,0|16e6o3z,12,13,0|16e6o40,16,1,1|16pcirz,16,1,1|16pcis0,12,13,0|16x9pfz,12,13,0|16x9pg0,16,1,1|1782lfz,16,1,1|1782lg0,12,13,0|17fzs3z,12,13,0|17fzs40,16,1,1|17qso3z,16,1,1|17qso40,12,13,0|17ypurz,12,13,0|17ypus0,16,1,1|189iqrz,16,1,1|189iqs0,12,13,0|18hfxfz,12,13,0|18hfxg0,16,1,1|18sls3z,16,1,1|18sls40,12,13,0|190603z,12,13,0|1906040,16,1,1|19bburz,16,1,1|19bbus0,12,13,0|19iw2rz,12,13,0|19iw2s0,16,1,1|19u1xfz,16,1,1|19u1xg0,12,13,0|1a1z43z,12,13,0|1a1z440,16,1,1|1acs03z,16,1,1|1acs040,12,13,0|1akp6rz,12,13,0|1akp6s0,16,1,1|1avi2rz,16,1,1|1avi2s0,12,13,0|1b3f9fz,12,13,0|1b3f9g0,16,1,1|1bel43z,16,1,1|1bel440,12,13,0|1bm5c3z,12,13,0|1bm5c40,16,1,1|1bxb6rz,16,1,1|1bxb6s0,12,13,0|1c4verz,12,13,0|1c4ves0,16,1,1|1cg19fz,16,1,1|1cg19g0,12,13,0|1cnlhfz,12,13,0|1cnlhg0,16,1,1|1cyrc3z,16,1,1|1cyrc40,12,13,0|1d6oirz,12,13,0|1d6ois0,16,1,1|1dhherz,16,1,1|1dhhes0,12,13,0|1dpelfz,12,13,0|1dpelg0,16,1,1|1e07hfz,16,1,1|1e07hg0,12,13,0|1e84o3z,12,13,0|1e84o40,16,1,1|1ejairz,16,1,1|1ejais0,12,13,0|1equqrz,12,13,0|1equqs0,16,1,1|1f20lfz,16,1,1|1f20lg0,12,13,0|1f9ktfz,12,13,0|1f9ktg0,16,1,1|1fkqo3z,16,1,1|1fkqo40,12,13,0|1fsnurz,12,13,0|1fsnus0,16,1,1|1g3gqrz,16,1,1|1g3gqs0,12,13,0|1gbdxfz,12,13,0|1gbdxg0,16,1,1|1gm6tfz,16,1,1|1gm6tg0,12,13,0|1gu403z,12,13,0|1gu4040,16,1,1|1h4ww3z,16,1,1|1h4ww40,12,13,0|1hcu2rz,12,13,0|1hcu2s0,16,1,1|1hnzxfz,16,1,1|1hnzxg0,12,13,0|1hvk5fz,12,13,0|1hvk5g0,16,1,1|1i6q03z,16,1,1|1i6q040,12,13,0|1iea83z,12,13,0|1iea840,16,1,1|1ipg2rz,16,1,1|1ipg2s0,12,13,0|1ixd9fz,12,13,0|1ixd9g0,16,1,1|1j865fz,16,1,1|1j865g0,12,13,0|1jg3c3z,12,13,0|1jg3c40,16,1,1|1jqw83z,16,1,1|1jqw840,12,13,0|1jyterz,12,13,0|1jytes0,16,1,1|1k9z9fz,16,1,1|1k9z9g0,12,13,0|1khjhfz,12,13,0|1khjhg0,16,1,1|1kspc3z,16,1,1|1kspc40,12,13,0|1l09k3z,12,13,0|1l09k40,16,1,1|1lbferz,16,1,1|1lbfes0,12,13,0|1ljclfz,12,13,0|1ljclg0,16,1,1|1lu5hfz,16,1,1|1lu5hg0,12,13,0|1m22o3z,12,13,0|1m22o40,16,1,1|1mcvk3z,16,1,1|1mcvk40,12,13,0|1mksqrz,12,13,0|1mksqs0,16,1,1|1mvlmrz,16,1,1|1mvlms0,12,13,0|1n3itfz,12,13,0|1n3itg0,16,1,1|1neoo3z,16,1,1|1neoo40,12,13,0|1nm8w3z,12,13,0|1nm8w40,16,1,1|1nxeqrz,16,1,1|1nxeqs0,12,13,0|1o4yyrz,12,13,0|1o4yys0,16,1,1|1og4tfz,16,1,1|1og4tg0,12,13,0|1oo203z,12,13,0|1oo2040,16,1,1|1oyuw3z,16,1,1|1oyuw40,12,13,0|1p6s2rz,12,13,0|1p6s2s0,16,1,1|1phkyrz,16,1,1|1phkys0,12,13,0|1ppi5fz,12,13,0|1ppi5g0,16,1,1|1q0o03z,16,1,1|1q0o040,12,13,0|1q8883z,12,13,0|1q88840,16,1,1|1qje2rz,16,1,1|1qje2s0,12,13,0|1qqyarz,12,13,0|1qqyas0,16,1,1|1r245fz,16,1,1|1r245g0,12,13,0|1r9odfz,12,13,0|1r9odg0,16,1,1|1rku83z,16,1,1|1rku840,12,13,0|1rsrerz,12,13,0|1rsres0,16,1,1|1s3karz,16,1,1|1s3kas0,12,13,0|1sbhhfz,12,13,0|1sbhhg0,16,1,1|1smadfz,16,1,1|1smadg0,12,13,0|1su7k3z,12,13,0|1su7k40,16,1,1|1t5derz,16,1,1|1t5des0,12,13,0|1tcxmrz,12,13,0|1tcxms0,16,1,1|1to3hfz,16,1,1|1to3hg0,12,13,0|1tvnpfz,12,13,0|1tvnpg0,16,1,1|1u6tk3z,16,1,1|1u6tk40,12,13,0|1ueqqrz,12,13,0|1ueqqs0,16,1,1|1upjmrz,16,1,1|1upjms0,12,13,0|1uxgtfz,12,13,0|1uxgtg0,16,1,1|1v89pfz,16,1,1|1v89pg0,12,13,0|1vg6w3z,12,13,0|1vg6w40,16,1,1|1vqzs3z,16,1,1|1vqzs40,12,13,0|NaN,12,13,0","Atlantic/Bermuda|,0,297,0|-15r0xbv,0,297,0|-15r0xbu,54,297,0|-rivvzv,54,297,0|-rivvzu,26,298,1|-r9qc3v,26,298,1|-r9qc3u,54,297,0|-qzp5bv,54,297,0|-qzp5bu,26,298,1|-qrq6rv,26,298,1|-qrq6ru,54,297,0|-kvj2fv,54,297,0|-kvj2fu,31,40,0|-eljwo1,31,40,0|-eljwo0,49,41,1|-e75gs1,49,41,1|-e75gs0,31,40,0|-dz87c1,31,40,0|-dz87c0,49,41,1|-dnpgs1,49,41,1|-dnpgs0,31,40,0|-dgv3c1,31,40,0|-dgv3c0,49,41,1|-d4mfg1,49,41,1|-d4mfg0,31,40,0|-cy50o1,31,40,0|-cy50o0,49,41,1|-clwcs1,49,41,1|-clwcs0,31,40,0|-bt38o1,31,40,0|-bt38o0,49,41,1|-bmyy41,49,41,1|-bmyy40,31,40,0|-ba07c1,31,40,0|-ba07c0,49,41,1|-b4lu41,49,41,1|-b4lu40,31,40,0|-ara4o1,31,40,0|-ara4o0,49,41,1|-alvrg1,49,41,1|-alvrg0,31,40,0|-a873c1,31,40,0|-a873c0,49,41,1|-a35os1,49,41,1|-a35os0,31,40,0|-9ph0o1,31,40,0|-9ph0o0,49,41,1|-9kfm41,49,41,1|-9kfm40,31,40,0|-96qy01,31,40,0|-96qy00,49,41,1|-91cks1,49,41,1|-91cks0,31,40,0|-73hoo1,31,40,0|-73hoo0,49,41,1|-6vkks1,49,41,1|-6vkks0,31,40,0|296onz,31,40,0|296oo0,49,41,1|2ijn7z,49,41,1|2ijn80,31,40,0|2rwrbz,31,40,0|2rwrc0,49,41,1|319pvz,49,41,1|319pw0,31,40,0|3amtzz,31,40,0|3amu00,49,41,1|3kcr7z,49,41,1|3kcr80,31,40,0|3tcwnz,31,40,0|3tcwo0,49,41,1|432tvz,49,41,1|432tw0,31,40,0|4cfxzz,31,40,0|4cfy00,49,41,1|4lswjz,49,41,1|4lswk0,31,40,0|4v60nz,31,40,0|4v60o0,49,41,1|54iz7z,49,41,1|54iz80,31,40,0|5dw3bz,31,40,0|5dw3c0,49,41,1|5n91vz,49,41,1|5n91w0,31,40,0|5wm5zz,31,40,0|5wm600,49,41,1|65z4jz,49,41,1|65z4k0,31,40,0|6fc8nz,31,40,0|6fc8o0,49,41,1|6p25vz,49,41,1|6p25w0,31,40,0|6y2bbz,31,40,0|6y2bc0,49,41,1|77s8jz,49,41,1|77s8k0,31,40,0|7h5cnz,31,40,0|7h5co0,49,41,1|7qib7z,49,41,1|7qib80,31,40,0|7zvfbz,31,40,0|7zvfc0,49,41,1|898dvz,49,41,1|898dw0,31,40,0|8ilhzz,31,40,0|8ili00,49,41,1|8rygjz,49,41,1|8rygk0,31,40,0|908onz,31,40,0|908oo0,49,41,1|9aoj7z,49,41,1|9aoj80,31,40,0|9iyrbz,31,40,0|9iyrc0,49,41,1|9trkjz,49,41,1|9trkk0,31,40,0|a1otzz,31,40,0|a1ou00,49,41,1|achn7z,49,41,1|achn80,31,40,0|akewnz,31,40,0|akewo0,49,41,1|av7pvz,49,41,1|av7pw0,31,40,0|b3hxzz,31,40,0|b3hy00,49,41,1|bdxsjz,49,41,1|bdxsk0,31,40,0|bm80nz,31,40,0|bm80o0,49,41,1|bwnv7z,49,41,1|bwnv80,31,40,0|c4y3bz,31,40,0|c4y3c0,49,41,1|cfqwjz,49,41,1|cfqwk0,31,40,0|cno5zz,31,40,0|cno600,49,41,1|cygz7z,49,41,1|cygz80,31,40,0|d6e8nz,31,40,0|d6e8o0,49,41,1|dh71vz,49,41,1|dh71w0,31,40,0|dph9zz,31,40,0|dpha00,49,41,1|dzx4jz,49,41,1|dzx4k0,31,40,0|e87cnz,31,40,0|e87co0,49,41,1|ein77z,49,41,1|ein780,31,40,0|eqxfbz,31,40,0|eqxfc0,49,41,1|f1d9vz,49,41,1|f1d9w0,31,40,0|f9nhzz,31,40,0|f9ni00,49,41,1|fkgb7z,49,41,1|fkgb80,31,40,0|fsdknz,31,40,0|fsdko0,49,41,1|g36dvz,49,41,1|g36dw0,31,40,0|gb3nbz,31,40,0|gb3nc0,49,41,1|glwgjz,49,41,1|glwgk0,31,40,0|gu6onz,31,40,0|gu6oo0,49,41,1|h4mj7z,49,41,1|h4mj80,31,40,0|hcwrbz,31,40,0|hcwrc0,49,41,1|hnclvz,49,41,1|hnclw0,31,40,0|hvmtzz,31,40,0|hvmu00,49,41,1|i6fn7z,49,41,1|i6fn80,31,40,0|iecwnz,31,40,0|iecwo0,49,41,1|ip5pvz,49,41,1|ip5pw0,31,40,0|ix2zbz,31,40,0|ix2zc0,49,41,1|j7vsjz,49,41,1|j7vsk0,31,40,0|jeq5zz,31,40,0|jeq600,49,41,1|jqytvz,49,41,1|jqytw0,31,40,0|jxg8nz,31,40,0|jxg8o0,49,41,1|k9owjz,49,41,1|k9owk0,31,40,0|kg6bbz,31,40,0|kg6bc0,49,41,1|ksez7z,49,41,1|ksez80,31,40,0|kz9cnz,31,40,0|kz9co0,49,41,1|lbi0jz,49,41,1|lbi0k0,31,40,0|lhzfbz,31,40,0|lhzfc0,49,41,1|lu837z,49,41,1|lu8380,31,40,0|m0phzz,31,40,0|m0pi00,49,41,1|mcy5vz,49,41,1|mcy5w0,31,40,0|mjfknz,31,40,0|mjfko0,49,41,1|mvo8jz,49,41,1|mvo8k0,31,40,0|n25nbz,31,40,0|n25nc0,49,41,1|neeb7z,49,41,1|neeb80,31,40,0|nkvpzz,31,40,0|nkvq00,49,41,1|nx4dvz,49,41,1|nx4dw0,31,40,0|o3yrbz,31,40,0|o3yrc0,49,41,1|og7f7z,49,41,1|og7f80,31,40,0|omotzz,31,40,0|omou00,49,41,1|oyxhvz,49,41,1|oyxhw0,31,40,0|p5ewnz,31,40,0|p5ewo0,49,41,1|phnkjz,49,41,1|phnkk0,31,40,0|po4zbz,31,40,0|po4zc0,49,41,1|q0dn7z,49,41,1|q0dn80,31,40,0|q6v1zz,31,40,0|q6v200,49,41,1|qj3pvz,49,41,1|qj3pw0,31,40,0|qpy3bz,31,40,0|qpy3c0,49,41,1|r26r7z,49,41,1|r26r80,31,40,0|r8o5zz,31,40,0|r8o600,49,41,1|rkwtvz,49,41,1|rkwtw0,31,40,0|rre8nz,31,40,0|rre8o0,49,41,1|s3mwjz,49,41,1|s3mwk0,31,40,0|sa4bbz,31,40,0|sa4bc0,49,41,1|smcz7z,49,41,1|smcz80,31,40,0|ssudzz,31,40,0|ssue00,49,41,1|t531vz,49,41,1|t531w0,31,40,0|tbkgnz,31,40,0|tbkgo0,49,41,1|tnt4jz,49,41,1|tnt4k0,31,40,0|tunhzz,31,40,0|tuni00,49,41,1|u6w5vz,49,41,1|u6w5w0,31,40,0|uddknz,31,40,0|uddko0,49,41,1|upm8jz,49,41,1|upm8k0,31,40,0|uw3nbz,31,40,0|uw3nc0,49,41,1|v8cb7z,49,41,1|v8cb80,31,40,0|vetpzz,31,40,0|vetq00,49,41,1|vr2dvz,49,41,1|vr2dw0,31,40,0|vxjsnz,31,40,0|vxjso0,49,41,1|w9sgjz,49,41,1|w9sgk0,31,40,0|wgmtzz,31,40,0|wgmu00,49,41,1|wsvhvz,49,41,1|wsvhw0,31,40,0|wzcwnz,31,40,0|wzcwo0,49,41,1|xblkjz,49,41,1|xblkk0,31,40,0|xi2zbz,31,40,0|xi2zc0,49,41,1|xubn7z,49,41,1|xubn80,31,40,0|y0t1zz,31,40,0|y0t200,49,41,1|yd1pvz,49,41,1|yd1pw0,31,40,0|yjj4nz,31,40,0|yjj4o0,49,41,1|yvrsjz,49,41,1|yvrsk0,31,40,0|z297bz,31,40,0|z297c0,49,41,1|zehv7z,49,41,1|zehv80,31,40,0|zlc8nz,31,40,0|zlc8o0,49,41,1|zxkwjz,49,41,1|zxkwk0,31,40,0|1042bbz,31,40,0|1042bc0,49,41,1|10gaz7z,49,41,1|10gaz80,31,40,0|10msdzz,31,40,0|10mse00,49,41,1|10z11vz,49,41,1|10z11w0,31,40,0|115ignz,31,40,0|115igo0,49,41,1|11hr4jz,49,41,1|11hr4k0,31,40,0|11o8jbz,31,40,0|11o8jc0,49,41,1|120h77z,49,41,1|120h780,31,40,0|126ylzz,31,40,0|126ym00,49,41,1|12j79vz,49,41,1|12j79w0,31,40,0|12q1nbz,31,40,0|12q1nc0,49,41,1|132ab7z,49,41,1|132ab80,31,40,0|138rpzz,31,40,0|138rq00,49,41,1|13l0dvz,49,41,1|13l0dw0,31,40,0|13rhsnz,31,40,0|13rhso0,49,41,1|143qgjz,49,41,1|143qgk0,31,40,0|14a7vbz,31,40,0|14a7vc0,49,41,1|14mgj7z,49,41,1|14mgj80,31,40,0|14sxxzz,31,40,0|14sxy00,49,41,1|1556lvz,49,41,1|1556lw0,31,40,0|15c0zbz,31,40,0|15c0zc0,49,41,1|15o9n7z,49,41,1|15o9n80,31,40,0|15ur1zz,31,40,0|15ur200,49,41,1|166zpvz,49,41,1|166zpw0,31,40,0|16dh4nz,31,40,0|16dh4o0,49,41,1|16ppsjz,49,41,1|16ppsk0,31,40,0|16w77bz,31,40,0|16w77c0,49,41,1|178fv7z,49,41,1|178fv80,31,40,0|17ex9zz,31,40,0|17exa00,49,41,1|17r5xvz,49,41,1|17r5xw0,31,40,0|17xncnz,31,40,0|17xnco0,49,41,1|189w0jz,49,41,1|189w0k0,31,40,0|18gqdzz,31,40,0|18gqe00,49,41,1|18sz1vz,49,41,1|18sz1w0,31,40,0|18zggnz,31,40,0|18zggo0,49,41,1|19bp4jz,49,41,1|19bp4k0,31,40,0|19i6jbz,31,40,0|19i6jc0,49,41,1|19uf77z,49,41,1|19uf780,31,40,0|1a0wlzz,31,40,0|1a0wm00,49,41,1|1ad59vz,49,41,1|1ad59w0,31,40,0|1ajmonz,31,40,0|1ajmoo0,49,41,1|1avvcjz,49,41,1|1avvck0,31,40,0|1b2ppzz,31,40,0|1b2pq00,49,41,1|1beydvz,49,41,1|1beydw0,31,40,0|1blfsnz,31,40,0|1blfso0,49,41,1|1bxogjz,49,41,1|1bxogk0,31,40,0|1c45vbz,31,40,0|1c45vc0,49,41,1|1cgej7z,49,41,1|1cgej80,31,40,0|1cmvxzz,31,40,0|1cmvy00,49,41,1|1cz4lvz,49,41,1|1cz4lw0,31,40,0|1d5m0nz,31,40,0|1d5m0o0,49,41,1|1dhuojz,49,41,1|1dhuok0,31,40,0|1doc3bz,31,40,0|1doc3c0,49,41,1|1e0kr7z,49,41,1|1e0kr80,31,40,0|1e7f4nz,31,40,0|1e7f4o0,49,41,1|1ejnsjz,49,41,1|1ejnsk0,31,40,0|1eq57bz,31,40,0|1eq57c0,49,41,1|1f2dv7z,49,41,1|1f2dv80,31,40,0|1f8v9zz,31,40,0|1f8va00,49,41,1|1fl3xvz,49,41,1|1fl3xw0,31,40,0|1frlcnz,31,40,0|1frlco0,49,41,1|1g3u0jz,49,41,1|1g3u0k0,31,40,0|1gabfbz,31,40,0|1gabfc0,49,41,1|1gmk37z,49,41,1|1gmk380,31,40,0|1gt1hzz,31,40,0|1gt1i00,49,41,1|1h5a5vz,49,41,1|1h5a5w0,31,40,0|1hc4jbz,31,40,0|1hc4jc0,49,41,1|1hod77z,49,41,1|1hod780,31,40,0|1huulzz,31,40,0|1huum00,49,41,1|1i739vz,49,41,1|1i739w0,31,40,0|1idkonz,31,40,0|1idkoo0,49,41,1|1iptcjz,49,41,1|1iptck0,31,40,0|1iwarbz,31,40,0|1iwarc0,49,41,1|1j8jf7z,49,41,1|1j8jf80,31,40,0|1jf0tzz,31,40,0|1jf0u00,49,41,1|1jr9hvz,49,41,1|1jr9hw0,31,40,0|1jy3vbz,31,40,0|1jy3vc0,49,41,1|1kacj7z,49,41,1|1kacj80,31,40,0|1kgtxzz,31,40,0|1kgty00,49,41,1|1kt2lvz,49,41,1|1kt2lw0,31,40,0|1kzk0nz,31,40,0|1kzk0o0,49,41,1|1lbsojz,49,41,1|1lbsok0,31,40,0|1lia3bz,31,40,0|1lia3c0,49,41,1|1luir7z,49,41,1|1luir80,31,40,0|1m105zz,31,40,0|1m10600,49,41,1|1md8tvz,49,41,1|1md8tw0,31,40,0|1mjq8nz,31,40,0|1mjq8o0,49,41,1|1mvywjz,49,41,1|1mvywk0,31,40,0|1n2t9zz,31,40,0|1n2ta00,49,41,1|1nf1xvz,49,41,1|1nf1xw0,31,40,0|1nljcnz,31,40,0|1nljco0,49,41,1|1nxs0jz,49,41,1|1nxs0k0,31,40,0|1o49fbz,31,40,0|1o49fc0,49,41,1|1ogi37z,49,41,1|1ogi380,31,40,0|1omzhzz,31,40,0|1omzi00,49,41,1|1oz85vz,49,41,1|1oz85w0,31,40,0|1p5pknz,31,40,0|1p5pko0,49,41,1|1phy8jz,49,41,1|1phy8k0,31,40,0|1poslzz,31,40,0|1posm00,49,41,1|1q119vz,49,41,1|1q119w0,31,40,0|1q7ionz,31,40,0|1q7ioo0,49,41,1|1qjrcjz,49,41,1|1qjrck0,31,40,0|1qq8rbz,31,40,0|1qq8rc0,49,41,1|1r2hf7z,49,41,1|1r2hf80,31,40,0|1r8ytzz,31,40,0|1r8yu00,49,41,1|1rl7hvz,49,41,1|1rl7hw0,31,40,0|1rrownz,31,40,0|1rrowo0,49,41,1|1s3xkjz,49,41,1|1s3xkk0,31,40,0|1saezbz,31,40,0|1saezc0,49,41,1|1smnn7z,49,41,1|1smnn80,31,40,0|1sti0nz,31,40,0|1sti0o0,49,41,1|1t5qojz,49,41,1|1t5qok0,31,40,0|1tc83bz,31,40,0|1tc83c0,49,41,1|1togr7z,49,41,1|1togr80,31,40,0|1tuy5zz,31,40,0|1tuy600,49,41,1|1u76tvz,49,41,1|1u76tw0,31,40,0|1udo8nz,31,40,0|1udo8o0,49,41,1|1upwwjz,49,41,1|1upwwk0,31,40,0|1uwebbz,31,40,0|1uwebc0,49,41,1|1v8mz7z,49,41,1|1v8mz80,31,40,0|1vf4dzz,31,40,0|1vf4e00,49,41,1|1vrd1vz,49,41,1|1vrd1w0,31,40,0|NaN,31,40,0","Atlantic/Canary|,0,299,0|-oytbtd,0,299,0|-oytbtc,12,13,0|-c4xh41,12,13,0|-c4xh40,6,1,0|5csqnz,6,1,0|5csqo0,7,8,1|5lsw3z,7,8,1|5lsw40,6,1,0|5v5xfz,6,1,0|5v5xg0,7,8,1|64iyrz,7,8,1|64iys0,6,1,0|6dw03z,6,1,0|6dw040,7,8,1|6n91fz,7,8,1|6n91g0,6,1,0|6wm2rz,6,1,0|6wm2s0,7,8,1|75z43z,7,8,1|75z440,6,1,0|7fc5fz,6,1,0|7fc5g0,7,8,1|7p25fz,7,8,1|7p25g0,6,1,0|7yf6rz,6,1,0|7yf6s0,7,8,1|87s83z,7,8,1|87s840,6,1,0|8h59fz,6,1,0|8h59g0,7,8,1|8qiarz,7,8,1|8qias0,6,1,0|8zvc3z,6,1,0|8zvc40,7,8,1|998dfz,7,8,1|998dg0,6,1,0|9ilerz,6,1,0|9iles0,7,8,1|9ryg3z,7,8,1|9ryg40,6,1,0|a1bhfz,6,1,0|a1bhg0,7,8,1|aaoirz,7,8,1|aaois0,6,1,0|ak1k3z,6,1,0|ak1k40,7,8,1|atrk3z,7,8,1|atrk40,6,1,0|b34lfz,6,1,0|b34lg0,7,8,1|bchmrz,7,8,1|bchms0,6,1,0|bluo3z,6,1,0|bluo40,7,8,1|bv7pfz,7,8,1|bv7pg0,6,1,0|c4kqrz,6,1,0|c4kqs0,7,8,1|cdxs3z,7,8,1|cdxs40,6,1,0|cnatfz,6,1,0|cnatg0,7,8,1|cwnurz,7,8,1|cwnus0,6,1,0|d60w3z,6,1,0|d60w40,7,8,1|dfdxfz,7,8,1|dfdxg0,6,1,0|dp3xfz,6,1,0|dp3xg0,7,8,1|dzwtfz,7,8,1|dzwtg0,6,1,0|e7u03z,6,1,0|e7u040,7,8,1|eimw3z,7,8,1|eimw40,6,1,0|eqk2rz,6,1,0|eqk2s0,7,8,1|f1cyrz,7,8,1|f1cys0,6,1,0|f9a5fz,6,1,0|f9a5g0,7,8,1|fkg03z,7,8,1|fkg040,6,1,0|fs083z,6,1,0|fs0840,7,8,1|g362rz,7,8,1|g362s0,6,1,0|gaqarz,6,1,0|gaqas0,7,8,1|glw5fz,7,8,1|glw5g0,6,1,0|gttc3z,6,1,0|gttc40,7,8,1|h4m83z,7,8,1|h4m840,6,1,0|hcjerz,6,1,0|hcjes0,7,8,1|hncarz,7,8,1|hncas0,6,1,0|hv9hfz,6,1,0|hv9hg0,7,8,1|i6fc3z,7,8,1|i6fc40,6,1,0|idzk3z,6,1,0|idzk40,7,8,1|ip5erz,7,8,1|ip5es0,6,1,0|iwpmrz,6,1,0|iwpms0,7,8,1|j7vhfz,7,8,1|j7vhg0,6,1,0|jffpfz,6,1,0|jffpg0,7,8,1|jqlk3z,7,8,1|jqlk40,6,1,0|jyiqrz,6,1,0|jyiqs0,7,8,1|k9bmrz,7,8,1|k9bms0,6,1,0|kh8tfz,6,1,0|kh8tg0,7,8,1|ks1pfz,7,8,1|ks1pg0,6,1,0|kzyw3z,6,1,0|kzyw40,7,8,1|lb4qrz,7,8,1|lb4qs0,6,1,0|lioyrz,6,1,0|lioys0,7,8,1|ltutfz,7,8,1|ltutg0,6,1,0|m1f1fz,6,1,0|m1f1g0,7,8,1|mckw3z,7,8,1|mckw40,6,1,0|mki2rz,6,1,0|mki2s0,7,8,1|mvayrz,7,8,1|mvays0,6,1,0|n385fz,6,1,0|n385g0,7,8,1|ne11fz,7,8,1|ne11g0,6,1,0|nly83z,6,1,0|nly840,7,8,1|nwr43z,7,8,1|nwr440,6,1,0|o4oarz,6,1,0|o4oas0,7,8,1|ofu5fz,7,8,1|ofu5g0,6,1,0|onedfz,6,1,0|onedg0,7,8,1|oyk83z,7,8,1|oyk840,6,1,0|p64g3z,6,1,0|p64g40,7,8,1|phaarz,7,8,1|phaas0,6,1,0|pp7hfz,6,1,0|pp7hg0,7,8,1|q00dfz,7,8,1|q00dg0,6,1,0|q7xk3z,6,1,0|q7xk40,7,8,1|qiqg3z,7,8,1|qiqg40,6,1,0|qqnmrz,6,1,0|qqnms0,7,8,1|r1thfz,7,8,1|r1thg0,6,1,0|r9dpfz,6,1,0|r9dpg0,7,8,1|rkjk3z,7,8,1|rkjk40,6,1,0|rs3s3z,6,1,0|rs3s40,7,8,1|s39mrz,7,8,1|s39ms0,6,1,0|sb6tfz,6,1,0|sb6tg0,7,8,1|slzpfz,7,8,1|slzpg0,6,1,0|stww3z,6,1,0|stww40,7,8,1|t4ps3z,7,8,1|t4ps40,6,1,0|tcmyrz,6,1,0|tcmys0,7,8,1|tnfurz,7,8,1|tnfus0,6,1,0|tvd1fz,6,1,0|tvd1g0,7,8,1|u6iw3z,7,8,1|u6iw40,6,1,0|ue343z,6,1,0|ue3440,7,8,1|up8yrz,7,8,1|up8ys0,6,1,0|uwt6rz,6,1,0|uwt6s0,7,8,1|v7z1fz,7,8,1|v7z1g0,6,1,0|vfw83z,6,1,0|vfw840,7,8,1|vqp43z,7,8,1|vqp440,6,1,0|vymarz,6,1,0|vymas0,7,8,1|w9f6rz,7,8,1|w9f6s0,6,1,0|whcdfz,6,1,0|whcdg0,7,8,1|wsi83z,7,8,1|wsi840,6,1,0|x02g3z,6,1,0|x02g40,7,8,1|xb8arz,7,8,1|xb8as0,6,1,0|xisirz,6,1,0|xisis0,7,8,1|xtydfz,7,8,1|xtydg0,6,1,0|y1ilfz,6,1,0|y1ilg0,7,8,1|ycog3z,7,8,1|ycog40,6,1,0|yklmrz,6,1,0|yklms0,7,8,1|yveirz,7,8,1|yveis0,6,1,0|z3bpfz,6,1,0|z3bpg0,7,8,1|ze4lfz,7,8,1|ze4lg0,6,1,0|zm1s3z,6,1,0|zm1s40,7,8,1|zx7mrz,7,8,1|zx7ms0,6,1,0|104rurz,6,1,0|104rus0,7,8,1|10fxpfz,7,8,1|10fxpg0,6,1,0|10nhxfz,6,1,0|10nhxg0,7,8,1|10yns3z,7,8,1|10yns40,6,1,0|116kyrz,6,1,0|116kys0,7,8,1|11hdurz,7,8,1|11hdus0,6,1,0|11pb1fz,6,1,0|11pb1g0,7,8,1|1203xfz,7,8,1|1203xg0,6,1,0|128143z,6,1,0|1281440,7,8,1|12iu03z,7,8,1|12iu040,6,1,0|12qr6rz,6,1,0|12qr6s0,7,8,1|131x1fz,7,8,1|131x1g0,6,1,0|139h9fz,6,1,0|139h9g0,7,8,1|13kn43z,7,8,1|13kn440,6,1,0|13s7c3z,6,1,0|13s7c40,7,8,1|143d6rz,7,8,1|143d6s0,6,1,0|14badfz,6,1,0|14badg0,7,8,1|14m39fz,7,8,1|14m39g0,6,1,0|14u0g3z,6,1,0|14u0g40,7,8,1|154tc3z,7,8,1|154tc40,6,1,0|15cqirz,6,1,0|15cqis0,7,8,1|15nwdfz,7,8,1|15nwdg0,6,1,0|15vglfz,6,1,0|15vglg0,7,8,1|166mg3z,7,8,1|166mg40,6,1,0|16e6o3z,6,1,0|16e6o40,7,8,1|16pcirz,7,8,1|16pcis0,6,1,0|16x9pfz,6,1,0|16x9pg0,7,8,1|1782lfz,7,8,1|1782lg0,6,1,0|17fzs3z,6,1,0|17fzs40,7,8,1|17qso3z,7,8,1|17qso40,6,1,0|17ypurz,6,1,0|17ypus0,7,8,1|189iqrz,7,8,1|189iqs0,6,1,0|18hfxfz,6,1,0|18hfxg0,7,8,1|18sls3z,7,8,1|18sls40,6,1,0|190603z,6,1,0|1906040,7,8,1|19bburz,7,8,1|19bbus0,6,1,0|19iw2rz,6,1,0|19iw2s0,7,8,1|19u1xfz,7,8,1|19u1xg0,6,1,0|1a1z43z,6,1,0|1a1z440,7,8,1|1acs03z,7,8,1|1acs040,6,1,0|1akp6rz,6,1,0|1akp6s0,7,8,1|1avi2rz,7,8,1|1avi2s0,6,1,0|1b3f9fz,6,1,0|1b3f9g0,7,8,1|1bel43z,7,8,1|1bel440,6,1,0|1bm5c3z,6,1,0|1bm5c40,7,8,1|1bxb6rz,7,8,1|1bxb6s0,6,1,0|1c4verz,6,1,0|1c4ves0,7,8,1|1cg19fz,7,8,1|1cg19g0,6,1,0|1cnlhfz,6,1,0|1cnlhg0,7,8,1|1cyrc3z,7,8,1|1cyrc40,6,1,0|1d6oirz,6,1,0|1d6ois0,7,8,1|1dhherz,7,8,1|1dhhes0,6,1,0|1dpelfz,6,1,0|1dpelg0,7,8,1|1e07hfz,7,8,1|1e07hg0,6,1,0|1e84o3z,6,1,0|1e84o40,7,8,1|1ejairz,7,8,1|1ejais0,6,1,0|1equqrz,6,1,0|1equqs0,7,8,1|1f20lfz,7,8,1|1f20lg0,6,1,0|1f9ktfz,6,1,0|1f9ktg0,7,8,1|1fkqo3z,7,8,1|1fkqo40,6,1,0|1fsnurz,6,1,0|1fsnus0,7,8,1|1g3gqrz,7,8,1|1g3gqs0,6,1,0|1gbdxfz,6,1,0|1gbdxg0,7,8,1|1gm6tfz,7,8,1|1gm6tg0,6,1,0|1gu403z,6,1,0|1gu4040,7,8,1|1h4ww3z,7,8,1|1h4ww40,6,1,0|1hcu2rz,6,1,0|1hcu2s0,7,8,1|1hnzxfz,7,8,1|1hnzxg0,6,1,0|1hvk5fz,6,1,0|1hvk5g0,7,8,1|1i6q03z,7,8,1|1i6q040,6,1,0|1iea83z,6,1,0|1iea840,7,8,1|1ipg2rz,7,8,1|1ipg2s0,6,1,0|1ixd9fz,6,1,0|1ixd9g0,7,8,1|1j865fz,7,8,1|1j865g0,6,1,0|1jg3c3z,6,1,0|1jg3c40,7,8,1|1jqw83z,7,8,1|1jqw840,6,1,0|1jyterz,6,1,0|1jytes0,7,8,1|1k9z9fz,7,8,1|1k9z9g0,6,1,0|1khjhfz,6,1,0|1khjhg0,7,8,1|1kspc3z,7,8,1|1kspc40,6,1,0|1l09k3z,6,1,0|1l09k40,7,8,1|1lbferz,7,8,1|1lbfes0,6,1,0|1ljclfz,6,1,0|1ljclg0,7,8,1|1lu5hfz,7,8,1|1lu5hg0,6,1,0|1m22o3z,6,1,0|1m22o40,7,8,1|1mcvk3z,7,8,1|1mcvk40,6,1,0|1mksqrz,6,1,0|1mksqs0,7,8,1|1mvlmrz,7,8,1|1mvlms0,6,1,0|1n3itfz,6,1,0|1n3itg0,7,8,1|1neoo3z,7,8,1|1neoo40,6,1,0|1nm8w3z,6,1,0|1nm8w40,7,8,1|1nxeqrz,7,8,1|1nxeqs0,6,1,0|1o4yyrz,6,1,0|1o4yys0,7,8,1|1og4tfz,7,8,1|1og4tg0,6,1,0|1oo203z,6,1,0|1oo2040,7,8,1|1oyuw3z,7,8,1|1oyuw40,6,1,0|1p6s2rz,6,1,0|1p6s2s0,7,8,1|1phkyrz,7,8,1|1phkys0,6,1,0|1ppi5fz,6,1,0|1ppi5g0,7,8,1|1q0o03z,7,8,1|1q0o040,6,1,0|1q8883z,6,1,0|1q88840,7,8,1|1qje2rz,7,8,1|1qje2s0,6,1,0|1qqyarz,6,1,0|1qqyas0,7,8,1|1r245fz,7,8,1|1r245g0,6,1,0|1r9odfz,6,1,0|1r9odg0,7,8,1|1rku83z,7,8,1|1rku840,6,1,0|1rsrerz,6,1,0|1rsres0,7,8,1|1s3karz,7,8,1|1s3kas0,6,1,0|1sbhhfz,6,1,0|1sbhhg0,7,8,1|1smadfz,7,8,1|1smadg0,6,1,0|1su7k3z,6,1,0|1su7k40,7,8,1|1t5derz,7,8,1|1t5des0,6,1,0|1tcxmrz,6,1,0|1tcxms0,7,8,1|1to3hfz,7,8,1|1to3hg0,6,1,0|1tvnpfz,6,1,0|1tvnpg0,7,8,1|1u6tk3z,7,8,1|1u6tk40,6,1,0|1ueqqrz,6,1,0|1ueqqs0,7,8,1|1upjmrz,7,8,1|1upjms0,6,1,0|1uxgtfz,6,1,0|1uxgtg0,7,8,1|1v89pfz,7,8,1|1v89pg0,6,1,0|1vg6w3z,6,1,0|1vg6w40,7,8,1|1vqzs3z,7,8,1|1vqzs40,6,1,0|NaN,6,1,0","Atlantic/Cape_Verde|,0,300,0|-u9rbs1,0,300,0|-u9rbs0,39,43,0|-e9kqg1,39,43,0|-e9kqg0,12,13,1|-cmxp81,12,13,1|-cmxp80,39,43,0|32t73z,39,43,0|32t740,12,13,0|NaN,12,13,0","Atlantic/Faroe|,0,301,0|-wcehex,0,301,0|-wcehew,6,1,0|5v5xfz,6,1,0|5v5xg0,7,8,1|64iyrz,7,8,1|64iys0,6,1,0|6dw03z,6,1,0|6dw040,7,8,1|6n91fz,7,8,1|6n91g0,6,1,0|6wm2rz,6,1,0|6wm2s0,7,8,1|75z43z,7,8,1|75z440,6,1,0|7fc5fz,6,1,0|7fc5g0,7,8,1|7p25fz,7,8,1|7p25g0,6,1,0|7yf6rz,6,1,0|7yf6s0,7,8,1|87s83z,7,8,1|87s840,6,1,0|8h59fz,6,1,0|8h59g0,7,8,1|8qiarz,7,8,1|8qias0,6,1,0|8zvc3z,6,1,0|8zvc40,7,8,1|998dfz,7,8,1|998dg0,6,1,0|9ilerz,6,1,0|9iles0,7,8,1|9ryg3z,7,8,1|9ryg40,6,1,0|a1bhfz,6,1,0|a1bhg0,7,8,1|aaoirz,7,8,1|aaois0,6,1,0|ak1k3z,6,1,0|ak1k40,7,8,1|atrk3z,7,8,1|atrk40,6,1,0|b34lfz,6,1,0|b34lg0,7,8,1|bchmrz,7,8,1|bchms0,6,1,0|bluo3z,6,1,0|bluo40,7,8,1|bv7pfz,7,8,1|bv7pg0,6,1,0|c4kqrz,6,1,0|c4kqs0,7,8,1|cdxs3z,7,8,1|cdxs40,6,1,0|cnatfz,6,1,0|cnatg0,7,8,1|cwnurz,7,8,1|cwnus0,6,1,0|d60w3z,6,1,0|d60w40,7,8,1|dfdxfz,7,8,1|dfdxg0,6,1,0|dp3xfz,6,1,0|dp3xg0,7,8,1|dzwtfz,7,8,1|dzwtg0,6,1,0|e7u03z,6,1,0|e7u040,7,8,1|eimw3z,7,8,1|eimw40,6,1,0|eqk2rz,6,1,0|eqk2s0,7,8,1|f1cyrz,7,8,1|f1cys0,6,1,0|f9a5fz,6,1,0|f9a5g0,7,8,1|fkg03z,7,8,1|fkg040,6,1,0|fs083z,6,1,0|fs0840,7,8,1|g362rz,7,8,1|g362s0,6,1,0|gaqarz,6,1,0|gaqas0,7,8,1|glw5fz,7,8,1|glw5g0,6,1,0|gttc3z,6,1,0|gttc40,7,8,1|h4m83z,7,8,1|h4m840,6,1,0|hcjerz,6,1,0|hcjes0,7,8,1|hncarz,7,8,1|hncas0,6,1,0|hv9hfz,6,1,0|hv9hg0,7,8,1|i6fc3z,7,8,1|i6fc40,6,1,0|idzk3z,6,1,0|idzk40,7,8,1|ip5erz,7,8,1|ip5es0,6,1,0|iwpmrz,6,1,0|iwpms0,7,8,1|j7vhfz,7,8,1|j7vhg0,6,1,0|jffpfz,6,1,0|jffpg0,7,8,1|jqlk3z,7,8,1|jqlk40,6,1,0|jyiqrz,6,1,0|jyiqs0,7,8,1|k9bmrz,7,8,1|k9bms0,6,1,0|kh8tfz,6,1,0|kh8tg0,7,8,1|ks1pfz,7,8,1|ks1pg0,6,1,0|kzyw3z,6,1,0|kzyw40,7,8,1|lb4qrz,7,8,1|lb4qs0,6,1,0|lioyrz,6,1,0|lioys0,7,8,1|ltutfz,7,8,1|ltutg0,6,1,0|m1f1fz,6,1,0|m1f1g0,7,8,1|mckw3z,7,8,1|mckw40,6,1,0|mki2rz,6,1,0|mki2s0,7,8,1|mvayrz,7,8,1|mvays0,6,1,0|n385fz,6,1,0|n385g0,7,8,1|ne11fz,7,8,1|ne11g0,6,1,0|nly83z,6,1,0|nly840,7,8,1|nwr43z,7,8,1|nwr440,6,1,0|o4oarz,6,1,0|o4oas0,7,8,1|ofu5fz,7,8,1|ofu5g0,6,1,0|onedfz,6,1,0|onedg0,7,8,1|oyk83z,7,8,1|oyk840,6,1,0|p64g3z,6,1,0|p64g40,7,8,1|phaarz,7,8,1|phaas0,6,1,0|pp7hfz,6,1,0|pp7hg0,7,8,1|q00dfz,7,8,1|q00dg0,6,1,0|q7xk3z,6,1,0|q7xk40,7,8,1|qiqg3z,7,8,1|qiqg40,6,1,0|qqnmrz,6,1,0|qqnms0,7,8,1|r1thfz,7,8,1|r1thg0,6,1,0|r9dpfz,6,1,0|r9dpg0,7,8,1|rkjk3z,7,8,1|rkjk40,6,1,0|rs3s3z,6,1,0|rs3s40,7,8,1|s39mrz,7,8,1|s39ms0,6,1,0|sb6tfz,6,1,0|sb6tg0,7,8,1|slzpfz,7,8,1|slzpg0,6,1,0|stww3z,6,1,0|stww40,7,8,1|t4ps3z,7,8,1|t4ps40,6,1,0|tcmyrz,6,1,0|tcmys0,7,8,1|tnfurz,7,8,1|tnfus0,6,1,0|tvd1fz,6,1,0|tvd1g0,7,8,1|u6iw3z,7,8,1|u6iw40,6,1,0|ue343z,6,1,0|ue3440,7,8,1|up8yrz,7,8,1|up8ys0,6,1,0|uwt6rz,6,1,0|uwt6s0,7,8,1|v7z1fz,7,8,1|v7z1g0,6,1,0|vfw83z,6,1,0|vfw840,7,8,1|vqp43z,7,8,1|vqp440,6,1,0|vymarz,6,1,0|vymas0,7,8,1|w9f6rz,7,8,1|w9f6s0,6,1,0|whcdfz,6,1,0|whcdg0,7,8,1|wsi83z,7,8,1|wsi840,6,1,0|x02g3z,6,1,0|x02g40,7,8,1|xb8arz,7,8,1|xb8as0,6,1,0|xisirz,6,1,0|xisis0,7,8,1|xtydfz,7,8,1|xtydg0,6,1,0|y1ilfz,6,1,0|y1ilg0,7,8,1|ycog3z,7,8,1|ycog40,6,1,0|yklmrz,6,1,0|yklms0,7,8,1|yveirz,7,8,1|yveis0,6,1,0|z3bpfz,6,1,0|z3bpg0,7,8,1|ze4lfz,7,8,1|ze4lg0,6,1,0|zm1s3z,6,1,0|zm1s40,7,8,1|zx7mrz,7,8,1|zx7ms0,6,1,0|104rurz,6,1,0|104rus0,7,8,1|10fxpfz,7,8,1|10fxpg0,6,1,0|10nhxfz,6,1,0|10nhxg0,7,8,1|10yns3z,7,8,1|10yns40,6,1,0|116kyrz,6,1,0|116kys0,7,8,1|11hdurz,7,8,1|11hdus0,6,1,0|11pb1fz,6,1,0|11pb1g0,7,8,1|1203xfz,7,8,1|1203xg0,6,1,0|128143z,6,1,0|1281440,7,8,1|12iu03z,7,8,1|12iu040,6,1,0|12qr6rz,6,1,0|12qr6s0,7,8,1|131x1fz,7,8,1|131x1g0,6,1,0|139h9fz,6,1,0|139h9g0,7,8,1|13kn43z,7,8,1|13kn440,6,1,0|13s7c3z,6,1,0|13s7c40,7,8,1|143d6rz,7,8,1|143d6s0,6,1,0|14badfz,6,1,0|14badg0,7,8,1|14m39fz,7,8,1|14m39g0,6,1,0|14u0g3z,6,1,0|14u0g40,7,8,1|154tc3z,7,8,1|154tc40,6,1,0|15cqirz,6,1,0|15cqis0,7,8,1|15nwdfz,7,8,1|15nwdg0,6,1,0|15vglfz,6,1,0|15vglg0,7,8,1|166mg3z,7,8,1|166mg40,6,1,0|16e6o3z,6,1,0|16e6o40,7,8,1|16pcirz,7,8,1|16pcis0,6,1,0|16x9pfz,6,1,0|16x9pg0,7,8,1|1782lfz,7,8,1|1782lg0,6,1,0|17fzs3z,6,1,0|17fzs40,7,8,1|17qso3z,7,8,1|17qso40,6,1,0|17ypurz,6,1,0|17ypus0,7,8,1|189iqrz,7,8,1|189iqs0,6,1,0|18hfxfz,6,1,0|18hfxg0,7,8,1|18sls3z,7,8,1|18sls40,6,1,0|190603z,6,1,0|1906040,7,8,1|19bburz,7,8,1|19bbus0,6,1,0|19iw2rz,6,1,0|19iw2s0,7,8,1|19u1xfz,7,8,1|19u1xg0,6,1,0|1a1z43z,6,1,0|1a1z440,7,8,1|1acs03z,7,8,1|1acs040,6,1,0|1akp6rz,6,1,0|1akp6s0,7,8,1|1avi2rz,7,8,1|1avi2s0,6,1,0|1b3f9fz,6,1,0|1b3f9g0,7,8,1|1bel43z,7,8,1|1bel440,6,1,0|1bm5c3z,6,1,0|1bm5c40,7,8,1|1bxb6rz,7,8,1|1bxb6s0,6,1,0|1c4verz,6,1,0|1c4ves0,7,8,1|1cg19fz,7,8,1|1cg19g0,6,1,0|1cnlhfz,6,1,0|1cnlhg0,7,8,1|1cyrc3z,7,8,1|1cyrc40,6,1,0|1d6oirz,6,1,0|1d6ois0,7,8,1|1dhherz,7,8,1|1dhhes0,6,1,0|1dpelfz,6,1,0|1dpelg0,7,8,1|1e07hfz,7,8,1|1e07hg0,6,1,0|1e84o3z,6,1,0|1e84o40,7,8,1|1ejairz,7,8,1|1ejais0,6,1,0|1equqrz,6,1,0|1equqs0,7,8,1|1f20lfz,7,8,1|1f20lg0,6,1,0|1f9ktfz,6,1,0|1f9ktg0,7,8,1|1fkqo3z,7,8,1|1fkqo40,6,1,0|1fsnurz,6,1,0|1fsnus0,7,8,1|1g3gqrz,7,8,1|1g3gqs0,6,1,0|1gbdxfz,6,1,0|1gbdxg0,7,8,1|1gm6tfz,7,8,1|1gm6tg0,6,1,0|1gu403z,6,1,0|1gu4040,7,8,1|1h4ww3z,7,8,1|1h4ww40,6,1,0|1hcu2rz,6,1,0|1hcu2s0,7,8,1|1hnzxfz,7,8,1|1hnzxg0,6,1,0|1hvk5fz,6,1,0|1hvk5g0,7,8,1|1i6q03z,7,8,1|1i6q040,6,1,0|1iea83z,6,1,0|1iea840,7,8,1|1ipg2rz,7,8,1|1ipg2s0,6,1,0|1ixd9fz,6,1,0|1ixd9g0,7,8,1|1j865fz,7,8,1|1j865g0,6,1,0|1jg3c3z,6,1,0|1jg3c40,7,8,1|1jqw83z,7,8,1|1jqw840,6,1,0|1jyterz,6,1,0|1jytes0,7,8,1|1k9z9fz,7,8,1|1k9z9g0,6,1,0|1khjhfz,6,1,0|1khjhg0,7,8,1|1kspc3z,7,8,1|1kspc40,6,1,0|1l09k3z,6,1,0|1l09k40,7,8,1|1lbferz,7,8,1|1lbfes0,6,1,0|1ljclfz,6,1,0|1ljclg0,7,8,1|1lu5hfz,7,8,1|1lu5hg0,6,1,0|1m22o3z,6,1,0|1m22o40,7,8,1|1mcvk3z,7,8,1|1mcvk40,6,1,0|1mksqrz,6,1,0|1mksqs0,7,8,1|1mvlmrz,7,8,1|1mvlms0,6,1,0|1n3itfz,6,1,0|1n3itg0,7,8,1|1neoo3z,7,8,1|1neoo40,6,1,0|1nm8w3z,6,1,0|1nm8w40,7,8,1|1nxeqrz,7,8,1|1nxeqs0,6,1,0|1o4yyrz,6,1,0|1o4yys0,7,8,1|1og4tfz,7,8,1|1og4tg0,6,1,0|1oo203z,6,1,0|1oo2040,7,8,1|1oyuw3z,7,8,1|1oyuw40,6,1,0|1p6s2rz,6,1,0|1p6s2s0,7,8,1|1phkyrz,7,8,1|1phkys0,6,1,0|1ppi5fz,6,1,0|1ppi5g0,7,8,1|1q0o03z,7,8,1|1q0o040,6,1,0|1q8883z,6,1,0|1q88840,7,8,1|1qje2rz,7,8,1|1qje2s0,6,1,0|1qqyarz,6,1,0|1qqyas0,7,8,1|1r245fz,7,8,1|1r245g0,6,1,0|1r9odfz,6,1,0|1r9odg0,7,8,1|1rku83z,7,8,1|1rku840,6,1,0|1rsrerz,6,1,0|1rsres0,7,8,1|1s3karz,7,8,1|1s3kas0,6,1,0|1sbhhfz,6,1,0|1sbhhg0,7,8,1|1smadfz,7,8,1|1smadg0,6,1,0|1su7k3z,6,1,0|1su7k40,7,8,1|1t5derz,7,8,1|1t5des0,6,1,0|1tcxmrz,6,1,0|1tcxms0,7,8,1|1to3hfz,7,8,1|1to3hg0,6,1,0|1tvnpfz,6,1,0|1tvnpg0,7,8,1|1u6tk3z,7,8,1|1u6tk40,6,1,0|1ueqqrz,6,1,0|1ueqqs0,7,8,1|1upjmrz,7,8,1|1upjms0,6,1,0|1uxgtfz,6,1,0|1uxgtg0,7,8,1|1v89pfz,7,8,1|1v89pg0,6,1,0|1vg6w3z,6,1,0|1vg6w40,7,8,1|1vqzs3z,7,8,1|1vqzs40,6,1,0|NaN,6,1,0","Atlantic/Madeira|,0,302,0|-18vsfjd,0,302,0|-18vsfjc,137,302,0|-u9rek1,137,302,0|-u9rek0,12,13,0|-rxwyo1,12,13,0|-rxwyo0,16,1,1|-rqx181,16,1,1|-rqx180,12,13,0|-rkqw01,12,13,0|-rkqw00,16,1,1|-r90o01,16,1,1|-r90o00,12,13,0|-r1x401,12,13,0|-r1x400,16,1,1|-qq8qo1,16,1,1|-qq8qo0,12,13,0|-qj71c1,12,13,0|-qj71c0,16,1,1|-q7gtc1,16,1,1|-q7gtc0,12,13,0|-q0d9c1,12,13,0|-q0d9c0,16,1,1|-pon1c1,16,1,1|-pon1c0,12,13,0|-phlc01,12,13,0|-phlc00,16,1,1|-p5v401,16,1,1|-p5v400,12,13,0|-nuso01,12,13,0|-nuso00,16,1,1|-nlhhc1,16,1,1|-nlhhc0,12,13,0|-mt6yo1,12,13,0|-mt6yo0,16,1,1|-mkjuo1,16,1,1|-mkjuo0,12,13,0|-matuo1,12,13,0|-matuo0,16,1,1|-m1ts01,16,1,1|-m1ts00,12,13,0|-lrqtc1,12,13,0|-lrqtc0,16,1,1|-liqqo1,16,1,1|-liqqo0,12,13,0|-l8ns01,12,13,0|-l8ns00,16,1,1|-l00o01,16,1,1|-l00o00,12,13,0|-k77mo1,12,13,0|-k77mo0,16,1,1|-jykio1,16,1,1|-jykio0,12,13,0|-jp7hc1,12,13,0|-jp7hc0,16,1,1|-jfug01,16,1,1|-jfug00,12,13,0|-inedc1,12,13,0|-inedc0,16,1,1|-ie1c01,16,1,1|-ie1c00,12,13,0|-i519c1,12,13,0|-i519c0,16,1,1|-hvb9c1,16,1,1|-hvb9c0,12,13,0|-hl8ao1,12,13,0|-hl8ao0,16,1,1|-hcl6o1,16,1,1|-hcl6o0,12,13,0|-h385c1,12,13,0|-h385c0,16,1,1|-gtv401,16,1,1|-gtv400,12,13,0|-gkv1c1,12,13,0|-gkv1c0,16,1,1|-gb51c1,16,1,1|-gb51c0,12,13,0|-g122o1,12,13,0|-g122o0,16,1,1|-fpw801,16,1,1|-fpw800,12,13,0|-fkuqo1,12,13,0|-fkuqo0,16,1,1|-f9bxc1,16,1,1|-f9bxc0,12,13,0|-ezyw01,12,13,0|-ezyw00,16,1,1|-eqk001,16,1,1|-eqk000,12,13,0|-eibpc1,12,13,0|-eibpc0,16,1,1|-eg6041,16,1,1|-eg6040,17,8,1|-eaelg1,17,8,1|-eaelg0,16,1,1|-e6sw01,16,1,1|-e6sw00,12,13,0|-dzlmo1,12,13,0|-dzlmo0,16,1,1|-dxsw41,16,1,1|-dxsw40,17,8,1|-dqylg1,17,8,1|-dqylg0,16,1,1|-dnpuo1,16,1,1|-dnpuo0,12,13,0|-dgvk01,12,13,0|-dgvk00,16,1,1|-depus1,16,1,1|-depus0,17,8,1|-d88is1,17,8,1|-d88is0,16,1,1|-d4zs01,16,1,1|-d4zs00,12,13,0|-cy5hc1,12,13,0|-cy5hc0,16,1,1|-cvzs41,16,1,1|-cvzs40,17,8,1|-cpig41,17,8,1|-cpig40,16,1,1|-cm9pc1,16,1,1|-cm9pc0,12,13,0|-cdzk01,12,13,0|-cdzk00,16,1,1|-c4mio1,16,1,1|-c4mio0,12,13,0|-bv9901,12,13,0|-bv9900,16,1,1|-blw7o1,16,1,1|-blw7o0,12,13,0|-bcj6c1,12,13,0|-bcj6c0,16,1,1|-b36501,16,1,1|-b36500,12,13,0|-att3o1,12,13,0|-att3o0,16,1,1|-akg2c1,16,1,1|-akg2c0,12,13,0|-ab3101,12,13,0|-ab3100,16,1,1|-a1pzo1,16,1,1|-a1pzo0,12,13,0|-9scyc1,12,13,0|-9scyc0,16,1,1|-9imyc1,16,1,1|-9imyc0,12,13,0|-999x01,12,13,0|-999x00,16,1,1|-8zwvo1,16,1,1|-8zwvo0,12,13,0|-8qjuc1,12,13,0|-8qjuc0,16,1,1|-8h6t01,16,1,1|-8h6t00,12,13,0|-87tro1,12,13,0|-87tro0,16,1,1|-7ygqc1,16,1,1|-7ygqc0,12,13,0|-7p3p01,12,13,0|-7p3p00,16,1,1|-7fqno1,16,1,1|-7fqno0,12,13,0|-76dmc1,12,13,0|-76dmc0,16,1,1|-6wnmc1,16,1,1|-6wnmc0,12,13,0|-6nal01,12,13,0|-6nal00,16,1,1|-6dxjo1,16,1,1|-6dxjo0,12,13,0|-64kic1,12,13,0|-64kic0,16,1,1|-5v7h01,16,1,1|-5v7h00,12,13,0|-5lufo1,12,13,0|-5lufo0,16,1,1|-5chec1,16,1,1|-5chec0,12,13,0|-534d01,12,13,0|-534d00,16,1,1|-4trbo1,16,1,1|-4trbo0,12,13,0|-4keac1,12,13,0|-4keac0,16,1,1|-4b1901,16,1,1|-4b1900,12,13,0|-41o7o1,12,13,0|-41o7o0,16,1,1|-3ry7o1,16,1,1|-3ry7o0,12,13,0|-3il6c1,12,13,0|-3il6c0,16,1,1|-398501,16,1,1|-398500,12,13,0|-2zv3o1,12,13,0|-2zv3o0,16,1,1|-2qi2c1,16,1,1|-2qi2c0,12,13,0|-2h5101,12,13,0|-2h5100,16,1,1|-27rzo1,16,1,1|-27rzo0,12,13,0|-1yeyc1,12,13,0|-1yeyc0,6,1,0|3rwlbz,6,1,0|3rwlc0,7,8,1|419mnz,7,8,1|419mo0,6,1,0|4azmnz,6,1,0|4azmo0,7,8,1|4kcnzz,7,8,1|4kco00,6,1,0|4tppbz,6,1,0|4tppc0,7,8,1|532tfz,7,8,1|532tg0,6,1,0|5cfrzz,6,1,0|5cfs00,7,8,1|5lsw3z,7,8,1|5lsw40,6,1,0|5v5xfz,6,1,0|5v5xg0,7,8,1|64iyrz,7,8,1|64iys0,6,1,0|6dw03z,6,1,0|6dw040,7,8,1|6n91fz,7,8,1|6n91g0,6,1,0|6wm5jz,6,1,0|6wm5k0,7,8,1|75z43z,7,8,1|75z440,6,1,0|7fc5fz,6,1,0|7fc5g0,7,8,1|7p25fz,7,8,1|7p25g0,6,1,0|7yf6rz,6,1,0|7yf6s0,7,8,1|87s83z,7,8,1|87s840,6,1,0|8h59fz,6,1,0|8h59g0,7,8,1|8qiarz,7,8,1|8qias0,6,1,0|8zvc3z,6,1,0|8zvc40,7,8,1|998dfz,7,8,1|998dg0,6,1,0|9ilerz,6,1,0|9iles0,7,8,1|9ryg3z,7,8,1|9ryg40,6,1,0|a1bhfz,6,1,0|a1bhg0,7,8,1|aaoirz,7,8,1|aaois0,6,1,0|ak1k3z,6,1,0|ak1k40,7,8,1|atrk3z,7,8,1|atrk40,6,1,0|b34lfz,6,1,0|b34lg0,7,8,1|bchmrz,7,8,1|bchms0,6,1,0|bluo3z,6,1,0|bluo40,7,8,1|bv7pfz,7,8,1|bv7pg0,6,1,0|c4kqrz,6,1,0|c4kqs0,7,8,1|cdxs3z,7,8,1|cdxs40,6,1,0|cnatfz,6,1,0|cnatg0,7,8,1|cwnurz,7,8,1|cwnus0,6,1,0|d60w3z,6,1,0|d60w40,7,8,1|dfdxfz,7,8,1|dfdxg0,6,1,0|dp3xfz,6,1,0|dp3xg0,7,8,1|dzwtfz,7,8,1|dzwtg0,6,1,0|e7u03z,6,1,0|e7u040,7,8,1|eimw3z,7,8,1|eimw40,6,1,0|eqk2rz,6,1,0|eqk2s0,7,8,1|f1cyrz,7,8,1|f1cys0,6,1,0|f9a5fz,6,1,0|f9a5g0,7,8,1|fkg03z,7,8,1|fkg040,6,1,0|fs083z,6,1,0|fs0840,7,8,1|g362rz,7,8,1|g362s0,6,1,0|gaqarz,6,1,0|gaqas0,7,8,1|glw5fz,7,8,1|glw5g0,6,1,0|gttc3z,6,1,0|gttc40,7,8,1|h4m83z,7,8,1|h4m840,6,1,0|hcjerz,6,1,0|hcjes0,7,8,1|hncarz,7,8,1|hncas0,6,1,0|hv9hfz,6,1,0|hv9hg0,7,8,1|i6fc3z,7,8,1|i6fc40,6,1,0|idzk3z,6,1,0|idzk40,7,8,1|ip5erz,7,8,1|ip5es0,6,1,0|iwpmrz,6,1,0|iwpms0,7,8,1|j7vhfz,7,8,1|j7vhg0,6,1,0|jffpfz,6,1,0|jffpg0,7,8,1|jqlk3z,7,8,1|jqlk40,6,1,0|jyiqrz,6,1,0|jyiqs0,7,8,1|k9bmrz,7,8,1|k9bms0,6,1,0|kh8tfz,6,1,0|kh8tg0,7,8,1|ks1pfz,7,8,1|ks1pg0,6,1,0|kzyw3z,6,1,0|kzyw40,7,8,1|lb4qrz,7,8,1|lb4qs0,6,1,0|lioyrz,6,1,0|lioys0,7,8,1|ltutfz,7,8,1|ltutg0,6,1,0|m1f1fz,6,1,0|m1f1g0,7,8,1|mckw3z,7,8,1|mckw40,6,1,0|mki2rz,6,1,0|mki2s0,7,8,1|mvayrz,7,8,1|mvays0,6,1,0|n385fz,6,1,0|n385g0,7,8,1|ne11fz,7,8,1|ne11g0,6,1,0|nly83z,6,1,0|nly840,7,8,1|nwr43z,7,8,1|nwr440,6,1,0|o4oarz,6,1,0|o4oas0,7,8,1|ofu5fz,7,8,1|ofu5g0,6,1,0|onedfz,6,1,0|onedg0,7,8,1|oyk83z,7,8,1|oyk840,6,1,0|p64g3z,6,1,0|p64g40,7,8,1|phaarz,7,8,1|phaas0,6,1,0|pp7hfz,6,1,0|pp7hg0,7,8,1|q00dfz,7,8,1|q00dg0,6,1,0|q7xk3z,6,1,0|q7xk40,7,8,1|qiqg3z,7,8,1|qiqg40,6,1,0|qqnmrz,6,1,0|qqnms0,7,8,1|r1thfz,7,8,1|r1thg0,6,1,0|r9dpfz,6,1,0|r9dpg0,7,8,1|rkjk3z,7,8,1|rkjk40,6,1,0|rs3s3z,6,1,0|rs3s40,7,8,1|s39mrz,7,8,1|s39ms0,6,1,0|sb6tfz,6,1,0|sb6tg0,7,8,1|slzpfz,7,8,1|slzpg0,6,1,0|stww3z,6,1,0|stww40,7,8,1|t4ps3z,7,8,1|t4ps40,6,1,0|tcmyrz,6,1,0|tcmys0,7,8,1|tnfurz,7,8,1|tnfus0,6,1,0|tvd1fz,6,1,0|tvd1g0,7,8,1|u6iw3z,7,8,1|u6iw40,6,1,0|ue343z,6,1,0|ue3440,7,8,1|up8yrz,7,8,1|up8ys0,6,1,0|uwt6rz,6,1,0|uwt6s0,7,8,1|v7z1fz,7,8,1|v7z1g0,6,1,0|vfw83z,6,1,0|vfw840,7,8,1|vqp43z,7,8,1|vqp440,6,1,0|vymarz,6,1,0|vymas0,7,8,1|w9f6rz,7,8,1|w9f6s0,6,1,0|whcdfz,6,1,0|whcdg0,7,8,1|wsi83z,7,8,1|wsi840,6,1,0|x02g3z,6,1,0|x02g40,7,8,1|xb8arz,7,8,1|xb8as0,6,1,0|xisirz,6,1,0|xisis0,7,8,1|xtydfz,7,8,1|xtydg0,6,1,0|y1ilfz,6,1,0|y1ilg0,7,8,1|ycog3z,7,8,1|ycog40,6,1,0|yklmrz,6,1,0|yklms0,7,8,1|yveirz,7,8,1|yveis0,6,1,0|z3bpfz,6,1,0|z3bpg0,7,8,1|ze4lfz,7,8,1|ze4lg0,6,1,0|zm1s3z,6,1,0|zm1s40,7,8,1|zx7mrz,7,8,1|zx7ms0,6,1,0|104rurz,6,1,0|104rus0,7,8,1|10fxpfz,7,8,1|10fxpg0,6,1,0|10nhxfz,6,1,0|10nhxg0,7,8,1|10yns3z,7,8,1|10yns40,6,1,0|116kyrz,6,1,0|116kys0,7,8,1|11hdurz,7,8,1|11hdus0,6,1,0|11pb1fz,6,1,0|11pb1g0,7,8,1|1203xfz,7,8,1|1203xg0,6,1,0|128143z,6,1,0|1281440,7,8,1|12iu03z,7,8,1|12iu040,6,1,0|12qr6rz,6,1,0|12qr6s0,7,8,1|131x1fz,7,8,1|131x1g0,6,1,0|139h9fz,6,1,0|139h9g0,7,8,1|13kn43z,7,8,1|13kn440,6,1,0|13s7c3z,6,1,0|13s7c40,7,8,1|143d6rz,7,8,1|143d6s0,6,1,0|14badfz,6,1,0|14badg0,7,8,1|14m39fz,7,8,1|14m39g0,6,1,0|14u0g3z,6,1,0|14u0g40,7,8,1|154tc3z,7,8,1|154tc40,6,1,0|15cqirz,6,1,0|15cqis0,7,8,1|15nwdfz,7,8,1|15nwdg0,6,1,0|15vglfz,6,1,0|15vglg0,7,8,1|166mg3z,7,8,1|166mg40,6,1,0|16e6o3z,6,1,0|16e6o40,7,8,1|16pcirz,7,8,1|16pcis0,6,1,0|16x9pfz,6,1,0|16x9pg0,7,8,1|1782lfz,7,8,1|1782lg0,6,1,0|17fzs3z,6,1,0|17fzs40,7,8,1|17qso3z,7,8,1|17qso40,6,1,0|17ypurz,6,1,0|17ypus0,7,8,1|189iqrz,7,8,1|189iqs0,6,1,0|18hfxfz,6,1,0|18hfxg0,7,8,1|18sls3z,7,8,1|18sls40,6,1,0|190603z,6,1,0|1906040,7,8,1|19bburz,7,8,1|19bbus0,6,1,0|19iw2rz,6,1,0|19iw2s0,7,8,1|19u1xfz,7,8,1|19u1xg0,6,1,0|1a1z43z,6,1,0|1a1z440,7,8,1|1acs03z,7,8,1|1acs040,6,1,0|1akp6rz,6,1,0|1akp6s0,7,8,1|1avi2rz,7,8,1|1avi2s0,6,1,0|1b3f9fz,6,1,0|1b3f9g0,7,8,1|1bel43z,7,8,1|1bel440,6,1,0|1bm5c3z,6,1,0|1bm5c40,7,8,1|1bxb6rz,7,8,1|1bxb6s0,6,1,0|1c4verz,6,1,0|1c4ves0,7,8,1|1cg19fz,7,8,1|1cg19g0,6,1,0|1cnlhfz,6,1,0|1cnlhg0,7,8,1|1cyrc3z,7,8,1|1cyrc40,6,1,0|1d6oirz,6,1,0|1d6ois0,7,8,1|1dhherz,7,8,1|1dhhes0,6,1,0|1dpelfz,6,1,0|1dpelg0,7,8,1|1e07hfz,7,8,1|1e07hg0,6,1,0|1e84o3z,6,1,0|1e84o40,7,8,1|1ejairz,7,8,1|1ejais0,6,1,0|1equqrz,6,1,0|1equqs0,7,8,1|1f20lfz,7,8,1|1f20lg0,6,1,0|1f9ktfz,6,1,0|1f9ktg0,7,8,1|1fkqo3z,7,8,1|1fkqo40,6,1,0|1fsnurz,6,1,0|1fsnus0,7,8,1|1g3gqrz,7,8,1|1g3gqs0,6,1,0|1gbdxfz,6,1,0|1gbdxg0,7,8,1|1gm6tfz,7,8,1|1gm6tg0,6,1,0|1gu403z,6,1,0|1gu4040,7,8,1|1h4ww3z,7,8,1|1h4ww40,6,1,0|1hcu2rz,6,1,0|1hcu2s0,7,8,1|1hnzxfz,7,8,1|1hnzxg0,6,1,0|1hvk5fz,6,1,0|1hvk5g0,7,8,1|1i6q03z,7,8,1|1i6q040,6,1,0|1iea83z,6,1,0|1iea840,7,8,1|1ipg2rz,7,8,1|1ipg2s0,6,1,0|1ixd9fz,6,1,0|1ixd9g0,7,8,1|1j865fz,7,8,1|1j865g0,6,1,0|1jg3c3z,6,1,0|1jg3c40,7,8,1|1jqw83z,7,8,1|1jqw840,6,1,0|1jyterz,6,1,0|1jytes0,7,8,1|1k9z9fz,7,8,1|1k9z9g0,6,1,0|1khjhfz,6,1,0|1khjhg0,7,8,1|1kspc3z,7,8,1|1kspc40,6,1,0|1l09k3z,6,1,0|1l09k40,7,8,1|1lbferz,7,8,1|1lbfes0,6,1,0|1ljclfz,6,1,0|1ljclg0,7,8,1|1lu5hfz,7,8,1|1lu5hg0,6,1,0|1m22o3z,6,1,0|1m22o40,7,8,1|1mcvk3z,7,8,1|1mcvk40,6,1,0|1mksqrz,6,1,0|1mksqs0,7,8,1|1mvlmrz,7,8,1|1mvlms0,6,1,0|1n3itfz,6,1,0|1n3itg0,7,8,1|1neoo3z,7,8,1|1neoo40,6,1,0|1nm8w3z,6,1,0|1nm8w40,7,8,1|1nxeqrz,7,8,1|1nxeqs0,6,1,0|1o4yyrz,6,1,0|1o4yys0,7,8,1|1og4tfz,7,8,1|1og4tg0,6,1,0|1oo203z,6,1,0|1oo2040,7,8,1|1oyuw3z,7,8,1|1oyuw40,6,1,0|1p6s2rz,6,1,0|1p6s2s0,7,8,1|1phkyrz,7,8,1|1phkys0,6,1,0|1ppi5fz,6,1,0|1ppi5g0,7,8,1|1q0o03z,7,8,1|1q0o040,6,1,0|1q8883z,6,1,0|1q88840,7,8,1|1qje2rz,7,8,1|1qje2s0,6,1,0|1qqyarz,6,1,0|1qqyas0,7,8,1|1r245fz,7,8,1|1r245g0,6,1,0|1r9odfz,6,1,0|1r9odg0,7,8,1|1rku83z,7,8,1|1rku840,6,1,0|1rsrerz,6,1,0|1rsres0,7,8,1|1s3karz,7,8,1|1s3kas0,6,1,0|1sbhhfz,6,1,0|1sbhhg0,7,8,1|1smadfz,7,8,1|1smadg0,6,1,0|1su7k3z,6,1,0|1su7k40,7,8,1|1t5derz,7,8,1|1t5des0,6,1,0|1tcxmrz,6,1,0|1tcxms0,7,8,1|1to3hfz,7,8,1|1to3hg0,6,1,0|1tvnpfz,6,1,0|1tvnpg0,7,8,1|1u6tk3z,7,8,1|1u6tk40,6,1,0|1ueqqrz,6,1,0|1ueqqs0,7,8,1|1upjmrz,7,8,1|1upjms0,6,1,0|1uxgtfz,6,1,0|1uxgtg0,7,8,1|1v89pfz,7,8,1|1v89pg0,6,1,0|1vg6w3z,6,1,0|1vg6w40,7,8,1|1vqzs3z,7,8,1|1vqzs40,6,1,0|NaN,6,1,0","Atlantic/Reykjavik|,0,303,0|-wcwx9d,0,303,0|-wcwx9c,12,13,0|-rl7k01,12,13,0|-rl7k00,16,1,1|-r8ph81,16,1,1|-r8ph80,12,13,0|-r2fmo1,12,13,0|-r2fmo0,16,1,1|-qolek1,16,1,1|-qolek0,12,13,0|-qjnpc1,12,13,0|-qjnpc0,16,1,1|-q5th81,16,1,1|-q5th80,12,13,0|-pgm5c1,12,13,0|-pgm5c0,16,1,1|-pbq581,16,1,1|-pbq580,12,13,0|-g0c5c1,12,13,0|-g0c5c0,16,1,1|-fqyyg1,16,1,1|-fqyyg0,12,13,0|-fkuic1,12,13,0|-fkuic0,16,1,1|-f7vx41,16,1,1|-f7vx40,12,13,0|-f1rjs1,12,13,0|-f1rjs0,16,1,1|-ep5ug1,16,1,1|-ep5ug0,12,13,0|-eioig1,12,13,0|-eioig0,16,1,1|-e6sqg1,16,1,1|-e6sqg0,12,13,0|-dzyfs1,12,13,0|-dzyfs0,16,1,1|-do2ns1,16,1,1|-do2ns0,12,13,0|-dh8d41,12,13,0|-dh8d40,16,1,1|-d5cl41,16,1,1|-d5cl40,12,13,0|-cyiag1,12,13,0|-cyiag0,16,1,1|-cm9js1,16,1,1|-cm9js0,12,13,0|-cfs7s1,12,13,0|-cfs7s0,16,1,1|-c3jh41,16,1,1|-c3jh40,12,13,0|-bv9bs1,12,13,0|-bv9bs0,16,1,1|-bkteg1,16,1,1|-bkteg0,12,13,0|-bcj941,12,13,0|-bcj940,16,1,1|-b23bs1,16,1,1|-b23bs0,12,13,0|-att6g1,12,13,0|-att6g0,16,1,1|-aj0ag1,16,1,1|-aj0ag0,12,13,0|-ab33s1,12,13,0|-ab33s0,16,1,1|-a0n6g1,16,1,1|-a0n6g0,12,13,0|-9sd141,12,13,0|-9sd140,16,1,1|-9hk541,16,1,1|-9hk540,12,13,0|-999zs1,12,13,0|-999zs0,16,1,1|-8yu2g1,16,1,1|-8yu2g0,12,13,0|-8qjx41,12,13,0|-8qjx40,16,1,1|-8g3zs1,16,1,1|-8g3zs0,12,13,0|-87tug1,12,13,0|-87tug0,16,1,1|-7xdx41,16,1,1|-7xdx40,12,13,0|-7p3rs1,12,13,0|-7p3rs0,16,1,1|-7enug1,16,1,1|-7enug0,12,13,0|-76dp41,12,13,0|-76dp40,16,1,1|-6vkt41,16,1,1|-6vkt40,12,13,0|-6nans1,12,13,0|-6nans0,16,1,1|-6cuqg1,16,1,1|-6cuqg0,12,13,0|-64kl41,12,13,0|-64kl40,16,1,1|-5u4ns1,16,1,1|-5u4ns0,12,13,0|-5luig1,12,13,0|-5luig0,16,1,1|-5bel41,16,1,1|-5bel40,12,13,0|-534fs1,12,13,0|-534fs0,16,1,1|-4soig1,16,1,1|-4soig0,12,13,0|-4ked41,12,13,0|-4ked40,16,1,1|-49yfs1,16,1,1|-49yfs0,12,13,0|-41oag1,12,13,0|-41oag0,16,1,1|-3qveg1,16,1,1|-3qveg0,12,13,0|-3il941,12,13,0|-3il940,16,1,1|-385bs1,16,1,1|-385bs0,12,13,0|-2zv6g1,12,13,0|-2zv6g0,16,1,1|-2pf941,16,1,1|-2pf940,12,13,0|-2h53s1,12,13,0|-2h53s0,16,1,1|-26p6g1,16,1,1|-26p6g0,12,13,0|-1yf141,12,13,0|-1yf140,16,1,1|-1nz3s1,16,1,1|-1nz3s0,12,13,0|-1foyg1,12,13,0|-1foyg0,16,1,1|-14w2g1,16,1,1|-14w2g0,12,13,0|-wlx41,12,13,0|-wlx40,1,1,0|NaN,1,1,0","Atlantic/South_Georgia|,0,304,0|-15r12kh,0,304,0|-15r12kg,39,43,0|NaN,39,43,0","Atlantic/St_Helena|,0,0,0|-u9rgl5,0,0,0|-u9rgl4,1,1,0|NaN,1,1,0","Atlantic/Stanley|,0,305,0|-15r0ymd,0,305,0|-15r0ymc,84,305,0|-u63pad,84,305,0|-u63pac,41,40,0|-gu7rk1,41,40,0|-gu7rk0,38,41,1|-gl7ro1,38,41,1|-gl7ro0,41,40,0|-gbhow1,41,40,0|-gbhow0,38,41,1|-g2hp01,38,41,1|-g2hp00,41,40,0|-fsenk1,41,40,0|-fsenk0,38,41,1|-fjeno1,38,41,1|-fjeno0,41,40,0|-f9okw1,41,40,0|-f9okw0,38,41,1|-f0ol01,38,41,1|-f0ol00,41,40,0|-eqyi81,41,40,0|-eqyi80,38,41,1|-ehyic1,38,41,1|-ehyic0,41,40,0|-e88fk1,41,40,0|-e88fk0,38,41,1|-e3aqc1,38,41,1|-e3aqc0,41,40,0|6yf4fz,41,40,0|6yf4g0,38,41,0|75z9nz,38,41,0|75z9o0,39,43,1|7h51jz,39,43,1|7h51k0,38,41,0|7ocdnz,38,41,0|7ocdo0,39,43,1|7zv47z,39,43,1|7zv480,38,41,0|872gbz,38,41,0|872gc0,38,41,1|8i8azz,38,41,1|8i8b00,41,40,0|8pslrz,41,40,0|8psls0,38,41,1|90ydnz,38,41,1|90ydo0,41,40,0|98iofz,41,40,0|98iog0,38,41,1|9jogbz,38,41,1|9jogc0,41,40,0|9r8r3z,41,40,0|9r8r40,38,41,1|a2eizz,38,41,1|a2ej00,41,40,0|a9ytrz,41,40,0|a9yts0,38,41,1|alhkbz,38,41,1|alhkc0,41,40,0|asowfz,41,40,0|asowg0,38,41,1|b47mzz,38,41,1|b47n00,41,40,0|bbrxrz,41,40,0|bbrxs0,38,41,1|bmxpnz,38,41,1|bmxpo0,41,40,0|bui0fz,41,40,0|bui0g0,38,41,1|c5nsbz,38,41,1|c5nsc0,41,40,0|cd833z,41,40,0|cd8340,38,41,1|coduzz,38,41,1|codv00,41,40,0|cvy5rz,41,40,0|cvy5s0,38,41,1|d73xnz,38,41,1|d73xo0,41,40,0|deo8fz,41,40,0|deo8g0,38,41,1|dq6yzz,38,41,1|dq6z00,41,40,0|dxr9rz,41,40,0|dxr9s0,38,41,1|e8x1nz,38,41,1|e8x1o0,41,40,0|eghcfz,41,40,0|eghcg0,38,41,1|ern4bz,38,41,1|ern4c0,41,40,0|ez7f3z,41,40,0|ez7f40,38,41,1|fad6zz,38,41,1|fad700,41,40,0|fhxhrz,41,40,0|fhxhs0,38,41,1|ft39nz,38,41,1|ft39o0,41,40,0|g0nkfz,41,40,0|g0nkg0,38,41,1|gbthvz,38,41,1|gbthw0,41,40,0|gj0tzz,41,40,0|gj0u00,38,41,1|guwj7z,38,41,1|guwj80,41,40,0|h1qwnz,41,40,0|h1qwo0,38,41,1|hdmlvz,38,41,1|hdmlw0,41,40,0|hktxzz,41,40,0|hkty00,38,41,1|hwcojz,38,41,1|hwcok0,41,40,0|i3k0nz,41,40,0|i3k0o0,38,41,1|if2r7z,38,41,1|if2r80,41,40,0|ima3bz,41,40,0|ima3c0,38,41,1|ixstvz,38,41,1|ixstw0,41,40,0|j505zz,41,40,0|j50600,38,41,1|jgiwjz,38,41,1|jgiwk0,41,40,0|jnq8nz,41,40,0|jnq8o0,38,41,1|jzlxvz,38,41,1|jzlxw0,41,40,0|k6t9zz,41,40,0|k6ta00,38,41,1|kic0jz,38,41,1|kic0k0,41,40,0|kpjcnz,41,40,0|kpjco0,38,41,1|l1237z,38,41,1|l12380,41,40,0|l89fbz,41,40,0|l89fc0,38,41,0|NaN,38,41,0","Australia/Adelaide|,0,306,0|-133j2zx,0,306,0|-133j2zw,138,218,0|-10vsp01,138,218,0|-10vsp00,138,242,0|-rnsq61,138,242,0|-rnsq60,139,307,1|-rjj0u1,139,307,1|-rjj0u0,138,242,0|-em3gu1,138,242,0|-em3gu0,139,307,1|-ehmcu1,139,307,1|-ehmcu0,138,242,0|-e89bi1,138,242,0|-e89bi0,139,307,1|-dywa61,139,307,1|-dywa60,138,242,0|-dp6a61,138,242,0|-dp6a60,139,307,1|-dg67i1,139,307,1|-dg67i0,138,242,0|ycghz,138,242,0|ycgi0,139,307,1|14gttz,139,307,1|14gtu0,138,242,0|1h2j5z,138,242,0|1h2j60,139,307,1|1njv5z,139,307,1|1njv60,138,242,0|1zsltz,138,242,0|1zslu0,139,307,1|269xtz,139,307,1|269xu0,138,242,0|2iiohz,138,242,0|2iioi0,139,307,1|2p00hz,139,307,1|2p00i0,138,242,0|318r5z,138,242,0|318r60,139,307,1|3831tz,139,307,1|3831u0,138,242,0|3kbshz,138,242,0|3kbsi0,139,307,1|3qt4hz,139,307,1|3qt4i0,138,242,0|431v5z,138,242,0|431v60,139,307,1|49j75z,139,307,1|49j760,138,242,0|4lrxtz,138,242,0|4lrxu0,139,307,1|4s99tz,139,307,1|4s99u0,138,242,0|54i0hz,138,242,0|54i0i0,139,307,1|5azchz,139,307,1|5azci0,138,242,0|5n835z,138,242,0|5n8360,139,307,1|5tpf5z,139,307,1|5tpf60,138,242,0|65y5tz,138,242,0|65y5u0,139,307,1|6csghz,139,307,1|6csgi0,138,242,0|6p175z,138,242,0|6p1760,139,307,1|6vij5z,139,307,1|6vij60,138,242,0|77r9tz,138,242,0|77r9u0,139,307,1|7e8ltz,139,307,1|7e8lu0,138,242,0|7qhchz,138,242,0|7qhci0,139,307,1|7wyohz,139,307,1|7wyoi0,138,242,0|897f5z,138,242,0|897f60,139,307,1|8geohz,139,307,1|8geoi0,138,242,0|8rkj5z,138,242,0|8rkj60,139,307,1|8z4r5z,139,307,1|8z4r60,138,242,0|9ankhz,138,242,0|9anki0,139,307,1|9i7shz,139,307,1|9i7si0,138,242,0|9tqltz,138,242,0|9tqlu0,139,307,1|a0xv5z,139,307,1|a0xv60,138,242,0|acgohz,138,242,0|acgoi0,139,307,1|ajnxtz,139,307,1|ajnxu0,138,242,0|av6r5z,138,242,0|av6r60,139,307,1|b1o35z,139,307,1|b1o360,138,242,0|bdwttz,138,242,0|bdwtu0,139,307,1|blh1tz,139,307,1|blh1u0,138,242,0|bwmwhz,138,242,0|bwmwi0,139,307,1|c3h75z,139,307,1|c3h760,138,242,0|cfpxtz,138,242,0|cfpxu0,139,307,1|cmx75z,139,307,1|cmx760,138,242,0|cyg0hz,138,242,0|cyg0i0,139,307,1|d608hz,139,307,1|d608i0,138,242,0|dh635z,138,242,0|dh6360,139,307,1|dp39tz,139,307,1|dp39u0,138,242,0|dzw5tz,138,242,0|dzw5u0,139,307,1|e7tchz,139,307,1|e7tci0,138,242,0|eim8hz,138,242,0|eim8i0,139,307,1|eqjf5z,139,307,1|eqjf60,138,242,0|f1cb5z,138,242,0|f1cb60,139,307,1|f99htz,139,307,1|f99hu0,138,242,0|fkfchz,138,242,0|fkfci0,139,307,1|frzkhz,139,307,1|frzki0,138,242,0|g35f5z,138,242,0|g35f60,139,307,1|gapn5z,139,307,1|gapn60,138,242,0|glvhtz,138,242,0|glvhu0,139,307,1|gtsohz,139,307,1|gtsoi0,138,242,0|h4lkhz,138,242,0|h4lki0,139,307,1|hcir5z,139,307,1|hcir60,138,242,0|hnbn5z,138,242,0|hnbn60,139,307,1|hv8ttz,139,307,1|hv8tu0,138,242,0|i6eohz,138,242,0|i6eoi0,139,307,1|idywhz,139,307,1|idywi0,138,242,0|ip4r5z,138,242,0|ip4r60,139,307,1|ix1xtz,139,307,1|ix1xu0,138,242,0|j7uttz,138,242,0|j7utu0,139,307,1|jff1tz,139,307,1|jff1u0,138,242,0|jqkwhz,138,242,0|jqkwi0,139,307,1|jyv1tz,139,307,1|jyv1u0,138,242,0|k8835z,138,242,0|k88360,139,307,1|khl4hz,139,307,1|khl4i0,138,242,0|kqy5tz,138,242,0|kqy5u0,139,307,1|l0b75z,139,307,1|l0b760,138,242,0|l9o8hz,138,242,0|l9o8i0,139,307,1|lj19tz,139,307,1|lj19u0,138,242,0|lseb5z,138,242,0|lseb60,139,307,1|m1rchz,139,307,1|m1rci0,138,242,0|mbhchz,138,242,0|mbhci0,139,307,1|mkudtz,139,307,1|mkudu0,138,242,0|mu7f5z,138,242,0|mu7f60,139,307,1|n3kghz,139,307,1|n3kgi0,138,242,0|ncxhtz,138,242,0|ncxhu0,139,307,1|nmaj5z,139,307,1|nmaj60,138,242,0|nvnkhz,138,242,0|nvnki0,139,307,1|o50ltz,139,307,1|o50lu0,138,242,0|oedn5z,138,242,0|oedn60,139,307,1|onqohz,139,307,1|onqoi0,138,242,0|ox3ptz,138,242,0|ox3pu0,139,307,1|p6gr5z,139,307,1|p6gr60,138,242,0|pg6r5z,138,242,0|pg6r60,139,307,1|ppjshz,139,307,1|ppjsi0,138,242,0|pywttz,138,242,0|pywtu0,139,307,1|q89v5z,139,307,1|q89v60,138,242,0|qhmwhz,138,242,0|qhmwi0,139,307,1|qqzxtz,139,307,1|qqzxu0,138,242,0|r0cz5z,138,242,0|r0cz60,139,307,1|r9q0hz,139,307,1|r9q0i0,138,242,0|rj31tz,138,242,0|rj31u0,139,307,1|rsg35z,139,307,1|rsg360,138,242,0|s1t4hz,138,242,0|s1t4i0,139,307,1|sbj4hz,139,307,1|sbj4i0,138,242,0|skw5tz,138,242,0|skw5u0,139,307,1|su975z,139,307,1|su9760,138,242,0|t3m8hz,138,242,0|t3m8i0,139,307,1|tcz9tz,139,307,1|tcz9u0,138,242,0|tmcb5z,138,242,0|tmcb60,139,307,1|tvpchz,139,307,1|tvpci0,138,242,0|u52dtz,138,242,0|u52du0,139,307,1|ueff5z,139,307,1|ueff60,138,242,0|unsghz,138,242,0|unsgi0,139,307,1|ux5htz,139,307,1|ux5hu0,138,242,0|v6vhtz,138,242,0|v6vhu0,139,307,1|vg8j5z,139,307,1|vg8j60,138,242,0|vplkhz,138,242,0|vplki0,139,307,1|vyyltz,139,307,1|vyylu0,138,242,0|w8bn5z,138,242,0|w8bn60,139,307,1|whoohz,139,307,1|whooi0,138,242,0|wr1ptz,138,242,0|wr1pu0,139,307,1|x0er5z,139,307,1|x0er60,138,242,0|x9rshz,138,242,0|x9rsi0,139,307,1|xj4ttz,139,307,1|xj4tu0,138,242,0|xshv5z,138,242,0|xshv60,139,307,1|y1uwhz,139,307,1|y1uwi0,138,242,0|ybkwhz,138,242,0|ybkwi0,139,307,1|ykxxtz,139,307,1|ykxxu0,138,242,0|yuaz5z,138,242,0|yuaz60,139,307,1|z3o0hz,139,307,1|z3o0i0,138,242,0|zd11tz,138,242,0|zd11u0,139,307,1|zme35z,139,307,1|zme360,138,242,0|zvr4hz,138,242,0|zvr4i0,139,307,1|10545tz,139,307,1|10545u0,138,242,0|10eh75z,138,242,0|10eh760,139,307,1|10nu8hz,139,307,1|10nu8i0,138,242,0|10xk8hz,138,242,0|10xk8i0,139,307,1|116x9tz,139,307,1|116x9u0,138,242,0|11gab5z,138,242,0|11gab60,139,307,1|11pnchz,139,307,1|11pnci0,138,242,0|11z0dtz,138,242,0|11z0du0,139,307,1|128df5z,139,307,1|128df60,138,242,0|12hqghz,138,242,0|12hqgi0,139,307,1|12r3htz,139,307,1|12r3hu0,138,242,0|130gj5z,138,242,0|130gj60,139,307,1|139tkhz,139,307,1|139tki0,138,242,0|13j6ltz,138,242,0|13j6lu0,139,307,1|13sjn5z,139,307,1|13sjn60,138,242,0|1429n5z,138,242,0|1429n60,139,307,1|14bmohz,139,307,1|14bmoi0,138,242,0|14kzptz,138,242,0|14kzpu0,139,307,1|14ucr5z,139,307,1|14ucr60,138,242,0|153pshz,138,242,0|153psi0,139,307,1|15d2ttz,139,307,1|15d2tu0,138,242,0|15mfv5z,138,242,0|15mfv60,139,307,1|15vswhz,139,307,1|15vswi0,138,242,0|1655xtz,138,242,0|1655xu0,139,307,1|16eiz5z,139,307,1|16eiz60,138,242,0|16nw0hz,138,242,0|16nw0i0,139,307,1|16xm0hz,139,307,1|16xm0i0,138,242,0|176z1tz,138,242,0|176z1u0,139,307,1|17gc35z,139,307,1|17gc360,138,242,0|17pp4hz,138,242,0|17pp4i0,139,307,1|17z25tz,139,307,1|17z25u0,138,242,0|188f75z,138,242,0|188f760,139,307,1|18hs8hz,139,307,1|18hs8i0,138,242,0|18r59tz,138,242,0|18r59u0,139,307,1|190ib5z,139,307,1|190ib60,138,242,0|199vchz,138,242,0|199vci0,139,307,1|19j8dtz,139,307,1|19j8du0,138,242,0|19sydtz,138,242,0|19sydu0,139,307,1|1a2bf5z,139,307,1|1a2bf60,138,242,0|1aboghz,138,242,0|1abogi0,139,307,1|1al1htz,139,307,1|1al1hu0,138,242,0|1auej5z,138,242,0|1auej60,139,307,1|1b3rkhz,139,307,1|1b3rki0,138,242,0|1bd4ltz,138,242,0|1bd4lu0,139,307,1|1bmhn5z,139,307,1|1bmhn60,138,242,0|1bvuohz,138,242,0|1bvuoi0,139,307,1|1c57ptz,139,307,1|1c57pu0,138,242,0|1cekr5z,138,242,0|1cekr60,139,307,1|1cnxshz,139,307,1|1cnxsi0,138,242,0|1cxnshz,138,242,0|1cxnsi0,139,307,1|1d70ttz,139,307,1|1d70tu0,138,242,0|1dgdv5z,138,242,0|1dgdv60,139,307,1|1dpqwhz,139,307,1|1dpqwi0,138,242,0|1dz3xtz,138,242,0|1dz3xu0,139,307,1|1e8gz5z,139,307,1|1e8gz60,138,242,0|1ehu0hz,138,242,0|1ehu0i0,139,307,1|1er71tz,139,307,1|1er71u0,138,242,0|1f0k35z,138,242,0|1f0k360,139,307,1|1f9x4hz,139,307,1|1f9x4i0,138,242,0|1fjn4hz,138,242,0|1fjn4i0,139,307,1|1ft05tz,139,307,1|1ft05u0,138,242,0|1g2d75z,138,242,0|1g2d760,139,307,1|1gbq8hz,139,307,1|1gbq8i0,138,242,0|1gl39tz,138,242,0|1gl39u0,139,307,1|1gugb5z,139,307,1|1gugb60,138,242,0|1h3tchz,138,242,0|1h3tci0,139,307,1|1hd6dtz,139,307,1|1hd6du0,138,242,0|1hmjf5z,138,242,0|1hmjf60,139,307,1|1hvwghz,139,307,1|1hvwgi0,138,242,0|1i59htz,138,242,0|1i59hu0,139,307,1|1iemj5z,139,307,1|1iemj60,138,242,0|1iocj5z,138,242,0|1iocj60,139,307,1|1ixpkhz,139,307,1|1ixpki0,138,242,0|1j72ltz,138,242,0|1j72lu0,139,307,1|1jgfn5z,139,307,1|1jgfn60,138,242,0|1jpsohz,138,242,0|1jpsoi0,139,307,1|1jz5ptz,139,307,1|1jz5pu0,138,242,0|1k8ir5z,138,242,0|1k8ir60,139,307,1|1khvshz,139,307,1|1khvsi0,138,242,0|1kr8ttz,138,242,0|1kr8tu0,139,307,1|1l0lv5z,139,307,1|1l0lv60,138,242,0|1l9ywhz,138,242,0|1l9ywi0,139,307,1|1ljowhz,139,307,1|1ljowi0,138,242,0|1lt1xtz,138,242,0|1lt1xu0,139,307,1|1m2ez5z,139,307,1|1m2ez60,138,242,0|1mbs0hz,138,242,0|1mbs0i0,139,307,1|1ml51tz,139,307,1|1ml51u0,138,242,0|1mui35z,138,242,0|1mui360,139,307,1|1n3v4hz,139,307,1|1n3v4i0,138,242,0|1nd85tz,138,242,0|1nd85u0,139,307,1|1nml75z,139,307,1|1nml760,138,242,0|1nvy8hz,138,242,0|1nvy8i0,139,307,1|1o5b9tz,139,307,1|1o5b9u0,138,242,0|1of19tz,138,242,0|1of19u0,139,307,1|1ooeb5z,139,307,1|1ooeb60,138,242,0|1oxrchz,138,242,0|1oxrci0,139,307,1|1p74dtz,139,307,1|1p74du0,138,242,0|1pghf5z,138,242,0|1pghf60,139,307,1|1ppughz,139,307,1|1ppugi0,138,242,0|1pz7htz,138,242,0|1pz7hu0,139,307,1|1q8kj5z,139,307,1|1q8kj60,138,242,0|1qhxkhz,138,242,0|1qhxki0,139,307,1|1qraltz,139,307,1|1qralu0,138,242,0|1r0nn5z,138,242,0|1r0nn60,139,307,1|1ra0ohz,139,307,1|1ra0oi0,138,242,0|1rjqohz,138,242,0|1rjqoi0,139,307,1|1rt3ptz,139,307,1|1rt3pu0,138,242,0|1s2gr5z,138,242,0|1s2gr60,139,307,1|1sbtshz,139,307,1|1sbtsi0,138,242,0|1sl6ttz,138,242,0|1sl6tu0,139,307,1|1sujv5z,139,307,1|1sujv60,138,242,0|1t3wwhz,138,242,0|1t3wwi0,139,307,1|1td9xtz,139,307,1|1td9xu0,138,242,0|1tmmz5z,138,242,0|1tmmz60,139,307,1|1tw00hz,139,307,1|1tw00i0,138,242,0|1u5q0hz,138,242,0|1u5q0i0,139,307,1|1uf31tz,139,307,1|1uf31u0,138,242,0|1uog35z,138,242,0|1uog360,139,307,1|1uxt4hz,139,307,1|1uxt4i0,138,242,0|1v765tz,138,242,0|1v765u0,139,307,1|1vgj75z,139,307,1|1vgj760,138,242,0|1vpw8hz,138,242,0|1vpw8i0,139,307,1|NaN,139,307,1","Australia/Brisbane|,0,308,0|-1354kc9,0,308,0|-1354kc8,94,189,0|-rnsrk1,94,189,0|-rnsrk0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|aixz3z,95,184,1|aixz40,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b1o1rz,95,184,1|b1o1s0,94,189,0|bdwsfz,94,189,0|bdwsg0,95,184,1|bke4fz,95,184,1|bke4g0,94,189,0|NaN,94,189,0","Australia/Broken_Hill|,0,309,0|-133j3j1,0,309,0|-133j3j0,94,189,0|-12a9fs1,94,189,0|-12a9fs0,138,218,0|-10vsp01,138,218,0|-10vsp00,138,242,0|-rnsq61,138,242,0|-rnsq60,139,307,1|-rjj0u1,139,307,1|-rjj0u0,138,242,0|-em3gu1,138,242,0|-em3gu0,139,307,1|-ehmcu1,139,307,1|-ehmcu0,138,242,0|-e89bi1,138,242,0|-e89bi0,139,307,1|-dywa61,139,307,1|-dywa60,138,242,0|-dp6a61,138,242,0|-dp6a60,139,307,1|-dg67i1,139,307,1|-dg67i0,138,242,0|ycghz,138,242,0|ycgi0,139,307,1|14gttz,139,307,1|14gtu0,138,242,0|1h2j5z,138,242,0|1h2j60,139,307,1|1njv5z,139,307,1|1njv60,138,242,0|1zsltz,138,242,0|1zslu0,139,307,1|269xtz,139,307,1|269xu0,138,242,0|2iiohz,138,242,0|2iioi0,139,307,1|2p00hz,139,307,1|2p00i0,138,242,0|318r5z,138,242,0|318r60,139,307,1|3831tz,139,307,1|3831u0,138,242,0|3kbshz,138,242,0|3kbsi0,139,307,1|3qt4hz,139,307,1|3qt4i0,138,242,0|431v5z,138,242,0|431v60,139,307,1|49j75z,139,307,1|49j760,138,242,0|4lrxtz,138,242,0|4lrxu0,139,307,1|4s99tz,139,307,1|4s99u0,138,242,0|54i0hz,138,242,0|54i0i0,139,307,1|5azchz,139,307,1|5azci0,138,242,0|5n835z,138,242,0|5n8360,139,307,1|5tpf5z,139,307,1|5tpf60,138,242,0|65y5tz,138,242,0|65y5u0,139,307,1|6e8b5z,139,307,1|6e8b60,138,242,0|6p175z,138,242,0|6p1760,139,307,1|6vij5z,139,307,1|6vij60,138,242,0|77r9tz,138,242,0|77r9u0,139,307,1|7e8ltz,139,307,1|7e8lu0,138,242,0|7qhchz,138,242,0|7qhci0,139,307,1|7wyohz,139,307,1|7wyoi0,138,242,0|897f5z,138,242,0|897f60,139,307,1|8geohz,139,307,1|8geoi0,138,242,0|8rkj5z,138,242,0|8rkj60,139,307,1|8z4r5z,139,307,1|8z4r60,138,242,0|9ankhz,138,242,0|9anki0,139,307,1|9i7shz,139,307,1|9i7si0,138,242,0|9tqltz,138,242,0|9tqlu0,139,307,1|a0xv5z,139,307,1|a0xv60,138,242,0|acgohz,138,242,0|acgoi0,139,307,1|aiy0hz,139,307,1|aiy0i0,138,242,0|av6r5z,138,242,0|av6r60,139,307,1|b1o35z,139,307,1|b1o360,138,242,0|bdwttz,138,242,0|bdwtu0,139,307,1|bke5tz,139,307,1|bke5u0,138,242,0|bwmwhz,138,242,0|bwmwi0,139,307,1|c3h75z,139,307,1|c3h760,138,242,0|cfpxtz,138,242,0|cfpxu0,139,307,1|cm79tz,139,307,1|cm79u0,138,242,0|cyg0hz,138,242,0|cyg0i0,139,307,1|d4xchz,139,307,1|d4xci0,138,242,0|dh635z,138,242,0|dh6360,139,307,1|dp39tz,139,307,1|dp39u0,138,242,0|dzw5tz,138,242,0|dzw5u0,139,307,1|e7tchz,139,307,1|e7tci0,138,242,0|eim8hz,138,242,0|eim8i0,139,307,1|eqjf5z,139,307,1|eqjf60,138,242,0|f1cb5z,138,242,0|f1cb60,139,307,1|f99htz,139,307,1|f99hu0,138,242,0|fkfchz,138,242,0|fkfci0,139,307,1|frzkhz,139,307,1|frzki0,138,242,0|g35f5z,138,242,0|g35f60,139,307,1|gapn5z,139,307,1|gapn60,138,242,0|glvhtz,138,242,0|glvhu0,139,307,1|gtsohz,139,307,1|gtsoi0,138,242,0|h4lkhz,138,242,0|h4lki0,139,307,1|hcir5z,139,307,1|hcir60,138,242,0|hnbn5z,138,242,0|hnbn60,139,307,1|hv8ttz,139,307,1|hv8tu0,138,242,0|i6eohz,138,242,0|i6eoi0,139,307,1|idywhz,139,307,1|idywi0,138,242,0|ip4r5z,138,242,0|ip4r60,139,307,1|ix1xtz,139,307,1|ix1xu0,138,242,0|j7uttz,138,242,0|j7utu0,139,307,1|jff1tz,139,307,1|jff1u0,138,242,0|jqkwhz,138,242,0|jqkwi0,139,307,1|jyv1tz,139,307,1|jyv1u0,138,242,0|k8835z,138,242,0|k88360,139,307,1|khl4hz,139,307,1|khl4i0,138,242,0|kqy5tz,138,242,0|kqy5u0,139,307,1|l0b75z,139,307,1|l0b760,138,242,0|l9o8hz,138,242,0|l9o8i0,139,307,1|lj19tz,139,307,1|lj19u0,138,242,0|lseb5z,138,242,0|lseb60,139,307,1|m1rchz,139,307,1|m1rci0,138,242,0|mbhchz,138,242,0|mbhci0,139,307,1|mkudtz,139,307,1|mkudu0,138,242,0|mu7f5z,138,242,0|mu7f60,139,307,1|n3kghz,139,307,1|n3kgi0,138,242,0|ncxhtz,138,242,0|ncxhu0,139,307,1|nmaj5z,139,307,1|nmaj60,138,242,0|nvnkhz,138,242,0|nvnki0,139,307,1|o50ltz,139,307,1|o50lu0,138,242,0|oedn5z,138,242,0|oedn60,139,307,1|onqohz,139,307,1|onqoi0,138,242,0|ox3ptz,138,242,0|ox3pu0,139,307,1|p6gr5z,139,307,1|p6gr60,138,242,0|pg6r5z,138,242,0|pg6r60,139,307,1|ppjshz,139,307,1|ppjsi0,138,242,0|pywttz,138,242,0|pywtu0,139,307,1|q89v5z,139,307,1|q89v60,138,242,0|qhmwhz,138,242,0|qhmwi0,139,307,1|qqzxtz,139,307,1|qqzxu0,138,242,0|r0cz5z,138,242,0|r0cz60,139,307,1|r9q0hz,139,307,1|r9q0i0,138,242,0|rj31tz,138,242,0|rj31u0,139,307,1|rsg35z,139,307,1|rsg360,138,242,0|s1t4hz,138,242,0|s1t4i0,139,307,1|sbj4hz,139,307,1|sbj4i0,138,242,0|skw5tz,138,242,0|skw5u0,139,307,1|su975z,139,307,1|su9760,138,242,0|t3m8hz,138,242,0|t3m8i0,139,307,1|tcz9tz,139,307,1|tcz9u0,138,242,0|tmcb5z,138,242,0|tmcb60,139,307,1|tvpchz,139,307,1|tvpci0,138,242,0|u52dtz,138,242,0|u52du0,139,307,1|ueff5z,139,307,1|ueff60,138,242,0|unsghz,138,242,0|unsgi0,139,307,1|ux5htz,139,307,1|ux5hu0,138,242,0|v6vhtz,138,242,0|v6vhu0,139,307,1|vg8j5z,139,307,1|vg8j60,138,242,0|vplkhz,138,242,0|vplki0,139,307,1|vyyltz,139,307,1|vyylu0,138,242,0|w8bn5z,138,242,0|w8bn60,139,307,1|whoohz,139,307,1|whooi0,138,242,0|wr1ptz,138,242,0|wr1pu0,139,307,1|x0er5z,139,307,1|x0er60,138,242,0|x9rshz,138,242,0|x9rsi0,139,307,1|xj4ttz,139,307,1|xj4tu0,138,242,0|xshv5z,138,242,0|xshv60,139,307,1|y1uwhz,139,307,1|y1uwi0,138,242,0|ybkwhz,138,242,0|ybkwi0,139,307,1|ykxxtz,139,307,1|ykxxu0,138,242,0|yuaz5z,138,242,0|yuaz60,139,307,1|z3o0hz,139,307,1|z3o0i0,138,242,0|zd11tz,138,242,0|zd11u0,139,307,1|zme35z,139,307,1|zme360,138,242,0|zvr4hz,138,242,0|zvr4i0,139,307,1|10545tz,139,307,1|10545u0,138,242,0|10eh75z,138,242,0|10eh760,139,307,1|10nu8hz,139,307,1|10nu8i0,138,242,0|10xk8hz,138,242,0|10xk8i0,139,307,1|116x9tz,139,307,1|116x9u0,138,242,0|11gab5z,138,242,0|11gab60,139,307,1|11pnchz,139,307,1|11pnci0,138,242,0|11z0dtz,138,242,0|11z0du0,139,307,1|128df5z,139,307,1|128df60,138,242,0|12hqghz,138,242,0|12hqgi0,139,307,1|12r3htz,139,307,1|12r3hu0,138,242,0|130gj5z,138,242,0|130gj60,139,307,1|139tkhz,139,307,1|139tki0,138,242,0|13j6ltz,138,242,0|13j6lu0,139,307,1|13sjn5z,139,307,1|13sjn60,138,242,0|1429n5z,138,242,0|1429n60,139,307,1|14bmohz,139,307,1|14bmoi0,138,242,0|14kzptz,138,242,0|14kzpu0,139,307,1|14ucr5z,139,307,1|14ucr60,138,242,0|153pshz,138,242,0|153psi0,139,307,1|15d2ttz,139,307,1|15d2tu0,138,242,0|15mfv5z,138,242,0|15mfv60,139,307,1|15vswhz,139,307,1|15vswi0,138,242,0|1655xtz,138,242,0|1655xu0,139,307,1|16eiz5z,139,307,1|16eiz60,138,242,0|16nw0hz,138,242,0|16nw0i0,139,307,1|16xm0hz,139,307,1|16xm0i0,138,242,0|176z1tz,138,242,0|176z1u0,139,307,1|17gc35z,139,307,1|17gc360,138,242,0|17pp4hz,138,242,0|17pp4i0,139,307,1|17z25tz,139,307,1|17z25u0,138,242,0|188f75z,138,242,0|188f760,139,307,1|18hs8hz,139,307,1|18hs8i0,138,242,0|18r59tz,138,242,0|18r59u0,139,307,1|190ib5z,139,307,1|190ib60,138,242,0|199vchz,138,242,0|199vci0,139,307,1|19j8dtz,139,307,1|19j8du0,138,242,0|19sydtz,138,242,0|19sydu0,139,307,1|1a2bf5z,139,307,1|1a2bf60,138,242,0|1aboghz,138,242,0|1abogi0,139,307,1|1al1htz,139,307,1|1al1hu0,138,242,0|1auej5z,138,242,0|1auej60,139,307,1|1b3rkhz,139,307,1|1b3rki0,138,242,0|1bd4ltz,138,242,0|1bd4lu0,139,307,1|1bmhn5z,139,307,1|1bmhn60,138,242,0|1bvuohz,138,242,0|1bvuoi0,139,307,1|1c57ptz,139,307,1|1c57pu0,138,242,0|1cekr5z,138,242,0|1cekr60,139,307,1|1cnxshz,139,307,1|1cnxsi0,138,242,0|1cxnshz,138,242,0|1cxnsi0,139,307,1|1d70ttz,139,307,1|1d70tu0,138,242,0|1dgdv5z,138,242,0|1dgdv60,139,307,1|1dpqwhz,139,307,1|1dpqwi0,138,242,0|1dz3xtz,138,242,0|1dz3xu0,139,307,1|1e8gz5z,139,307,1|1e8gz60,138,242,0|1ehu0hz,138,242,0|1ehu0i0,139,307,1|1er71tz,139,307,1|1er71u0,138,242,0|1f0k35z,138,242,0|1f0k360,139,307,1|1f9x4hz,139,307,1|1f9x4i0,138,242,0|1fjn4hz,138,242,0|1fjn4i0,139,307,1|1ft05tz,139,307,1|1ft05u0,138,242,0|1g2d75z,138,242,0|1g2d760,139,307,1|1gbq8hz,139,307,1|1gbq8i0,138,242,0|1gl39tz,138,242,0|1gl39u0,139,307,1|1gugb5z,139,307,1|1gugb60,138,242,0|1h3tchz,138,242,0|1h3tci0,139,307,1|1hd6dtz,139,307,1|1hd6du0,138,242,0|1hmjf5z,138,242,0|1hmjf60,139,307,1|1hvwghz,139,307,1|1hvwgi0,138,242,0|1i59htz,138,242,0|1i59hu0,139,307,1|1iemj5z,139,307,1|1iemj60,138,242,0|1iocj5z,138,242,0|1iocj60,139,307,1|1ixpkhz,139,307,1|1ixpki0,138,242,0|1j72ltz,138,242,0|1j72lu0,139,307,1|1jgfn5z,139,307,1|1jgfn60,138,242,0|1jpsohz,138,242,0|1jpsoi0,139,307,1|1jz5ptz,139,307,1|1jz5pu0,138,242,0|1k8ir5z,138,242,0|1k8ir60,139,307,1|1khvshz,139,307,1|1khvsi0,138,242,0|1kr8ttz,138,242,0|1kr8tu0,139,307,1|1l0lv5z,139,307,1|1l0lv60,138,242,0|1l9ywhz,138,242,0|1l9ywi0,139,307,1|1ljowhz,139,307,1|1ljowi0,138,242,0|1lt1xtz,138,242,0|1lt1xu0,139,307,1|1m2ez5z,139,307,1|1m2ez60,138,242,0|1mbs0hz,138,242,0|1mbs0i0,139,307,1|1ml51tz,139,307,1|1ml51u0,138,242,0|1mui35z,138,242,0|1mui360,139,307,1|1n3v4hz,139,307,1|1n3v4i0,138,242,0|1nd85tz,138,242,0|1nd85u0,139,307,1|1nml75z,139,307,1|1nml760,138,242,0|1nvy8hz,138,242,0|1nvy8i0,139,307,1|1o5b9tz,139,307,1|1o5b9u0,138,242,0|1of19tz,138,242,0|1of19u0,139,307,1|1ooeb5z,139,307,1|1ooeb60,138,242,0|1oxrchz,138,242,0|1oxrci0,139,307,1|1p74dtz,139,307,1|1p74du0,138,242,0|1pghf5z,138,242,0|1pghf60,139,307,1|1ppughz,139,307,1|1ppugi0,138,242,0|1pz7htz,138,242,0|1pz7hu0,139,307,1|1q8kj5z,139,307,1|1q8kj60,138,242,0|1qhxkhz,138,242,0|1qhxki0,139,307,1|1qraltz,139,307,1|1qralu0,138,242,0|1r0nn5z,138,242,0|1r0nn60,139,307,1|1ra0ohz,139,307,1|1ra0oi0,138,242,0|1rjqohz,138,242,0|1rjqoi0,139,307,1|1rt3ptz,139,307,1|1rt3pu0,138,242,0|1s2gr5z,138,242,0|1s2gr60,139,307,1|1sbtshz,139,307,1|1sbtsi0,138,242,0|1sl6ttz,138,242,0|1sl6tu0,139,307,1|1sujv5z,139,307,1|1sujv60,138,242,0|1t3wwhz,138,242,0|1t3wwi0,139,307,1|1td9xtz,139,307,1|1td9xu0,138,242,0|1tmmz5z,138,242,0|1tmmz60,139,307,1|1tw00hz,139,307,1|1tw00i0,138,242,0|1u5q0hz,138,242,0|1u5q0i0,139,307,1|1uf31tz,139,307,1|1uf31u0,138,242,0|1uog35z,138,242,0|1uog360,139,307,1|1uxt4hz,139,307,1|1uxt4i0,138,242,0|1v765tz,138,242,0|1v765u0,139,307,1|1vgj75z,139,307,1|1vgj760,138,242,0|1vpw8hz,138,242,0|1vpw8i0,139,307,1|NaN,139,307,1","Australia/Currie|,0,310,0|-12smja5,0,310,0|-12smja4,94,189,0|-rsj4w1,94,189,0|-rsj4w0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-r8d7k1,94,189,0|-r8d7k0,95,184,1|-r1vvk1,95,184,1|-r1vvk0,94,189,0|-qpn4w1,94,189,0|-qpn4w0,95,184,1|-qj5sw1,95,184,1|-qj5sw0,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|-16cow1,94,189,0|-16cow0,95,184,1|-wznk1,95,184,1|-wznk0,94,189,0|-m6rk1,94,189,0|-m6rk0,95,184,1|-fcgw1,95,184,1|-fcgw0,94,189,0|-3gow1,94,189,0|-3gow0,95,184,1|3dlrz,95,184,1|3dls0,94,189,0|f9drz,94,189,0|f9ds0,95,184,1|mgn3z,95,184,1|mgn40,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|1h2hrz,94,189,0|1h2hs0,95,184,1|1njtrz,95,184,1|1njts0,94,189,0|1zskfz,94,189,0|1zskg0,95,184,1|269wfz,95,184,1|269wg0,94,189,0|2iin3z,94,189,0|2iin40,95,184,1|2ozz3z,95,184,1|2ozz40,94,189,0|318prz,94,189,0|318ps0,95,184,1|3830fz,95,184,1|3830g0,94,189,0|3kbr3z,94,189,0|3kbr40,95,184,1|3qt33z,95,184,1|3qt340,94,189,0|431trz,94,189,0|431ts0,95,184,1|49j5rz,95,184,1|49j5s0,94,189,0|4lrwfz,94,189,0|4lrwg0,95,184,1|4s98fz,95,184,1|4s98g0,94,189,0|54hz3z,94,189,0|54hz40,95,184,1|5azb3z,95,184,1|5azb40,94,189,0|5n81rz,94,189,0|5n81s0,95,184,1|5tpdrz,95,184,1|5tpds0,94,189,0|65y4fz,94,189,0|65y4g0,95,184,1|6dvb3z,95,184,1|6dvb40,94,189,0|6p15rz,94,189,0|6p15s0,95,184,1|6wldrz,95,184,1|6wlds0,94,189,0|77r8fz,94,189,0|77r8g0,95,184,1|7e8kfz,95,184,1|7e8kg0,94,189,0|7qhb3z,94,189,0|7qhb40,95,184,1|7wyn3z,95,184,1|7wyn40,94,189,0|897drz,94,189,0|897ds0,95,184,1|8foprz,95,184,1|8fops0,94,189,0|8rkhrz,94,189,0|8rkhs0,95,184,1|8z4prz,95,184,1|8z4ps0,94,189,0|9anj3z,94,189,0|9anj40,95,184,1|9i7r3z,95,184,1|9i7r40,94,189,0|9tqkfz,94,189,0|9tqkg0,95,184,1|a0xtrz,95,184,1|a0xts0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|ajnwfz,95,184,1|ajnwg0,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b33wfz,95,184,1|b33wg0,94,189,0|bctwfz,94,189,0|bctwg0,95,184,1|bltz3z,95,184,1|bltz40,94,189,0|bvjz3z,94,189,0|bvjz40,95,184,1|c4k1rz,95,184,1|c4k1s0,94,189,0|cea1rz,94,189,0|cea1s0,95,184,1|cna4fz,95,184,1|cna4g0,94,189,0|cx04fz,94,189,0|cx04g0,95,184,1|d6073z,95,184,1|d60740,94,189,0|dfq73z,94,189,0|dfq740,95,184,1|dp38fz,95,184,1|dp38g0,94,189,0|dyt8fz,94,189,0|dyt8g0,95,184,1|e7tb3z,95,184,1|e7tb40,94,189,0|ehjb3z,94,189,0|ehjb40,95,184,1|eqjdrz,95,184,1|eqjds0,94,189,0|f09drz,94,189,0|f09ds0,95,184,1|f99gfz,95,184,1|f99gg0,94,189,0|fizgfz,94,189,0|fizgg0,95,184,1|frzj3z,95,184,1|frzj40,94,189,0|fzwprz,94,189,0|fzwps0,95,184,1|gaplrz,95,184,1|gapls0,94,189,0|gkskfz,94,189,0|gkskg0,95,184,1|gtsn3z,95,184,1|gtsn40,94,189,0|h3in3z,94,189,0|h3in40,95,184,1|hciprz,95,184,1|hcips0,94,189,0|hm8prz,94,189,0|hm8ps0,95,184,1|hv8sfz,95,184,1|hv8sg0,94,189,0|i4ysfz,94,189,0|i4ysg0,95,184,1|idyv3z,95,184,1|idyv40,94,189,0|inov3z,94,189,0|inov40,95,184,1|ix1wfz,95,184,1|ix1wg0,94,189,0|j6exrz,94,189,0|j6exs0,95,184,1|jff0fz,95,184,1|jff0g0,94,189,0|jphz3z,94,189,0|jphz40,95,184,1|jyv0fz,95,184,1|jyv0g0,94,189,0|k881rz,94,189,0|k881s0,95,184,1|khl33z,95,184,1|khl340,94,189,0|kqy4fz,94,189,0|kqy4g0,95,184,1|l0b5rz,95,184,1|l0b5s0,94,189,0|l9o73z,94,189,0|l9o740,95,184,1|lj18fz,95,184,1|lj18g0,94,189,0|lse9rz,94,189,0|lse9s0,95,184,1|m1rb3z,95,184,1|m1rb40,94,189,0|mbhb3z,94,189,0|mbhb40,95,184,1|mkucfz,95,184,1|mkucg0,94,189,0|mu7drz,94,189,0|mu7ds0,95,184,1|n3kf3z,95,184,1|n3kf40,94,189,0|ncxgfz,94,189,0|ncxgg0,95,184,1|nmahrz,95,184,1|nmahs0,94,189,0|nvnj3z,94,189,0|nvnj40,95,184,1|o50kfz,95,184,1|o50kg0,94,189,0|oedlrz,94,189,0|oedls0,95,184,1|onqn3z,95,184,1|onqn40,94,189,0|ox3ofz,94,189,0|ox3og0,95,184,1|p6gprz,95,184,1|p6gps0,94,189,0|pg6prz,94,189,0|pg6ps0,95,184,1|ppjr3z,95,184,1|ppjr40,94,189,0|pywsfz,94,189,0|pywsg0,95,184,1|q89trz,95,184,1|q89ts0,94,189,0|qhmv3z,94,189,0|qhmv40,95,184,1|qqzwfz,95,184,1|qqzwg0,94,189,0|r0cxrz,94,189,0|r0cxs0,95,184,1|r9pz3z,95,184,1|r9pz40,94,189,0|rj30fz,94,189,0|rj30g0,95,184,1|rsg1rz,95,184,1|rsg1s0,94,189,0|s1t33z,94,189,0|s1t340,95,184,1|sbj33z,95,184,1|sbj340,94,189,0|skw4fz,94,189,0|skw4g0,95,184,1|su95rz,95,184,1|su95s0,94,189,0|t3m73z,94,189,0|t3m740,95,184,1|tcz8fz,95,184,1|tcz8g0,94,189,0|tmc9rz,94,189,0|tmc9s0,95,184,1|tvpb3z,95,184,1|tvpb40,94,189,0|u52cfz,94,189,0|u52cg0,95,184,1|uefdrz,95,184,1|uefds0,94,189,0|unsf3z,94,189,0|unsf40,95,184,1|ux5gfz,95,184,1|ux5gg0,94,189,0|v6vgfz,94,189,0|v6vgg0,95,184,1|vg8hrz,95,184,1|vg8hs0,94,189,0|vplj3z,94,189,0|vplj40,95,184,1|vyykfz,95,184,1|vyykg0,94,189,0|w8blrz,94,189,0|w8bls0,95,184,1|whon3z,95,184,1|whon40,94,189,0|wr1ofz,94,189,0|wr1og0,95,184,1|x0eprz,95,184,1|x0eps0,94,189,0|x9rr3z,94,189,0|x9rr40,95,184,1|xj4sfz,95,184,1|xj4sg0,94,189,0|xshtrz,94,189,0|xshts0,95,184,1|y1uv3z,95,184,1|y1uv40,94,189,0|ybkv3z,94,189,0|ybkv40,95,184,1|ykxwfz,95,184,1|ykxwg0,94,189,0|yuaxrz,94,189,0|yuaxs0,95,184,1|z3nz3z,95,184,1|z3nz40,94,189,0|zd10fz,94,189,0|zd10g0,95,184,1|zme1rz,95,184,1|zme1s0,94,189,0|zvr33z,94,189,0|zvr340,95,184,1|10544fz,95,184,1|10544g0,94,189,0|10eh5rz,94,189,0|10eh5s0,95,184,1|10nu73z,95,184,1|10nu740,94,189,0|10xk73z,94,189,0|10xk740,95,184,1|116x8fz,95,184,1|116x8g0,94,189,0|11ga9rz,94,189,0|11ga9s0,95,184,1|11pnb3z,95,184,1|11pnb40,94,189,0|11z0cfz,94,189,0|11z0cg0,95,184,1|128ddrz,95,184,1|128dds0,94,189,0|12hqf3z,94,189,0|12hqf40,95,184,1|12r3gfz,95,184,1|12r3gg0,94,189,0|130ghrz,94,189,0|130ghs0,95,184,1|139tj3z,95,184,1|139tj40,94,189,0|13j6kfz,94,189,0|13j6kg0,95,184,1|13sjlrz,95,184,1|13sjls0,94,189,0|1429lrz,94,189,0|1429ls0,95,184,1|14bmn3z,95,184,1|14bmn40,94,189,0|14kzofz,94,189,0|14kzog0,95,184,1|14ucprz,95,184,1|14ucps0,94,189,0|153pr3z,94,189,0|153pr40,95,184,1|15d2sfz,95,184,1|15d2sg0,94,189,0|15mftrz,94,189,0|15mfts0,95,184,1|15vsv3z,95,184,1|15vsv40,94,189,0|1655wfz,94,189,0|1655wg0,95,184,1|16eixrz,95,184,1|16eixs0,94,189,0|16nvz3z,94,189,0|16nvz40,95,184,1|16xlz3z,95,184,1|16xlz40,94,189,0|176z0fz,94,189,0|176z0g0,95,184,1|17gc1rz,95,184,1|17gc1s0,94,189,0|17pp33z,94,189,0|17pp340,95,184,1|17z24fz,95,184,1|17z24g0,94,189,0|188f5rz,94,189,0|188f5s0,95,184,1|18hs73z,95,184,1|18hs740,94,189,0|18r58fz,94,189,0|18r58g0,95,184,1|190i9rz,95,184,1|190i9s0,94,189,0|199vb3z,94,189,0|199vb40,95,184,1|19j8cfz,95,184,1|19j8cg0,94,189,0|19sycfz,94,189,0|19sycg0,95,184,1|1a2bdrz,95,184,1|1a2bds0,94,189,0|1abof3z,94,189,0|1abof40,95,184,1|1al1gfz,95,184,1|1al1gg0,94,189,0|1auehrz,94,189,0|1auehs0,95,184,1|1b3rj3z,95,184,1|1b3rj40,94,189,0|1bd4kfz,94,189,0|1bd4kg0,95,184,1|1bmhlrz,95,184,1|1bmhls0,94,189,0|1bvun3z,94,189,0|1bvun40,95,184,1|1c57ofz,95,184,1|1c57og0,94,189,0|1cekprz,94,189,0|1cekps0,95,184,1|1cnxr3z,95,184,1|1cnxr40,94,189,0|1cxnr3z,94,189,0|1cxnr40,95,184,1|1d70sfz,95,184,1|1d70sg0,94,189,0|1dgdtrz,94,189,0|1dgdts0,95,184,1|1dpqv3z,95,184,1|1dpqv40,94,189,0|1dz3wfz,94,189,0|1dz3wg0,95,184,1|1e8gxrz,95,184,1|1e8gxs0,94,189,0|1ehtz3z,94,189,0|1ehtz40,95,184,1|1er70fz,95,184,1|1er70g0,94,189,0|1f0k1rz,94,189,0|1f0k1s0,95,184,1|1f9x33z,95,184,1|1f9x340,94,189,0|1fjn33z,94,189,0|1fjn340,95,184,1|1ft04fz,95,184,1|1ft04g0,94,189,0|1g2d5rz,94,189,0|1g2d5s0,95,184,1|1gbq73z,95,184,1|1gbq740,94,189,0|1gl38fz,94,189,0|1gl38g0,95,184,1|1gug9rz,95,184,1|1gug9s0,94,189,0|1h3tb3z,94,189,0|1h3tb40,95,184,1|1hd6cfz,95,184,1|1hd6cg0,94,189,0|1hmjdrz,94,189,0|1hmjds0,95,184,1|1hvwf3z,95,184,1|1hvwf40,94,189,0|1i59gfz,94,189,0|1i59gg0,95,184,1|1iemhrz,95,184,1|1iemhs0,94,189,0|1iochrz,94,189,0|1iochs0,95,184,1|1ixpj3z,95,184,1|1ixpj40,94,189,0|1j72kfz,94,189,0|1j72kg0,95,184,1|1jgflrz,95,184,1|1jgfls0,94,189,0|1jpsn3z,94,189,0|1jpsn40,95,184,1|1jz5ofz,95,184,1|1jz5og0,94,189,0|1k8iprz,94,189,0|1k8ips0,95,184,1|1khvr3z,95,184,1|1khvr40,94,189,0|1kr8sfz,94,189,0|1kr8sg0,95,184,1|1l0ltrz,95,184,1|1l0lts0,94,189,0|1l9yv3z,94,189,0|1l9yv40,95,184,1|1ljov3z,95,184,1|1ljov40,94,189,0|1lt1wfz,94,189,0|1lt1wg0,95,184,1|1m2exrz,95,184,1|1m2exs0,94,189,0|1mbrz3z,94,189,0|1mbrz40,95,184,1|1ml50fz,95,184,1|1ml50g0,94,189,0|1mui1rz,94,189,0|1mui1s0,95,184,1|1n3v33z,95,184,1|1n3v340,94,189,0|1nd84fz,94,189,0|1nd84g0,95,184,1|1nml5rz,95,184,1|1nml5s0,94,189,0|1nvy73z,94,189,0|1nvy740,95,184,1|1o5b8fz,95,184,1|1o5b8g0,94,189,0|1of18fz,94,189,0|1of18g0,95,184,1|1ooe9rz,95,184,1|1ooe9s0,94,189,0|1oxrb3z,94,189,0|1oxrb40,95,184,1|1p74cfz,95,184,1|1p74cg0,94,189,0|1pghdrz,94,189,0|1pghds0,95,184,1|1ppuf3z,95,184,1|1ppuf40,94,189,0|1pz7gfz,94,189,0|1pz7gg0,95,184,1|1q8khrz,95,184,1|1q8khs0,94,189,0|1qhxj3z,94,189,0|1qhxj40,95,184,1|1qrakfz,95,184,1|1qrakg0,94,189,0|1r0nlrz,94,189,0|1r0nls0,95,184,1|1ra0n3z,95,184,1|1ra0n40,94,189,0|1rjqn3z,94,189,0|1rjqn40,95,184,1|1rt3ofz,95,184,1|1rt3og0,94,189,0|1s2gprz,94,189,0|1s2gps0,95,184,1|1sbtr3z,95,184,1|1sbtr40,94,189,0|1sl6sfz,94,189,0|1sl6sg0,95,184,1|1sujtrz,95,184,1|1sujts0,94,189,0|1t3wv3z,94,189,0|1t3wv40,95,184,1|1td9wfz,95,184,1|1td9wg0,94,189,0|1tmmxrz,94,189,0|1tmmxs0,95,184,1|1tvzz3z,95,184,1|1tvzz40,94,189,0|1u5pz3z,94,189,0|1u5pz40,95,184,1|1uf30fz,95,184,1|1uf30g0,94,189,0|1uog1rz,94,189,0|1uog1s0,95,184,1|1uxt33z,95,184,1|1uxt340,94,189,0|1v764fz,94,189,0|1v764g0,95,184,1|1vgj5rz,95,184,1|1vgj5s0,94,189,0|1vpw73z,94,189,0|1vpw740,95,184,1|NaN,95,184,1","Australia/Darwin|,0,311,0|-133j1k9,0,311,0|-133j1k8,138,218,0|-10vsp01,138,218,0|-10vsp00,138,242,0|-rnsq61,138,242,0|-rnsq60,139,307,1|-rjj0u1,139,307,1|-rjj0u0,138,242,0|-em3gu1,138,242,0|-em3gu0,139,307,1|-ehmcu1,139,307,1|-ehmcu0,138,242,0|-e89bi1,138,242,0|-e89bi0,139,307,1|-dywa61,139,307,1|-dywa60,138,242,0|-dp6a61,138,242,0|-dp6a60,139,307,1|-dg67i1,139,307,1|-dg67i0,138,242,0|NaN,138,242,0","Australia/Eucla|,0,312,0|-12nxx75,0,312,0|-12nxx74,140,313,0|-rnso31,140,313,0|-rnso30,141,314,1|-rjiyr1,141,314,1|-rjiyr0,140,313,0|-em3er1,140,313,0|-em3er0,141,314,1|-ehmar1,141,314,1|-ehmar0,140,313,0|-e899f1,140,313,0|-e899f0,141,314,1|-dyw831,141,314,1|-dyw830,140,313,0|2iiqkz,140,313,0|2iiql0,141,314,1|2p02kz,141,314,1|2p02l0,140,313,0|77rbwz,140,313,0|77rbx0,141,314,1|7e8nwz,141,314,1|7e8nx0,140,313,0|bezrwz,140,313,0|bezrx0,141,314,1|bke7wz,141,314,1|bke7x0,140,313,0|j9np8z,140,313,0|j9np90,141,314,1|jff3wz,141,314,1|jff3x0,140,313,0|jqkykz,140,313,0|jqkyl0,141,314,1|jyi58z,141,314,1|jyi590,140,313,0|k9b18z,140,313,0|k9b190,141,314,1|kh87wz,141,314,1|kh87x0,140,313,0|NaN,140,313,0","Australia/Hobart|,0,310,0|-12smja5,0,310,0|-12smja4,94,189,0|-rsj4w1,94,189,0|-rsj4w0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-r8d7k1,94,189,0|-r8d7k0,95,184,1|-r1vvk1,95,184,1|-r1vvk0,94,189,0|-qpn4w1,94,189,0|-qpn4w0,95,184,1|-qj5sw1,95,184,1|-qj5sw0,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|-16cow1,94,189,0|-16cow0,95,184,1|-wznk1,95,184,1|-wznk0,94,189,0|-m6rk1,94,189,0|-m6rk0,95,184,1|-fcgw1,95,184,1|-fcgw0,94,189,0|-3gow1,94,189,0|-3gow0,95,184,1|3dlrz,95,184,1|3dls0,94,189,0|f9drz,94,189,0|f9ds0,95,184,1|mgn3z,95,184,1|mgn40,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|1h2hrz,94,189,0|1h2hs0,95,184,1|1njtrz,95,184,1|1njts0,94,189,0|1zskfz,94,189,0|1zskg0,95,184,1|269wfz,95,184,1|269wg0,94,189,0|2iin3z,94,189,0|2iin40,95,184,1|2ozz3z,95,184,1|2ozz40,94,189,0|318prz,94,189,0|318ps0,95,184,1|3830fz,95,184,1|3830g0,94,189,0|3kbr3z,94,189,0|3kbr40,95,184,1|3qt33z,95,184,1|3qt340,94,189,0|431trz,94,189,0|431ts0,95,184,1|49j5rz,95,184,1|49j5s0,94,189,0|4lrwfz,94,189,0|4lrwg0,95,184,1|4s98fz,95,184,1|4s98g0,94,189,0|54hz3z,94,189,0|54hz40,95,184,1|5azb3z,95,184,1|5azb40,94,189,0|5n81rz,94,189,0|5n81s0,95,184,1|5tpdrz,95,184,1|5tpds0,94,189,0|65y4fz,94,189,0|65y4g0,95,184,1|6dvb3z,95,184,1|6dvb40,94,189,0|6p15rz,94,189,0|6p15s0,95,184,1|6wldrz,95,184,1|6wlds0,94,189,0|77r8fz,94,189,0|77r8g0,95,184,1|7e8kfz,95,184,1|7e8kg0,94,189,0|7qhb3z,94,189,0|7qhb40,95,184,1|7wyn3z,95,184,1|7wyn40,94,189,0|897drz,94,189,0|897ds0,95,184,1|8foprz,95,184,1|8fops0,94,189,0|8rkhrz,94,189,0|8rkhs0,95,184,1|8z4prz,95,184,1|8z4ps0,94,189,0|9anj3z,94,189,0|9anj40,95,184,1|9i7r3z,95,184,1|9i7r40,94,189,0|9tqkfz,94,189,0|9tqkg0,95,184,1|a0xtrz,95,184,1|a0xts0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|ajnwfz,95,184,1|ajnwg0,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b33wfz,95,184,1|b33wg0,94,189,0|bctwfz,94,189,0|bctwg0,95,184,1|bltz3z,95,184,1|bltz40,94,189,0|bvjz3z,94,189,0|bvjz40,95,184,1|c4k1rz,95,184,1|c4k1s0,94,189,0|cea1rz,94,189,0|cea1s0,95,184,1|cna4fz,95,184,1|cna4g0,94,189,0|cx04fz,94,189,0|cx04g0,95,184,1|d6073z,95,184,1|d60740,94,189,0|dfq73z,94,189,0|dfq740,95,184,1|dp38fz,95,184,1|dp38g0,94,189,0|dyt8fz,94,189,0|dyt8g0,95,184,1|e7tb3z,95,184,1|e7tb40,94,189,0|ehjb3z,94,189,0|ehjb40,95,184,1|eqjdrz,95,184,1|eqjds0,94,189,0|f09drz,94,189,0|f09ds0,95,184,1|f99gfz,95,184,1|f99gg0,94,189,0|fizgfz,94,189,0|fizgg0,95,184,1|frzj3z,95,184,1|frzj40,94,189,0|fzwprz,94,189,0|fzwps0,95,184,1|gaplrz,95,184,1|gapls0,94,189,0|gkskfz,94,189,0|gkskg0,95,184,1|gtsn3z,95,184,1|gtsn40,94,189,0|h3in3z,94,189,0|h3in40,95,184,1|hciprz,95,184,1|hcips0,94,189,0|hm8prz,94,189,0|hm8ps0,95,184,1|hv8sfz,95,184,1|hv8sg0,94,189,0|i4ysfz,94,189,0|i4ysg0,95,184,1|idyv3z,95,184,1|idyv40,94,189,0|inov3z,94,189,0|inov40,95,184,1|ix1wfz,95,184,1|ix1wg0,94,189,0|j6exrz,94,189,0|j6exs0,95,184,1|jff0fz,95,184,1|jff0g0,94,189,0|jphz3z,94,189,0|jphz40,95,184,1|jyv0fz,95,184,1|jyv0g0,94,189,0|k881rz,94,189,0|k881s0,95,184,1|khl33z,95,184,1|khl340,94,189,0|kqy4fz,94,189,0|kqy4g0,95,184,1|l0b5rz,95,184,1|l0b5s0,94,189,0|l9o73z,94,189,0|l9o740,95,184,1|lj18fz,95,184,1|lj18g0,94,189,0|lse9rz,94,189,0|lse9s0,95,184,1|m1rb3z,95,184,1|m1rb40,94,189,0|mbhb3z,94,189,0|mbhb40,95,184,1|mkucfz,95,184,1|mkucg0,94,189,0|mu7drz,94,189,0|mu7ds0,95,184,1|n3kf3z,95,184,1|n3kf40,94,189,0|ncxgfz,94,189,0|ncxgg0,95,184,1|nmahrz,95,184,1|nmahs0,94,189,0|nvnj3z,94,189,0|nvnj40,95,184,1|o50kfz,95,184,1|o50kg0,94,189,0|oedlrz,94,189,0|oedls0,95,184,1|onqn3z,95,184,1|onqn40,94,189,0|ox3ofz,94,189,0|ox3og0,95,184,1|p6gprz,95,184,1|p6gps0,94,189,0|pg6prz,94,189,0|pg6ps0,95,184,1|ppjr3z,95,184,1|ppjr40,94,189,0|pywsfz,94,189,0|pywsg0,95,184,1|q89trz,95,184,1|q89ts0,94,189,0|qhmv3z,94,189,0|qhmv40,95,184,1|qqzwfz,95,184,1|qqzwg0,94,189,0|r0cxrz,94,189,0|r0cxs0,95,184,1|r9pz3z,95,184,1|r9pz40,94,189,0|rj30fz,94,189,0|rj30g0,95,184,1|rsg1rz,95,184,1|rsg1s0,94,189,0|s1t33z,94,189,0|s1t340,95,184,1|sbj33z,95,184,1|sbj340,94,189,0|skw4fz,94,189,0|skw4g0,95,184,1|su95rz,95,184,1|su95s0,94,189,0|t3m73z,94,189,0|t3m740,95,184,1|tcz8fz,95,184,1|tcz8g0,94,189,0|tmc9rz,94,189,0|tmc9s0,95,184,1|tvpb3z,95,184,1|tvpb40,94,189,0|u52cfz,94,189,0|u52cg0,95,184,1|uefdrz,95,184,1|uefds0,94,189,0|unsf3z,94,189,0|unsf40,95,184,1|ux5gfz,95,184,1|ux5gg0,94,189,0|v6vgfz,94,189,0|v6vgg0,95,184,1|vg8hrz,95,184,1|vg8hs0,94,189,0|vplj3z,94,189,0|vplj40,95,184,1|vyykfz,95,184,1|vyykg0,94,189,0|w8blrz,94,189,0|w8bls0,95,184,1|whon3z,95,184,1|whon40,94,189,0|wr1ofz,94,189,0|wr1og0,95,184,1|x0eprz,95,184,1|x0eps0,94,189,0|x9rr3z,94,189,0|x9rr40,95,184,1|xj4sfz,95,184,1|xj4sg0,94,189,0|xshtrz,94,189,0|xshts0,95,184,1|y1uv3z,95,184,1|y1uv40,94,189,0|ybkv3z,94,189,0|ybkv40,95,184,1|ykxwfz,95,184,1|ykxwg0,94,189,0|yuaxrz,94,189,0|yuaxs0,95,184,1|z3nz3z,95,184,1|z3nz40,94,189,0|zd10fz,94,189,0|zd10g0,95,184,1|zme1rz,95,184,1|zme1s0,94,189,0|zvr33z,94,189,0|zvr340,95,184,1|10544fz,95,184,1|10544g0,94,189,0|10eh5rz,94,189,0|10eh5s0,95,184,1|10nu73z,95,184,1|10nu740,94,189,0|10xk73z,94,189,0|10xk740,95,184,1|116x8fz,95,184,1|116x8g0,94,189,0|11ga9rz,94,189,0|11ga9s0,95,184,1|11pnb3z,95,184,1|11pnb40,94,189,0|11z0cfz,94,189,0|11z0cg0,95,184,1|128ddrz,95,184,1|128dds0,94,189,0|12hqf3z,94,189,0|12hqf40,95,184,1|12r3gfz,95,184,1|12r3gg0,94,189,0|130ghrz,94,189,0|130ghs0,95,184,1|139tj3z,95,184,1|139tj40,94,189,0|13j6kfz,94,189,0|13j6kg0,95,184,1|13sjlrz,95,184,1|13sjls0,94,189,0|1429lrz,94,189,0|1429ls0,95,184,1|14bmn3z,95,184,1|14bmn40,94,189,0|14kzofz,94,189,0|14kzog0,95,184,1|14ucprz,95,184,1|14ucps0,94,189,0|153pr3z,94,189,0|153pr40,95,184,1|15d2sfz,95,184,1|15d2sg0,94,189,0|15mftrz,94,189,0|15mfts0,95,184,1|15vsv3z,95,184,1|15vsv40,94,189,0|1655wfz,94,189,0|1655wg0,95,184,1|16eixrz,95,184,1|16eixs0,94,189,0|16nvz3z,94,189,0|16nvz40,95,184,1|16xlz3z,95,184,1|16xlz40,94,189,0|176z0fz,94,189,0|176z0g0,95,184,1|17gc1rz,95,184,1|17gc1s0,94,189,0|17pp33z,94,189,0|17pp340,95,184,1|17z24fz,95,184,1|17z24g0,94,189,0|188f5rz,94,189,0|188f5s0,95,184,1|18hs73z,95,184,1|18hs740,94,189,0|18r58fz,94,189,0|18r58g0,95,184,1|190i9rz,95,184,1|190i9s0,94,189,0|199vb3z,94,189,0|199vb40,95,184,1|19j8cfz,95,184,1|19j8cg0,94,189,0|19sycfz,94,189,0|19sycg0,95,184,1|1a2bdrz,95,184,1|1a2bds0,94,189,0|1abof3z,94,189,0|1abof40,95,184,1|1al1gfz,95,184,1|1al1gg0,94,189,0|1auehrz,94,189,0|1auehs0,95,184,1|1b3rj3z,95,184,1|1b3rj40,94,189,0|1bd4kfz,94,189,0|1bd4kg0,95,184,1|1bmhlrz,95,184,1|1bmhls0,94,189,0|1bvun3z,94,189,0|1bvun40,95,184,1|1c57ofz,95,184,1|1c57og0,94,189,0|1cekprz,94,189,0|1cekps0,95,184,1|1cnxr3z,95,184,1|1cnxr40,94,189,0|1cxnr3z,94,189,0|1cxnr40,95,184,1|1d70sfz,95,184,1|1d70sg0,94,189,0|1dgdtrz,94,189,0|1dgdts0,95,184,1|1dpqv3z,95,184,1|1dpqv40,94,189,0|1dz3wfz,94,189,0|1dz3wg0,95,184,1|1e8gxrz,95,184,1|1e8gxs0,94,189,0|1ehtz3z,94,189,0|1ehtz40,95,184,1|1er70fz,95,184,1|1er70g0,94,189,0|1f0k1rz,94,189,0|1f0k1s0,95,184,1|1f9x33z,95,184,1|1f9x340,94,189,0|1fjn33z,94,189,0|1fjn340,95,184,1|1ft04fz,95,184,1|1ft04g0,94,189,0|1g2d5rz,94,189,0|1g2d5s0,95,184,1|1gbq73z,95,184,1|1gbq740,94,189,0|1gl38fz,94,189,0|1gl38g0,95,184,1|1gug9rz,95,184,1|1gug9s0,94,189,0|1h3tb3z,94,189,0|1h3tb40,95,184,1|1hd6cfz,95,184,1|1hd6cg0,94,189,0|1hmjdrz,94,189,0|1hmjds0,95,184,1|1hvwf3z,95,184,1|1hvwf40,94,189,0|1i59gfz,94,189,0|1i59gg0,95,184,1|1iemhrz,95,184,1|1iemhs0,94,189,0|1iochrz,94,189,0|1iochs0,95,184,1|1ixpj3z,95,184,1|1ixpj40,94,189,0|1j72kfz,94,189,0|1j72kg0,95,184,1|1jgflrz,95,184,1|1jgfls0,94,189,0|1jpsn3z,94,189,0|1jpsn40,95,184,1|1jz5ofz,95,184,1|1jz5og0,94,189,0|1k8iprz,94,189,0|1k8ips0,95,184,1|1khvr3z,95,184,1|1khvr40,94,189,0|1kr8sfz,94,189,0|1kr8sg0,95,184,1|1l0ltrz,95,184,1|1l0lts0,94,189,0|1l9yv3z,94,189,0|1l9yv40,95,184,1|1ljov3z,95,184,1|1ljov40,94,189,0|1lt1wfz,94,189,0|1lt1wg0,95,184,1|1m2exrz,95,184,1|1m2exs0,94,189,0|1mbrz3z,94,189,0|1mbrz40,95,184,1|1ml50fz,95,184,1|1ml50g0,94,189,0|1mui1rz,94,189,0|1mui1s0,95,184,1|1n3v33z,95,184,1|1n3v340,94,189,0|1nd84fz,94,189,0|1nd84g0,95,184,1|1nml5rz,95,184,1|1nml5s0,94,189,0|1nvy73z,94,189,0|1nvy740,95,184,1|1o5b8fz,95,184,1|1o5b8g0,94,189,0|1of18fz,94,189,0|1of18g0,95,184,1|1ooe9rz,95,184,1|1ooe9s0,94,189,0|1oxrb3z,94,189,0|1oxrb40,95,184,1|1p74cfz,95,184,1|1p74cg0,94,189,0|1pghdrz,94,189,0|1pghds0,95,184,1|1ppuf3z,95,184,1|1ppuf40,94,189,0|1pz7gfz,94,189,0|1pz7gg0,95,184,1|1q8khrz,95,184,1|1q8khs0,94,189,0|1qhxj3z,94,189,0|1qhxj40,95,184,1|1qrakfz,95,184,1|1qrakg0,94,189,0|1r0nlrz,94,189,0|1r0nls0,95,184,1|1ra0n3z,95,184,1|1ra0n40,94,189,0|1rjqn3z,94,189,0|1rjqn40,95,184,1|1rt3ofz,95,184,1|1rt3og0,94,189,0|1s2gprz,94,189,0|1s2gps0,95,184,1|1sbtr3z,95,184,1|1sbtr40,94,189,0|1sl6sfz,94,189,0|1sl6sg0,95,184,1|1sujtrz,95,184,1|1sujts0,94,189,0|1t3wv3z,94,189,0|1t3wv40,95,184,1|1td9wfz,95,184,1|1td9wg0,94,189,0|1tmmxrz,94,189,0|1tmmxs0,95,184,1|1tvzz3z,95,184,1|1tvzz40,94,189,0|1u5pz3z,94,189,0|1u5pz40,95,184,1|1uf30fz,95,184,1|1uf30g0,94,189,0|1uog1rz,94,189,0|1uog1s0,95,184,1|1uxt33z,95,184,1|1uxt340,94,189,0|1v764fz,94,189,0|1v764g0,95,184,1|1vgj5rz,95,184,1|1vgj5s0,94,189,0|1vpw73z,94,189,0|1vpw740,95,184,1|NaN,95,184,1","Australia/Lindeman|,0,315,0|-1354jl9,0,315,0|-1354jl8,94,189,0|-rnsrk1,94,189,0|-rnsrk0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|aixz3z,95,184,1|aixz40,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b1o1rz,95,184,1|b1o1s0,94,189,0|bdwsfz,94,189,0|bdwsg0,95,184,1|bke4fz,95,184,1|bke4g0,94,189,0|bwmv3z,94,189,0|bwmv40,95,184,1|c3h5rz,95,184,1|c3h5s0,94,189,0|cfpwfz,94,189,0|cfpwg0,95,184,1|cm78fz,95,184,1|cm78g0,94,189,0|NaN,94,189,0","Australia/Lord_Howe|,0,316,0|-133j6sl,0,316,0|-133j6sk,94,189,0|5tp87z,94,189,0|5tp880,142,307,0|65y31z,142,307,0|65y320,143,192,1|6csaxz,143,192,1|6csay0,142,307,0|6p14dz,142,307,0|6p14e0,143,192,1|6vidlz,143,192,1|6vidm0,142,307,0|77r71z,142,307,0|77r720,143,192,1|7e8g9z,143,192,1|7e8ga0,142,307,0|7qh9pz,142,307,0|7qh9q0,143,192,1|7wyixz,143,192,1|7wyiy0,142,307,0|897cdz,142,307,0|897ce0,89,184,1|8gekbz,89,184,1|8gekc0,142,307,0|8rkgdz,142,307,0|8rkge0,89,184,1|8z4mzz,89,184,1|8z4n00,142,307,0|9anhpz,142,307,0|9anhq0,89,184,1|9i7obz,89,184,1|9i7oc0,142,307,0|9tqj1z,142,307,0|9tqj20,89,184,1|a0xqzz,89,184,1|a0xr00,142,307,0|acglpz,142,307,0|acglq0,89,184,1|aixwbz,89,184,1|aixwc0,142,307,0|av6odz,142,307,0|av6oe0,89,184,1|b1nyzz,89,184,1|b1nz00,142,307,0|bdwr1z,142,307,0|bdwr20,89,184,1|bke1nz,89,184,1|bke1o0,142,307,0|bwmtpz,142,307,0|bwmtq0,89,184,1|c3h2zz,89,184,1|c3h300,142,307,0|cfpv1z,142,307,0|cfpv20,89,184,1|cm75nz,89,184,1|cm75o0,142,307,0|cyfxpz,142,307,0|cyfxq0,89,184,1|d4x8bz,89,184,1|d4x8c0,142,307,0|dh60dz,142,307,0|dh60e0,89,184,1|dp35nz,89,184,1|dp35o0,142,307,0|dzw31z,142,307,0|dzw320,89,184,1|e7t8bz,89,184,1|e7t8c0,142,307,0|eim5pz,142,307,0|eim5q0,89,184,1|eqjazz,89,184,1|eqjb00,142,307,0|f1c8dz,142,307,0|f1c8e0,89,184,1|f99dnz,89,184,1|f99do0,142,307,0|fkf9pz,142,307,0|fkf9q0,89,184,1|frzgbz,89,184,1|frzgc0,142,307,0|fzwodz,142,307,0|fzwoe0,89,184,1|gapizz,89,184,1|gapj00,142,307,0|glvf1z,142,307,0|glvf20,89,184,1|gtskbz,89,184,1|gtskc0,142,307,0|h4lhpz,142,307,0|h4lhq0,89,184,1|hcimzz,89,184,1|hcin00,142,307,0|hnbkdz,142,307,0|hnbke0,89,184,1|hv8pnz,89,184,1|hv8po0,142,307,0|i6elpz,142,307,0|i6elq0,89,184,1|idysbz,89,184,1|idysc0,142,307,0|ip4odz,142,307,0|ip4oe0,89,184,1|ix1tnz,89,184,1|ix1to0,142,307,0|j7ur1z,142,307,0|j7ur20,89,184,1|jfexnz,89,184,1|jfexo0,142,307,0|jqktpz,142,307,0|jqktq0,89,184,1|jyuxnz,89,184,1|jyuxo0,142,307,0|k880dz,142,307,0|k880e0,89,184,1|khl0bz,89,184,1|khl0c0,142,307,0|kqy31z,142,307,0|kqy320,89,184,1|l0b2zz,89,184,1|l0b300,142,307,0|l9o5pz,142,307,0|l9o5q0,89,184,1|lj15nz,89,184,1|lj15o0,142,307,0|lse8dz,142,307,0|lse8e0,89,184,1|m1r8bz,89,184,1|m1r8c0,142,307,0|mbh9pz,142,307,0|mbh9q0,89,184,1|mku9nz,89,184,1|mku9o0,142,307,0|mu7cdz,142,307,0|mu7ce0,89,184,1|n3kcbz,89,184,1|n3kcc0,142,307,0|ncxf1z,142,307,0|ncxf20,89,184,1|nmaezz,89,184,1|nmaf00,142,307,0|nvnhpz,142,307,0|nvnhq0,89,184,1|o50hnz,89,184,1|o50ho0,142,307,0|oedkdz,142,307,0|oedke0,89,184,1|onqkbz,89,184,1|onqkc0,142,307,0|ox3n1z,142,307,0|ox3n20,89,184,1|p6gmzz,89,184,1|p6gn00,142,307,0|pg6odz,142,307,0|pg6oe0,89,184,1|ppjobz,89,184,1|ppjoc0,142,307,0|pywr1z,142,307,0|pywr20,89,184,1|q89qzz,89,184,1|q89r00,142,307,0|qhmtpz,142,307,0|qhmtq0,89,184,1|qqztnz,89,184,1|qqzto0,142,307,0|r0cwdz,142,307,0|r0cwe0,89,184,1|r9pwbz,89,184,1|r9pwc0,142,307,0|rj2z1z,142,307,0|rj2z20,89,184,1|rsfyzz,89,184,1|rsfz00,142,307,0|s1t1pz,142,307,0|s1t1q0,89,184,1|sbj0bz,89,184,1|sbj0c0,142,307,0|skw31z,142,307,0|skw320,89,184,1|su92zz,89,184,1|su9300,142,307,0|t3m5pz,142,307,0|t3m5q0,89,184,1|tcz5nz,89,184,1|tcz5o0,142,307,0|tmc8dz,142,307,0|tmc8e0,89,184,1|tvp8bz,89,184,1|tvp8c0,142,307,0|u52b1z,142,307,0|u52b20,89,184,1|uefazz,89,184,1|uefb00,142,307,0|unsdpz,142,307,0|unsdq0,89,184,1|ux5dnz,89,184,1|ux5do0,142,307,0|v6vf1z,142,307,0|v6vf20,89,184,1|vg8ezz,89,184,1|vg8f00,142,307,0|vplhpz,142,307,0|vplhq0,89,184,1|vyyhnz,89,184,1|vyyho0,142,307,0|w8bkdz,142,307,0|w8bke0,89,184,1|whokbz,89,184,1|whokc0,142,307,0|wr1n1z,142,307,0|wr1n20,89,184,1|x0emzz,89,184,1|x0en00,142,307,0|x9rppz,142,307,0|x9rpq0,89,184,1|xj4pnz,89,184,1|xj4po0,142,307,0|xshsdz,142,307,0|xshse0,89,184,1|y1usbz,89,184,1|y1usc0,142,307,0|ybktpz,142,307,0|ybktq0,89,184,1|ykxtnz,89,184,1|ykxto0,142,307,0|yuawdz,142,307,0|yuawe0,89,184,1|z3nwbz,89,184,1|z3nwc0,142,307,0|zd0z1z,142,307,0|zd0z20,89,184,1|zmdyzz,89,184,1|zmdz00,142,307,0|zvr1pz,142,307,0|zvr1q0,89,184,1|10541nz,89,184,1|10541o0,142,307,0|10eh4dz,142,307,0|10eh4e0,89,184,1|10nu4bz,89,184,1|10nu4c0,142,307,0|10xk5pz,142,307,0|10xk5q0,89,184,1|116x5nz,89,184,1|116x5o0,142,307,0|11ga8dz,142,307,0|11ga8e0,89,184,1|11pn8bz,89,184,1|11pn8c0,142,307,0|11z0b1z,142,307,0|11z0b20,89,184,1|128dazz,89,184,1|128db00,142,307,0|12hqdpz,142,307,0|12hqdq0,89,184,1|12r3dnz,89,184,1|12r3do0,142,307,0|130ggdz,142,307,0|130gge0,89,184,1|139tgbz,89,184,1|139tgc0,142,307,0|13j6j1z,142,307,0|13j6j20,89,184,1|13sjizz,89,184,1|13sjj00,142,307,0|1429kdz,142,307,0|1429ke0,89,184,1|14bmkbz,89,184,1|14bmkc0,142,307,0|14kzn1z,142,307,0|14kzn20,89,184,1|14ucmzz,89,184,1|14ucn00,142,307,0|153pppz,142,307,0|153ppq0,89,184,1|15d2pnz,89,184,1|15d2po0,142,307,0|15mfsdz,142,307,0|15mfse0,89,184,1|15vssbz,89,184,1|15vssc0,142,307,0|1655v1z,142,307,0|1655v20,89,184,1|16eiuzz,89,184,1|16eiv00,142,307,0|16nvxpz,142,307,0|16nvxq0,89,184,1|16xlwbz,89,184,1|16xlwc0,142,307,0|176yz1z,142,307,0|176yz20,89,184,1|17gbyzz,89,184,1|17gbz00,142,307,0|17pp1pz,142,307,0|17pp1q0,89,184,1|17z21nz,89,184,1|17z21o0,142,307,0|188f4dz,142,307,0|188f4e0,89,184,1|18hs4bz,89,184,1|18hs4c0,142,307,0|18r571z,142,307,0|18r5720,89,184,1|190i6zz,89,184,1|190i700,142,307,0|199v9pz,142,307,0|199v9q0,89,184,1|19j89nz,89,184,1|19j89o0,142,307,0|19syb1z,142,307,0|19syb20,89,184,1|1a2bazz,89,184,1|1a2bb00,142,307,0|1abodpz,142,307,0|1abodq0,89,184,1|1al1dnz,89,184,1|1al1do0,142,307,0|1auegdz,142,307,0|1auege0,89,184,1|1b3rgbz,89,184,1|1b3rgc0,142,307,0|1bd4j1z,142,307,0|1bd4j20,89,184,1|1bmhizz,89,184,1|1bmhj00,142,307,0|1bvulpz,142,307,0|1bvulq0,89,184,1|1c57lnz,89,184,1|1c57lo0,142,307,0|1cekodz,142,307,0|1cekoe0,89,184,1|1cnxobz,89,184,1|1cnxoc0,142,307,0|1cxnppz,142,307,0|1cxnpq0,89,184,1|1d70pnz,89,184,1|1d70po0,142,307,0|1dgdsdz,142,307,0|1dgdse0,89,184,1|1dpqsbz,89,184,1|1dpqsc0,142,307,0|1dz3v1z,142,307,0|1dz3v20,89,184,1|1e8guzz,89,184,1|1e8gv00,142,307,0|1ehtxpz,142,307,0|1ehtxq0,89,184,1|1er6xnz,89,184,1|1er6xo0,142,307,0|1f0k0dz,142,307,0|1f0k0e0,89,184,1|1f9x0bz,89,184,1|1f9x0c0,142,307,0|1fjn1pz,142,307,0|1fjn1q0,89,184,1|1ft01nz,89,184,1|1ft01o0,142,307,0|1g2d4dz,142,307,0|1g2d4e0,89,184,1|1gbq4bz,89,184,1|1gbq4c0,142,307,0|1gl371z,142,307,0|1gl3720,89,184,1|1gug6zz,89,184,1|1gug700,142,307,0|1h3t9pz,142,307,0|1h3t9q0,89,184,1|1hd69nz,89,184,1|1hd69o0,142,307,0|1hmjcdz,142,307,0|1hmjce0,89,184,1|1hvwcbz,89,184,1|1hvwcc0,142,307,0|1i59f1z,142,307,0|1i59f20,89,184,1|1iemezz,89,184,1|1iemf00,142,307,0|1iocgdz,142,307,0|1iocge0,89,184,1|1ixpgbz,89,184,1|1ixpgc0,142,307,0|1j72j1z,142,307,0|1j72j20,89,184,1|1jgfizz,89,184,1|1jgfj00,142,307,0|1jpslpz,142,307,0|1jpslq0,89,184,1|1jz5lnz,89,184,1|1jz5lo0,142,307,0|1k8iodz,142,307,0|1k8ioe0,89,184,1|1khvobz,89,184,1|1khvoc0,142,307,0|1kr8r1z,142,307,0|1kr8r20,89,184,1|1l0lqzz,89,184,1|1l0lr00,142,307,0|1l9ytpz,142,307,0|1l9ytq0,89,184,1|1ljosbz,89,184,1|1ljosc0,142,307,0|1lt1v1z,142,307,0|1lt1v20,89,184,1|1m2euzz,89,184,1|1m2ev00,142,307,0|1mbrxpz,142,307,0|1mbrxq0,89,184,1|1ml4xnz,89,184,1|1ml4xo0,142,307,0|1mui0dz,142,307,0|1mui0e0,89,184,1|1n3v0bz,89,184,1|1n3v0c0,142,307,0|1nd831z,142,307,0|1nd8320,89,184,1|1nml2zz,89,184,1|1nml300,142,307,0|1nvy5pz,142,307,0|1nvy5q0,89,184,1|1o5b5nz,89,184,1|1o5b5o0,142,307,0|1of171z,142,307,0|1of1720,89,184,1|1ooe6zz,89,184,1|1ooe700,142,307,0|1oxr9pz,142,307,0|1oxr9q0,89,184,1|1p749nz,89,184,1|1p749o0,142,307,0|1pghcdz,142,307,0|1pghce0,89,184,1|1ppucbz,89,184,1|1ppucc0,142,307,0|1pz7f1z,142,307,0|1pz7f20,89,184,1|1q8kezz,89,184,1|1q8kf00,142,307,0|1qhxhpz,142,307,0|1qhxhq0,89,184,1|1qrahnz,89,184,1|1qraho0,142,307,0|1r0nkdz,142,307,0|1r0nke0,89,184,1|1ra0kbz,89,184,1|1ra0kc0,142,307,0|1rjqlpz,142,307,0|1rjqlq0,89,184,1|1rt3lnz,89,184,1|1rt3lo0,142,307,0|1s2godz,142,307,0|1s2goe0,89,184,1|1sbtobz,89,184,1|1sbtoc0,142,307,0|1sl6r1z,142,307,0|1sl6r20,89,184,1|1sujqzz,89,184,1|1sujr00,142,307,0|1t3wtpz,142,307,0|1t3wtq0,89,184,1|1td9tnz,89,184,1|1td9to0,142,307,0|1tmmwdz,142,307,0|1tmmwe0,89,184,1|1tvzwbz,89,184,1|1tvzwc0,142,307,0|1u5pxpz,142,307,0|1u5pxq0,89,184,1|1uf2xnz,89,184,1|1uf2xo0,142,307,0|1uog0dz,142,307,0|1uog0e0,89,184,1|1uxt0bz,89,184,1|1uxt0c0,142,307,0|1v7631z,142,307,0|1v76320,89,184,1|1vgj2zz,89,184,1|1vgj300,142,307,0|1vpw5pz,142,307,0|1vpw5q0,89,184,1|NaN,89,184,1","Australia/Melbourne|,0,317,0|-133j46h,0,317,0|-133j46g,94,189,0|-rnsrk1,94,189,0|-rnsrk0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|1h2hrz,94,189,0|1h2hs0,95,184,1|1njtrz,95,184,1|1njts0,94,189,0|1zskfz,94,189,0|1zskg0,95,184,1|269wfz,95,184,1|269wg0,94,189,0|2iin3z,94,189,0|2iin40,95,184,1|2ozz3z,95,184,1|2ozz40,94,189,0|318prz,94,189,0|318ps0,95,184,1|3830fz,95,184,1|3830g0,94,189,0|3kbr3z,94,189,0|3kbr40,95,184,1|3qt33z,95,184,1|3qt340,94,189,0|431trz,94,189,0|431ts0,95,184,1|49j5rz,95,184,1|49j5s0,94,189,0|4lrwfz,94,189,0|4lrwg0,95,184,1|4s98fz,95,184,1|4s98g0,94,189,0|54hz3z,94,189,0|54hz40,95,184,1|5azb3z,95,184,1|5azb40,94,189,0|5n81rz,94,189,0|5n81s0,95,184,1|5tpdrz,95,184,1|5tpds0,94,189,0|65y4fz,94,189,0|65y4g0,95,184,1|6csf3z,95,184,1|6csf40,94,189,0|6p15rz,94,189,0|6p15s0,95,184,1|6vihrz,95,184,1|6vihs0,94,189,0|77r8fz,94,189,0|77r8g0,95,184,1|7e8kfz,95,184,1|7e8kg0,94,189,0|7qhb3z,94,189,0|7qhb40,95,184,1|7wyn3z,95,184,1|7wyn40,94,189,0|897drz,94,189,0|897ds0,95,184,1|8gen3z,95,184,1|8gen40,94,189,0|8rkhrz,94,189,0|8rkhs0,95,184,1|8z4prz,95,184,1|8z4ps0,94,189,0|9aakfz,94,189,0|9aakg0,95,184,1|9i7r3z,95,184,1|9i7r40,94,189,0|9tqkfz,94,189,0|9tqkg0,95,184,1|a0xtrz,95,184,1|a0xts0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|ajnwfz,95,184,1|ajnwg0,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b1o1rz,95,184,1|b1o1s0,94,189,0|bdwsfz,94,189,0|bdwsg0,95,184,1|bke4fz,95,184,1|bke4g0,94,189,0|bwmv3z,94,189,0|bwmv40,95,184,1|c3h5rz,95,184,1|c3h5s0,94,189,0|cfpwfz,94,189,0|cfpwg0,95,184,1|cm78fz,95,184,1|cm78g0,94,189,0|cyfz3z,94,189,0|cyfz40,95,184,1|d6073z,95,184,1|d60740,94,189,0|dh61rz,94,189,0|dh61s0,95,184,1|dp38fz,95,184,1|dp38g0,94,189,0|dzw4fz,94,189,0|dzw4g0,95,184,1|e7tb3z,95,184,1|e7tb40,94,189,0|eim73z,94,189,0|eim740,95,184,1|eqjdrz,95,184,1|eqjds0,94,189,0|f1c9rz,94,189,0|f1c9s0,95,184,1|f99gfz,95,184,1|f99gg0,94,189,0|fkfb3z,94,189,0|fkfb40,95,184,1|frzj3z,95,184,1|frzj40,94,189,0|fzwprz,94,189,0|fzwps0,95,184,1|gaplrz,95,184,1|gapls0,94,189,0|glvgfz,94,189,0|glvgg0,95,184,1|gtsn3z,95,184,1|gtsn40,94,189,0|h4lj3z,94,189,0|h4lj40,95,184,1|hciprz,95,184,1|hcips0,94,189,0|hnblrz,94,189,0|hnbls0,95,184,1|hv8sfz,95,184,1|hv8sg0,94,189,0|i6en3z,94,189,0|i6en40,95,184,1|idyv3z,95,184,1|idyv40,94,189,0|ip4prz,94,189,0|ip4ps0,95,184,1|ix1wfz,95,184,1|ix1wg0,94,189,0|j7usfz,94,189,0|j7usg0,95,184,1|jff0fz,95,184,1|jff0g0,94,189,0|jqkv3z,94,189,0|jqkv40,95,184,1|jyv0fz,95,184,1|jyv0g0,94,189,0|k881rz,94,189,0|k881s0,95,184,1|khl33z,95,184,1|khl340,94,189,0|kqy4fz,94,189,0|kqy4g0,95,184,1|l0b5rz,95,184,1|l0b5s0,94,189,0|l9o73z,94,189,0|l9o740,95,184,1|lj18fz,95,184,1|lj18g0,94,189,0|lse9rz,94,189,0|lse9s0,95,184,1|m1rb3z,95,184,1|m1rb40,94,189,0|mbhb3z,94,189,0|mbhb40,95,184,1|mkucfz,95,184,1|mkucg0,94,189,0|mu7drz,94,189,0|mu7ds0,95,184,1|n3kf3z,95,184,1|n3kf40,94,189,0|ncxgfz,94,189,0|ncxgg0,95,184,1|nmahrz,95,184,1|nmahs0,94,189,0|nvnj3z,94,189,0|nvnj40,95,184,1|o50kfz,95,184,1|o50kg0,94,189,0|oedlrz,94,189,0|oedls0,95,184,1|onqn3z,95,184,1|onqn40,94,189,0|ox3ofz,94,189,0|ox3og0,95,184,1|p6gprz,95,184,1|p6gps0,94,189,0|pg6prz,94,189,0|pg6ps0,95,184,1|ppjr3z,95,184,1|ppjr40,94,189,0|pywsfz,94,189,0|pywsg0,95,184,1|q89trz,95,184,1|q89ts0,94,189,0|qhmv3z,94,189,0|qhmv40,95,184,1|qqzwfz,95,184,1|qqzwg0,94,189,0|r0cxrz,94,189,0|r0cxs0,95,184,1|r9pz3z,95,184,1|r9pz40,94,189,0|rj30fz,94,189,0|rj30g0,95,184,1|rsg1rz,95,184,1|rsg1s0,94,189,0|s1t33z,94,189,0|s1t340,95,184,1|sbj33z,95,184,1|sbj340,94,189,0|skw4fz,94,189,0|skw4g0,95,184,1|su95rz,95,184,1|su95s0,94,189,0|t3m73z,94,189,0|t3m740,95,184,1|tcz8fz,95,184,1|tcz8g0,94,189,0|tmc9rz,94,189,0|tmc9s0,95,184,1|tvpb3z,95,184,1|tvpb40,94,189,0|u52cfz,94,189,0|u52cg0,95,184,1|uefdrz,95,184,1|uefds0,94,189,0|unsf3z,94,189,0|unsf40,95,184,1|ux5gfz,95,184,1|ux5gg0,94,189,0|v6vgfz,94,189,0|v6vgg0,95,184,1|vg8hrz,95,184,1|vg8hs0,94,189,0|vplj3z,94,189,0|vplj40,95,184,1|vyykfz,95,184,1|vyykg0,94,189,0|w8blrz,94,189,0|w8bls0,95,184,1|whon3z,95,184,1|whon40,94,189,0|wr1ofz,94,189,0|wr1og0,95,184,1|x0eprz,95,184,1|x0eps0,94,189,0|x9rr3z,94,189,0|x9rr40,95,184,1|xj4sfz,95,184,1|xj4sg0,94,189,0|xshtrz,94,189,0|xshts0,95,184,1|y1uv3z,95,184,1|y1uv40,94,189,0|ybkv3z,94,189,0|ybkv40,95,184,1|ykxwfz,95,184,1|ykxwg0,94,189,0|yuaxrz,94,189,0|yuaxs0,95,184,1|z3nz3z,95,184,1|z3nz40,94,189,0|zd10fz,94,189,0|zd10g0,95,184,1|zme1rz,95,184,1|zme1s0,94,189,0|zvr33z,94,189,0|zvr340,95,184,1|10544fz,95,184,1|10544g0,94,189,0|10eh5rz,94,189,0|10eh5s0,95,184,1|10nu73z,95,184,1|10nu740,94,189,0|10xk73z,94,189,0|10xk740,95,184,1|116x8fz,95,184,1|116x8g0,94,189,0|11ga9rz,94,189,0|11ga9s0,95,184,1|11pnb3z,95,184,1|11pnb40,94,189,0|11z0cfz,94,189,0|11z0cg0,95,184,1|128ddrz,95,184,1|128dds0,94,189,0|12hqf3z,94,189,0|12hqf40,95,184,1|12r3gfz,95,184,1|12r3gg0,94,189,0|130ghrz,94,189,0|130ghs0,95,184,1|139tj3z,95,184,1|139tj40,94,189,0|13j6kfz,94,189,0|13j6kg0,95,184,1|13sjlrz,95,184,1|13sjls0,94,189,0|1429lrz,94,189,0|1429ls0,95,184,1|14bmn3z,95,184,1|14bmn40,94,189,0|14kzofz,94,189,0|14kzog0,95,184,1|14ucprz,95,184,1|14ucps0,94,189,0|153pr3z,94,189,0|153pr40,95,184,1|15d2sfz,95,184,1|15d2sg0,94,189,0|15mftrz,94,189,0|15mfts0,95,184,1|15vsv3z,95,184,1|15vsv40,94,189,0|1655wfz,94,189,0|1655wg0,95,184,1|16eixrz,95,184,1|16eixs0,94,189,0|16nvz3z,94,189,0|16nvz40,95,184,1|16xlz3z,95,184,1|16xlz40,94,189,0|176z0fz,94,189,0|176z0g0,95,184,1|17gc1rz,95,184,1|17gc1s0,94,189,0|17pp33z,94,189,0|17pp340,95,184,1|17z24fz,95,184,1|17z24g0,94,189,0|188f5rz,94,189,0|188f5s0,95,184,1|18hs73z,95,184,1|18hs740,94,189,0|18r58fz,94,189,0|18r58g0,95,184,1|190i9rz,95,184,1|190i9s0,94,189,0|199vb3z,94,189,0|199vb40,95,184,1|19j8cfz,95,184,1|19j8cg0,94,189,0|19sycfz,94,189,0|19sycg0,95,184,1|1a2bdrz,95,184,1|1a2bds0,94,189,0|1abof3z,94,189,0|1abof40,95,184,1|1al1gfz,95,184,1|1al1gg0,94,189,0|1auehrz,94,189,0|1auehs0,95,184,1|1b3rj3z,95,184,1|1b3rj40,94,189,0|1bd4kfz,94,189,0|1bd4kg0,95,184,1|1bmhlrz,95,184,1|1bmhls0,94,189,0|1bvun3z,94,189,0|1bvun40,95,184,1|1c57ofz,95,184,1|1c57og0,94,189,0|1cekprz,94,189,0|1cekps0,95,184,1|1cnxr3z,95,184,1|1cnxr40,94,189,0|1cxnr3z,94,189,0|1cxnr40,95,184,1|1d70sfz,95,184,1|1d70sg0,94,189,0|1dgdtrz,94,189,0|1dgdts0,95,184,1|1dpqv3z,95,184,1|1dpqv40,94,189,0|1dz3wfz,94,189,0|1dz3wg0,95,184,1|1e8gxrz,95,184,1|1e8gxs0,94,189,0|1ehtz3z,94,189,0|1ehtz40,95,184,1|1er70fz,95,184,1|1er70g0,94,189,0|1f0k1rz,94,189,0|1f0k1s0,95,184,1|1f9x33z,95,184,1|1f9x340,94,189,0|1fjn33z,94,189,0|1fjn340,95,184,1|1ft04fz,95,184,1|1ft04g0,94,189,0|1g2d5rz,94,189,0|1g2d5s0,95,184,1|1gbq73z,95,184,1|1gbq740,94,189,0|1gl38fz,94,189,0|1gl38g0,95,184,1|1gug9rz,95,184,1|1gug9s0,94,189,0|1h3tb3z,94,189,0|1h3tb40,95,184,1|1hd6cfz,95,184,1|1hd6cg0,94,189,0|1hmjdrz,94,189,0|1hmjds0,95,184,1|1hvwf3z,95,184,1|1hvwf40,94,189,0|1i59gfz,94,189,0|1i59gg0,95,184,1|1iemhrz,95,184,1|1iemhs0,94,189,0|1iochrz,94,189,0|1iochs0,95,184,1|1ixpj3z,95,184,1|1ixpj40,94,189,0|1j72kfz,94,189,0|1j72kg0,95,184,1|1jgflrz,95,184,1|1jgfls0,94,189,0|1jpsn3z,94,189,0|1jpsn40,95,184,1|1jz5ofz,95,184,1|1jz5og0,94,189,0|1k8iprz,94,189,0|1k8ips0,95,184,1|1khvr3z,95,184,1|1khvr40,94,189,0|1kr8sfz,94,189,0|1kr8sg0,95,184,1|1l0ltrz,95,184,1|1l0lts0,94,189,0|1l9yv3z,94,189,0|1l9yv40,95,184,1|1ljov3z,95,184,1|1ljov40,94,189,0|1lt1wfz,94,189,0|1lt1wg0,95,184,1|1m2exrz,95,184,1|1m2exs0,94,189,0|1mbrz3z,94,189,0|1mbrz40,95,184,1|1ml50fz,95,184,1|1ml50g0,94,189,0|1mui1rz,94,189,0|1mui1s0,95,184,1|1n3v33z,95,184,1|1n3v340,94,189,0|1nd84fz,94,189,0|1nd84g0,95,184,1|1nml5rz,95,184,1|1nml5s0,94,189,0|1nvy73z,94,189,0|1nvy740,95,184,1|1o5b8fz,95,184,1|1o5b8g0,94,189,0|1of18fz,94,189,0|1of18g0,95,184,1|1ooe9rz,95,184,1|1ooe9s0,94,189,0|1oxrb3z,94,189,0|1oxrb40,95,184,1|1p74cfz,95,184,1|1p74cg0,94,189,0|1pghdrz,94,189,0|1pghds0,95,184,1|1ppuf3z,95,184,1|1ppuf40,94,189,0|1pz7gfz,94,189,0|1pz7gg0,95,184,1|1q8khrz,95,184,1|1q8khs0,94,189,0|1qhxj3z,94,189,0|1qhxj40,95,184,1|1qrakfz,95,184,1|1qrakg0,94,189,0|1r0nlrz,94,189,0|1r0nls0,95,184,1|1ra0n3z,95,184,1|1ra0n40,94,189,0|1rjqn3z,94,189,0|1rjqn40,95,184,1|1rt3ofz,95,184,1|1rt3og0,94,189,0|1s2gprz,94,189,0|1s2gps0,95,184,1|1sbtr3z,95,184,1|1sbtr40,94,189,0|1sl6sfz,94,189,0|1sl6sg0,95,184,1|1sujtrz,95,184,1|1sujts0,94,189,0|1t3wv3z,94,189,0|1t3wv40,95,184,1|1td9wfz,95,184,1|1td9wg0,94,189,0|1tmmxrz,94,189,0|1tmmxs0,95,184,1|1tvzz3z,95,184,1|1tvzz40,94,189,0|1u5pz3z,94,189,0|1u5pz40,95,184,1|1uf30fz,95,184,1|1uf30g0,94,189,0|1uog1rz,94,189,0|1uog1s0,95,184,1|1uxt33z,95,184,1|1uxt340,94,189,0|1v764fz,94,189,0|1v764g0,95,184,1|1vgj5rz,95,184,1|1vgj5s0,94,189,0|1vpw73z,94,189,0|1vpw740,95,184,1|NaN,95,184,1","Australia/Perth|,0,318,0|-12nxusd,0,318,0|-12nxusc,144,183,0|-rnsm01,144,183,0|-rnsm00,145,218,1|-rjiwo1,145,218,1|-rjiwo0,144,183,0|-em3co1,144,183,0|-em3co0,145,218,1|-ehm8o1,145,218,1|-ehm8o0,144,183,0|-e897c1,144,183,0|-e897c0,145,218,1|-dyw601,145,218,1|-dyw600,144,183,0|2iisnz,144,183,0|2iiso0,145,218,1|2p04nz,145,218,1|2p04o0,144,183,0|77rdzz,144,183,0|77re00,145,218,1|7e8pzz,145,218,1|7e8q00,144,183,0|beztzz,144,183,0|bezu00,145,218,1|bke9zz,145,218,1|bkea00,144,183,0|j9nrbz,144,183,0|j9nrc0,145,218,1|jff5zz,145,218,1|jff600,144,183,0|jql0nz,144,183,0|jql0o0,145,218,1|jyi7bz,145,218,1|jyi7c0,144,183,0|k9b3bz,144,183,0|k9b3c0,145,218,1|kh89zz,145,218,1|kh8a00,144,183,0|NaN,144,183,0","Australia/Sydney|,0,319,0|-133j5c5,0,319,0|-133j5c4,94,189,0|-rnsrk1,94,189,0|-rnsrk0,95,184,1|-rjj281,95,184,1|-rjj280,94,189,0|-em3i81,94,189,0|-em3i80,95,184,1|-ehme81,95,184,1|-ehme80,94,189,0|-e89cw1,94,189,0|-e89cw0,95,184,1|-dywbk1,95,184,1|-dywbk0,94,189,0|-dp6bk1,94,189,0|-dp6bk0,95,184,1|-dg68w1,95,184,1|-dg68w0,94,189,0|ycf3z,94,189,0|ycf40,95,184,1|14gsfz,95,184,1|14gsg0,94,189,0|1h2hrz,94,189,0|1h2hs0,95,184,1|1njtrz,95,184,1|1njts0,94,189,0|1zskfz,94,189,0|1zskg0,95,184,1|269wfz,95,184,1|269wg0,94,189,0|2iin3z,94,189,0|2iin40,95,184,1|2ozz3z,95,184,1|2ozz40,94,189,0|318prz,94,189,0|318ps0,95,184,1|3830fz,95,184,1|3830g0,94,189,0|3kbr3z,94,189,0|3kbr40,95,184,1|3qt33z,95,184,1|3qt340,94,189,0|431trz,94,189,0|431ts0,95,184,1|49j5rz,95,184,1|49j5s0,94,189,0|4lrwfz,94,189,0|4lrwg0,95,184,1|4s98fz,95,184,1|4s98g0,94,189,0|54hz3z,94,189,0|54hz40,95,184,1|5azb3z,95,184,1|5azb40,94,189,0|5n81rz,94,189,0|5n81s0,95,184,1|5tpdrz,95,184,1|5tpds0,94,189,0|65y4fz,94,189,0|65y4g0,95,184,1|6e89rz,95,184,1|6e89s0,94,189,0|6p15rz,94,189,0|6p15s0,95,184,1|6vihrz,95,184,1|6vihs0,94,189,0|77r8fz,94,189,0|77r8g0,95,184,1|7e8kfz,95,184,1|7e8kg0,94,189,0|7qhb3z,94,189,0|7qhb40,95,184,1|7wyn3z,95,184,1|7wyn40,94,189,0|897drz,94,189,0|897ds0,95,184,1|8gen3z,95,184,1|8gen40,94,189,0|8rkhrz,94,189,0|8rkhs0,95,184,1|8z4prz,95,184,1|8z4ps0,94,189,0|9anj3z,94,189,0|9anj40,95,184,1|9i7r3z,95,184,1|9i7r40,94,189,0|9tqkfz,94,189,0|9tqkg0,95,184,1|a0xtrz,95,184,1|a0xts0,94,189,0|acgn3z,94,189,0|acgn40,95,184,1|aixz3z,95,184,1|aixz40,94,189,0|av6prz,94,189,0|av6ps0,95,184,1|b1o1rz,95,184,1|b1o1s0,94,189,0|bdwsfz,94,189,0|bdwsg0,95,184,1|bke4fz,95,184,1|bke4g0,94,189,0|bwmv3z,94,189,0|bwmv40,95,184,1|c3h5rz,95,184,1|c3h5s0,94,189,0|cfpwfz,94,189,0|cfpwg0,95,184,1|cm78fz,95,184,1|cm78g0,94,189,0|cyfz3z,94,189,0|cyfz40,95,184,1|d4xb3z,95,184,1|d4xb40,94,189,0|dh61rz,94,189,0|dh61s0,95,184,1|dp38fz,95,184,1|dp38g0,94,189,0|dzw4fz,94,189,0|dzw4g0,95,184,1|e7tb3z,95,184,1|e7tb40,94,189,0|eim73z,94,189,0|eim740,95,184,1|eqjdrz,95,184,1|eqjds0,94,189,0|f1c9rz,94,189,0|f1c9s0,95,184,1|f99gfz,95,184,1|f99gg0,94,189,0|fkfb3z,94,189,0|fkfb40,95,184,1|frzj3z,95,184,1|frzj40,94,189,0|fzwprz,94,189,0|fzwps0,95,184,1|gaplrz,95,184,1|gapls0,94,189,0|glvgfz,94,189,0|glvgg0,95,184,1|gtsn3z,95,184,1|gtsn40,94,189,0|h4lj3z,94,189,0|h4lj40,95,184,1|hciprz,95,184,1|hcips0,94,189,0|hnblrz,94,189,0|hnbls0,95,184,1|hv8sfz,95,184,1|hv8sg0,94,189,0|i6en3z,94,189,0|i6en40,95,184,1|idyv3z,95,184,1|idyv40,94,189,0|ip4prz,94,189,0|ip4ps0,95,184,1|ix1wfz,95,184,1|ix1wg0,94,189,0|j7usfz,94,189,0|j7usg0,95,184,1|jff0fz,95,184,1|jff0g0,94,189,0|jqkv3z,94,189,0|jqkv40,95,184,1|jyv0fz,95,184,1|jyv0g0,94,189,0|k881rz,94,189,0|k881s0,95,184,1|khl33z,95,184,1|khl340,94,189,0|kqy4fz,94,189,0|kqy4g0,95,184,1|l0b5rz,95,184,1|l0b5s0,94,189,0|l9o73z,94,189,0|l9o740,95,184,1|lj18fz,95,184,1|lj18g0,94,189,0|lse9rz,94,189,0|lse9s0,95,184,1|m1rb3z,95,184,1|m1rb40,94,189,0|mbhb3z,94,189,0|mbhb40,95,184,1|mkucfz,95,184,1|mkucg0,94,189,0|mu7drz,94,189,0|mu7ds0,95,184,1|n3kf3z,95,184,1|n3kf40,94,189,0|ncxgfz,94,189,0|ncxgg0,95,184,1|nmahrz,95,184,1|nmahs0,94,189,0|nvnj3z,94,189,0|nvnj40,95,184,1|o50kfz,95,184,1|o50kg0,94,189,0|oedlrz,94,189,0|oedls0,95,184,1|onqn3z,95,184,1|onqn40,94,189,0|ox3ofz,94,189,0|ox3og0,95,184,1|p6gprz,95,184,1|p6gps0,94,189,0|pg6prz,94,189,0|pg6ps0,95,184,1|ppjr3z,95,184,1|ppjr40,94,189,0|pywsfz,94,189,0|pywsg0,95,184,1|q89trz,95,184,1|q89ts0,94,189,0|qhmv3z,94,189,0|qhmv40,95,184,1|qqzwfz,95,184,1|qqzwg0,94,189,0|r0cxrz,94,189,0|r0cxs0,95,184,1|r9pz3z,95,184,1|r9pz40,94,189,0|rj30fz,94,189,0|rj30g0,95,184,1|rsg1rz,95,184,1|rsg1s0,94,189,0|s1t33z,94,189,0|s1t340,95,184,1|sbj33z,95,184,1|sbj340,94,189,0|skw4fz,94,189,0|skw4g0,95,184,1|su95rz,95,184,1|su95s0,94,189,0|t3m73z,94,189,0|t3m740,95,184,1|tcz8fz,95,184,1|tcz8g0,94,189,0|tmc9rz,94,189,0|tmc9s0,95,184,1|tvpb3z,95,184,1|tvpb40,94,189,0|u52cfz,94,189,0|u52cg0,95,184,1|uefdrz,95,184,1|uefds0,94,189,0|unsf3z,94,189,0|unsf40,95,184,1|ux5gfz,95,184,1|ux5gg0,94,189,0|v6vgfz,94,189,0|v6vgg0,95,184,1|vg8hrz,95,184,1|vg8hs0,94,189,0|vplj3z,94,189,0|vplj40,95,184,1|vyykfz,95,184,1|vyykg0,94,189,0|w8blrz,94,189,0|w8bls0,95,184,1|whon3z,95,184,1|whon40,94,189,0|wr1ofz,94,189,0|wr1og0,95,184,1|x0eprz,95,184,1|x0eps0,94,189,0|x9rr3z,94,189,0|x9rr40,95,184,1|xj4sfz,95,184,1|xj4sg0,94,189,0|xshtrz,94,189,0|xshts0,95,184,1|y1uv3z,95,184,1|y1uv40,94,189,0|ybkv3z,94,189,0|ybkv40,95,184,1|ykxwfz,95,184,1|ykxwg0,94,189,0|yuaxrz,94,189,0|yuaxs0,95,184,1|z3nz3z,95,184,1|z3nz40,94,189,0|zd10fz,94,189,0|zd10g0,95,184,1|zme1rz,95,184,1|zme1s0,94,189,0|zvr33z,94,189,0|zvr340,95,184,1|10544fz,95,184,1|10544g0,94,189,0|10eh5rz,94,189,0|10eh5s0,95,184,1|10nu73z,95,184,1|10nu740,94,189,0|10xk73z,94,189,0|10xk740,95,184,1|116x8fz,95,184,1|116x8g0,94,189,0|11ga9rz,94,189,0|11ga9s0,95,184,1|11pnb3z,95,184,1|11pnb40,94,189,0|11z0cfz,94,189,0|11z0cg0,95,184,1|128ddrz,95,184,1|128dds0,94,189,0|12hqf3z,94,189,0|12hqf40,95,184,1|12r3gfz,95,184,1|12r3gg0,94,189,0|130ghrz,94,189,0|130ghs0,95,184,1|139tj3z,95,184,1|139tj40,94,189,0|13j6kfz,94,189,0|13j6kg0,95,184,1|13sjlrz,95,184,1|13sjls0,94,189,0|1429lrz,94,189,0|1429ls0,95,184,1|14bmn3z,95,184,1|14bmn40,94,189,0|14kzofz,94,189,0|14kzog0,95,184,1|14ucprz,95,184,1|14ucps0,94,189,0|153pr3z,94,189,0|153pr40,95,184,1|15d2sfz,95,184,1|15d2sg0,94,189,0|15mftrz,94,189,0|15mfts0,95,184,1|15vsv3z,95,184,1|15vsv40,94,189,0|1655wfz,94,189,0|1655wg0,95,184,1|16eixrz,95,184,1|16eixs0,94,189,0|16nvz3z,94,189,0|16nvz40,95,184,1|16xlz3z,95,184,1|16xlz40,94,189,0|176z0fz,94,189,0|176z0g0,95,184,1|17gc1rz,95,184,1|17gc1s0,94,189,0|17pp33z,94,189,0|17pp340,95,184,1|17z24fz,95,184,1|17z24g0,94,189,0|188f5rz,94,189,0|188f5s0,95,184,1|18hs73z,95,184,1|18hs740,94,189,0|18r58fz,94,189,0|18r58g0,95,184,1|190i9rz,95,184,1|190i9s0,94,189,0|199vb3z,94,189,0|199vb40,95,184,1|19j8cfz,95,184,1|19j8cg0,94,189,0|19sycfz,94,189,0|19sycg0,95,184,1|1a2bdrz,95,184,1|1a2bds0,94,189,0|1abof3z,94,189,0|1abof40,95,184,1|1al1gfz,95,184,1|1al1gg0,94,189,0|1auehrz,94,189,0|1auehs0,95,184,1|1b3rj3z,95,184,1|1b3rj40,94,189,0|1bd4kfz,94,189,0|1bd4kg0,95,184,1|1bmhlrz,95,184,1|1bmhls0,94,189,0|1bvun3z,94,189,0|1bvun40,95,184,1|1c57ofz,95,184,1|1c57og0,94,189,0|1cekprz,94,189,0|1cekps0,95,184,1|1cnxr3z,95,184,1|1cnxr40,94,189,0|1cxnr3z,94,189,0|1cxnr40,95,184,1|1d70sfz,95,184,1|1d70sg0,94,189,0|1dgdtrz,94,189,0|1dgdts0,95,184,1|1dpqv3z,95,184,1|1dpqv40,94,189,0|1dz3wfz,94,189,0|1dz3wg0,95,184,1|1e8gxrz,95,184,1|1e8gxs0,94,189,0|1ehtz3z,94,189,0|1ehtz40,95,184,1|1er70fz,95,184,1|1er70g0,94,189,0|1f0k1rz,94,189,0|1f0k1s0,95,184,1|1f9x33z,95,184,1|1f9x340,94,189,0|1fjn33z,94,189,0|1fjn340,95,184,1|1ft04fz,95,184,1|1ft04g0,94,189,0|1g2d5rz,94,189,0|1g2d5s0,95,184,1|1gbq73z,95,184,1|1gbq740,94,189,0|1gl38fz,94,189,0|1gl38g0,95,184,1|1gug9rz,95,184,1|1gug9s0,94,189,0|1h3tb3z,94,189,0|1h3tb40,95,184,1|1hd6cfz,95,184,1|1hd6cg0,94,189,0|1hmjdrz,94,189,0|1hmjds0,95,184,1|1hvwf3z,95,184,1|1hvwf40,94,189,0|1i59gfz,94,189,0|1i59gg0,95,184,1|1iemhrz,95,184,1|1iemhs0,94,189,0|1iochrz,94,189,0|1iochs0,95,184,1|1ixpj3z,95,184,1|1ixpj40,94,189,0|1j72kfz,94,189,0|1j72kg0,95,184,1|1jgflrz,95,184,1|1jgfls0,94,189,0|1jpsn3z,94,189,0|1jpsn40,95,184,1|1jz5ofz,95,184,1|1jz5og0,94,189,0|1k8iprz,94,189,0|1k8ips0,95,184,1|1khvr3z,95,184,1|1khvr40,94,189,0|1kr8sfz,94,189,0|1kr8sg0,95,184,1|1l0ltrz,95,184,1|1l0lts0,94,189,0|1l9yv3z,94,189,0|1l9yv40,95,184,1|1ljov3z,95,184,1|1ljov40,94,189,0|1lt1wfz,94,189,0|1lt1wg0,95,184,1|1m2exrz,95,184,1|1m2exs0,94,189,0|1mbrz3z,94,189,0|1mbrz40,95,184,1|1ml50fz,95,184,1|1ml50g0,94,189,0|1mui1rz,94,189,0|1mui1s0,95,184,1|1n3v33z,95,184,1|1n3v340,94,189,0|1nd84fz,94,189,0|1nd84g0,95,184,1|1nml5rz,95,184,1|1nml5s0,94,189,0|1nvy73z,94,189,0|1nvy740,95,184,1|1o5b8fz,95,184,1|1o5b8g0,94,189,0|1of18fz,94,189,0|1of18g0,95,184,1|1ooe9rz,95,184,1|1ooe9s0,94,189,0|1oxrb3z,94,189,0|1oxrb40,95,184,1|1p74cfz,95,184,1|1p74cg0,94,189,0|1pghdrz,94,189,0|1pghds0,95,184,1|1ppuf3z,95,184,1|1ppuf40,94,189,0|1pz7gfz,94,189,0|1pz7gg0,95,184,1|1q8khrz,95,184,1|1q8khs0,94,189,0|1qhxj3z,94,189,0|1qhxj40,95,184,1|1qrakfz,95,184,1|1qrakg0,94,189,0|1r0nlrz,94,189,0|1r0nls0,95,184,1|1ra0n3z,95,184,1|1ra0n40,94,189,0|1rjqn3z,94,189,0|1rjqn40,95,184,1|1rt3ofz,95,184,1|1rt3og0,94,189,0|1s2gprz,94,189,0|1s2gps0,95,184,1|1sbtr3z,95,184,1|1sbtr40,94,189,0|1sl6sfz,94,189,0|1sl6sg0,95,184,1|1sujtrz,95,184,1|1sujts0,94,189,0|1t3wv3z,94,189,0|1t3wv40,95,184,1|1td9wfz,95,184,1|1td9wg0,94,189,0|1tmmxrz,94,189,0|1tmmxs0,95,184,1|1tvzz3z,95,184,1|1tvzz40,94,189,0|1u5pz3z,94,189,0|1u5pz40,95,184,1|1uf30fz,95,184,1|1uf30g0,94,189,0|1uog1rz,94,189,0|1uog1s0,95,184,1|1uxt33z,95,184,1|1uxt340,94,189,0|1v764fz,94,189,0|1v764g0,95,184,1|1vgj5rz,95,184,1|1vgj5s0,94,189,0|1vpw73z,94,189,0|1vpw740,95,184,1|NaN,95,184,1","Etc/GMT+1|,199,13,0","Etc/GMT+10|,208,34,0","Etc/GMT+11|,209,33,0","Etc/GMT+12|,210,396,0","Etc/GMT+2|,200,43,0","Etc/GMT+3|,201,41,0","Etc/GMT+4|,202,40,0","Etc/GMT+5|,203,59,0","Etc/GMT+6|,204,63,0","Etc/GMT+7|,205,62,0","Etc/GMT+8|,206,38,0","Etc/GMT+9|,207,35,0","Etc/GMT-1|,198,8,0","Etc/GMT-10|,189,189,0","Etc/GMT-11|,188,184,0","Etc/GMT-12|,187,194,0","Etc/GMT-13|,186,195,0","Etc/GMT-14|,185,201,0","Etc/GMT-2|,197,9,0","Etc/GMT-3|,196,4,0","Etc/GMT-4|,195,203,0","Etc/GMT-5|,194,186,0","Etc/GMT-6|,193,190,0","Etc/GMT-7|,192,185,0","Etc/GMT-8|,191,183,0","Etc/GMT-9|,190,218,0","Europe/Amsterdam|,0,320,0|-1ygf4wl,0,320,0|-1ygf4wk,42,320,0|-s0dvkl,42,320,0|-s0dvkk,23,321,1|-rsimcl,23,321,1|-rsimck,42,320,0|-ridkol,42,320,0|-ridkok,23,321,1|-rage0l,23,321,1|-rage0k,42,320,0|-r0dfcl,42,320,0|-r0dfck,23,321,1|-qr0e0l,23,321,1|-qr0e0k,42,320,0|-qhae0l,42,320,0|-qhae0k,23,321,1|-q8abcl,23,321,1|-q8abck,42,320,0|-pykbcl,42,320,0|-pykbck,23,321,1|-ppk8ol,23,321,1|-ppk8ok,42,320,0|-pfu8ol,42,320,0|-pfu8ok,23,321,1|-p6u60l,23,321,1|-p6u60k,42,320,0|-oxizcl,42,320,0|-oxizck,23,321,1|-ong0ol,23,321,1|-ong0ok,42,320,0|-obazcl,42,320,0|-obazck,23,321,1|-o4py0l,23,321,1|-o4py0k,42,320,0|-nvpvcl,42,320,0|-nvpvck,23,321,1|-nlzvcl,23,321,1|-nlzvck,42,320,0|-n9hvcl,42,320,0|-n9hvck,23,321,1|-n39sol,23,321,1|-n39sok,42,320,0|-mrsu0l,42,320,0|-mrsu0k,23,321,1|-mkjq0l,23,321,1|-mkjq0k,42,320,0|-m90wol,42,320,0|-m90wok,23,321,1|-m1tncl,23,321,1|-m1tnck,42,320,0|-lq74ol,42,320,0|-lq74ok,23,321,1|-liqm0l,23,321,1|-liqm0k,42,320,0|-l7f7cl,42,320,0|-l7f7ck,23,321,1|-l00jcl,23,321,1|-l00jck,42,320,0|-kona0l,42,320,0|-kona0k,23,321,1|-khagol,23,321,1|-khagok,42,320,0|-k5vcol,42,320,0|-k5vcok,23,321,1|-jyke0l,23,321,1|-jyke0k,42,320,0|-jmom0l,42,320,0|-jmom0k,23,321,1|-jfubcl,23,321,1|-jfubck,42,320,0|-j49ncl,42,320,0|-j49nck,23,321,1|-iwra0l,23,321,1|-iwra0k,42,320,0|-ilhq0l,42,320,0|-ilhq0k,23,321,1|-ie17cl,23,321,1|-ie17ck,42,320,0|-i2psol,42,320,0|-i2psok,23,321,1|-hvb4ol,23,321,1|-hvb4ok,42,320,0|-hjw0ol,42,320,0|-hjw0ok,23,321,1|-hcl20l,23,321,1|-hcl20k,42,320,0|-h0r4ol,42,320,0|-h0r4ok,23,321,1|-gypacl,23,321,1|-gypack,146,322,1|-gtuzdd,146,322,1|-gtuzdc,147,323,0|-gic61d,147,323,0|-gic61c,146,322,1|-gb4wpd,146,322,1|-gb4wpc,147,323,0|-fzk8pd,147,323,0|-fzk8pc,146,322,1|-fs1vdd,146,322,1|-fs1vdc,147,323,0|-fgorld,147,323,0|-fgorlc,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|3s9mrz,8,8,0|3s9ms0,9,9,1|419pfz,9,9,1|419pg0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Andorra|,0,324,0|-100edm5,0,324,0|-100edm4,6,1,0|-c4xmo1,6,1,0|-c4xmo0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Astrakhan|,0,325,0|-nu2zkd,0,325,0|-nu2zkc,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,105,203,0|blufrz,105,203,0|blufs0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,100,4,0|dp3rvz,100,4,0|dp3rw0,105,203,1|dzwnvz,105,203,1|dzwnw0,100,4,0|e7tujz,100,4,0|e7tuk0,105,203,1|eimqjz,105,203,1|eimqk0,100,4,0|eqjx7z,100,4,0|eqjx80,105,203,1|f1ct7z,105,203,1|f1ct80,100,4,0|f99zvz,100,4,0|f99zw0,105,203,1|fkfujz,105,203,1|fkfuk0,100,4,0|fs02jz,100,4,0|fs02k0,105,203,1|g35x7z,105,203,1|g35x80,100,4,0|gaq57z,100,4,0|gaq580,105,203,1|glvzvz,105,203,1|glvzw0,100,4,0|gtt6jz,100,4,0|gtt6k0,105,203,1|h4m2jz,105,203,1|h4m2k0,100,4,0|hcj97z,100,4,0|hcj980,105,203,1|hnc57z,105,203,1|hnc580,100,4,0|hv9bvz,100,4,0|hv9bw0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,1|ip597z,105,203,1|ip5980,100,4,0|iwph7z,100,4,0|iwph80,105,203,1|j7vbvz,105,203,1|j7vbw0,100,4,0|jffjvz,100,4,0|jffjw0,105,203,1|jqlejz,105,203,1|jqlek0,100,4,0|jyil7z,100,4,0|jyil80,105,203,1|k9bh7z,105,203,1|k9bh80,100,4,0|kh8nvz,100,4,0|kh8nw0,105,203,1|ks1jvz,105,203,1|ks1jw0,100,4,0|kzyqjz,100,4,0|kzyqk0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|ne0t3z,105,203,0|ne0t40,100,4,0|o4o57z,100,4,0|o4o580,105,203,0|NaN,105,203,0","Europe/Athens|,0,326,0|-12rxtq5,0,326,0|-12rxtq4,42,326,0|-rvv0ch,42,326,0|-rvv0cg,14,9,0|-jkbpk1,14,9,0|-jkbpk0,15,4,1|-jhg301,15,4,1|-jhg300,14,9,0|-ezx6w1,14,9,0|-ezx6w0,15,4,1|-eyqoc1,15,4,1|-eyqoc0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dys2s1,8,8,0|-dys2s0,9,9,1|-dp4081,9,9,1|-dp4080,8,8,0|-dfp1g1,8,8,0|-dfp1g0,14,9,0|-94v1k1,14,9,0|-94v1k0,15,4,1|-8yhho1,15,4,1|-8yhho0,14,9,0|2r4d3z,14,9,0|2r4d40,15,4,1|32ul3z,15,4,1|32ul40,14,9,0|39wfzz,14,9,0|39wg00,15,4,1|3j9hbz,15,4,1|3j9hc0,14,9,0|3s9jzz,14,9,0|3s9k00,15,4,1|41bhbz,15,4,1|41bhc0,14,9,0|4azmnz,14,9,0|4azmo0,15,4,1|4jzs3z,15,4,1|4jzs40,14,9,0|4tq8rz,14,9,0|4tq8s0,15,4,1|530t7z,15,4,1|530t80,14,9,0|5cjbrz,14,9,0|5cjbs0,15,4,1|5lskzz,15,4,1|5lsl00,14,9,0|5v5xfz,14,9,0|5v5xg0,15,4,1|64iyrz,15,4,1|64iys0,14,9,0|6dw03z,14,9,0|6dw040,15,4,1|6n91fz,15,4,1|6n91g0,14,9,0|6wm2rz,14,9,0|6wm2s0,15,4,1|75z43z,15,4,1|75z440,14,9,0|7fc5fz,14,9,0|7fc5g0,15,4,1|7p25fz,15,4,1|7p25g0,14,9,0|7yf6rz,14,9,0|7yf6s0,15,4,1|87s83z,15,4,1|87s840,14,9,0|8h59fz,14,9,0|8h59g0,15,4,1|8qiarz,15,4,1|8qias0,14,9,0|8zvc3z,14,9,0|8zvc40,15,4,1|998dfz,15,4,1|998dg0,14,9,0|9ilerz,14,9,0|9iles0,15,4,1|9ryg3z,15,4,1|9ryg40,14,9,0|a1bhfz,14,9,0|a1bhg0,15,4,1|aaoirz,15,4,1|aaois0,14,9,0|ak1k3z,14,9,0|ak1k40,15,4,1|atrk3z,15,4,1|atrk40,14,9,0|b34lfz,14,9,0|b34lg0,15,4,1|bchmrz,15,4,1|bchms0,14,9,0|bluo3z,14,9,0|bluo40,15,4,1|bv7pfz,15,4,1|bv7pg0,14,9,0|c4kqrz,14,9,0|c4kqs0,15,4,1|cdxs3z,15,4,1|cdxs40,14,9,0|cnatfz,14,9,0|cnatg0,15,4,1|cwnurz,15,4,1|cwnus0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Belgrade|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Berlin|,0,328,0|-1421155,0,328,0|-1421154,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cucg01,9,9,1|-cucg00,148,4,1|-co0o01,148,4,1|-co0o00,9,9,1|-cl6qk1,9,9,1|-cl6qk0,8,8,0|-cdmik1,8,8,0|-cdmik0,9,9,1|-c4kl81,9,9,1|-c4kl80,8,8,0|-bv9bs1,8,8,0|-bv9bs0,9,9,1|-btgl81,9,9,1|-btgl80,148,4,1|-bqxxc1,148,4,1|-bqxxc0,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bbtek1,8,8,0|-bbtek0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-atgak1,8,8,0|-atgak0,9,9,1|-akg7w1,9,9,1|-akg7w0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Bratislava|,0,329,0|-1qmkw09,0,329,0|-1qmkw08,5,329,0|-14u7uo9,5,329,0|-14u7uo8,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cnnmk1,9,9,1|-cnnmk0,8,8,0|-cchrw1,8,8,0|-cchrw0,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-c1qns1,8,8,0|-c1qns0,1,1,1|-bxf3s1,1,1,1|-bxf3s0,8,8,0|-bujh81,8,8,0|-bujh80,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bbtek1,8,8,0|-bbtek0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-ati581,8,8,0|-ati580,9,9,1|-akg7w1,9,9,1|-akg7w0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Brussels|,0,330,0|-1ayy3h7,0,330,0|-1ayy3h6,54,330,0|-14j9c01,54,330,0|-14j9c00,6,1,0|-ss5uo1,6,1,0|-ss5uo0,8,8,0|-s0dxg1,8,8,0|-s0dxg0,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-qotw41,8,8,0|-qotw40,6,1,0|-qj59g1,6,1,0|-qj59g0,7,8,1|-q7zes1,7,8,1|-q7zes0,6,1,0|-q15441,6,1,0|-q15440,7,8,1|-po6g41,7,8,1|-po6g40,6,1,0|-pgvhg1,6,1,0|-pgvhg0,7,8,1|-p5atg1,7,8,1|-p5atg0,6,1,0|-oxj6s1,6,1,0|-oxj6s0,7,8,1|-ong841,7,8,1|-ong840,6,1,0|-odd9g1,6,1,0|-odd9g0,7,8,1|-o4q5g1,7,8,1|-o4q5g0,6,1,0|-nvq2s1,6,1,0|-nvq2s0,7,8,1|-nm02s1,7,8,1|-nm02s0,6,1,0|-ncn1g1,6,1,0|-ncn1g0,7,8,1|-n3a041,7,8,1|-n3a040,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjxg1,7,8,1|-mkjxg0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1tus1,7,8,1|-m1tus0,6,1,0|-lrqw41,6,1,0|-lrqw40,7,8,1|-liql41,7,8,1|-liql40,6,1,0|-l8nmg1,6,1,0|-l8nmg0,7,8,1|-l00ig1,7,8,1|-l00ig0,6,1,0|-kqaig1,6,1,0|-kqaig0,7,8,1|-khafs1,7,8,1|-khafs0,6,1,0|-k77h41,6,1,0|-k77h40,7,8,1|-jykd41,7,8,1|-jykd40,6,1,0|-jp7bs1,6,1,0|-jp7bs0,7,8,1|-jfuag1,7,8,1|-jfuag0,6,1,0|-j6u7s1,6,1,0|-j6u7s0,7,8,1|-iwr941,7,8,1|-iwr940,6,1,0|-ine7s1,6,1,0|-ine7s0,7,8,1|-ie16g1,7,8,1|-ie16g0,6,1,0|-i513s1,6,1,0|-i513s0,7,8,1|-hvb3s1,7,8,1|-hvb3s0,6,1,0|-hl8541,6,1,0|-hl8540,7,8,1|-hcl141,7,8,1|-hcl140,6,1,0|-h37zs1,6,1,0|-h37zs0,7,8,1|-gtuyg1,7,8,1|-gtuyg0,6,1,0|-gkuvs1,6,1,0|-gkuvs0,7,8,1|-gb4vs1,7,8,1|-gb4vs0,6,1,0|-g11x41,6,1,0|-g11x40,7,8,1|-fpw2g1,7,8,1|-fpw2g0,6,1,0|-fkul41,6,1,0|-fkul40,7,8,1|-fgh6g1,7,8,1|-fgh6g0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d75h81,9,9,1|-d75h80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|-cbtp81,8,8,0|-cbtp80,9,9,1|-c4kl81,9,9,1|-c4kl80,8,8,0|3s9mrz,8,8,0|3s9ms0,9,9,1|419pfz,9,9,1|419pg0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Bucharest|,0,331,0|-14u7wu1,0,331,0|-14u7wu0,54,331,0|-k29zi1,54,331,0|-k29zi0,14,9,0|-jmqqw1,14,9,0|-jmqqw0,15,4,1|-jfulk1,15,4,1|-jfulk0,14,9,0|-j6hk81,14,9,0|-j6hk80,15,4,1|-ix4iw1,15,4,1|-ix4iw0,14,9,0|-ineiw1,14,9,0|-ineiw0,15,4,1|-ie1hk1,15,4,1|-ie1hk0,14,9,0|-i4og81,14,9,0|-i4og80,15,4,1|-hvbew1,15,4,1|-hvbew0,14,9,0|-hlydk1,14,9,0|-hlydk0,15,4,1|-hclc81,15,4,1|-hclc80,14,9,0|-h38aw1,14,9,0|-h38aw0,15,4,1|-gtv9k1,15,4,1|-gtv9k0,14,9,0|-gki881,14,9,0|-gki880,15,4,1|-gb56w1,15,4,1|-gb56w0,14,9,0|-g1s5k1,14,9,0|-g1s5k0,15,4,1|-fsf481,15,4,1|-fsf480,14,9,0|4wl93z,14,9,0|4wl940,15,4,1|532ibz,15,4,1|532ic0,14,9,0|5csibz,14,9,0|5csic0,15,4,1|5lsnrz,15,4,1|5lsns0,14,9,0|5v5unz,14,9,0|5v5uo0,15,4,1|64ivzz,15,4,1|64iw00,14,9,0|6dvxbz,14,9,0|6dvxc0,15,4,1|6n8ynz,15,4,1|6n8yo0,14,9,0|6wlzzz,14,9,0|6wm000,15,4,1|75z1bz,15,4,1|75z1c0,14,9,0|7fc2nz,14,9,0|7fc2o0,15,4,1|7p22nz,15,4,1|7p22o0,14,9,0|7yf3zz,14,9,0|7yf400,15,4,1|87s5bz,15,4,1|87s5c0,14,9,0|8h56nz,14,9,0|8h56o0,15,4,1|8qi7zz,15,4,1|8qi800,14,9,0|8zv9bz,14,9,0|8zv9c0,15,4,1|998anz,15,4,1|998ao0,14,9,0|9ilbzz,14,9,0|9ilc00,15,4,1|9rydbz,15,4,1|9rydc0,14,9,0|a1benz,14,9,0|a1beo0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34d3z,14,9,0|b34d40,15,4,1|bchefz,15,4,1|bcheg0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7h3z,15,4,1|bv7h40,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxjrz,15,4,1|cdxjs0,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dzwibz,15,4,1|dzwic0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Budapest|,0,332,0|-15bee79,0,332,0|-15bee78,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-qgvmk1,8,8,0|-qgvmk0,9,9,1|-q90ak1,9,9,1|-q90ak0,8,8,0|-pykd81,8,8,0|-pykd80,9,9,1|-ppx981,9,9,1|-ppx980,8,8,0|-ezvc81,8,8,0|-ezvc80,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cvhc81,8,8,0|-cvhc80,9,9,1|-cm2dg1,9,9,1|-cm2dg0,8,8,0|-cecfw1,8,8,0|-cecfw0,9,9,1|-c4ko01,9,9,1|-c4ko00,8,8,0|-bv9ek1,8,8,0|-bv9ek0,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bcjbw1,8,8,0|-bcjbw0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-atgak1,8,8,0|-atgak0,9,9,1|-akg7w1,9,9,1|-akg7w0,8,8,0|-85bc41,8,8,0|-85bc40,9,9,1|-7yh481,9,9,1|-7yh480,8,8,0|-7ml3w1,8,8,0|-7ml3w0,9,9,1|-7fqt81,9,9,1|-7fqt80,8,8,0|-7353w1,8,8,0|-7353w0,9,9,1|-6x0qk1,9,9,1|-6x0qk0,8,8,0|-6kf181,8,8,0|-6kf180,9,9,1|-6eanw1,9,9,1|-6eanw0,8,8,0|5csnvz,8,8,0|5csnw0,9,9,1|5lsqjz,9,9,1|5lsqk0,8,8,0|5v5rvz,8,8,0|5v5rw0,9,9,1|64it7z,9,9,1|64it80,8,8,0|6dvujz,8,8,0|6dvuk0,9,9,1|6n8vvz,9,9,1|6n8vw0,8,8,0|6wlx7z,8,8,0|6wlx80,9,9,1|75yyjz,9,9,1|75yyk0,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Busingen|,0,333,0|-1os49kx,0,333,0|-1os49kw,54,334,0|-13g441n,54,334,0|-13g441m,8,8,0|-eyh6o1,8,8,0|-eyh6o0,9,9,1|-eqk001,9,9,1|-eqk000,8,8,0|-efr401,8,8,0|-efr400,9,9,1|-e7txc1,9,9,1|-e7txc0,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Chisinau|,0,335,0|-1ayy809,0,335,0|-1ayy808,40,336,0|-r2p1bp,40,336,0|-r2p1bo,54,331,0|-k29zi1,54,331,0|-k29zi0,14,9,0|-jmqqw1,14,9,0|-jmqqw0,15,4,1|-jfulk1,15,4,1|-jfulk0,14,9,0|-j6hk81,14,9,0|-j6hk80,15,4,1|-ix4iw1,15,4,1|-ix4iw0,14,9,0|-ineiw1,14,9,0|-ineiw0,15,4,1|-ie1hk1,15,4,1|-ie1hk0,14,9,0|-i4og81,14,9,0|-i4og80,15,4,1|-hvbew1,15,4,1|-hvbew0,14,9,0|-hlydk1,14,9,0|-hlydk0,15,4,1|-hclc81,15,4,1|-hclc80,14,9,0|-h38aw1,14,9,0|-h38aw0,15,4,1|-gtv9k1,15,4,1|-gtv9k0,14,9,0|-gki881,14,9,0|-gki880,15,4,1|-gb56w1,15,4,1|-gb56w0,14,9,0|-g1s5k1,14,9,0|-g1s5k0,15,4,1|-fsf481,15,4,1|-fsf480,14,9,0|-fc0dk1,14,9,0|-fc0dk0,15,4,1|-euq8c1,15,4,1|-euq8c0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d8e5k1,9,9,1|-d8e5k0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ak1ejz,149,4,0|ak1ek0,150,203,1|am73rz,150,203,1|am73s0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34inz,14,9,0|b34io0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dzwibz,15,4,1|dzwic0,14,9,0|e7txbz,14,9,0|e7txc0,15,4,1|eimtbz,15,4,1|eimtc0,14,9,0|eqjzzz,14,9,0|eqk000,15,4,1|f1cvzz,15,4,1|f1cw00,14,9,0|f9a2nz,14,9,0|f9a2o0,15,4,1|fkfxbz,15,4,1|fkfxc0,14,9,0|fs05bz,14,9,0|fs05c0,15,4,1|g35zzz,15,4,1|g36000,14,9,0|gaq7zz,14,9,0|gaq800,15,4,1|glw2nz,15,4,1|glw2o0,14,9,0|gtt9bz,14,9,0|gtt9c0,15,4,1|h4m5bz,15,4,1|h4m5c0,14,9,0|hcjbzz,14,9,0|hcjc00,15,4,1|hnc7zz,15,4,1|hnc800,14,9,0|hv9enz,14,9,0|hv9eo0,15,4,1|i6f9bz,15,4,1|i6f9c0,14,9,0|idzhbz,14,9,0|idzhc0,15,4,1|ip5bzz,15,4,1|ip5c00,14,9,0|iwpjzz,14,9,0|iwpk00,15,4,1|j7venz,15,4,1|j7veo0,14,9,0|jffmnz,14,9,0|jffmo0,15,4,1|jqlhbz,15,4,1|jqlhc0,14,9,0|jyinzz,14,9,0|jyio00,15,4,1|k9bjzz,15,4,1|k9bk00,14,9,0|kh8qnz,14,9,0|kh8qo0,15,4,1|ks1mnz,15,4,1|ks1mo0,14,9,0|kzytbz,14,9,0|kzytc0,15,4,1|lb4nzz,15,4,1|lb4o00,14,9,0|liovzz,14,9,0|liow00,15,4,1|ltuqnz,15,4,1|ltuqo0,14,9,0|m1eynz,14,9,0|m1eyo0,15,4,1|mcktbz,15,4,1|mcktc0,14,9,0|mkhzzz,14,9,0|mki000,15,4,1|mvavzz,15,4,1|mvaw00,14,9,0|n382nz,14,9,0|n382o0,15,4,1|ne0ynz,15,4,1|ne0yo0,14,9,0|nly5bz,14,9,0|nly5c0,15,4,1|nwr1bz,15,4,1|nwr1c0,14,9,0|o4o7zz,14,9,0|o4o800,15,4,1|ofu2nz,15,4,1|ofu2o0,14,9,0|oneanz,14,9,0|oneao0,15,4,1|oyk5bz,15,4,1|oyk5c0,14,9,0|p64dbz,14,9,0|p64dc0,15,4,1|pha7zz,15,4,1|pha800,14,9,0|pp7enz,14,9,0|pp7eo0,15,4,1|q00anz,15,4,1|q00ao0,14,9,0|q7xhbz,14,9,0|q7xhc0,15,4,1|qiqdbz,15,4,1|qiqdc0,14,9,0|qqnjzz,14,9,0|qqnk00,15,4,1|r1tenz,15,4,1|r1teo0,14,9,0|r9dmnz,14,9,0|r9dmo0,15,4,1|rkjhbz,15,4,1|rkjhc0,14,9,0|rs3pbz,14,9,0|rs3pc0,15,4,1|s39jzz,15,4,1|s39k00,14,9,0|sb6qnz,14,9,0|sb6qo0,15,4,1|slzmnz,15,4,1|slzmo0,14,9,0|stwtbz,14,9,0|stwtc0,15,4,1|t4ppbz,15,4,1|t4ppc0,14,9,0|tcmvzz,14,9,0|tcmw00,15,4,1|tnfrzz,15,4,1|tnfs00,14,9,0|tvcynz,14,9,0|tvcyo0,15,4,1|u6itbz,15,4,1|u6itc0,14,9,0|ue31bz,14,9,0|ue31c0,15,4,1|up8vzz,15,4,1|up8w00,14,9,0|uwt3zz,14,9,0|uwt400,15,4,1|v7yynz,15,4,1|v7yyo0,14,9,0|vfw5bz,14,9,0|vfw5c0,15,4,1|vqp1bz,15,4,1|vqp1c0,14,9,0|vym7zz,14,9,0|vym800,15,4,1|w9f3zz,15,4,1|w9f400,14,9,0|whcanz,14,9,0|whcao0,15,4,1|wsi5bz,15,4,1|wsi5c0,14,9,0|x02dbz,14,9,0|x02dc0,15,4,1|xb87zz,15,4,1|xb8800,14,9,0|xisfzz,14,9,0|xisg00,15,4,1|xtyanz,15,4,1|xtyao0,14,9,0|y1iinz,14,9,0|y1iio0,15,4,1|ycodbz,15,4,1|ycodc0,14,9,0|ykljzz,14,9,0|yklk00,15,4,1|yvefzz,15,4,1|yveg00,14,9,0|z3bmnz,14,9,0|z3bmo0,15,4,1|ze4inz,15,4,1|ze4io0,14,9,0|zm1pbz,14,9,0|zm1pc0,15,4,1|zx7jzz,15,4,1|zx7k00,14,9,0|104rrzz,14,9,0|104rs00,15,4,1|10fxmnz,15,4,1|10fxmo0,14,9,0|10nhunz,14,9,0|10nhuo0,15,4,1|10ynpbz,15,4,1|10ynpc0,14,9,0|116kvzz,14,9,0|116kw00,15,4,1|11hdrzz,15,4,1|11hds00,14,9,0|11paynz,14,9,0|11payo0,15,4,1|1203unz,15,4,1|1203uo0,14,9,0|12811bz,14,9,0|12811c0,15,4,1|12itxbz,15,4,1|12itxc0,14,9,0|12qr3zz,14,9,0|12qr400,15,4,1|131wynz,15,4,1|131wyo0,14,9,0|139h6nz,14,9,0|139h6o0,15,4,1|13kn1bz,15,4,1|13kn1c0,14,9,0|13s79bz,14,9,0|13s79c0,15,4,1|143d3zz,15,4,1|143d400,14,9,0|14baanz,14,9,0|14baao0,15,4,1|14m36nz,15,4,1|14m36o0,14,9,0|14u0dbz,14,9,0|14u0dc0,15,4,1|154t9bz,15,4,1|154t9c0,14,9,0|15cqfzz,14,9,0|15cqg00,15,4,1|15nwanz,15,4,1|15nwao0,14,9,0|15vginz,14,9,0|15vgio0,15,4,1|166mdbz,15,4,1|166mdc0,14,9,0|16e6lbz,14,9,0|16e6lc0,15,4,1|16pcfzz,15,4,1|16pcg00,14,9,0|16x9mnz,14,9,0|16x9mo0,15,4,1|1782inz,15,4,1|1782io0,14,9,0|17fzpbz,14,9,0|17fzpc0,15,4,1|17qslbz,15,4,1|17qslc0,14,9,0|17yprzz,14,9,0|17yps00,15,4,1|189inzz,15,4,1|189io00,14,9,0|18hfunz,14,9,0|18hfuo0,15,4,1|18slpbz,15,4,1|18slpc0,14,9,0|1905xbz,14,9,0|1905xc0,15,4,1|19bbrzz,15,4,1|19bbs00,14,9,0|19ivzzz,14,9,0|19iw000,15,4,1|19u1unz,15,4,1|19u1uo0,14,9,0|1a1z1bz,14,9,0|1a1z1c0,15,4,1|1acrxbz,15,4,1|1acrxc0,14,9,0|1akp3zz,14,9,0|1akp400,15,4,1|1avhzzz,15,4,1|1avi000,14,9,0|1b3f6nz,14,9,0|1b3f6o0,15,4,1|1bel1bz,15,4,1|1bel1c0,14,9,0|1bm59bz,14,9,0|1bm59c0,15,4,1|1bxb3zz,15,4,1|1bxb400,14,9,0|1c4vbzz,14,9,0|1c4vc00,15,4,1|1cg16nz,15,4,1|1cg16o0,14,9,0|1cnlenz,14,9,0|1cnleo0,15,4,1|1cyr9bz,15,4,1|1cyr9c0,14,9,0|1d6ofzz,14,9,0|1d6og00,15,4,1|1dhhbzz,15,4,1|1dhhc00,14,9,0|1dpeinz,14,9,0|1dpeio0,15,4,1|1e07enz,15,4,1|1e07eo0,14,9,0|1e84lbz,14,9,0|1e84lc0,15,4,1|1ejafzz,15,4,1|1ejag00,14,9,0|1equnzz,14,9,0|1equo00,15,4,1|1f20inz,15,4,1|1f20io0,14,9,0|1f9kqnz,14,9,0|1f9kqo0,15,4,1|1fkqlbz,15,4,1|1fkqlc0,14,9,0|1fsnrzz,14,9,0|1fsns00,15,4,1|1g3gnzz,15,4,1|1g3go00,14,9,0|1gbdunz,14,9,0|1gbduo0,15,4,1|1gm6qnz,15,4,1|1gm6qo0,14,9,0|1gu3xbz,14,9,0|1gu3xc0,15,4,1|1h4wtbz,15,4,1|1h4wtc0,14,9,0|1hctzzz,14,9,0|1hcu000,15,4,1|1hnzunz,15,4,1|1hnzuo0,14,9,0|1hvk2nz,14,9,0|1hvk2o0,15,4,1|1i6pxbz,15,4,1|1i6pxc0,14,9,0|1iea5bz,14,9,0|1iea5c0,15,4,1|1ipfzzz,15,4,1|1ipg000,14,9,0|1ixd6nz,14,9,0|1ixd6o0,15,4,1|1j862nz,15,4,1|1j862o0,14,9,0|1jg39bz,14,9,0|1jg39c0,15,4,1|1jqw5bz,15,4,1|1jqw5c0,14,9,0|1jytbzz,14,9,0|1jytc00,15,4,1|1k9z6nz,15,4,1|1k9z6o0,14,9,0|1khjenz,14,9,0|1khjeo0,15,4,1|1ksp9bz,15,4,1|1ksp9c0,14,9,0|1l09hbz,14,9,0|1l09hc0,15,4,1|1lbfbzz,15,4,1|1lbfc00,14,9,0|1ljcinz,14,9,0|1ljcio0,15,4,1|1lu5enz,15,4,1|1lu5eo0,14,9,0|1m22lbz,14,9,0|1m22lc0,15,4,1|1mcvhbz,15,4,1|1mcvhc0,14,9,0|1mksnzz,14,9,0|1mkso00,15,4,1|1mvljzz,15,4,1|1mvlk00,14,9,0|1n3iqnz,14,9,0|1n3iqo0,15,4,1|1neolbz,15,4,1|1neolc0,14,9,0|1nm8tbz,14,9,0|1nm8tc0,15,4,1|1nxenzz,15,4,1|1nxeo00,14,9,0|1o4yvzz,14,9,0|1o4yw00,15,4,1|1og4qnz,15,4,1|1og4qo0,14,9,0|1oo1xbz,14,9,0|1oo1xc0,15,4,1|1oyutbz,15,4,1|1oyutc0,14,9,0|1p6rzzz,14,9,0|1p6s000,15,4,1|1phkvzz,15,4,1|1phkw00,14,9,0|1ppi2nz,14,9,0|1ppi2o0,15,4,1|1q0nxbz,15,4,1|1q0nxc0,14,9,0|1q885bz,14,9,0|1q885c0,15,4,1|1qjdzzz,15,4,1|1qje000,14,9,0|1qqy7zz,14,9,0|1qqy800,15,4,1|1r242nz,15,4,1|1r242o0,14,9,0|1r9oanz,14,9,0|1r9oao0,15,4,1|1rku5bz,15,4,1|1rku5c0,14,9,0|1rsrbzz,14,9,0|1rsrc00,15,4,1|1s3k7zz,15,4,1|1s3k800,14,9,0|1sbhenz,14,9,0|1sbheo0,15,4,1|1smaanz,15,4,1|1smaao0,14,9,0|1su7hbz,14,9,0|1su7hc0,15,4,1|1t5dbzz,15,4,1|1t5dc00,14,9,0|1tcxjzz,14,9,0|1tcxk00,15,4,1|1to3enz,15,4,1|1to3eo0,14,9,0|1tvnmnz,14,9,0|1tvnmo0,15,4,1|1u6thbz,15,4,1|1u6thc0,14,9,0|1ueqnzz,14,9,0|1ueqo00,15,4,1|1upjjzz,15,4,1|1upjk00,14,9,0|1uxgqnz,14,9,0|1uxgqo0,15,4,1|1v89mnz,15,4,1|1v89mo0,14,9,0|1vg6tbz,14,9,0|1vg6tc0,15,4,1|1vqzpbz,15,4,1|1vqzpc0,14,9,0|NaN,14,9,0","Europe/Copenhagen|,0,337,0|-15r1bnx,0,337,0|-15r1bnw,40,337,0|-13nvrnx,40,337,0|-13nvrnw,8,8,0|-rzo2w1,8,8,0|-rzo2w0,9,9,1|-rsir01,9,9,1|-rsir00,8,8,0|-fgqo41,8,8,0|-fgqo40,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cq2nw1,9,9,1|-cq2nw0,8,8,0|-ccr181,8,8,0|-ccr180,9,9,1|-c6f981,9,9,1|-c6f980,8,8,0|-bttjw1,8,8,0|-bttjw0,9,9,1|-bos2k1,9,9,1|-bos2k0,8,8,0|-baqik1,8,8,0|-baqik0,9,9,1|-b61zw1,9,9,1|-b61zw0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Dublin|,0,338,0|-1anxqud,0,338,0|-1anxquc,151,339,0|-rzcmls,151,339,0|-rzcmlr,110,340,1|-rsibxs,110,340,1|-rsibxr,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,110,8,1|-onfzs1,110,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,110,8,1|-o5st41,110,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,110,8,1|-nmprs1,110,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,110,8,1|-n39rs1,110,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,110,8,1|-mkjp41,110,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,110,8,1|-m1tmg1,110,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,110,8,1|-liql41,110,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,110,8,1|-l00ig1,110,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,110,8,1|-khafs1,110,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,110,8,1|-jykd41,110,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,110,8,1|-jfuag1,110,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,110,8,1|-iwr941,110,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,110,8,1|-ie16g1,110,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,110,8,1|-hvb3s1,110,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,110,8,1|-hcl141,110,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,110,8,1|-gtuyg1,110,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,110,8,1|-gb4vs1,110,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,110,8,1|-fpw2g1,110,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,110,8,1|-c4md41,110,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,110,8,1|-bkgfs1,110,8,1|-bkgfs0,1,1,0|-bbtbs1,1,1,0|-bbtbs0,110,8,1|-b1qd41,110,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,110,8,1|-aj0ag1,110,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,110,8,1|-a0n6g1,110,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,110,8,1|-9hx3s1,110,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,110,8,1|-8yu2g1,110,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,110,8,1|-8h6vs1,110,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,110,8,1|-7ygt41,110,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,110,8,1|-7fqqg1,110,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,110,8,1|-6wnp41,110,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,110,8,1|-6dxmg1,110,8,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,110,8,1|-5v7js1,110,8,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,110,8,1|-5chh41,110,8,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,110,8,1|-4treg1,110,8,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,110,8,1|-49lh41,110,8,1|-49lh40,1,1,0|-421941,1,1,0|-421940,110,8,1|-3qveg1,110,8,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,110,8,1|-385bs1,110,8,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,110,8,1|-2pf941,110,8,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,110,8,1|-26p6g1,110,8,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,110,8,1|-1nz3s1,110,8,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,110,8,1|-14w2g1,110,8,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,110,8,1|-m6841,110,8,1|-m6840,110,8,0|yd6vz,110,8,0|yd6w0,1,1,1|15kg7z,1,1,1|15kg80,110,8,0|1h39jz,110,8,0|1h39k0,1,1,1|1oaivz,1,1,1|1oaiw0,110,8,0|1ztc7z,110,8,0|1ztc80,1,1,1|270ljz,1,1,1|270lk0,110,8,0|2ijevz,110,8,0|2ijew0,1,1,1|2pqo7z,1,1,1|2pqo80,110,8,0|319hjz,110,8,0|319hk0,1,1,1|38tpjz,1,1,1|38tpk0,110,8,0|3jzk7z,110,8,0|3jzk80,1,1,1|3rjs7z,1,1,1|3rjs80,110,8,0|42pmvz,110,8,0|42pmw0,1,1,1|4a9uvz,1,1,1|4a9uw0,110,8,0|4lso7z,110,8,0|4lso80,1,1,1|4szxjz,1,1,1|4szxk0,110,8,0|54iqvz,110,8,0|54iqw0,1,1,1|5bq07z,1,1,1|5bq080,110,8,0|5n8tjz,110,8,0|5n8tk0,1,1,1|5v5xfz,1,1,1|5v5xg0,110,8,0|65ytfz,110,8,0|65ytg0,1,1,1|6dw03z,1,1,1|6dw040,110,8,0|6oow3z,110,8,0|6oow40,1,1,1|6wm2rz,1,1,1|6wm2s0,110,8,0|77eyrz,110,8,0|77eys0,1,1,1|7fc5fz,1,1,1|7fc5g0,110,8,0|7qi03z,110,8,0|7qi040,1,1,1|7yf6rz,1,1,1|7yf6s0,110,8,0|8982rz,110,8,0|8982s0,1,1,1|8h59fz,1,1,1|8h59g0,110,8,0|8ry5fz,110,8,0|8ry5g0,1,1,1|8zvc3z,1,1,1|8zvc40,110,8,0|9ao83z,110,8,0|9ao840,1,1,1|9ilerz,1,1,1|9iles0,110,8,0|9tearz,110,8,0|9teas0,1,1,1|a1bhfz,1,1,1|a1bhg0,110,8,0|achc3z,110,8,0|achc40,1,1,1|ak1k3z,1,1,1|ak1k40,110,8,0|av7erz,110,8,0|av7es0,1,1,1|b34lfz,1,1,1|b34lg0,110,8,0|bdxhfz,110,8,0|bdxhg0,1,1,1|bluo3z,1,1,1|bluo40,110,8,0|bwnk3z,110,8,0|bwnk40,1,1,1|c4kqrz,1,1,1|c4kqs0,110,8,0|cfdmrz,110,8,0|cfdms0,1,1,1|cnatfz,1,1,1|cnatg0,110,8,0|cy3pfz,110,8,0|cy3pg0,1,1,1|d60w3z,1,1,1|d60w40,110,8,0|dgts3z,110,8,0|dgts40,1,1,1|dp3xfz,1,1,1|dp3xg0,110,8,0|dzwtfz,110,8,0|dzwtg0,1,1,1|e7u03z,1,1,1|e7u040,110,8,0|eimw3z,110,8,0|eimw40,1,1,1|eqk2rz,1,1,1|eqk2s0,110,8,0|f1cyrz,110,8,0|f1cys0,1,1,1|f9a5fz,1,1,1|f9a5g0,110,8,0|fkg03z,110,8,0|fkg040,1,1,1|fs083z,1,1,1|fs0840,110,8,0|g362rz,110,8,0|g362s0,1,1,1|gaqarz,1,1,1|gaqas0,110,8,0|glw5fz,110,8,0|glw5g0,1,1,1|gttc3z,1,1,1|gttc40,110,8,0|h4m83z,110,8,0|h4m840,1,1,1|hcjerz,1,1,1|hcjes0,110,8,0|hncarz,110,8,0|hncas0,1,1,1|hv9hfz,1,1,1|hv9hg0,110,8,0|i6fc3z,110,8,0|i6fc40,1,1,1|idzk3z,1,1,1|idzk40,110,8,0|ip5erz,110,8,0|ip5es0,1,1,1|iwpmrz,1,1,1|iwpms0,110,8,0|j7vhfz,110,8,0|j7vhg0,1,1,1|jffpfz,1,1,1|jffpg0,110,8,0|jqlk3z,110,8,0|jqlk40,1,1,1|jyiqrz,1,1,1|jyiqs0,110,8,0|k9bmrz,110,8,0|k9bms0,1,1,1|kh8tfz,1,1,1|kh8tg0,110,8,0|ks1pfz,110,8,0|ks1pg0,1,1,1|kzyw3z,1,1,1|kzyw40,110,8,0|lb4qrz,110,8,0|lb4qs0,1,1,1|lioyrz,1,1,1|lioys0,110,8,0|ltutfz,110,8,0|ltutg0,1,1,1|m1f1fz,1,1,1|m1f1g0,110,8,0|mckw3z,110,8,0|mckw40,1,1,1|mki2rz,1,1,1|mki2s0,110,8,0|mvayrz,110,8,0|mvays0,1,1,1|n385fz,1,1,1|n385g0,110,8,0|ne11fz,110,8,0|ne11g0,1,1,1|nly83z,1,1,1|nly840,110,8,0|nwr43z,110,8,0|nwr440,1,1,1|o4oarz,1,1,1|o4oas0,110,8,0|ofu5fz,110,8,0|ofu5g0,1,1,1|onedfz,1,1,1|onedg0,110,8,0|oyk83z,110,8,0|oyk840,1,1,1|p64g3z,1,1,1|p64g40,110,8,0|phaarz,110,8,0|phaas0,1,1,1|pp7hfz,1,1,1|pp7hg0,110,8,0|q00dfz,110,8,0|q00dg0,1,1,1|q7xk3z,1,1,1|q7xk40,110,8,0|qiqg3z,110,8,0|qiqg40,1,1,1|qqnmrz,1,1,1|qqnms0,110,8,0|r1thfz,110,8,0|r1thg0,1,1,1|r9dpfz,1,1,1|r9dpg0,110,8,0|rkjk3z,110,8,0|rkjk40,1,1,1|rs3s3z,1,1,1|rs3s40,110,8,0|s39mrz,110,8,0|s39ms0,1,1,1|sb6tfz,1,1,1|sb6tg0,110,8,0|slzpfz,110,8,0|slzpg0,1,1,1|stww3z,1,1,1|stww40,110,8,0|t4ps3z,110,8,0|t4ps40,1,1,1|tcmyrz,1,1,1|tcmys0,110,8,0|tnfurz,110,8,0|tnfus0,1,1,1|tvd1fz,1,1,1|tvd1g0,110,8,0|u6iw3z,110,8,0|u6iw40,1,1,1|ue343z,1,1,1|ue3440,110,8,0|up8yrz,110,8,0|up8ys0,1,1,1|uwt6rz,1,1,1|uwt6s0,110,8,0|v7z1fz,110,8,0|v7z1g0,1,1,1|vfw83z,1,1,1|vfw840,110,8,0|vqp43z,110,8,0|vqp440,1,1,1|vymarz,1,1,1|vymas0,110,8,0|w9f6rz,110,8,0|w9f6s0,1,1,1|whcdfz,1,1,1|whcdg0,110,8,0|wsi83z,110,8,0|wsi840,1,1,1|x02g3z,1,1,1|x02g40,110,8,0|xb8arz,110,8,0|xb8as0,1,1,1|xisirz,1,1,1|xisis0,110,8,0|xtydfz,110,8,0|xtydg0,1,1,1|y1ilfz,1,1,1|y1ilg0,110,8,0|ycog3z,110,8,0|ycog40,1,1,1|yklmrz,1,1,1|yklms0,110,8,0|yveirz,110,8,0|yveis0,1,1,1|z3bpfz,1,1,1|z3bpg0,110,8,0|ze4lfz,110,8,0|ze4lg0,1,1,1|zm1s3z,1,1,1|zm1s40,110,8,0|zx7mrz,110,8,0|zx7ms0,1,1,1|104rurz,1,1,1|104rus0,110,8,0|10fxpfz,110,8,0|10fxpg0,1,1,1|10nhxfz,1,1,1|10nhxg0,110,8,0|10yns3z,110,8,0|10yns40,1,1,1|116kyrz,1,1,1|116kys0,110,8,0|11hdurz,110,8,0|11hdus0,1,1,1|11pb1fz,1,1,1|11pb1g0,110,8,0|1203xfz,110,8,0|1203xg0,1,1,1|128143z,1,1,1|1281440,110,8,0|12iu03z,110,8,0|12iu040,1,1,1|12qr6rz,1,1,1|12qr6s0,110,8,0|131x1fz,110,8,0|131x1g0,1,1,1|139h9fz,1,1,1|139h9g0,110,8,0|13kn43z,110,8,0|13kn440,1,1,1|13s7c3z,1,1,1|13s7c40,110,8,0|143d6rz,110,8,0|143d6s0,1,1,1|14badfz,1,1,1|14badg0,110,8,0|14m39fz,110,8,0|14m39g0,1,1,1|14u0g3z,1,1,1|14u0g40,110,8,0|154tc3z,110,8,0|154tc40,1,1,1|15cqirz,1,1,1|15cqis0,110,8,0|15nwdfz,110,8,0|15nwdg0,1,1,1|15vglfz,1,1,1|15vglg0,110,8,0|166mg3z,110,8,0|166mg40,1,1,1|16e6o3z,1,1,1|16e6o40,110,8,0|16pcirz,110,8,0|16pcis0,1,1,1|16x9pfz,1,1,1|16x9pg0,110,8,0|1782lfz,110,8,0|1782lg0,1,1,1|17fzs3z,1,1,1|17fzs40,110,8,0|17qso3z,110,8,0|17qso40,1,1,1|17ypurz,1,1,1|17ypus0,110,8,0|189iqrz,110,8,0|189iqs0,1,1,1|18hfxfz,1,1,1|18hfxg0,110,8,0|18sls3z,110,8,0|18sls40,1,1,1|190603z,1,1,1|1906040,110,8,0|19bburz,110,8,0|19bbus0,1,1,1|19iw2rz,1,1,1|19iw2s0,110,8,0|19u1xfz,110,8,0|19u1xg0,1,1,1|1a1z43z,1,1,1|1a1z440,110,8,0|1acs03z,110,8,0|1acs040,1,1,1|1akp6rz,1,1,1|1akp6s0,110,8,0|1avi2rz,110,8,0|1avi2s0,1,1,1|1b3f9fz,1,1,1|1b3f9g0,110,8,0|1bel43z,110,8,0|1bel440,1,1,1|1bm5c3z,1,1,1|1bm5c40,110,8,0|1bxb6rz,110,8,0|1bxb6s0,1,1,1|1c4verz,1,1,1|1c4ves0,110,8,0|1cg19fz,110,8,0|1cg19g0,1,1,1|1cnlhfz,1,1,1|1cnlhg0,110,8,0|1cyrc3z,110,8,0|1cyrc40,1,1,1|1d6oirz,1,1,1|1d6ois0,110,8,0|1dhherz,110,8,0|1dhhes0,1,1,1|1dpelfz,1,1,1|1dpelg0,110,8,0|1e07hfz,110,8,0|1e07hg0,1,1,1|1e84o3z,1,1,1|1e84o40,110,8,0|1ejairz,110,8,0|1ejais0,1,1,1|1equqrz,1,1,1|1equqs0,110,8,0|1f20lfz,110,8,0|1f20lg0,1,1,1|1f9ktfz,1,1,1|1f9ktg0,110,8,0|1fkqo3z,110,8,0|1fkqo40,1,1,1|1fsnurz,1,1,1|1fsnus0,110,8,0|1g3gqrz,110,8,0|1g3gqs0,1,1,1|1gbdxfz,1,1,1|1gbdxg0,110,8,0|1gm6tfz,110,8,0|1gm6tg0,1,1,1|1gu403z,1,1,1|1gu4040,110,8,0|1h4ww3z,110,8,0|1h4ww40,1,1,1|1hcu2rz,1,1,1|1hcu2s0,110,8,0|1hnzxfz,110,8,0|1hnzxg0,1,1,1|1hvk5fz,1,1,1|1hvk5g0,110,8,0|1i6q03z,110,8,0|1i6q040,1,1,1|1iea83z,1,1,1|1iea840,110,8,0|1ipg2rz,110,8,0|1ipg2s0,1,1,1|1ixd9fz,1,1,1|1ixd9g0,110,8,0|1j865fz,110,8,0|1j865g0,1,1,1|1jg3c3z,1,1,1|1jg3c40,110,8,0|1jqw83z,110,8,0|1jqw840,1,1,1|1jyterz,1,1,1|1jytes0,110,8,0|1k9z9fz,110,8,0|1k9z9g0,1,1,1|1khjhfz,1,1,1|1khjhg0,110,8,0|1kspc3z,110,8,0|1kspc40,1,1,1|1l09k3z,1,1,1|1l09k40,110,8,0|1lbferz,110,8,0|1lbfes0,1,1,1|1ljclfz,1,1,1|1ljclg0,110,8,0|1lu5hfz,110,8,0|1lu5hg0,1,1,1|1m22o3z,1,1,1|1m22o40,110,8,0|1mcvk3z,110,8,0|1mcvk40,1,1,1|1mksqrz,1,1,1|1mksqs0,110,8,0|1mvlmrz,110,8,0|1mvlms0,1,1,1|1n3itfz,1,1,1|1n3itg0,110,8,0|1neoo3z,110,8,0|1neoo40,1,1,1|1nm8w3z,1,1,1|1nm8w40,110,8,0|1nxeqrz,110,8,0|1nxeqs0,1,1,1|1o4yyrz,1,1,1|1o4yys0,110,8,0|1og4tfz,110,8,0|1og4tg0,1,1,1|1oo203z,1,1,1|1oo2040,110,8,0|1oyuw3z,110,8,0|1oyuw40,1,1,1|1p6s2rz,1,1,1|1p6s2s0,110,8,0|1phkyrz,110,8,0|1phkys0,1,1,1|1ppi5fz,1,1,1|1ppi5g0,110,8,0|1q0o03z,110,8,0|1q0o040,1,1,1|1q8883z,1,1,1|1q88840,110,8,0|1qje2rz,110,8,0|1qje2s0,1,1,1|1qqyarz,1,1,1|1qqyas0,110,8,0|1r245fz,110,8,0|1r245g0,1,1,1|1r9odfz,1,1,1|1r9odg0,110,8,0|1rku83z,110,8,0|1rku840,1,1,1|1rsrerz,1,1,1|1rsres0,110,8,0|1s3karz,110,8,0|1s3kas0,1,1,1|1sbhhfz,1,1,1|1sbhhg0,110,8,0|1smadfz,110,8,0|1smadg0,1,1,1|1su7k3z,1,1,1|1su7k40,110,8,0|1t5derz,110,8,0|1t5des0,1,1,1|1tcxmrz,1,1,1|1tcxms0,110,8,0|1to3hfz,110,8,0|1to3hg0,1,1,1|1tvnpfz,1,1,1|1tvnpg0,110,8,0|1u6tk3z,110,8,0|1u6tk40,1,1,1|1ueqqrz,1,1,1|1ueqqs0,110,8,0|1upjmrz,110,8,0|1upjms0,1,1,1|1uxgtfz,1,1,1|1uxgtg0,110,8,0|1v89pfz,110,8,0|1v89pg0,1,1,1|1vg6w3z,1,1,1|1vg6w40,110,8,0|1vqzs3z,110,8,0|1vqzs40,1,1,1|NaN,1,1,1","Europe/Gibraltar|,0,341,0|-1anxr0d,0,341,0|-1anxr0c,1,1,0|-rzcns1,1,1,0|-rzcns0,26,8,1|-rsid41,26,8,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,26,8,1|-onfzs1,26,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,26,8,1|-o5st41,26,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,26,8,1|-nmprs1,26,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,26,8,1|-n39rs1,26,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,26,8,1|-mkjp41,26,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,26,8,1|-m1tmg1,26,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,26,8,1|-liql41,26,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,26,8,1|-l00ig1,26,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,26,8,1|-khafs1,26,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,26,8,1|-jykd41,26,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,26,8,1|-jfuag1,26,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,26,8,1|-iwr941,26,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,26,8,1|-ie16g1,26,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,26,8,1|-hvb3s1,26,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,26,8,1|-hcl141,26,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,26,8,1|-gtuyg1,26,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,26,8,1|-gb4vs1,26,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,26,8,1|-fpw2g1,26,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,26,8,1|-eyiyk1,26,8,1|-eyiyk0,152,9,1|-ethh81,152,9,1|-ethh80,26,8,1|-eh8qk1,26,8,1|-eh8qk0,152,9,1|-earek1,152,9,1|-earek0,26,8,1|-dyinw1,26,8,1|-dyinw0,152,9,1|-drod81,152,9,1|-drod80,26,8,1|-dfsl81,26,8,1|-dfsl80,152,9,1|-d75h81,152,9,1|-d75h80,26,8,1|-cx0nw1,26,8,1|-cx0nw0,152,9,1|-cro2k1,152,9,1|-cro2k0,26,8,1|-cncfs1,26,8,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,26,8,1|-c4md41,26,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,26,8,1|-buwfw1,26,8,1|-buwfw0,152,9,1|-bos2k1,152,9,1|-bos2k0,26,8,1|-bkgfs1,26,8,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,26,8,1|-b1qd41,26,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,26,8,1|-aj0ag1,26,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,26,8,1|-a0n6g1,26,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,26,8,1|-9hx3s1,26,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,26,8,1|-8yu2g1,26,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,26,8,1|-8h6vs1,26,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,26,8,1|-7ygt41,26,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,26,8,1|-7fqqg1,26,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,26,8,1|-6wnp41,26,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Guernsey|,0,342,0|-1rprx9y,0,342,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,26,8,1|-rsid41,26,8,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,26,8,1|-onfzs1,26,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,26,8,1|-o5st41,26,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,26,8,1|-nmprs1,26,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,26,8,1|-n39rs1,26,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,26,8,1|-mkjp41,26,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,26,8,1|-m1tmg1,26,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,26,8,1|-liql41,26,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,26,8,1|-l00ig1,26,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,26,8,1|-khafs1,26,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,26,8,1|-jykd41,26,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,26,8,1|-jfuag1,26,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,26,8,1|-iwr941,26,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,26,8,1|-ie16g1,26,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,26,8,1|-hvb3s1,26,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,26,8,1|-hcl141,26,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,26,8,1|-gtuyg1,26,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,26,8,1|-gb4vs1,26,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,26,8,1|-fpw2g1,26,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,26,8,1|-eyiyk1,26,8,1|-eyiyk0,152,9,1|-ethh81,152,9,1|-ethh80,26,8,1|-eh8qk1,26,8,1|-eh8qk0,152,9,1|-earek1,152,9,1|-earek0,26,8,1|-dyinw1,26,8,1|-dyinw0,152,9,1|-drod81,152,9,1|-drod80,26,8,1|-dfsl81,26,8,1|-dfsl80,152,9,1|-d75h81,152,9,1|-d75h80,26,8,1|-cx0nw1,26,8,1|-cx0nw0,152,9,1|-cro2k1,152,9,1|-cro2k0,26,8,1|-cncfs1,26,8,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,26,8,1|-c4md41,26,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,26,8,1|-buwfw1,26,8,1|-buwfw0,152,9,1|-bos2k1,152,9,1|-bos2k0,26,8,1|-bkgfs1,26,8,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,26,8,1|-b1qd41,26,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,26,8,1|-aj0ag1,26,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,26,8,1|-a0n6g1,26,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,26,8,1|-9hx3s1,26,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,26,8,1|-8yu2g1,26,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,26,8,1|-8h6vs1,26,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,26,8,1|-7ygt41,26,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,26,8,1|-7fqqg1,26,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,26,8,1|-6wnp41,26,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,26,8,1|-6dxmg1,26,8,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,26,8,1|-5v7js1,26,8,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,26,8,1|-5chh41,26,8,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,26,8,1|-4treg1,26,8,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,26,8,1|-49lh41,26,8,1|-49lh40,1,1,0|-421941,1,1,0|-421940,26,8,1|-3qveg1,26,8,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,26,8,1|-385bs1,26,8,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,26,8,1|-2pf941,26,8,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,26,8,1|-26p6g1,26,8,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,26,8,1|-1nz3s1,26,8,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,26,8,1|-14w2g1,26,8,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,26,8,1|-m6841,26,8,1|-m6840,26,8,0|yd6vz,26,8,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,26,8,1|1h39jz,26,8,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,26,8,1|1ztc7z,26,8,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,26,8,1|2ijevz,26,8,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,26,8,1|319hjz,26,8,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,26,8,1|3jzk7z,26,8,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,26,8,1|42pmvz,26,8,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,26,8,1|4lso7z,26,8,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,26,8,1|54iqvz,26,8,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,26,8,1|5n8tjz,26,8,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,26,8,1|65ytfz,26,8,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,26,8,1|6oow3z,26,8,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,26,8,1|77eyrz,26,8,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,26,8,1|7qi03z,26,8,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,26,8,1|8982rz,26,8,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,26,8,1|8ry5fz,26,8,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,26,8,1|9ao83z,26,8,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,26,8,1|9tearz,26,8,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,26,8,1|achc3z,26,8,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,26,8,1|av7erz,26,8,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,26,8,1|bdxhfz,26,8,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,26,8,1|bwnk3z,26,8,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,26,8,1|cfdmrz,26,8,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,26,8,1|cy3pfz,26,8,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,26,8,1|dgts3z,26,8,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,26,8,1|dzwtfz,26,8,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,26,8,1|eimw3z,26,8,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,26,8,1|f1cyrz,26,8,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,26,8,1|fkg03z,26,8,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,26,8,1|g362rz,26,8,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,26,8,1|glw5fz,26,8,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,26,8,1|h4m83z,26,8,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,26,8,1|hncarz,26,8,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,26,8,1|i6fc3z,26,8,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,26,8,1|ip5erz,26,8,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,26,8,1|j7vhfz,26,8,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,26,8,1|jqlk3z,26,8,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,26,8,1|k9bmrz,26,8,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,26,8,1|ks1pfz,26,8,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,26,8,1|lb4qrz,26,8,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,26,8,1|ltutfz,26,8,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,26,8,1|mckw3z,26,8,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,26,8,1|mvayrz,26,8,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,26,8,1|ne11fz,26,8,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,26,8,1|nwr43z,26,8,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,26,8,1|ofu5fz,26,8,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,26,8,1|oyk83z,26,8,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,26,8,1|phaarz,26,8,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,26,8,1|q00dfz,26,8,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,26,8,1|qiqg3z,26,8,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,26,8,1|r1thfz,26,8,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,26,8,1|rkjk3z,26,8,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,26,8,1|s39mrz,26,8,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,26,8,1|slzpfz,26,8,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,26,8,1|t4ps3z,26,8,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,26,8,1|tnfurz,26,8,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,26,8,1|u6iw3z,26,8,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,26,8,1|up8yrz,26,8,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,26,8,1|v7z1fz,26,8,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,26,8,1|vqp43z,26,8,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,26,8,1|w9f6rz,26,8,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,26,8,1|wsi83z,26,8,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,26,8,1|xb8arz,26,8,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,26,8,1|xtydfz,26,8,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,26,8,1|ycog3z,26,8,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,26,8,1|yveirz,26,8,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,26,8,1|ze4lfz,26,8,1|ze4lg0,1,1,0|zm1s3z,1,1,0|zm1s40,26,8,1|zx7mrz,26,8,1|zx7ms0,1,1,0|104rurz,1,1,0|104rus0,26,8,1|10fxpfz,26,8,1|10fxpg0,1,1,0|10nhxfz,1,1,0|10nhxg0,26,8,1|10yns3z,26,8,1|10yns40,1,1,0|116kyrz,1,1,0|116kys0,26,8,1|11hdurz,26,8,1|11hdus0,1,1,0|11pb1fz,1,1,0|11pb1g0,26,8,1|1203xfz,26,8,1|1203xg0,1,1,0|128143z,1,1,0|1281440,26,8,1|12iu03z,26,8,1|12iu040,1,1,0|12qr6rz,1,1,0|12qr6s0,26,8,1|131x1fz,26,8,1|131x1g0,1,1,0|139h9fz,1,1,0|139h9g0,26,8,1|13kn43z,26,8,1|13kn440,1,1,0|13s7c3z,1,1,0|13s7c40,26,8,1|143d6rz,26,8,1|143d6s0,1,1,0|14badfz,1,1,0|14badg0,26,8,1|14m39fz,26,8,1|14m39g0,1,1,0|14u0g3z,1,1,0|14u0g40,26,8,1|154tc3z,26,8,1|154tc40,1,1,0|15cqirz,1,1,0|15cqis0,26,8,1|15nwdfz,26,8,1|15nwdg0,1,1,0|15vglfz,1,1,0|15vglg0,26,8,1|166mg3z,26,8,1|166mg40,1,1,0|16e6o3z,1,1,0|16e6o40,26,8,1|16pcirz,26,8,1|16pcis0,1,1,0|16x9pfz,1,1,0|16x9pg0,26,8,1|1782lfz,26,8,1|1782lg0,1,1,0|17fzs3z,1,1,0|17fzs40,26,8,1|17qso3z,26,8,1|17qso40,1,1,0|17ypurz,1,1,0|17ypus0,26,8,1|189iqrz,26,8,1|189iqs0,1,1,0|18hfxfz,1,1,0|18hfxg0,26,8,1|18sls3z,26,8,1|18sls40,1,1,0|190603z,1,1,0|1906040,26,8,1|19bburz,26,8,1|19bbus0,1,1,0|19iw2rz,1,1,0|19iw2s0,26,8,1|19u1xfz,26,8,1|19u1xg0,1,1,0|1a1z43z,1,1,0|1a1z440,26,8,1|1acs03z,26,8,1|1acs040,1,1,0|1akp6rz,1,1,0|1akp6s0,26,8,1|1avi2rz,26,8,1|1avi2s0,1,1,0|1b3f9fz,1,1,0|1b3f9g0,26,8,1|1bel43z,26,8,1|1bel440,1,1,0|1bm5c3z,1,1,0|1bm5c40,26,8,1|1bxb6rz,26,8,1|1bxb6s0,1,1,0|1c4verz,1,1,0|1c4ves0,26,8,1|1cg19fz,26,8,1|1cg19g0,1,1,0|1cnlhfz,1,1,0|1cnlhg0,26,8,1|1cyrc3z,26,8,1|1cyrc40,1,1,0|1d6oirz,1,1,0|1d6ois0,26,8,1|1dhherz,26,8,1|1dhhes0,1,1,0|1dpelfz,1,1,0|1dpelg0,26,8,1|1e07hfz,26,8,1|1e07hg0,1,1,0|1e84o3z,1,1,0|1e84o40,26,8,1|1ejairz,26,8,1|1ejais0,1,1,0|1equqrz,1,1,0|1equqs0,26,8,1|1f20lfz,26,8,1|1f20lg0,1,1,0|1f9ktfz,1,1,0|1f9ktg0,26,8,1|1fkqo3z,26,8,1|1fkqo40,1,1,0|1fsnurz,1,1,0|1fsnus0,26,8,1|1g3gqrz,26,8,1|1g3gqs0,1,1,0|1gbdxfz,1,1,0|1gbdxg0,26,8,1|1gm6tfz,26,8,1|1gm6tg0,1,1,0|1gu403z,1,1,0|1gu4040,26,8,1|1h4ww3z,26,8,1|1h4ww40,1,1,0|1hcu2rz,1,1,0|1hcu2s0,26,8,1|1hnzxfz,26,8,1|1hnzxg0,1,1,0|1hvk5fz,1,1,0|1hvk5g0,26,8,1|1i6q03z,26,8,1|1i6q040,1,1,0|1iea83z,1,1,0|1iea840,26,8,1|1ipg2rz,26,8,1|1ipg2s0,1,1,0|1ixd9fz,1,1,0|1ixd9g0,26,8,1|1j865fz,26,8,1|1j865g0,1,1,0|1jg3c3z,1,1,0|1jg3c40,26,8,1|1jqw83z,26,8,1|1jqw840,1,1,0|1jyterz,1,1,0|1jytes0,26,8,1|1k9z9fz,26,8,1|1k9z9g0,1,1,0|1khjhfz,1,1,0|1khjhg0,26,8,1|1kspc3z,26,8,1|1kspc40,1,1,0|1l09k3z,1,1,0|1l09k40,26,8,1|1lbferz,26,8,1|1lbfes0,1,1,0|1ljclfz,1,1,0|1ljclg0,26,8,1|1lu5hfz,26,8,1|1lu5hg0,1,1,0|1m22o3z,1,1,0|1m22o40,26,8,1|1mcvk3z,26,8,1|1mcvk40,1,1,0|1mksqrz,1,1,0|1mksqs0,26,8,1|1mvlmrz,26,8,1|1mvlms0,1,1,0|1n3itfz,1,1,0|1n3itg0,26,8,1|1neoo3z,26,8,1|1neoo40,1,1,0|1nm8w3z,1,1,0|1nm8w40,26,8,1|1nxeqrz,26,8,1|1nxeqs0,1,1,0|1o4yyrz,1,1,0|1o4yys0,26,8,1|1og4tfz,26,8,1|1og4tg0,1,1,0|1oo203z,1,1,0|1oo2040,26,8,1|1oyuw3z,26,8,1|1oyuw40,1,1,0|1p6s2rz,1,1,0|1p6s2s0,26,8,1|1phkyrz,26,8,1|1phkys0,1,1,0|1ppi5fz,1,1,0|1ppi5g0,26,8,1|1q0o03z,26,8,1|1q0o040,1,1,0|1q8883z,1,1,0|1q88840,26,8,1|1qje2rz,26,8,1|1qje2s0,1,1,0|1qqyarz,1,1,0|1qqyas0,26,8,1|1r245fz,26,8,1|1r245g0,1,1,0|1r9odfz,1,1,0|1r9odg0,26,8,1|1rku83z,26,8,1|1rku840,1,1,0|1rsrerz,1,1,0|1rsres0,26,8,1|1s3karz,26,8,1|1s3kas0,1,1,0|1sbhhfz,1,1,0|1sbhhg0,26,8,1|1smadfz,26,8,1|1smadg0,1,1,0|1su7k3z,1,1,0|1su7k40,26,8,1|1t5derz,26,8,1|1t5des0,1,1,0|1tcxmrz,1,1,0|1tcxms0,26,8,1|1to3hfz,26,8,1|1to3hg0,1,1,0|1tvnpfz,1,1,0|1tvnpg0,26,8,1|1u6tk3z,26,8,1|1u6tk40,1,1,0|1ueqqrz,1,1,0|1ueqqs0,26,8,1|1upjmrz,26,8,1|1upjms0,1,1,0|1uxgtfz,1,1,0|1uxgtg0,26,8,1|1v89pfz,26,8,1|1v89pg0,1,1,0|1vg6w3z,1,1,0|1vg6w40,26,8,1|1vqzs3z,26,8,1|1vqzs40,1,1,0|NaN,1,1,0","Europe/Helsinki|,0,343,0|-1bss9ye,0,343,0|-1bss9yd,77,343,0|-peghye,77,343,0|-peghyd,14,9,0|-ehco81,14,9,0|-ehco80,15,4,1|-e7vxk1,15,4,1|-e7vxk0,14,9,0|5v5unz,14,9,0|5v5uo0,15,4,1|64ivzz,15,4,1|64iw00,14,9,0|6dvxbz,14,9,0|6dvxc0,15,4,1|6n8ynz,15,4,1|6n8yo0,14,9,0|6wm2rz,14,9,0|6wm2s0,15,4,1|75z43z,15,4,1|75z440,14,9,0|7fc5fz,14,9,0|7fc5g0,15,4,1|7p25fz,15,4,1|7p25g0,14,9,0|7yf6rz,14,9,0|7yf6s0,15,4,1|87s83z,15,4,1|87s840,14,9,0|8h59fz,14,9,0|8h59g0,15,4,1|8qiarz,15,4,1|8qias0,14,9,0|8zvc3z,14,9,0|8zvc40,15,4,1|998dfz,15,4,1|998dg0,14,9,0|9ilerz,14,9,0|9iles0,15,4,1|9ryg3z,15,4,1|9ryg40,14,9,0|a1bhfz,14,9,0|a1bhg0,15,4,1|aaoirz,15,4,1|aaois0,14,9,0|ak1k3z,14,9,0|ak1k40,15,4,1|atrk3z,15,4,1|atrk40,14,9,0|b34lfz,14,9,0|b34lg0,15,4,1|bchmrz,15,4,1|bchms0,14,9,0|bluo3z,14,9,0|bluo40,15,4,1|bv7pfz,15,4,1|bv7pg0,14,9,0|c4kqrz,14,9,0|c4kqs0,15,4,1|cdxs3z,15,4,1|cdxs40,14,9,0|cnatfz,14,9,0|cnatg0,15,4,1|cwnurz,15,4,1|cwnus0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Isle_of_Man|,0,342,0|-1rprx9y,0,342,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,26,8,1|-rsid41,26,8,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,26,8,1|-onfzs1,26,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,26,8,1|-o5st41,26,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,26,8,1|-nmprs1,26,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,26,8,1|-n39rs1,26,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,26,8,1|-mkjp41,26,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,26,8,1|-m1tmg1,26,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,26,8,1|-liql41,26,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,26,8,1|-l00ig1,26,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,26,8,1|-khafs1,26,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,26,8,1|-jykd41,26,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,26,8,1|-jfuag1,26,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,26,8,1|-iwr941,26,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,26,8,1|-ie16g1,26,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,26,8,1|-hvb3s1,26,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,26,8,1|-hcl141,26,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,26,8,1|-gtuyg1,26,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,26,8,1|-gb4vs1,26,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,26,8,1|-fpw2g1,26,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,26,8,1|-eyiyk1,26,8,1|-eyiyk0,152,9,1|-ethh81,152,9,1|-ethh80,26,8,1|-eh8qk1,26,8,1|-eh8qk0,152,9,1|-earek1,152,9,1|-earek0,26,8,1|-dyinw1,26,8,1|-dyinw0,152,9,1|-drod81,152,9,1|-drod80,26,8,1|-dfsl81,26,8,1|-dfsl80,152,9,1|-d75h81,152,9,1|-d75h80,26,8,1|-cx0nw1,26,8,1|-cx0nw0,152,9,1|-cro2k1,152,9,1|-cro2k0,26,8,1|-cncfs1,26,8,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,26,8,1|-c4md41,26,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,26,8,1|-buwfw1,26,8,1|-buwfw0,152,9,1|-bos2k1,152,9,1|-bos2k0,26,8,1|-bkgfs1,26,8,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,26,8,1|-b1qd41,26,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,26,8,1|-aj0ag1,26,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,26,8,1|-a0n6g1,26,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,26,8,1|-9hx3s1,26,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,26,8,1|-8yu2g1,26,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,26,8,1|-8h6vs1,26,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,26,8,1|-7ygt41,26,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,26,8,1|-7fqqg1,26,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,26,8,1|-6wnp41,26,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,26,8,1|-6dxmg1,26,8,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,26,8,1|-5v7js1,26,8,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,26,8,1|-5chh41,26,8,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,26,8,1|-4treg1,26,8,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,26,8,1|-49lh41,26,8,1|-49lh40,1,1,0|-421941,1,1,0|-421940,26,8,1|-3qveg1,26,8,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,26,8,1|-385bs1,26,8,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,26,8,1|-2pf941,26,8,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,26,8,1|-26p6g1,26,8,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,26,8,1|-1nz3s1,26,8,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,26,8,1|-14w2g1,26,8,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,26,8,1|-m6841,26,8,1|-m6840,26,8,0|yd6vz,26,8,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,26,8,1|1h39jz,26,8,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,26,8,1|1ztc7z,26,8,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,26,8,1|2ijevz,26,8,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,26,8,1|319hjz,26,8,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,26,8,1|3jzk7z,26,8,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,26,8,1|42pmvz,26,8,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,26,8,1|4lso7z,26,8,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,26,8,1|54iqvz,26,8,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,26,8,1|5n8tjz,26,8,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,26,8,1|65ytfz,26,8,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,26,8,1|6oow3z,26,8,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,26,8,1|77eyrz,26,8,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,26,8,1|7qi03z,26,8,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,26,8,1|8982rz,26,8,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,26,8,1|8ry5fz,26,8,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,26,8,1|9ao83z,26,8,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,26,8,1|9tearz,26,8,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,26,8,1|achc3z,26,8,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,26,8,1|av7erz,26,8,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,26,8,1|bdxhfz,26,8,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,26,8,1|bwnk3z,26,8,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,26,8,1|cfdmrz,26,8,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,26,8,1|cy3pfz,26,8,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,26,8,1|dgts3z,26,8,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,26,8,1|dzwtfz,26,8,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,26,8,1|eimw3z,26,8,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,26,8,1|f1cyrz,26,8,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,26,8,1|fkg03z,26,8,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,26,8,1|g362rz,26,8,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,26,8,1|glw5fz,26,8,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,26,8,1|h4m83z,26,8,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,26,8,1|hncarz,26,8,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,26,8,1|i6fc3z,26,8,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,26,8,1|ip5erz,26,8,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,26,8,1|j7vhfz,26,8,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,26,8,1|jqlk3z,26,8,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,26,8,1|k9bmrz,26,8,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,26,8,1|ks1pfz,26,8,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,26,8,1|lb4qrz,26,8,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,26,8,1|ltutfz,26,8,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,26,8,1|mckw3z,26,8,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,26,8,1|mvayrz,26,8,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,26,8,1|ne11fz,26,8,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,26,8,1|nwr43z,26,8,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,26,8,1|ofu5fz,26,8,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,26,8,1|oyk83z,26,8,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,26,8,1|phaarz,26,8,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,26,8,1|q00dfz,26,8,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,26,8,1|qiqg3z,26,8,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,26,8,1|r1thfz,26,8,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,26,8,1|rkjk3z,26,8,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,26,8,1|s39mrz,26,8,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,26,8,1|slzpfz,26,8,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,26,8,1|t4ps3z,26,8,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,26,8,1|tnfurz,26,8,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,26,8,1|u6iw3z,26,8,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,26,8,1|up8yrz,26,8,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,26,8,1|v7z1fz,26,8,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,26,8,1|vqp43z,26,8,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,26,8,1|w9f6rz,26,8,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,26,8,1|wsi83z,26,8,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,26,8,1|xb8arz,26,8,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,26,8,1|xtydfz,26,8,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,26,8,1|ycog3z,26,8,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,26,8,1|yveirz,26,8,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,26,8,1|ze4lfz,26,8,1|ze4lg0,1,1,0|zm1s3z,1,1,0|zm1s40,26,8,1|zx7mrz,26,8,1|zx7ms0,1,1,0|104rurz,1,1,0|104rus0,26,8,1|10fxpfz,26,8,1|10fxpg0,1,1,0|10nhxfz,1,1,0|10nhxg0,26,8,1|10yns3z,26,8,1|10yns40,1,1,0|116kyrz,1,1,0|116kys0,26,8,1|11hdurz,26,8,1|11hdus0,1,1,0|11pb1fz,1,1,0|11pb1g0,26,8,1|1203xfz,26,8,1|1203xg0,1,1,0|128143z,1,1,0|1281440,26,8,1|12iu03z,26,8,1|12iu040,1,1,0|12qr6rz,1,1,0|12qr6s0,26,8,1|131x1fz,26,8,1|131x1g0,1,1,0|139h9fz,1,1,0|139h9g0,26,8,1|13kn43z,26,8,1|13kn440,1,1,0|13s7c3z,1,1,0|13s7c40,26,8,1|143d6rz,26,8,1|143d6s0,1,1,0|14badfz,1,1,0|14badg0,26,8,1|14m39fz,26,8,1|14m39g0,1,1,0|14u0g3z,1,1,0|14u0g40,26,8,1|154tc3z,26,8,1|154tc40,1,1,0|15cqirz,1,1,0|15cqis0,26,8,1|15nwdfz,26,8,1|15nwdg0,1,1,0|15vglfz,1,1,0|15vglg0,26,8,1|166mg3z,26,8,1|166mg40,1,1,0|16e6o3z,1,1,0|16e6o40,26,8,1|16pcirz,26,8,1|16pcis0,1,1,0|16x9pfz,1,1,0|16x9pg0,26,8,1|1782lfz,26,8,1|1782lg0,1,1,0|17fzs3z,1,1,0|17fzs40,26,8,1|17qso3z,26,8,1|17qso40,1,1,0|17ypurz,1,1,0|17ypus0,26,8,1|189iqrz,26,8,1|189iqs0,1,1,0|18hfxfz,1,1,0|18hfxg0,26,8,1|18sls3z,26,8,1|18sls40,1,1,0|190603z,1,1,0|1906040,26,8,1|19bburz,26,8,1|19bbus0,1,1,0|19iw2rz,1,1,0|19iw2s0,26,8,1|19u1xfz,26,8,1|19u1xg0,1,1,0|1a1z43z,1,1,0|1a1z440,26,8,1|1acs03z,26,8,1|1acs040,1,1,0|1akp6rz,1,1,0|1akp6s0,26,8,1|1avi2rz,26,8,1|1avi2s0,1,1,0|1b3f9fz,1,1,0|1b3f9g0,26,8,1|1bel43z,26,8,1|1bel440,1,1,0|1bm5c3z,1,1,0|1bm5c40,26,8,1|1bxb6rz,26,8,1|1bxb6s0,1,1,0|1c4verz,1,1,0|1c4ves0,26,8,1|1cg19fz,26,8,1|1cg19g0,1,1,0|1cnlhfz,1,1,0|1cnlhg0,26,8,1|1cyrc3z,26,8,1|1cyrc40,1,1,0|1d6oirz,1,1,0|1d6ois0,26,8,1|1dhherz,26,8,1|1dhhes0,1,1,0|1dpelfz,1,1,0|1dpelg0,26,8,1|1e07hfz,26,8,1|1e07hg0,1,1,0|1e84o3z,1,1,0|1e84o40,26,8,1|1ejairz,26,8,1|1ejais0,1,1,0|1equqrz,1,1,0|1equqs0,26,8,1|1f20lfz,26,8,1|1f20lg0,1,1,0|1f9ktfz,1,1,0|1f9ktg0,26,8,1|1fkqo3z,26,8,1|1fkqo40,1,1,0|1fsnurz,1,1,0|1fsnus0,26,8,1|1g3gqrz,26,8,1|1g3gqs0,1,1,0|1gbdxfz,1,1,0|1gbdxg0,26,8,1|1gm6tfz,26,8,1|1gm6tg0,1,1,0|1gu403z,1,1,0|1gu4040,26,8,1|1h4ww3z,26,8,1|1h4ww40,1,1,0|1hcu2rz,1,1,0|1hcu2s0,26,8,1|1hnzxfz,26,8,1|1hnzxg0,1,1,0|1hvk5fz,1,1,0|1hvk5g0,26,8,1|1i6q03z,26,8,1|1i6q040,1,1,0|1iea83z,1,1,0|1iea840,26,8,1|1ipg2rz,26,8,1|1ipg2s0,1,1,0|1ixd9fz,1,1,0|1ixd9g0,26,8,1|1j865fz,26,8,1|1j865g0,1,1,0|1jg3c3z,1,1,0|1jg3c40,26,8,1|1jqw83z,26,8,1|1jqw840,1,1,0|1jyterz,1,1,0|1jytes0,26,8,1|1k9z9fz,26,8,1|1k9z9g0,1,1,0|1khjhfz,1,1,0|1khjhg0,26,8,1|1kspc3z,26,8,1|1kspc40,1,1,0|1l09k3z,1,1,0|1l09k40,26,8,1|1lbferz,26,8,1|1lbfes0,1,1,0|1ljclfz,1,1,0|1ljclg0,26,8,1|1lu5hfz,26,8,1|1lu5hg0,1,1,0|1m22o3z,1,1,0|1m22o40,26,8,1|1mcvk3z,26,8,1|1mcvk40,1,1,0|1mksqrz,1,1,0|1mksqs0,26,8,1|1mvlmrz,26,8,1|1mvlms0,1,1,0|1n3itfz,1,1,0|1n3itg0,26,8,1|1neoo3z,26,8,1|1neoo40,1,1,0|1nm8w3z,1,1,0|1nm8w40,26,8,1|1nxeqrz,26,8,1|1nxeqs0,1,1,0|1o4yyrz,1,1,0|1o4yys0,26,8,1|1og4tfz,26,8,1|1og4tg0,1,1,0|1oo203z,1,1,0|1oo2040,26,8,1|1oyuw3z,26,8,1|1oyuw40,1,1,0|1p6s2rz,1,1,0|1p6s2s0,26,8,1|1phkyrz,26,8,1|1phkys0,1,1,0|1ppi5fz,1,1,0|1ppi5g0,26,8,1|1q0o03z,26,8,1|1q0o040,1,1,0|1q8883z,1,1,0|1q88840,26,8,1|1qje2rz,26,8,1|1qje2s0,1,1,0|1qqyarz,1,1,0|1qqyas0,26,8,1|1r245fz,26,8,1|1r245g0,1,1,0|1r9odfz,1,1,0|1r9odg0,26,8,1|1rku83z,26,8,1|1rku840,1,1,0|1rsrerz,1,1,0|1rsres0,26,8,1|1s3karz,26,8,1|1s3kas0,1,1,0|1sbhhfz,1,1,0|1sbhhg0,26,8,1|1smadfz,26,8,1|1smadg0,1,1,0|1su7k3z,1,1,0|1su7k40,26,8,1|1t5derz,26,8,1|1t5des0,1,1,0|1tcxmrz,1,1,0|1tcxms0,26,8,1|1to3hfz,26,8,1|1to3hg0,1,1,0|1tvnpfz,1,1,0|1tvnpg0,26,8,1|1u6tk3z,26,8,1|1u6tk40,1,1,0|1ueqqrz,1,1,0|1ueqqs0,26,8,1|1upjmrz,26,8,1|1upjms0,1,1,0|1uxgtfz,1,1,0|1uxgtg0,26,8,1|1v89pfz,26,8,1|1v89pg0,1,1,0|1vg6w3z,1,1,0|1vg6w40,26,8,1|1vqzs3z,26,8,1|1vqzs40,1,1,0|NaN,1,1,0","Europe/Istanbul|,0,344,0|-1ayy815,0,344,0|-1ayy814,117,345,0|-ux9xex,117,345,0|-ux9xew,14,9,0|-s0e081,14,9,0|-s0e080,15,4,1|-rsir01,15,4,1|-rsir00,14,9,0|-pyzew1,14,9,0|-pyzew0,15,4,1|-po4r01,15,4,1|-po4r00,14,9,0|-pfwdk1,14,9,0|-pfwdk0,15,4,1|-p6hkc1,15,4,1|-p6hkc0,14,9,0|-oxj9k1,14,9,0|-oxj9k0,15,4,1|-ongdo1,15,4,1|-ongdo0,14,9,0|-ntgo81,14,9,0|-ntgo80,15,4,1|-nm7n01,15,4,1|-nm7n00,14,9,0|-nbayw1,14,9,0|-nbayw0,15,4,1|-n3fpo1,15,4,1|-n3fpo0,14,9,0|-febpk1,14,9,0|-febpk0,15,4,1|-f9c5o1,15,4,1|-f9c5o0,14,9,0|-f6gdk1,14,9,0|-f6gdk0,15,4,1|-erc0c1,15,4,1|-erc0c0,14,9,0|-ehgdk1,14,9,0|-ehgdk0,15,4,1|-cnaz01,15,4,1|-cnaz00,14,9,0|-cb5uw1,14,9,0|-cb5uw0,15,4,1|-c4w0c1,15,4,1|-c4w0c0,14,9,0|-bujpk1,14,9,0|-bujpk0,15,4,1|-blwoc1,15,4,1|-blwoc0,14,9,0|-bbtmw1,14,9,0|-bbtmw0,15,4,1|-b36lo1,15,4,1|-b36lo0,14,9,0|-atgiw1,14,9,0|-atgiw0,15,4,1|-akgj01,15,4,1|-akgj00,14,9,0|-aadhk1,14,9,0|-aadhk0,15,4,1|-a1dho1,15,4,1|-a1dho0,14,9,0|-9rag81,14,9,0|-9rag80,15,4,1|-9inf01,15,4,1|-9inf00,14,9,0|-3wa5k1,14,9,0|-3wa5k0,15,4,1|-3805o1,15,4,1|-3805o0,14,9,0|-2xtew1,14,9,0|-2xtew0,15,4,1|-2qo301,15,4,1|-2qo300,14,9,0|1s8vvz,14,9,0|1s8vw0,15,4,1|2062jz,15,4,1|2062k0,14,9,0|27qdbz,14,9,0|27qdc0,15,4,1|2iw57z,15,4,1|2iw580,14,9,0|2q1mnz,14,9,0|2q1mo0,15,4,1|31m7vz,15,4,1|31m7w0,14,9,0|38tjzz,14,9,0|38tk00,15,4,1|3kcajz,15,4,1|3kcak0,14,9,0|3s9jzz,14,9,0|3s9k00,15,4,1|42cfvz,15,4,1|42cfw0,14,9,0|4azmnz,14,9,0|4azmo0,15,4,1|4ficzz,15,4,1|4fid00,100,4,0|73397z,100,4,0|733980,105,203,1|76bufz,105,203,1|76bug0,100,4,0|7qp97z,100,4,0|7qp980,14,9,0|7zg2jz,14,9,0|7zg2k0,15,4,1|87q7vz,15,4,1|87q7w0,14,9,0|8h53vz,14,9,0|8h53w0,15,4,1|8qi57z,15,4,1|8qi580,14,9,0|8zv6jz,14,9,0|8zv6k0,15,4,1|9987vz,15,4,1|9987w0,14,9,0|9il97z,14,9,0|9il980,15,4,1|9ryajz,15,4,1|9ryak0,14,9,0|a1bbvz,14,9,0|a1bbw0,15,4,1|aaod7z,15,4,1|aaod80,14,9,0|ak1ejz,14,9,0|ak1ek0,15,4,1|atrejz,15,4,1|atrek0,14,9,0|b34fvz,14,9,0|b34fw0,15,4,1|bchh7z,15,4,1|bchh80,14,9,0|bluijz,14,9,0|bluik0,15,4,1|bv7jvz,15,4,1|bv7jw0,14,9,0|c4kl7z,14,9,0|c4kl80,15,4,1|cdxmjz,15,4,1|cdxmk0,14,9,0|cmxp7z,14,9,0|cmxp80,15,4,1|cwnp7z,15,4,1|cwnp80,14,9,0|d60qjz,14,9,0|d60qk0,15,4,1|dfdrvz,15,4,1|dfdrw0,14,9,0|dp3rvz,14,9,0|dp3rw0,15,4,1|dzwnvz,15,4,1|dzwnw0,14,9,0|e7tujz,14,9,0|e7tuk0,15,4,1|eimqjz,15,4,1|eimqk0,14,9,0|eqjx7z,14,9,0|eqjx80,15,4,1|f1ct7z,15,4,1|f1ct80,14,9,0|f99zvz,14,9,0|f99zw0,15,4,1|fkfujz,15,4,1|fkfuk0,14,9,0|fs02jz,14,9,0|fs02k0,15,4,1|g35x7z,15,4,1|g35x80,14,9,0|gaq57z,14,9,0|gaq580,15,4,1|glvzvz,15,4,1|glvzw0,14,9,0|gtt6jz,14,9,0|gtt6k0,15,4,1|h4m2jz,15,4,1|h4m2k0,14,9,0|hcj97z,14,9,0|hcj980,15,4,1|hnc57z,15,4,1|hnc580,14,9,0|hv9bvz,14,9,0|hv9bw0,15,4,1|i6f6jz,15,4,1|i6f6k0,14,9,0|idzejz,14,9,0|idzek0,15,4,1|ip597z,15,4,1|ip5980,14,9,0|iwph7z,14,9,0|iwph80,15,4,1|j7vbvz,15,4,1|j7vbw0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|liqtfz,14,9,0|liqtg0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n3a03z,14,9,0|n3a040,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nxh1fz,15,4,1|nxh1g0,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|od3ozz,15,4,1|od3p00,100,4,0|NaN,100,4,0","Europe/Jersey|,0,342,0|-1rprx9y,0,342,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,26,8,1|-rsid41,26,8,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,26,8,1|-onfzs1,26,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,26,8,1|-o5st41,26,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,26,8,1|-nmprs1,26,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,26,8,1|-n39rs1,26,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,26,8,1|-mkjp41,26,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,26,8,1|-m1tmg1,26,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,26,8,1|-liql41,26,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,26,8,1|-l00ig1,26,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,26,8,1|-khafs1,26,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,26,8,1|-jykd41,26,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,26,8,1|-jfuag1,26,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,26,8,1|-iwr941,26,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,26,8,1|-ie16g1,26,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,26,8,1|-hvb3s1,26,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,26,8,1|-hcl141,26,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,26,8,1|-gtuyg1,26,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,26,8,1|-gb4vs1,26,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,26,8,1|-fpw2g1,26,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,26,8,1|-eyiyk1,26,8,1|-eyiyk0,152,9,1|-ethh81,152,9,1|-ethh80,26,8,1|-eh8qk1,26,8,1|-eh8qk0,152,9,1|-earek1,152,9,1|-earek0,26,8,1|-dyinw1,26,8,1|-dyinw0,152,9,1|-drod81,152,9,1|-drod80,26,8,1|-dfsl81,26,8,1|-dfsl80,152,9,1|-d75h81,152,9,1|-d75h80,26,8,1|-cx0nw1,26,8,1|-cx0nw0,152,9,1|-cro2k1,152,9,1|-cro2k0,26,8,1|-cncfs1,26,8,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,26,8,1|-c4md41,26,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,26,8,1|-buwfw1,26,8,1|-buwfw0,152,9,1|-bos2k1,152,9,1|-bos2k0,26,8,1|-bkgfs1,26,8,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,26,8,1|-b1qd41,26,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,26,8,1|-aj0ag1,26,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,26,8,1|-a0n6g1,26,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,26,8,1|-9hx3s1,26,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,26,8,1|-8yu2g1,26,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,26,8,1|-8h6vs1,26,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,26,8,1|-7ygt41,26,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,26,8,1|-7fqqg1,26,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,26,8,1|-6wnp41,26,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,26,8,1|-6dxmg1,26,8,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,26,8,1|-5v7js1,26,8,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,26,8,1|-5chh41,26,8,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,26,8,1|-4treg1,26,8,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,26,8,1|-49lh41,26,8,1|-49lh40,1,1,0|-421941,1,1,0|-421940,26,8,1|-3qveg1,26,8,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,26,8,1|-385bs1,26,8,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,26,8,1|-2pf941,26,8,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,26,8,1|-26p6g1,26,8,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,26,8,1|-1nz3s1,26,8,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,26,8,1|-14w2g1,26,8,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,26,8,1|-m6841,26,8,1|-m6840,26,8,0|yd6vz,26,8,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,26,8,1|1h39jz,26,8,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,26,8,1|1ztc7z,26,8,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,26,8,1|2ijevz,26,8,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,26,8,1|319hjz,26,8,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,26,8,1|3jzk7z,26,8,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,26,8,1|42pmvz,26,8,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,26,8,1|4lso7z,26,8,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,26,8,1|54iqvz,26,8,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,26,8,1|5n8tjz,26,8,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,26,8,1|65ytfz,26,8,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,26,8,1|6oow3z,26,8,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,26,8,1|77eyrz,26,8,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,26,8,1|7qi03z,26,8,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,26,8,1|8982rz,26,8,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,26,8,1|8ry5fz,26,8,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,26,8,1|9ao83z,26,8,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,26,8,1|9tearz,26,8,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,26,8,1|achc3z,26,8,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,26,8,1|av7erz,26,8,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,26,8,1|bdxhfz,26,8,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,26,8,1|bwnk3z,26,8,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,26,8,1|cfdmrz,26,8,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,26,8,1|cy3pfz,26,8,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,26,8,1|dgts3z,26,8,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,26,8,1|dzwtfz,26,8,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,26,8,1|eimw3z,26,8,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,26,8,1|f1cyrz,26,8,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,26,8,1|fkg03z,26,8,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,26,8,1|g362rz,26,8,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,26,8,1|glw5fz,26,8,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,26,8,1|h4m83z,26,8,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,26,8,1|hncarz,26,8,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,26,8,1|i6fc3z,26,8,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,26,8,1|ip5erz,26,8,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,26,8,1|j7vhfz,26,8,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,26,8,1|jqlk3z,26,8,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,26,8,1|k9bmrz,26,8,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,26,8,1|ks1pfz,26,8,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,26,8,1|lb4qrz,26,8,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,26,8,1|ltutfz,26,8,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,26,8,1|mckw3z,26,8,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,26,8,1|mvayrz,26,8,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,26,8,1|ne11fz,26,8,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,26,8,1|nwr43z,26,8,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,26,8,1|ofu5fz,26,8,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,26,8,1|oyk83z,26,8,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,26,8,1|phaarz,26,8,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,26,8,1|q00dfz,26,8,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,26,8,1|qiqg3z,26,8,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,26,8,1|r1thfz,26,8,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,26,8,1|rkjk3z,26,8,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,26,8,1|s39mrz,26,8,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,26,8,1|slzpfz,26,8,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,26,8,1|t4ps3z,26,8,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,26,8,1|tnfurz,26,8,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,26,8,1|u6iw3z,26,8,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,26,8,1|up8yrz,26,8,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,26,8,1|v7z1fz,26,8,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,26,8,1|vqp43z,26,8,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,26,8,1|w9f6rz,26,8,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,26,8,1|wsi83z,26,8,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,26,8,1|xb8arz,26,8,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,26,8,1|xtydfz,26,8,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,26,8,1|ycog3z,26,8,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,26,8,1|yveirz,26,8,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,26,8,1|ze4lfz,26,8,1|ze4lg0,1,1,0|zm1s3z,1,1,0|zm1s40,26,8,1|zx7mrz,26,8,1|zx7ms0,1,1,0|104rurz,1,1,0|104rus0,26,8,1|10fxpfz,26,8,1|10fxpg0,1,1,0|10nhxfz,1,1,0|10nhxg0,26,8,1|10yns3z,26,8,1|10yns40,1,1,0|116kyrz,1,1,0|116kys0,26,8,1|11hdurz,26,8,1|11hdus0,1,1,0|11pb1fz,1,1,0|11pb1g0,26,8,1|1203xfz,26,8,1|1203xg0,1,1,0|128143z,1,1,0|1281440,26,8,1|12iu03z,26,8,1|12iu040,1,1,0|12qr6rz,1,1,0|12qr6s0,26,8,1|131x1fz,26,8,1|131x1g0,1,1,0|139h9fz,1,1,0|139h9g0,26,8,1|13kn43z,26,8,1|13kn440,1,1,0|13s7c3z,1,1,0|13s7c40,26,8,1|143d6rz,26,8,1|143d6s0,1,1,0|14badfz,1,1,0|14badg0,26,8,1|14m39fz,26,8,1|14m39g0,1,1,0|14u0g3z,1,1,0|14u0g40,26,8,1|154tc3z,26,8,1|154tc40,1,1,0|15cqirz,1,1,0|15cqis0,26,8,1|15nwdfz,26,8,1|15nwdg0,1,1,0|15vglfz,1,1,0|15vglg0,26,8,1|166mg3z,26,8,1|166mg40,1,1,0|16e6o3z,1,1,0|16e6o40,26,8,1|16pcirz,26,8,1|16pcis0,1,1,0|16x9pfz,1,1,0|16x9pg0,26,8,1|1782lfz,26,8,1|1782lg0,1,1,0|17fzs3z,1,1,0|17fzs40,26,8,1|17qso3z,26,8,1|17qso40,1,1,0|17ypurz,1,1,0|17ypus0,26,8,1|189iqrz,26,8,1|189iqs0,1,1,0|18hfxfz,1,1,0|18hfxg0,26,8,1|18sls3z,26,8,1|18sls40,1,1,0|190603z,1,1,0|1906040,26,8,1|19bburz,26,8,1|19bbus0,1,1,0|19iw2rz,1,1,0|19iw2s0,26,8,1|19u1xfz,26,8,1|19u1xg0,1,1,0|1a1z43z,1,1,0|1a1z440,26,8,1|1acs03z,26,8,1|1acs040,1,1,0|1akp6rz,1,1,0|1akp6s0,26,8,1|1avi2rz,26,8,1|1avi2s0,1,1,0|1b3f9fz,1,1,0|1b3f9g0,26,8,1|1bel43z,26,8,1|1bel440,1,1,0|1bm5c3z,1,1,0|1bm5c40,26,8,1|1bxb6rz,26,8,1|1bxb6s0,1,1,0|1c4verz,1,1,0|1c4ves0,26,8,1|1cg19fz,26,8,1|1cg19g0,1,1,0|1cnlhfz,1,1,0|1cnlhg0,26,8,1|1cyrc3z,26,8,1|1cyrc40,1,1,0|1d6oirz,1,1,0|1d6ois0,26,8,1|1dhherz,26,8,1|1dhhes0,1,1,0|1dpelfz,1,1,0|1dpelg0,26,8,1|1e07hfz,26,8,1|1e07hg0,1,1,0|1e84o3z,1,1,0|1e84o40,26,8,1|1ejairz,26,8,1|1ejais0,1,1,0|1equqrz,1,1,0|1equqs0,26,8,1|1f20lfz,26,8,1|1f20lg0,1,1,0|1f9ktfz,1,1,0|1f9ktg0,26,8,1|1fkqo3z,26,8,1|1fkqo40,1,1,0|1fsnurz,1,1,0|1fsnus0,26,8,1|1g3gqrz,26,8,1|1g3gqs0,1,1,0|1gbdxfz,1,1,0|1gbdxg0,26,8,1|1gm6tfz,26,8,1|1gm6tg0,1,1,0|1gu403z,1,1,0|1gu4040,26,8,1|1h4ww3z,26,8,1|1h4ww40,1,1,0|1hcu2rz,1,1,0|1hcu2s0,26,8,1|1hnzxfz,26,8,1|1hnzxg0,1,1,0|1hvk5fz,1,1,0|1hvk5g0,26,8,1|1i6q03z,26,8,1|1i6q040,1,1,0|1iea83z,1,1,0|1iea840,26,8,1|1ipg2rz,26,8,1|1ipg2s0,1,1,0|1ixd9fz,1,1,0|1ixd9g0,26,8,1|1j865fz,26,8,1|1j865g0,1,1,0|1jg3c3z,1,1,0|1jg3c40,26,8,1|1jqw83z,26,8,1|1jqw840,1,1,0|1jyterz,1,1,0|1jytes0,26,8,1|1k9z9fz,26,8,1|1k9z9g0,1,1,0|1khjhfz,1,1,0|1khjhg0,26,8,1|1kspc3z,26,8,1|1kspc40,1,1,0|1l09k3z,1,1,0|1l09k40,26,8,1|1lbferz,26,8,1|1lbfes0,1,1,0|1ljclfz,1,1,0|1ljclg0,26,8,1|1lu5hfz,26,8,1|1lu5hg0,1,1,0|1m22o3z,1,1,0|1m22o40,26,8,1|1mcvk3z,26,8,1|1mcvk40,1,1,0|1mksqrz,1,1,0|1mksqs0,26,8,1|1mvlmrz,26,8,1|1mvlms0,1,1,0|1n3itfz,1,1,0|1n3itg0,26,8,1|1neoo3z,26,8,1|1neoo40,1,1,0|1nm8w3z,1,1,0|1nm8w40,26,8,1|1nxeqrz,26,8,1|1nxeqs0,1,1,0|1o4yyrz,1,1,0|1o4yys0,26,8,1|1og4tfz,26,8,1|1og4tg0,1,1,0|1oo203z,1,1,0|1oo2040,26,8,1|1oyuw3z,26,8,1|1oyuw40,1,1,0|1p6s2rz,1,1,0|1p6s2s0,26,8,1|1phkyrz,26,8,1|1phkys0,1,1,0|1ppi5fz,1,1,0|1ppi5g0,26,8,1|1q0o03z,26,8,1|1q0o040,1,1,0|1q8883z,1,1,0|1q88840,26,8,1|1qje2rz,26,8,1|1qje2s0,1,1,0|1qqyarz,1,1,0|1qqyas0,26,8,1|1r245fz,26,8,1|1r245g0,1,1,0|1r9odfz,1,1,0|1r9odg0,26,8,1|1rku83z,26,8,1|1rku840,1,1,0|1rsrerz,1,1,0|1rsres0,26,8,1|1s3karz,26,8,1|1s3kas0,1,1,0|1sbhhfz,1,1,0|1sbhhg0,26,8,1|1smadfz,26,8,1|1smadg0,1,1,0|1su7k3z,1,1,0|1su7k40,26,8,1|1t5derz,26,8,1|1t5des0,1,1,0|1tcxmrz,1,1,0|1tcxms0,26,8,1|1to3hfz,26,8,1|1to3hg0,1,1,0|1tvnpfz,1,1,0|1tvnpg0,26,8,1|1u6tk3z,26,8,1|1u6tk40,1,1,0|1ueqqrz,1,1,0|1ueqqs0,26,8,1|1upjmrz,26,8,1|1upjms0,1,1,0|1uxgtfz,1,1,0|1uxgtg0,26,8,1|1v89pfz,26,8,1|1v89pg0,1,1,0|1vg6w3z,1,1,0|1vg6w40,26,8,1|1vqzs3z,26,8,1|1vqzs40,1,1,0|NaN,1,1,0","Europe/Kaliningrad|,0,327,0|-14212gp,0,327,0|-14212go,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cwm2w1,9,9,1|-cwm2w0,14,9,0|-cvmw81,14,9,0|-cvmw80,15,4,1|-cm2j01,15,4,1|-cm2j00,14,9,0|-cdzpk1,14,9,0|-cdzpk0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34inz,14,9,0|b34io0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blulbz,14,9,0|blulc0,15,4,1|bv7mnz,15,4,1|bv7mo0,14,9,0|c4knzz,14,9,0|c4ko00,15,4,1|cdxpbz,15,4,1|cdxpc0,14,9,0|cnaqnz,14,9,0|cnaqo0,15,4,1|cwnrzz,15,4,1|cwns00,14,9,0|d60tbz,14,9,0|d60tc0,15,4,1|dfdunz,15,4,1|dfduo0,14,9,0|dp3unz,14,9,0|dp3uo0,15,4,1|dzwqnz,15,4,1|dzwqo0,14,9,0|e7txbz,14,9,0|e7txc0,15,4,1|eimtbz,15,4,1|eimtc0,14,9,0|eqjzzz,14,9,0|eqk000,15,4,1|f1cvzz,15,4,1|f1cw00,14,9,0|f9a2nz,14,9,0|f9a2o0,15,4,1|fkfxbz,15,4,1|fkfxc0,14,9,0|fs05bz,14,9,0|fs05c0,15,4,1|g35zzz,15,4,1|g36000,14,9,0|gaq7zz,14,9,0|gaq800,15,4,1|glw2nz,15,4,1|glw2o0,14,9,0|gtt9bz,14,9,0|gtt9c0,15,4,1|h4m5bz,15,4,1|h4m5c0,14,9,0|hcjbzz,14,9,0|hcjc00,15,4,1|hnc7zz,15,4,1|hnc800,14,9,0|hv9enz,14,9,0|hv9eo0,15,4,1|i6f9bz,15,4,1|i6f9c0,14,9,0|idzhbz,14,9,0|idzhc0,15,4,1|ip5bzz,15,4,1|ip5c00,14,9,0|iwpjzz,14,9,0|iwpk00,15,4,1|j7venz,15,4,1|j7veo0,14,9,0|jffmnz,14,9,0|jffmo0,15,4,1|jqlhbz,15,4,1|jqlhc0,14,9,0|jyinzz,14,9,0|jyio00,15,4,1|k9bjzz,15,4,1|k9bk00,14,9,0|kh8qnz,14,9,0|kh8qo0,15,4,1|ks1mnz,15,4,1|ks1mo0,14,9,0|kzytbz,14,9,0|kzytc0,15,4,1|lb4nzz,15,4,1|lb4o00,14,9,0|liovzz,14,9,0|liow00,100,4,0|ne0vvz,100,4,0|ne0vw0,14,9,0|NaN,14,9,0","Europe/Kiev|,0,346,0|-1ayy8bh,0,346,0|-1ayy8bg,74,346,0|-nu11nh,74,346,0|-nu11ng,14,9,0|-kmr1k1,14,9,0|-kmr1k0,149,4,0|-erdv01,149,4,0|-erdv00,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dnetg1,8,8,0|-dnetg0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ak1ejz,149,4,0|ak1ek0,150,203,1|ap2t3z,150,203,1|ap2t40,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Kirov|,0,347,0|-qcx401,0,347,0|-qcx400,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,105,203,0|blufrz,105,203,0|blufs0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,100,4,0|dp3rvz,100,4,0|dp3rw0,105,203,1|dzwnvz,105,203,1|dzwnw0,100,4,0|e7tujz,100,4,0|e7tuk0,105,203,1|eimqjz,105,203,1|eimqk0,100,4,0|eqjx7z,100,4,0|eqjx80,105,203,1|f1ct7z,105,203,1|f1ct80,100,4,0|f99zvz,100,4,0|f99zw0,105,203,1|fkfujz,105,203,1|fkfuk0,100,4,0|fs02jz,100,4,0|fs02k0,105,203,1|g35x7z,105,203,1|g35x80,100,4,0|gaq57z,100,4,0|gaq580,105,203,1|glvzvz,105,203,1|glvzw0,100,4,0|gtt6jz,100,4,0|gtt6k0,105,203,1|h4m2jz,105,203,1|h4m2k0,100,4,0|hcj97z,100,4,0|hcj980,105,203,1|hnc57z,105,203,1|hnc580,100,4,0|hv9bvz,100,4,0|hv9bw0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,1|ip597z,105,203,1|ip5980,100,4,0|iwph7z,100,4,0|iwph80,105,203,1|j7vbvz,105,203,1|j7vbw0,100,4,0|jffjvz,100,4,0|jffjw0,105,203,1|jqlejz,105,203,1|jqlek0,100,4,0|jyil7z,100,4,0|jyil80,105,203,1|k9bh7z,105,203,1|k9bh80,100,4,0|kh8nvz,100,4,0|kh8nw0,105,203,1|ks1jvz,105,203,1|ks1jw0,100,4,0|kzyqjz,100,4,0|kzyqk0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|ne0t3z,105,203,0|ne0t40,100,4,0|NaN,100,4,0","Europe/Lisbon|,0,27,0|-u9rhc1,0,27,0|-u9rhc0,6,1,0|-rxx1g1,6,1,0|-rxx1g0,7,8,1|-rqx401,7,8,1|-rqx400,6,1,0|-rkqys1,6,1,0|-rkqys0,7,8,1|-r90qs1,7,8,1|-r90qs0,6,1,0|-r1x6s1,6,1,0|-r1x6s0,7,8,1|-qq8tg1,7,8,1|-qq8tg0,6,1,0|-qj7441,6,1,0|-qj7440,7,8,1|-q7gw41,7,8,1|-q7gw40,6,1,0|-q0dc41,6,1,0|-q0dc40,7,8,1|-pon441,7,8,1|-pon440,6,1,0|-phles1,6,1,0|-phles0,7,8,1|-p5v6s1,7,8,1|-p5v6s0,6,1,0|-nusqs1,6,1,0|-nusqs0,7,8,1|-nlhk41,7,8,1|-nlhk40,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjxg1,7,8,1|-mkjxg0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1tus1,7,8,1|-m1tus0,6,1,0|-lrqw41,6,1,0|-lrqw40,7,8,1|-liqtg1,7,8,1|-liqtg0,6,1,0|-l8nus1,6,1,0|-l8nus0,7,8,1|-l00qs1,7,8,1|-l00qs0,6,1,0|-k77pg1,6,1,0|-k77pg0,7,8,1|-jyklg1,7,8,1|-jyklg0,6,1,0|-jp7k41,6,1,0|-jp7k40,7,8,1|-jfuis1,7,8,1|-jfuis0,6,1,0|-ineg41,6,1,0|-ineg40,7,8,1|-ie1es1,7,8,1|-ie1es0,6,1,0|-i51c41,6,1,0|-i51c40,7,8,1|-hvbc41,7,8,1|-hvbc40,6,1,0|-hl8dg1,6,1,0|-hl8dg0,7,8,1|-hcl9g1,7,8,1|-hcl9g0,6,1,0|-h38841,6,1,0|-h38840,7,8,1|-gtv6s1,7,8,1|-gtv6s0,6,1,0|-gkv441,6,1,0|-gkv440,7,8,1|-gb5441,7,8,1|-gb5440,6,1,0|-g125g1,6,1,0|-g125g0,7,8,1|-fpwas1,7,8,1|-fpwas0,6,1,0|-fkutg1,6,1,0|-fkutg0,7,8,1|-f9c041,7,8,1|-f9c040,6,1,0|-ezyys1,6,1,0|-ezyys0,7,8,1|-eqk2s1,7,8,1|-eqk2s0,6,1,0|-eibs41,6,1,0|-eibs40,7,8,1|-eg62w1,7,8,1|-eg62w0,153,9,1|-eaeo81,153,9,1|-eaeo80,7,8,1|-e6sys1,7,8,1|-e6sys0,6,1,0|-dzlpg1,6,1,0|-dzlpg0,7,8,1|-dxsyw1,7,8,1|-dxsyw0,153,9,1|-dqyo81,153,9,1|-dqyo80,7,8,1|-dnpxg1,7,8,1|-dnpxg0,6,1,0|-dgvms1,6,1,0|-dgvms0,7,8,1|-depxk1,7,8,1|-depxk0,153,9,1|-d88lk1,153,9,1|-d88lk0,7,8,1|-d4zus1,7,8,1|-d4zus0,6,1,0|-cy5k41,6,1,0|-cy5k40,7,8,1|-cvzuw1,7,8,1|-cvzuw0,153,9,1|-cpiiw1,153,9,1|-cpiiw0,7,8,1|-cm9s41,7,8,1|-cm9s40,6,1,0|-cdzms1,6,1,0|-cdzms0,7,8,1|-c4mlg1,7,8,1|-c4mlg0,6,1,0|-bv9bs1,6,1,0|-bv9bs0,7,8,1|-blwag1,7,8,1|-blwag0,6,1,0|-bcj941,6,1,0|-bcj940,7,8,1|-b367s1,7,8,1|-b367s0,6,1,0|-att6g1,6,1,0|-att6g0,7,8,1|-akg541,7,8,1|-akg540,6,1,0|-ab33s1,6,1,0|-ab33s0,7,8,1|-a1q2g1,7,8,1|-a1q2g0,6,1,0|-9sd141,6,1,0|-9sd140,7,8,1|-9in141,7,8,1|-9in140,6,1,0|-999zs1,6,1,0|-999zs0,7,8,1|-8zwyg1,7,8,1|-8zwyg0,6,1,0|-8qjx41,6,1,0|-8qjx40,7,8,1|-8h6vs1,7,8,1|-8h6vs0,6,1,0|-87tug1,6,1,0|-87tug0,7,8,1|-7ygt41,7,8,1|-7ygt40,6,1,0|-7p3rs1,6,1,0|-7p3rs0,7,8,1|-7fqqg1,7,8,1|-7fqqg0,6,1,0|-76dp41,6,1,0|-76dp40,7,8,1|-6wnp41,7,8,1|-6wnp40,6,1,0|-6nans1,6,1,0|-6nans0,7,8,1|-6dxmg1,7,8,1|-6dxmg0,6,1,0|-64kl41,6,1,0|-64kl40,7,8,1|-5v7js1,7,8,1|-5v7js0,6,1,0|-5luig1,6,1,0|-5luig0,7,8,1|-5chh41,7,8,1|-5chh40,6,1,0|-534fs1,6,1,0|-534fs0,7,8,1|-4treg1,7,8,1|-4treg0,6,1,0|-4ked41,6,1,0|-4ked40,7,8,1|-4b1bs1,7,8,1|-4b1bs0,6,1,0|-41oag1,6,1,0|-41oag0,7,8,1|-3ryag1,7,8,1|-3ryag0,6,1,0|-3il941,6,1,0|-3il940,7,8,1|-3987s1,7,8,1|-3987s0,6,1,0|-2zv6g1,6,1,0|-2zv6g0,7,8,1|-2qi541,7,8,1|-2qi540,6,1,0|-2h53s1,6,1,0|-2h53s0,7,8,1|-27s2g1,7,8,1|-27s2g0,6,1,0|-1yf141,6,1,0|-1yf140,8,8,0|3ijjzz,8,8,0|3ijk00,6,1,0|3rwlbz,6,1,0|3rwlc0,7,8,1|419mnz,7,8,1|419mo0,6,1,0|4azmnz,6,1,0|4azmo0,7,8,1|4kcnzz,7,8,1|4kco00,6,1,0|4tppbz,6,1,0|4tppc0,7,8,1|532tfz,7,8,1|532tg0,6,1,0|5cfrzz,6,1,0|5cfs00,7,8,1|5lsw3z,7,8,1|5lsw40,6,1,0|5v5xfz,6,1,0|5v5xg0,7,8,1|64iyrz,7,8,1|64iys0,6,1,0|6dw03z,6,1,0|6dw040,7,8,1|6n91fz,7,8,1|6n91g0,6,1,0|6wm5jz,6,1,0|6wm5k0,7,8,1|75z43z,7,8,1|75z440,6,1,0|7fc5fz,6,1,0|7fc5g0,7,8,1|7p25fz,7,8,1|7p25g0,6,1,0|7yf6rz,6,1,0|7yf6s0,7,8,1|87s83z,7,8,1|87s840,6,1,0|8h59fz,6,1,0|8h59g0,7,8,1|8qiarz,7,8,1|8qias0,6,1,0|8zvc3z,6,1,0|8zvc40,7,8,1|998dfz,7,8,1|998dg0,6,1,0|9ilerz,6,1,0|9iles0,7,8,1|9ryg3z,7,8,1|9ryg40,6,1,0|a1bhfz,6,1,0|a1bhg0,7,8,1|aaoirz,7,8,1|aaois0,6,1,0|ak1k3z,6,1,0|ak1k40,7,8,1|atrk3z,7,8,1|atrk40,6,1,0|b34lfz,6,1,0|b34lg0,7,8,1|bchmrz,7,8,1|bchms0,6,1,0|bluo3z,6,1,0|bluo40,7,8,1|bv7pfz,7,8,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,7,8,1|dzwtfz,7,8,1|dzwtg0,6,1,0|e7u03z,6,1,0|e7u040,7,8,1|eimw3z,7,8,1|eimw40,6,1,0|eqk2rz,6,1,0|eqk2s0,7,8,1|f1cyrz,7,8,1|f1cys0,6,1,0|f9a5fz,6,1,0|f9a5g0,7,8,1|fkg03z,7,8,1|fkg040,6,1,0|fs083z,6,1,0|fs0840,7,8,1|g362rz,7,8,1|g362s0,6,1,0|gaqarz,6,1,0|gaqas0,7,8,1|glw5fz,7,8,1|glw5g0,6,1,0|gttc3z,6,1,0|gttc40,7,8,1|h4m83z,7,8,1|h4m840,6,1,0|hcjerz,6,1,0|hcjes0,7,8,1|hncarz,7,8,1|hncas0,6,1,0|hv9hfz,6,1,0|hv9hg0,7,8,1|i6fc3z,7,8,1|i6fc40,6,1,0|idzk3z,6,1,0|idzk40,7,8,1|ip5erz,7,8,1|ip5es0,6,1,0|iwpmrz,6,1,0|iwpms0,7,8,1|j7vhfz,7,8,1|j7vhg0,6,1,0|jffpfz,6,1,0|jffpg0,7,8,1|jqlk3z,7,8,1|jqlk40,6,1,0|jyiqrz,6,1,0|jyiqs0,7,8,1|k9bmrz,7,8,1|k9bms0,6,1,0|kh8tfz,6,1,0|kh8tg0,7,8,1|ks1pfz,7,8,1|ks1pg0,6,1,0|kzyw3z,6,1,0|kzyw40,7,8,1|lb4qrz,7,8,1|lb4qs0,6,1,0|lioyrz,6,1,0|lioys0,7,8,1|ltutfz,7,8,1|ltutg0,6,1,0|m1f1fz,6,1,0|m1f1g0,7,8,1|mckw3z,7,8,1|mckw40,6,1,0|mki2rz,6,1,0|mki2s0,7,8,1|mvayrz,7,8,1|mvays0,6,1,0|n385fz,6,1,0|n385g0,7,8,1|ne11fz,7,8,1|ne11g0,6,1,0|nly83z,6,1,0|nly840,7,8,1|nwr43z,7,8,1|nwr440,6,1,0|o4oarz,6,1,0|o4oas0,7,8,1|ofu5fz,7,8,1|ofu5g0,6,1,0|onedfz,6,1,0|onedg0,7,8,1|oyk83z,7,8,1|oyk840,6,1,0|p64g3z,6,1,0|p64g40,7,8,1|phaarz,7,8,1|phaas0,6,1,0|pp7hfz,6,1,0|pp7hg0,7,8,1|q00dfz,7,8,1|q00dg0,6,1,0|q7xk3z,6,1,0|q7xk40,7,8,1|qiqg3z,7,8,1|qiqg40,6,1,0|qqnmrz,6,1,0|qqnms0,7,8,1|r1thfz,7,8,1|r1thg0,6,1,0|r9dpfz,6,1,0|r9dpg0,7,8,1|rkjk3z,7,8,1|rkjk40,6,1,0|rs3s3z,6,1,0|rs3s40,7,8,1|s39mrz,7,8,1|s39ms0,6,1,0|sb6tfz,6,1,0|sb6tg0,7,8,1|slzpfz,7,8,1|slzpg0,6,1,0|stww3z,6,1,0|stww40,7,8,1|t4ps3z,7,8,1|t4ps40,6,1,0|tcmyrz,6,1,0|tcmys0,7,8,1|tnfurz,7,8,1|tnfus0,6,1,0|tvd1fz,6,1,0|tvd1g0,7,8,1|u6iw3z,7,8,1|u6iw40,6,1,0|ue343z,6,1,0|ue3440,7,8,1|up8yrz,7,8,1|up8ys0,6,1,0|uwt6rz,6,1,0|uwt6s0,7,8,1|v7z1fz,7,8,1|v7z1g0,6,1,0|vfw83z,6,1,0|vfw840,7,8,1|vqp43z,7,8,1|vqp440,6,1,0|vymarz,6,1,0|vymas0,7,8,1|w9f6rz,7,8,1|w9f6s0,6,1,0|whcdfz,6,1,0|whcdg0,7,8,1|wsi83z,7,8,1|wsi840,6,1,0|x02g3z,6,1,0|x02g40,7,8,1|xb8arz,7,8,1|xb8as0,6,1,0|xisirz,6,1,0|xisis0,7,8,1|xtydfz,7,8,1|xtydg0,6,1,0|y1ilfz,6,1,0|y1ilg0,7,8,1|ycog3z,7,8,1|ycog40,6,1,0|yklmrz,6,1,0|yklms0,7,8,1|yveirz,7,8,1|yveis0,6,1,0|z3bpfz,6,1,0|z3bpg0,7,8,1|ze4lfz,7,8,1|ze4lg0,6,1,0|zm1s3z,6,1,0|zm1s40,7,8,1|zx7mrz,7,8,1|zx7ms0,6,1,0|104rurz,6,1,0|104rus0,7,8,1|10fxpfz,7,8,1|10fxpg0,6,1,0|10nhxfz,6,1,0|10nhxg0,7,8,1|10yns3z,7,8,1|10yns40,6,1,0|116kyrz,6,1,0|116kys0,7,8,1|11hdurz,7,8,1|11hdus0,6,1,0|11pb1fz,6,1,0|11pb1g0,7,8,1|1203xfz,7,8,1|1203xg0,6,1,0|128143z,6,1,0|1281440,7,8,1|12iu03z,7,8,1|12iu040,6,1,0|12qr6rz,6,1,0|12qr6s0,7,8,1|131x1fz,7,8,1|131x1g0,6,1,0|139h9fz,6,1,0|139h9g0,7,8,1|13kn43z,7,8,1|13kn440,6,1,0|13s7c3z,6,1,0|13s7c40,7,8,1|143d6rz,7,8,1|143d6s0,6,1,0|14badfz,6,1,0|14badg0,7,8,1|14m39fz,7,8,1|14m39g0,6,1,0|14u0g3z,6,1,0|14u0g40,7,8,1|154tc3z,7,8,1|154tc40,6,1,0|15cqirz,6,1,0|15cqis0,7,8,1|15nwdfz,7,8,1|15nwdg0,6,1,0|15vglfz,6,1,0|15vglg0,7,8,1|166mg3z,7,8,1|166mg40,6,1,0|16e6o3z,6,1,0|16e6o40,7,8,1|16pcirz,7,8,1|16pcis0,6,1,0|16x9pfz,6,1,0|16x9pg0,7,8,1|1782lfz,7,8,1|1782lg0,6,1,0|17fzs3z,6,1,0|17fzs40,7,8,1|17qso3z,7,8,1|17qso40,6,1,0|17ypurz,6,1,0|17ypus0,7,8,1|189iqrz,7,8,1|189iqs0,6,1,0|18hfxfz,6,1,0|18hfxg0,7,8,1|18sls3z,7,8,1|18sls40,6,1,0|190603z,6,1,0|1906040,7,8,1|19bburz,7,8,1|19bbus0,6,1,0|19iw2rz,6,1,0|19iw2s0,7,8,1|19u1xfz,7,8,1|19u1xg0,6,1,0|1a1z43z,6,1,0|1a1z440,7,8,1|1acs03z,7,8,1|1acs040,6,1,0|1akp6rz,6,1,0|1akp6s0,7,8,1|1avi2rz,7,8,1|1avi2s0,6,1,0|1b3f9fz,6,1,0|1b3f9g0,7,8,1|1bel43z,7,8,1|1bel440,6,1,0|1bm5c3z,6,1,0|1bm5c40,7,8,1|1bxb6rz,7,8,1|1bxb6s0,6,1,0|1c4verz,6,1,0|1c4ves0,7,8,1|1cg19fz,7,8,1|1cg19g0,6,1,0|1cnlhfz,6,1,0|1cnlhg0,7,8,1|1cyrc3z,7,8,1|1cyrc40,6,1,0|1d6oirz,6,1,0|1d6ois0,7,8,1|1dhherz,7,8,1|1dhhes0,6,1,0|1dpelfz,6,1,0|1dpelg0,7,8,1|1e07hfz,7,8,1|1e07hg0,6,1,0|1e84o3z,6,1,0|1e84o40,7,8,1|1ejairz,7,8,1|1ejais0,6,1,0|1equqrz,6,1,0|1equqs0,7,8,1|1f20lfz,7,8,1|1f20lg0,6,1,0|1f9ktfz,6,1,0|1f9ktg0,7,8,1|1fkqo3z,7,8,1|1fkqo40,6,1,0|1fsnurz,6,1,0|1fsnus0,7,8,1|1g3gqrz,7,8,1|1g3gqs0,6,1,0|1gbdxfz,6,1,0|1gbdxg0,7,8,1|1gm6tfz,7,8,1|1gm6tg0,6,1,0|1gu403z,6,1,0|1gu4040,7,8,1|1h4ww3z,7,8,1|1h4ww40,6,1,0|1hcu2rz,6,1,0|1hcu2s0,7,8,1|1hnzxfz,7,8,1|1hnzxg0,6,1,0|1hvk5fz,6,1,0|1hvk5g0,7,8,1|1i6q03z,7,8,1|1i6q040,6,1,0|1iea83z,6,1,0|1iea840,7,8,1|1ipg2rz,7,8,1|1ipg2s0,6,1,0|1ixd9fz,6,1,0|1ixd9g0,7,8,1|1j865fz,7,8,1|1j865g0,6,1,0|1jg3c3z,6,1,0|1jg3c40,7,8,1|1jqw83z,7,8,1|1jqw840,6,1,0|1jyterz,6,1,0|1jytes0,7,8,1|1k9z9fz,7,8,1|1k9z9g0,6,1,0|1khjhfz,6,1,0|1khjhg0,7,8,1|1kspc3z,7,8,1|1kspc40,6,1,0|1l09k3z,6,1,0|1l09k40,7,8,1|1lbferz,7,8,1|1lbfes0,6,1,0|1ljclfz,6,1,0|1ljclg0,7,8,1|1lu5hfz,7,8,1|1lu5hg0,6,1,0|1m22o3z,6,1,0|1m22o40,7,8,1|1mcvk3z,7,8,1|1mcvk40,6,1,0|1mksqrz,6,1,0|1mksqs0,7,8,1|1mvlmrz,7,8,1|1mvlms0,6,1,0|1n3itfz,6,1,0|1n3itg0,7,8,1|1neoo3z,7,8,1|1neoo40,6,1,0|1nm8w3z,6,1,0|1nm8w40,7,8,1|1nxeqrz,7,8,1|1nxeqs0,6,1,0|1o4yyrz,6,1,0|1o4yys0,7,8,1|1og4tfz,7,8,1|1og4tg0,6,1,0|1oo203z,6,1,0|1oo2040,7,8,1|1oyuw3z,7,8,1|1oyuw40,6,1,0|1p6s2rz,6,1,0|1p6s2s0,7,8,1|1phkyrz,7,8,1|1phkys0,6,1,0|1ppi5fz,6,1,0|1ppi5g0,7,8,1|1q0o03z,7,8,1|1q0o040,6,1,0|1q8883z,6,1,0|1q88840,7,8,1|1qje2rz,7,8,1|1qje2s0,6,1,0|1qqyarz,6,1,0|1qqyas0,7,8,1|1r245fz,7,8,1|1r245g0,6,1,0|1r9odfz,6,1,0|1r9odg0,7,8,1|1rku83z,7,8,1|1rku840,6,1,0|1rsrerz,6,1,0|1rsres0,7,8,1|1s3karz,7,8,1|1s3kas0,6,1,0|1sbhhfz,6,1,0|1sbhhg0,7,8,1|1smadfz,7,8,1|1smadg0,6,1,0|1su7k3z,6,1,0|1su7k40,7,8,1|1t5derz,7,8,1|1t5des0,6,1,0|1tcxmrz,6,1,0|1tcxms0,7,8,1|1to3hfz,7,8,1|1to3hg0,6,1,0|1tvnpfz,6,1,0|1tvnpg0,7,8,1|1u6tk3z,7,8,1|1u6tk40,6,1,0|1ueqqrz,6,1,0|1ueqqs0,7,8,1|1upjmrz,7,8,1|1upjms0,6,1,0|1uxgtfz,6,1,0|1uxgtg0,7,8,1|1v89pfz,7,8,1|1v89pg0,6,1,0|1vg6w3z,6,1,0|1vg6w40,7,8,1|1vqzs3z,7,8,1|1vqzs40,6,1,0|NaN,6,1,0","Europe/Ljubljana|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/London|,0,342,0|-1rprx9y,0,342,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,26,8,1|-rsid41,26,8,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,26,8,1|-ragd41,26,8,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,26,8,1|-qr0d41,26,8,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,26,8,1|-q8aag1,26,8,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,26,8,1|-po4d41,26,8,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,26,8,1|-p6h6g1,26,8,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,26,8,1|-onfzs1,26,8,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,26,8,1|-o5st41,26,8,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,26,8,1|-nmprs1,26,8,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,26,8,1|-n39rs1,26,8,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,26,8,1|-mkjp41,26,8,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,26,8,1|-m1tmg1,26,8,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,26,8,1|-liql41,26,8,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,26,8,1|-l00ig1,26,8,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,26,8,1|-khafs1,26,8,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,26,8,1|-jykd41,26,8,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,26,8,1|-jfuag1,26,8,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,26,8,1|-iwr941,26,8,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,26,8,1|-ie16g1,26,8,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,26,8,1|-hvb3s1,26,8,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,26,8,1|-hcl141,26,8,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,26,8,1|-gtuyg1,26,8,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,26,8,1|-gb4vs1,26,8,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,26,8,1|-fpw2g1,26,8,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,26,8,1|-eyiyk1,26,8,1|-eyiyk0,152,9,1|-ethh81,152,9,1|-ethh80,26,8,1|-eh8qk1,26,8,1|-eh8qk0,152,9,1|-earek1,152,9,1|-earek0,26,8,1|-dyinw1,26,8,1|-dyinw0,152,9,1|-drod81,152,9,1|-drod80,26,8,1|-dfsl81,26,8,1|-dfsl80,152,9,1|-d75h81,152,9,1|-d75h80,26,8,1|-cx0nw1,26,8,1|-cx0nw0,152,9,1|-cro2k1,152,9,1|-cro2k0,26,8,1|-cncfs1,26,8,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,26,8,1|-c4md41,26,8,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,26,8,1|-buwfw1,26,8,1|-buwfw0,152,9,1|-bos2k1,152,9,1|-bos2k0,26,8,1|-bkgfs1,26,8,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,26,8,1|-b1qd41,26,8,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,26,8,1|-aj0ag1,26,8,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,26,8,1|-a0n6g1,26,8,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,26,8,1|-9hx3s1,26,8,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,26,8,1|-8yu2g1,26,8,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,26,8,1|-8h6vs1,26,8,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,26,8,1|-7ygt41,26,8,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,26,8,1|-7fqqg1,26,8,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,26,8,1|-6wnp41,26,8,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,26,8,1|-6dxmg1,26,8,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,26,8,1|-5v7js1,26,8,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,26,8,1|-5chh41,26,8,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,26,8,1|-4treg1,26,8,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,26,8,1|-49lh41,26,8,1|-49lh40,1,1,0|-421941,1,1,0|-421940,26,8,1|-3qveg1,26,8,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,26,8,1|-385bs1,26,8,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,26,8,1|-2pf941,26,8,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,26,8,1|-26p6g1,26,8,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,26,8,1|-1nz3s1,26,8,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,26,8,1|-14w2g1,26,8,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,26,8,1|-m6841,26,8,1|-m6840,26,8,0|yd6vz,26,8,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,26,8,1|1h39jz,26,8,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,26,8,1|1ztc7z,26,8,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,26,8,1|2ijevz,26,8,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,26,8,1|319hjz,26,8,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,26,8,1|3jzk7z,26,8,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,26,8,1|42pmvz,26,8,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,26,8,1|4lso7z,26,8,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,26,8,1|54iqvz,26,8,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,26,8,1|5n8tjz,26,8,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,26,8,1|65ytfz,26,8,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,26,8,1|6oow3z,26,8,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,26,8,1|77eyrz,26,8,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,26,8,1|7qi03z,26,8,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,26,8,1|8982rz,26,8,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,26,8,1|8ry5fz,26,8,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,26,8,1|9ao83z,26,8,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,26,8,1|9tearz,26,8,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,26,8,1|achc3z,26,8,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,26,8,1|av7erz,26,8,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,26,8,1|bdxhfz,26,8,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,26,8,1|bwnk3z,26,8,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,26,8,1|cfdmrz,26,8,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,26,8,1|cy3pfz,26,8,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,26,8,1|dgts3z,26,8,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,26,8,1|dzwtfz,26,8,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,26,8,1|eimw3z,26,8,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,26,8,1|f1cyrz,26,8,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,26,8,1|fkg03z,26,8,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,26,8,1|g362rz,26,8,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,26,8,1|glw5fz,26,8,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,26,8,1|h4m83z,26,8,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,26,8,1|hncarz,26,8,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,26,8,1|i6fc3z,26,8,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,26,8,1|ip5erz,26,8,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,26,8,1|j7vhfz,26,8,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,26,8,1|jqlk3z,26,8,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,26,8,1|k9bmrz,26,8,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,26,8,1|ks1pfz,26,8,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,26,8,1|lb4qrz,26,8,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,26,8,1|ltutfz,26,8,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,26,8,1|mckw3z,26,8,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,26,8,1|mvayrz,26,8,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,26,8,1|ne11fz,26,8,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,26,8,1|nwr43z,26,8,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,26,8,1|ofu5fz,26,8,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,26,8,1|oyk83z,26,8,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,26,8,1|phaarz,26,8,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,26,8,1|q00dfz,26,8,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,26,8,1|qiqg3z,26,8,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,26,8,1|r1thfz,26,8,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,26,8,1|rkjk3z,26,8,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,26,8,1|s39mrz,26,8,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,26,8,1|slzpfz,26,8,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,26,8,1|t4ps3z,26,8,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,26,8,1|tnfurz,26,8,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,26,8,1|u6iw3z,26,8,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,26,8,1|up8yrz,26,8,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,26,8,1|v7z1fz,26,8,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,26,8,1|vqp43z,26,8,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,26,8,1|w9f6rz,26,8,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,26,8,1|wsi83z,26,8,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,26,8,1|xb8arz,26,8,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,26,8,1|xtydfz,26,8,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,26,8,1|ycog3z,26,8,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,26,8,1|yveirz,26,8,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,26,8,1|ze4lfz,26,8,1|ze4lg0,1,1,0|zm1s3z,1,1,0|zm1s40,26,8,1|zx7mrz,26,8,1|zx7ms0,1,1,0|104rurz,1,1,0|104rus0,26,8,1|10fxpfz,26,8,1|10fxpg0,1,1,0|10nhxfz,1,1,0|10nhxg0,26,8,1|10yns3z,26,8,1|10yns40,1,1,0|116kyrz,1,1,0|116kys0,26,8,1|11hdurz,26,8,1|11hdus0,1,1,0|11pb1fz,1,1,0|11pb1g0,26,8,1|1203xfz,26,8,1|1203xg0,1,1,0|128143z,1,1,0|1281440,26,8,1|12iu03z,26,8,1|12iu040,1,1,0|12qr6rz,1,1,0|12qr6s0,26,8,1|131x1fz,26,8,1|131x1g0,1,1,0|139h9fz,1,1,0|139h9g0,26,8,1|13kn43z,26,8,1|13kn440,1,1,0|13s7c3z,1,1,0|13s7c40,26,8,1|143d6rz,26,8,1|143d6s0,1,1,0|14badfz,1,1,0|14badg0,26,8,1|14m39fz,26,8,1|14m39g0,1,1,0|14u0g3z,1,1,0|14u0g40,26,8,1|154tc3z,26,8,1|154tc40,1,1,0|15cqirz,1,1,0|15cqis0,26,8,1|15nwdfz,26,8,1|15nwdg0,1,1,0|15vglfz,1,1,0|15vglg0,26,8,1|166mg3z,26,8,1|166mg40,1,1,0|16e6o3z,1,1,0|16e6o40,26,8,1|16pcirz,26,8,1|16pcis0,1,1,0|16x9pfz,1,1,0|16x9pg0,26,8,1|1782lfz,26,8,1|1782lg0,1,1,0|17fzs3z,1,1,0|17fzs40,26,8,1|17qso3z,26,8,1|17qso40,1,1,0|17ypurz,1,1,0|17ypus0,26,8,1|189iqrz,26,8,1|189iqs0,1,1,0|18hfxfz,1,1,0|18hfxg0,26,8,1|18sls3z,26,8,1|18sls40,1,1,0|190603z,1,1,0|1906040,26,8,1|19bburz,26,8,1|19bbus0,1,1,0|19iw2rz,1,1,0|19iw2s0,26,8,1|19u1xfz,26,8,1|19u1xg0,1,1,0|1a1z43z,1,1,0|1a1z440,26,8,1|1acs03z,26,8,1|1acs040,1,1,0|1akp6rz,1,1,0|1akp6s0,26,8,1|1avi2rz,26,8,1|1avi2s0,1,1,0|1b3f9fz,1,1,0|1b3f9g0,26,8,1|1bel43z,26,8,1|1bel440,1,1,0|1bm5c3z,1,1,0|1bm5c40,26,8,1|1bxb6rz,26,8,1|1bxb6s0,1,1,0|1c4verz,1,1,0|1c4ves0,26,8,1|1cg19fz,26,8,1|1cg19g0,1,1,0|1cnlhfz,1,1,0|1cnlhg0,26,8,1|1cyrc3z,26,8,1|1cyrc40,1,1,0|1d6oirz,1,1,0|1d6ois0,26,8,1|1dhherz,26,8,1|1dhhes0,1,1,0|1dpelfz,1,1,0|1dpelg0,26,8,1|1e07hfz,26,8,1|1e07hg0,1,1,0|1e84o3z,1,1,0|1e84o40,26,8,1|1ejairz,26,8,1|1ejais0,1,1,0|1equqrz,1,1,0|1equqs0,26,8,1|1f20lfz,26,8,1|1f20lg0,1,1,0|1f9ktfz,1,1,0|1f9ktg0,26,8,1|1fkqo3z,26,8,1|1fkqo40,1,1,0|1fsnurz,1,1,0|1fsnus0,26,8,1|1g3gqrz,26,8,1|1g3gqs0,1,1,0|1gbdxfz,1,1,0|1gbdxg0,26,8,1|1gm6tfz,26,8,1|1gm6tg0,1,1,0|1gu403z,1,1,0|1gu4040,26,8,1|1h4ww3z,26,8,1|1h4ww40,1,1,0|1hcu2rz,1,1,0|1hcu2s0,26,8,1|1hnzxfz,26,8,1|1hnzxg0,1,1,0|1hvk5fz,1,1,0|1hvk5g0,26,8,1|1i6q03z,26,8,1|1i6q040,1,1,0|1iea83z,1,1,0|1iea840,26,8,1|1ipg2rz,26,8,1|1ipg2s0,1,1,0|1ixd9fz,1,1,0|1ixd9g0,26,8,1|1j865fz,26,8,1|1j865g0,1,1,0|1jg3c3z,1,1,0|1jg3c40,26,8,1|1jqw83z,26,8,1|1jqw840,1,1,0|1jyterz,1,1,0|1jytes0,26,8,1|1k9z9fz,26,8,1|1k9z9g0,1,1,0|1khjhfz,1,1,0|1khjhg0,26,8,1|1kspc3z,26,8,1|1kspc40,1,1,0|1l09k3z,1,1,0|1l09k40,26,8,1|1lbferz,26,8,1|1lbfes0,1,1,0|1ljclfz,1,1,0|1ljclg0,26,8,1|1lu5hfz,26,8,1|1lu5hg0,1,1,0|1m22o3z,1,1,0|1m22o40,26,8,1|1mcvk3z,26,8,1|1mcvk40,1,1,0|1mksqrz,1,1,0|1mksqs0,26,8,1|1mvlmrz,26,8,1|1mvlms0,1,1,0|1n3itfz,1,1,0|1n3itg0,26,8,1|1neoo3z,26,8,1|1neoo40,1,1,0|1nm8w3z,1,1,0|1nm8w40,26,8,1|1nxeqrz,26,8,1|1nxeqs0,1,1,0|1o4yyrz,1,1,0|1o4yys0,26,8,1|1og4tfz,26,8,1|1og4tg0,1,1,0|1oo203z,1,1,0|1oo2040,26,8,1|1oyuw3z,26,8,1|1oyuw40,1,1,0|1p6s2rz,1,1,0|1p6s2s0,26,8,1|1phkyrz,26,8,1|1phkys0,1,1,0|1ppi5fz,1,1,0|1ppi5g0,26,8,1|1q0o03z,26,8,1|1q0o040,1,1,0|1q8883z,1,1,0|1q88840,26,8,1|1qje2rz,26,8,1|1qje2s0,1,1,0|1qqyarz,1,1,0|1qqyas0,26,8,1|1r245fz,26,8,1|1r245g0,1,1,0|1r9odfz,1,1,0|1r9odg0,26,8,1|1rku83z,26,8,1|1rku840,1,1,0|1rsrerz,1,1,0|1rsres0,26,8,1|1s3karz,26,8,1|1s3kas0,1,1,0|1sbhhfz,1,1,0|1sbhhg0,26,8,1|1smadfz,26,8,1|1smadg0,1,1,0|1su7k3z,1,1,0|1su7k40,26,8,1|1t5derz,26,8,1|1t5des0,1,1,0|1tcxmrz,1,1,0|1tcxms0,26,8,1|1to3hfz,26,8,1|1to3hg0,1,1,0|1tvnpfz,1,1,0|1tvnpg0,26,8,1|1u6tk3z,26,8,1|1u6tk40,1,1,0|1ueqqrz,1,1,0|1ueqqs0,26,8,1|1upjmrz,26,8,1|1upjms0,1,1,0|1uxgtfz,1,1,0|1uxgtg0,26,8,1|1v89pfz,26,8,1|1v89pg0,1,1,0|1vg6w3z,1,1,0|1vg6w40,26,8,1|1vqzs3z,26,8,1|1vqzs40,1,1,0|NaN,1,1,0","Europe/Luxembourg|,0,348,0|-y89551,0,348,0|-y89550,8,8,0|-rzo2w1,8,8,0|-rzo2w0,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-rhps81,8,8,0|-rhps80,9,9,1|-raglg1,9,9,1|-raglg0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-qo4w41,8,8,0|-qo4w40,6,1,0|-qj59g1,6,1,0|-qj59g0,7,8,1|-q7z6g1,7,8,1|-q7z6g0,6,1,0|-q15441,6,1,0|-q15440,7,8,1|-po6ak1,7,8,1|-po6ak0,6,1,0|-pgvhg1,6,1,0|-pgvhg0,7,8,1|-p5anw1,7,8,1|-p5anw0,6,1,0|-oxj6s1,6,1,0|-oxj6s0,7,8,1|-ong5c1,7,8,1|-ong5c0,6,1,0|-odd9g1,6,1,0|-odd9g0,7,8,1|-o4pzw1,7,8,1|-o4pzw0,6,1,0|-nvq2s1,6,1,0|-nvq2s0,7,8,1|-nm0001,7,8,1|-nm0000,6,1,0|-ncl6s1,6,1,0|-ncl6s0,7,8,1|-n39xc1,7,8,1|-n39xc0,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjuo1,7,8,1|-mkjuo0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1ts01,7,8,1|-m1ts00,6,1,0|-lrqw41,6,1,0|-lrqw40,7,8,1|-liqqo1,7,8,1|-liqqo0,6,1,0|-l8nus1,6,1,0|-l8nus0,7,8,1|-l00ig1,7,8,1|-l00ig0,6,1,0|-kqaig1,6,1,0|-kqaig0,7,8,1|-khafs1,7,8,1|-khafs0,6,1,0|-k77h41,6,1,0|-k77h40,7,8,1|-jykd41,7,8,1|-jykd40,6,1,0|-jp7bs1,6,1,0|-jp7bs0,7,8,1|-jfuag1,7,8,1|-jfuag0,6,1,0|-j6u7s1,6,1,0|-j6u7s0,7,8,1|-iwr941,7,8,1|-iwr940,6,1,0|-ine7s1,6,1,0|-ine7s0,7,8,1|-ie16g1,7,8,1|-ie16g0,6,1,0|-i513s1,6,1,0|-i513s0,7,8,1|-hvb3s1,7,8,1|-hvb3s0,6,1,0|-hl8541,6,1,0|-hl8540,7,8,1|-hcl141,7,8,1|-hcl140,6,1,0|-h37zs1,6,1,0|-h37zs0,7,8,1|-gtuyg1,7,8,1|-gtuyg0,6,1,0|-gkuvs1,6,1,0|-gkuvs0,7,8,1|-gb4vs1,7,8,1|-gb4vs0,6,1,0|-g11x41,6,1,0|-g11x40,7,8,1|-fpw2g1,7,8,1|-fpw2g0,6,1,0|-fkul41,6,1,0|-fkul40,7,8,1|-fgsag1,7,8,1|-fgsag0,7,9,1|-e6dzw1,7,9,1|-e6dzw0,6,8,0|-dytrw1,6,8,0|-dytrw0,7,9,1|-dp3rw1,7,9,1|-dp3rw0,6,8,0|-dfqqk1,6,8,0|-dfqqk0,7,9,1|-d73mk1,7,9,1|-d73mk0,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|-cbtp81,8,8,0|-cbtp80,9,9,1|-c4kl81,9,9,1|-c4kl80,8,8,0|3s9mrz,8,8,0|3s9ms0,9,9,1|419pfz,9,9,1|419pg0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Madrid|,0,349,0|-100edc1,0,349,0|-100edc0,6,1,0|-qzlus1,6,1,0|-qzlus0,7,8,1|-qqnk01,7,8,1|-qqnk00,6,1,0|-qhalg1,6,1,0|-qhalg0,7,8,1|-q7vmo1,7,8,1|-q7vmo0,6,1,0|-nusqs1,6,1,0|-nusqs0,7,8,1|-nm0001,7,8,1|-nm0000,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjuo1,7,8,1|-mkjuo0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1ts01,7,8,1|-m1ts00,6,1,0|-lrqtc1,6,1,0|-lrqtc0,7,8,1|-liqqo1,7,8,1|-liqqo0,6,1,0|-l8nus1,6,1,0|-l8nus0,7,8,1|-l00o01,7,8,1|-l00o00,6,1,0|-gzf6s1,6,1,0|-gzf6s0,7,8,1|-gtv401,7,8,1|-gtv400,6,1,0|-gki5g1,6,1,0|-gki5g0,7,8,1|-gj2dk1,7,8,1|-gj2dk0,153,9,1|-gb3c81,153,9,1|-gb3c80,7,8,1|-fs2001,7,8,1|-fs2000,6,1,0|-fjrxg1,6,1,0|-fjrxg0,8,8,0|-eft481,8,8,0|-eft480,9,9,1|-e9kys1,9,9,1|-e9kys0,8,8,0|-dxsyw1,8,8,0|-dxsyw0,9,9,1|-dp5s41,9,9,1|-dp5s40,8,8,0|-df2w81,8,8,0|-df2w80,9,9,1|-d6fpg1,9,9,1|-d6fpg0,8,8,0|-cwctk1,8,8,0|-cwctk0,9,9,1|-cnpms1,9,9,1|-cnpms0,8,8,0|-cdmqw1,8,8,0|-cdmqw0,9,9,1|-c4zk41,9,9,1|-c4zk40,8,8,0|-asdmw1,8,8,0|-asdmw0,9,9,1|-akgdg1,9,9,1|-akgdg0,8,8,0|28g53z,8,8,0|28g540,9,9,1|2hgajz,9,9,1|2hgak0,8,8,0|2r67rz,8,8,0|2r67s0,9,9,1|306d7z,9,9,1|306d80,8,8,0|396d3z,8,8,0|396d40,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3s9efz,8,8,0|3s9eg0,9,9,1|419jvz,9,9,1|419jw0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Malta|,0,350,0|-13qyw0t,0,350,0|-13qyw0s,8,8,0|-rymys1,8,8,0|-rymys0,9,9,1|-rsio81,9,9,1|-rsio80,8,8,0|-rj5k41,8,8,0|-rj5k40,9,9,1|-r9qqw1,9,9,1|-r9qqw0,8,8,0|-r1idg1,8,8,0|-r1idg0,9,9,1|-qqnpk1,9,9,1|-qqnpk0,8,8,0|-qj59g1,8,8,0|-qj59g0,9,9,1|-q7zhk1,9,9,1|-q7zhk0,8,8,0|-pzcas1,8,8,0|-pzcas0,9,9,1|-ppzc81,9,9,1|-ppzc80,8,8,0|-ff59g1,8,8,0|-ff59g0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfsl81,8,8,0|-dfsl80,9,9,1|-d75h81,9,9,1|-d75h80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cohes1,9,9,1|-cohes0,8,8,0|-cf2d81,8,8,0|-cf2d80,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-bwcg41,8,8,0|-bwcg40,9,9,1|-blwis1,9,9,1|-blwis0,8,8,0|-bec581,8,8,0|-bec580,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-1vwis1,8,8,0|-1vwis0,9,9,1|-1pf9k1,9,9,1|-1pf9k0,8,8,0|-1cthg1,8,8,0|-1cthg0,9,9,1|-16p441,9,9,1|-16p440,8,8,0|-u3es1,8,8,0|-u3es0,9,9,1|-nz1g1,9,9,1|-nz1g0,8,8,0|-b0dg1,8,8,0|-b0dg0,9,9,1|-4w041,9,9,1|-4w040,8,8,0|7pp7z,8,8,0|7pp80,9,9,1|du2jz,9,9,1|du2k0,8,8,0|q2t7z,8,8,0|q2t80,9,9,1|wk57z,9,9,1|wk580,8,8,0|195ujz,8,8,0|195uk0,9,9,1|1fn6jz,9,9,1|1fn6k0,8,8,0|1oyd7z,8,8,0|1oyd80,9,9,1|1ybejz,9,9,1|1ybek0,8,8,0|28t6jz,8,8,0|28t6k0,9,9,1|2gf97z,9,9,1|2gf980,8,8,0|2rjerz,8,8,0|2rjes0,9,9,1|2zginz,9,9,1|2zgio0,8,8,0|3a9hfz,8,8,0|3a9hg0,9,9,1|3i6lbz,9,9,1|3i6lc0,8,8,0|3szk3z,8,8,0|3szk40,9,9,1|40wnzz,9,9,1|40wo00,8,8,0|4bpmrz,8,8,0|4bpms0,9,9,1|4jmqnz,9,9,1|4jmqo0,8,8,0|4ufpfz,8,8,0|4ufpg0,9,9,1|52ctbz,9,9,1|52ctc0,8,8,0|5chpfz,8,8,0|5chpg0,9,9,1|5lfunz,9,9,1|5lfuo0,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Mariehamn|,0,343,0|-1bss9ye,0,343,0|-1bss9yd,77,343,0|-peghye,77,343,0|-peghyd,14,9,0|-ehco81,14,9,0|-ehco80,15,4,1|-e7vxk1,15,4,1|-e7vxk0,14,9,0|5v5unz,14,9,0|5v5uo0,15,4,1|64ivzz,15,4,1|64iw00,14,9,0|6dvxbz,14,9,0|6dvxc0,15,4,1|6n8ynz,15,4,1|6n8yo0,14,9,0|6wm2rz,14,9,0|6wm2s0,15,4,1|75z43z,15,4,1|75z440,14,9,0|7fc5fz,14,9,0|7fc5g0,15,4,1|7p25fz,15,4,1|7p25g0,14,9,0|7yf6rz,14,9,0|7yf6s0,15,4,1|87s83z,15,4,1|87s840,14,9,0|8h59fz,14,9,0|8h59g0,15,4,1|8qiarz,15,4,1|8qias0,14,9,0|8zvc3z,14,9,0|8zvc40,15,4,1|998dfz,15,4,1|998dg0,14,9,0|9ilerz,14,9,0|9iles0,15,4,1|9ryg3z,15,4,1|9ryg40,14,9,0|a1bhfz,14,9,0|a1bhg0,15,4,1|aaoirz,15,4,1|aaois0,14,9,0|ak1k3z,14,9,0|ak1k40,15,4,1|atrk3z,15,4,1|atrk40,14,9,0|b34lfz,14,9,0|b34lg0,15,4,1|bchmrz,15,4,1|bchms0,14,9,0|bluo3z,14,9,0|bluo40,15,4,1|bv7pfz,15,4,1|bv7pg0,14,9,0|c4kqrz,14,9,0|c4kqs0,15,4,1|cdxs3z,15,4,1|cdxs40,14,9,0|cnatfz,14,9,0|cnatg0,15,4,1|cwnurz,15,4,1|cwnus0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Minsk|,0,351,0|-1ayy7rt,0,351,0|-1ayy7rs,20,352,0|-nu113d,20,352,0|-nu113c,14,9,0|-kmr1k1,14,9,0|-kmr1k0,149,4,0|-evpf01,149,4,0|-evpf00,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-db2g81,9,9,1|-db2g80,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|b34fvz,149,4,0|b34fw0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blulbz,14,9,0|blulc0,15,4,1|bv7mnz,15,4,1|bv7mo0,14,9,0|c4knzz,14,9,0|c4ko00,15,4,1|cdxpbz,15,4,1|cdxpc0,14,9,0|cnaqnz,14,9,0|cnaqo0,15,4,1|cwnrzz,15,4,1|cwns00,14,9,0|d60tbz,14,9,0|d60tc0,15,4,1|dfdunz,15,4,1|dfduo0,14,9,0|dp3unz,14,9,0|dp3uo0,15,4,1|dzwqnz,15,4,1|dzwqo0,14,9,0|e7txbz,14,9,0|e7txc0,15,4,1|eimtbz,15,4,1|eimtc0,14,9,0|eqjzzz,14,9,0|eqk000,15,4,1|f1cvzz,15,4,1|f1cw00,14,9,0|f9a2nz,14,9,0|f9a2o0,15,4,1|fkfxbz,15,4,1|fkfxc0,14,9,0|fs05bz,14,9,0|fs05c0,15,4,1|g35zzz,15,4,1|g36000,14,9,0|gaq7zz,14,9,0|gaq800,15,4,1|glw2nz,15,4,1|glw2o0,14,9,0|gtt9bz,14,9,0|gtt9c0,15,4,1|h4m5bz,15,4,1|h4m5c0,14,9,0|hcjbzz,14,9,0|hcjc00,15,4,1|hnc7zz,15,4,1|hnc800,14,9,0|hv9enz,14,9,0|hv9eo0,15,4,1|i6f9bz,15,4,1|i6f9c0,14,9,0|idzhbz,14,9,0|idzhc0,15,4,1|ip5bzz,15,4,1|ip5c00,14,9,0|iwpjzz,14,9,0|iwpk00,15,4,1|j7venz,15,4,1|j7veo0,14,9,0|jffmnz,14,9,0|jffmo0,15,4,1|jqlhbz,15,4,1|jqlhc0,14,9,0|jyinzz,14,9,0|jyio00,15,4,1|k9bjzz,15,4,1|k9bk00,14,9,0|kh8qnz,14,9,0|kh8qo0,15,4,1|ks1mnz,15,4,1|ks1mo0,14,9,0|kzytbz,14,9,0|kzytc0,15,4,1|lb4nzz,15,4,1|lb4o00,14,9,0|liovzz,14,9,0|liow00,100,4,0|NaN,100,4,0","Europe/Monaco|,0,353,0|-14hnyp9,0,353,0|-14hnyp8,5,7,0|-uo2b3m,5,7,0|-uo2b3l,6,1,0|-ry2lg1,6,1,0|-ry2lg0,7,8,1|-rsgqs1,7,8,1|-rsgqs0,6,1,0|-rjiis1,6,1,0|-rjiis0,7,8,1|-r9dpg1,7,8,1|-r9dpg0,6,1,0|-r1idg1,6,1,0|-r1idg0,7,8,1|-qqnms1,7,8,1|-qqnms0,6,1,0|-qj59g1,6,1,0|-qj59g0,7,8,1|-q7xk41,7,8,1|-q7xk40,6,1,0|-q15441,6,1,0|-q15440,7,8,1|-po6g41,7,8,1|-po6g40,6,1,0|-pgvhg1,6,1,0|-pgvhg0,7,8,1|-p5atg1,7,8,1|-p5atg0,6,1,0|-oxj6s1,6,1,0|-oxj6s0,7,8,1|-ong841,7,8,1|-ong840,6,1,0|-obkg41,6,1,0|-obkg40,7,8,1|-o4q5g1,7,8,1|-o4q5g0,6,1,0|-nvq2s1,6,1,0|-nvq2s0,7,8,1|-nm02s1,7,8,1|-nm02s0,6,1,0|-ncn1g1,6,1,0|-ncn1g0,7,8,1|-n3a041,7,8,1|-n3a040,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjxg1,7,8,1|-mkjxg0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1tus1,7,8,1|-m1tus0,6,1,0|-lrqw41,6,1,0|-lrqw40,7,8,1|-liqtg1,7,8,1|-liqtg0,6,1,0|-l8nus1,6,1,0|-l8nus0,7,8,1|-l00qs1,7,8,1|-l00qs0,6,1,0|-kqaqs1,6,1,0|-kqaqs0,7,8,1|-khao41,7,8,1|-khao40,6,1,0|-k77pg1,6,1,0|-k77pg0,7,8,1|-jyklg1,7,8,1|-jyklg0,6,1,0|-jp7k41,6,1,0|-jp7k40,7,8,1|-jfuis1,7,8,1|-jfuis0,6,1,0|-j6ug41,6,1,0|-j6ug40,7,8,1|-iwrhg1,7,8,1|-iwrhg0,6,1,0|-ineg41,6,1,0|-ineg40,7,8,1|-ie1es1,7,8,1|-ie1es0,6,1,0|-i51c41,6,1,0|-i51c40,7,8,1|-hvbc41,7,8,1|-hvbc40,6,1,0|-hl8dg1,6,1,0|-hl8dg0,7,8,1|-hcl9g1,7,8,1|-hcl9g0,6,1,0|-h38841,6,1,0|-h38840,7,8,1|-gtv6s1,7,8,1|-gtv6s0,6,1,0|-gkv441,6,1,0|-gkv440,7,8,1|-gb5441,7,8,1|-gb5440,6,1,0|-g125g1,6,1,0|-g125g0,7,8,1|-fpwas1,7,8,1|-fpwas0,6,1,0|-fkul41,6,1,0|-fkul40,7,8,1|-eyh9g1,7,8,1|-eyh9g0,153,9,1|-eqk5k1,153,9,1|-eqk5k0,7,8,1|-eimw41,7,8,1|-eimw40,153,9,1|-e6dzw1,153,9,1|-e6dzw0,7,8,1|-dytrw1,7,8,1|-dytrw0,153,9,1|-dp3rw1,153,9,1|-dp3rw0,7,8,1|-dfqqk1,7,8,1|-dfqqk0,153,9,1|-d62qs1,153,9,1|-d62qs0,7,8,1|-cx0nw1,7,8,1|-cx0nw0,153,9,1|-cofek1,153,9,1|-cofek0,8,8,0|396inz,8,8,0|396io0,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3s9mrz,8,8,0|3s9ms0,9,9,1|419pfz,9,9,1|419pg0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Moscow|,0,354,0|-1ayy9mi,0,354,0|-1ayy9mh,20,354,0|-rx5dmi,20,354,0|-rx5dmh,20,355,0|-refds8,20,355,0|-refds7,44,356,1|-r57wg8,44,356,1|-r57wg7,20,355,0|-qx8xw8,20,355,0|-qx8xw7,154,357,1|-qrqps8,154,357,1|-qrqps7,44,356,1|-qeh0k8,44,356,1|-qeh0k7,154,357,1|-qcx401,154,357,1|-qcx400,150,203,1|-qak8g1,150,203,1|-qak8g0,149,4,0|-pibkg1,149,4,0|-pibkg0,150,203,1|-pgkok1,150,203,1|-pgkok0,91,186,1|-p84z81,91,186,1|-p84z80,150,203,1|-p6lcg1,150,203,1|-p6lcg0,149,4,0|-ontcc1,149,4,0|-ontcc0,14,9,0|-kmr1k1,14,9,0|-kmr1k0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ak1ejz,149,4,0|ak1ek0,150,203,1|atrejz,150,203,1|atrek0,149,4,0|b34fvz,149,4,0|b34fw0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|bi8ynz,14,9,0|bi8yo0,149,4,0|bluijz,149,4,0|bluik0,150,203,1|bv7jvz,150,203,1|bv7jw0,149,4,0|c4kl7z,149,4,0|c4kl80,150,203,1|cdxmjz,150,203,1|cdxmk0,149,4,0|cnanvz,149,4,0|cnanw0,150,203,1|cwnp7z,150,203,1|cwnp80,149,4,0|d60qjz,149,4,0|d60qk0,150,203,1|dfdrvz,150,203,1|dfdrw0,149,4,0|dp3rvz,149,4,0|dp3rw0,150,203,1|dzwnvz,150,203,1|dzwnw0,149,4,0|e7tujz,149,4,0|e7tuk0,150,203,1|eimqjz,150,203,1|eimqk0,149,4,0|eqjx7z,149,4,0|eqjx80,150,203,1|f1ct7z,150,203,1|f1ct80,149,4,0|f99zvz,149,4,0|f99zw0,150,203,1|fkfujz,150,203,1|fkfuk0,149,4,0|fs02jz,149,4,0|fs02k0,150,203,1|g35x7z,150,203,1|g35x80,149,4,0|gaq57z,149,4,0|gaq580,150,203,1|glvzvz,150,203,1|glvzw0,149,4,0|gtt6jz,149,4,0|gtt6k0,150,203,1|h4m2jz,150,203,1|h4m2k0,149,4,0|hcj97z,149,4,0|hcj980,150,203,1|hnc57z,150,203,1|hnc580,149,4,0|hv9bvz,149,4,0|hv9bw0,150,203,1|i6f6jz,150,203,1|i6f6k0,149,4,0|idzejz,149,4,0|idzek0,150,203,1|ip597z,150,203,1|ip5980,149,4,0|iwph7z,149,4,0|iwph80,150,203,1|j7vbvz,150,203,1|j7vbw0,149,4,0|jffjvz,149,4,0|jffjw0,150,203,1|jqlejz,150,203,1|jqlek0,149,4,0|jyil7z,149,4,0|jyil80,150,203,1|k9bh7z,150,203,1|k9bh80,149,4,0|kh8nvz,149,4,0|kh8nw0,150,203,1|ks1jvz,150,203,1|ks1jw0,149,4,0|kzyqjz,149,4,0|kzyqk0,150,203,1|lb4l7z,150,203,1|lb4l80,149,4,0|liot7z,149,4,0|liot80,149,203,0|ne0t3z,149,203,0|ne0t40,149,4,0|NaN,149,4,0","Europe/Oslo|,0,197,0|-1353tzp,0,197,0|-1353tzo,8,8,0|-rzayo1,8,8,0|-rzayo0,9,9,1|-rskiw1,9,9,1|-rskiw0,8,8,0|-fc7s81,8,8,0|-fc7s80,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cnnmk1,9,9,1|-cnnmk0,8,8,0|-5mxh81,8,8,0|-5mxh80,9,9,1|-5d7h81,9,9,1|-5d7h80,8,8,0|-53ufw1,8,8,0|-53ufw0,9,9,1|-4uhek1,9,9,1|-4uhek0,8,8,0|-4l4d81,8,8,0|-4l4d80,9,9,1|-4brbw1,9,9,1|-4brbw0,8,8,0|-42eak1,8,8,0|-42eak0,9,9,1|-3t1981,9,9,1|-3t1980,8,8,0|-3jo7w1,8,8,0|-3jo7w0,9,9,1|-3ab6k1,9,9,1|-3ab6k0,8,8,0|-30y581,8,8,0|-30y580,9,9,1|-2r8581,9,9,1|-2r8580,8,8,0|-2g2ak1,8,8,0|-2g2ak0,9,9,1|-28i2k1,9,9,1|-28i2k0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Paris|,0,7,0|-154gb3m,0,7,0|-154gb3l,5,7,0|-uozn3m,5,7,0|-uozn3l,6,1,0|-ry2lg1,6,1,0|-ry2lg0,7,8,1|-rsgqs1,7,8,1|-rsgqs0,6,1,0|-rjiis1,6,1,0|-rjiis0,7,8,1|-r9dpg1,7,8,1|-r9dpg0,6,1,0|-r1idg1,6,1,0|-r1idg0,7,8,1|-qqnms1,7,8,1|-qqnms0,6,1,0|-qj59g1,6,1,0|-qj59g0,7,8,1|-q7xk41,7,8,1|-q7xk40,6,1,0|-q15441,6,1,0|-q15440,7,8,1|-po6g41,7,8,1|-po6g40,6,1,0|-pgvhg1,6,1,0|-pgvhg0,7,8,1|-p5atg1,7,8,1|-p5atg0,6,1,0|-oxj6s1,6,1,0|-oxj6s0,7,8,1|-ong841,7,8,1|-ong840,6,1,0|-obkg41,6,1,0|-obkg40,7,8,1|-o4q5g1,7,8,1|-o4q5g0,6,1,0|-nvq2s1,6,1,0|-nvq2s0,7,8,1|-nm02s1,7,8,1|-nm02s0,6,1,0|-ncn1g1,6,1,0|-ncn1g0,7,8,1|-n3a041,7,8,1|-n3a040,6,1,0|-mt71g1,6,1,0|-mt71g0,7,8,1|-mkjxg1,7,8,1|-mkjxg0,6,1,0|-matxg1,6,1,0|-matxg0,7,8,1|-m1tus1,7,8,1|-m1tus0,6,1,0|-lrqw41,6,1,0|-lrqw40,7,8,1|-liqtg1,7,8,1|-liqtg0,6,1,0|-l8nus1,6,1,0|-l8nus0,7,8,1|-l00qs1,7,8,1|-l00qs0,6,1,0|-kqaqs1,6,1,0|-kqaqs0,7,8,1|-khao41,7,8,1|-khao40,6,1,0|-k77pg1,6,1,0|-k77pg0,7,8,1|-jyklg1,7,8,1|-jyklg0,6,1,0|-jp7k41,6,1,0|-jp7k40,7,8,1|-jfuis1,7,8,1|-jfuis0,6,1,0|-j6ug41,6,1,0|-j6ug40,7,8,1|-iwrhg1,7,8,1|-iwrhg0,6,1,0|-ineg41,6,1,0|-ineg40,7,8,1|-ie1es1,7,8,1|-ie1es0,6,1,0|-i51c41,6,1,0|-i51c40,7,8,1|-hvbc41,7,8,1|-hvbc40,6,1,0|-hl8dg1,6,1,0|-hl8dg0,7,8,1|-hcl9g1,7,8,1|-hcl9g0,6,1,0|-h38841,6,1,0|-h38840,7,8,1|-gtv6s1,7,8,1|-gtv6s0,6,1,0|-gkv441,6,1,0|-gkv440,7,8,1|-gb5441,7,8,1|-gb5440,6,1,0|-g125g1,6,1,0|-g125g0,7,8,1|-fpwas1,7,8,1|-fpwas0,6,1,0|-fkul41,6,1,0|-fkul40,7,8,1|-ff5c81,7,8,1|-ff5c80,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d8caw1,9,9,1|-d8caw0,153,9,1|-d62qs1,153,9,1|-d62qs0,7,8,1|-cx0nw1,7,8,1|-cx0nw0,153,9,1|-cofek1,153,9,1|-cofek0,8,8,0|396inz,8,8,0|396io0,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3s9mrz,8,8,0|3s9ms0,9,9,1|419pfz,9,9,1|419pg0,8,8,0|4azpfz,8,8,0|4azpg0,9,9,1|4kcqrz,9,9,1|4kcqs0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Podgorica|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Prague|,0,329,0|-1qmkw09,0,329,0|-1qmkw08,5,329,0|-14u7uo9,5,329,0|-14u7uo8,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cnnmk1,9,9,1|-cnnmk0,8,8,0|-cchrw1,8,8,0|-cchrw0,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-c1qns1,8,8,0|-c1qns0,1,1,1|-bxf3s1,1,1,1|-bxf3s0,8,8,0|-bujh81,8,8,0|-bujh80,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bbtek1,8,8,0|-bbtek0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-ati581,8,8,0|-ati580,9,9,1|-akg7w1,9,9,1|-akg7w0,8,8,0|4tps3z,8,8,0|4tps40,9,9,1|532tfz,9,9,1|532tg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Riga|,0,358,0|-1ayy74z,0,358,0|-1ayy74y,136,358,0|-qznlkz,136,358,0|-qznlky,155,359,1|-qrqewz,155,359,1|-qrqewy,136,358,0|-qhllkz,136,358,0|-qhllky,155,359,1|-qez5kz,155,359,1|-qez5ky,136,358,0|-ms0hsz,136,358,0|-ms0hsy,14,9,0|-fciw81,14,9,0|-fciw80,149,4,0|-evjv01,149,4,0|-evjv00,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-d5thg1,8,8,0|-d5thg0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34inz,14,9,0|b34io0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blulbz,14,9,0|blulc0,15,4,1|bv7mnz,15,4,1|bv7mo0,14,9,0|c4knzz,14,9,0|c4ko00,15,4,1|cdxpbz,15,4,1|cdxpc0,14,9,0|cnaqnz,14,9,0|cnaqo0,15,4,1|cwnrzz,15,4,1|cwns00,14,9,0|d60tbz,14,9,0|d60tc0,15,4,1|dfdunz,15,4,1|dfduo0,14,9,0|dp3unz,14,9,0|dp3uo0,15,4,1|dygvzz,15,4,1|dygw00,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Rome|,0,360,0|-1hs7rn9,0,360,0|-1hs7rn8,136,360,0|-13r0qs1,136,360,0|-13r0qs0,8,8,0|-rymys1,8,8,0|-rymys0,9,9,1|-rsio81,9,9,1|-rsio80,8,8,0|-rj5k41,8,8,0|-rj5k40,9,9,1|-r9qqw1,9,9,1|-r9qqw0,8,8,0|-r1idg1,8,8,0|-r1idg0,9,9,1|-qqnpk1,9,9,1|-qqnpk0,8,8,0|-qj59g1,8,8,0|-qj59g0,9,9,1|-q7zhk1,9,9,1|-q7zhk0,8,8,0|-pzcas1,8,8,0|-pzcas0,9,9,1|-ppzc81,9,9,1|-ppzc80,8,8,0|-ff59g1,8,8,0|-ff59g0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d75h81,9,9,1|-d75h80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cohes1,9,9,1|-cohes0,8,8,0|-cf2d81,8,8,0|-cf2d80,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-bwcg41,8,8,0|-bwcg40,9,9,1|-blwis1,9,9,1|-blwis0,8,8,0|-bec581,8,8,0|-bec580,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-1vwis1,8,8,0|-1vwis0,9,9,1|-1pf9k1,9,9,1|-1pf9k0,8,8,0|-1cthg1,8,8,0|-1cthg0,9,9,1|-16p441,9,9,1|-16p440,8,8,0|-u3es1,8,8,0|-u3es0,9,9,1|-nz1g1,9,9,1|-nz1g0,8,8,0|-b0dg1,8,8,0|-b0dg0,9,9,1|-4w041,9,9,1|-4w040,8,8,0|7pp7z,8,8,0|7pp80,9,9,1|du2jz,9,9,1|du2k0,8,8,0|q2t7z,8,8,0|q2t80,9,9,1|wk57z,9,9,1|wk580,8,8,0|195ujz,8,8,0|195uk0,9,9,1|1fn6jz,9,9,1|1fn6k0,8,8,0|1s8vvz,8,8,0|1s8vw0,9,9,1|1yd97z,9,9,1|1yd980,8,8,0|2alzvz,8,8,0|2alzw0,9,9,1|2h3bvz,9,9,1|2h3bw0,8,8,0|2tp17z,8,8,0|2tp180,9,9,1|2ztejz,9,9,1|2ztek0,8,8,0|3cf3vz,8,8,0|3cf3w0,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3us7vz,8,8,0|3us7w0,9,9,1|419jvz,9,9,1|419jw0,8,8,0|4dv97z,8,8,0|4dv980,9,9,1|4kcl7z,9,9,1|4kcl80,8,8,0|4wlbvz,8,8,0|4wlbw0,9,9,1|532nvz,9,9,1|532nw0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Samara|,0,361,0|-qcx401,0,361,0|-qcx400,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,100,4,1|bchjzz,100,4,1|bchk00,100,4,0|bdkfzz,100,4,0|bdkg00,105,203,0|blufrz,105,203,0|blufs0,91,186,1|bv7h3z,91,186,1|bv7h40,105,203,0|c4kifz,105,203,0|c4kig0,91,186,1|cdxjrz,91,186,1|cdxjs0,105,203,0|cnal3z,105,203,0|cnal40,91,186,1|cwnmfz,91,186,1|cwnmg0,105,203,0|d60nrz,105,203,0|d60ns0,91,186,1|dfdp3z,91,186,1|dfdp40,105,203,0|dp3p3z,105,203,0|dp3p40,91,186,1|dzwl3z,91,186,1|dzwl40,105,203,0|e7trrz,105,203,0|e7trs0,91,186,1|eimnrz,91,186,1|eimns0,105,203,0|eqjufz,105,203,0|eqjug0,91,186,1|f1cqfz,91,186,1|f1cqg0,105,203,0|f99x3z,105,203,0|f99x40,91,186,1|fkfrrz,91,186,1|fkfrs0,105,203,0|frzzrz,105,203,0|frzzs0,91,186,1|g35ufz,91,186,1|g35ug0,105,203,0|gaq2fz,105,203,0|gaq2g0,91,186,1|glvx3z,91,186,1|glvx40,105,203,0|gtt3rz,105,203,0|gtt3s0,91,186,1|h4lzrz,91,186,1|h4lzs0,105,203,0|hcj6fz,105,203,0|hcj6g0,91,186,1|hnc2fz,91,186,1|hnc2g0,105,203,0|hv993z,105,203,0|hv9940,91,186,1|i6f3rz,91,186,1|i6f3s0,105,203,0|idzbrz,105,203,0|idzbs0,91,186,1|ip56fz,91,186,1|ip56g0,105,203,0|iwpefz,105,203,0|iwpeg0,91,186,1|j7v93z,91,186,1|j7v940,105,203,0|jffh3z,105,203,0|jffh40,91,186,1|jqlbrz,91,186,1|jqlbs0,105,203,0|jyiifz,105,203,0|jyiig0,91,186,1|k9befz,91,186,1|k9beg0,105,203,0|kh8l3z,105,203,0|kh8l40,91,186,1|ks1h3z,91,186,1|ks1h40,105,203,0|kzynrz,105,203,0|kzyns0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|NaN,105,203,0","Europe/San_Marino|,0,360,0|-1hs7rn9,0,360,0|-1hs7rn8,136,360,0|-13r0qs1,136,360,0|-13r0qs0,8,8,0|-rymys1,8,8,0|-rymys0,9,9,1|-rsio81,9,9,1|-rsio80,8,8,0|-rj5k41,8,8,0|-rj5k40,9,9,1|-r9qqw1,9,9,1|-r9qqw0,8,8,0|-r1idg1,8,8,0|-r1idg0,9,9,1|-qqnpk1,9,9,1|-qqnpk0,8,8,0|-qj59g1,8,8,0|-qj59g0,9,9,1|-q7zhk1,9,9,1|-q7zhk0,8,8,0|-pzcas1,8,8,0|-pzcas0,9,9,1|-ppzc81,9,9,1|-ppzc80,8,8,0|-ff59g1,8,8,0|-ff59g0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d75h81,9,9,1|-d75h80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cohes1,9,9,1|-cohes0,8,8,0|-cf2d81,8,8,0|-cf2d80,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-bwcg41,8,8,0|-bwcg40,9,9,1|-blwis1,9,9,1|-blwis0,8,8,0|-bec581,8,8,0|-bec580,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-1vwis1,8,8,0|-1vwis0,9,9,1|-1pf9k1,9,9,1|-1pf9k0,8,8,0|-1cthg1,8,8,0|-1cthg0,9,9,1|-16p441,9,9,1|-16p440,8,8,0|-u3es1,8,8,0|-u3es0,9,9,1|-nz1g1,9,9,1|-nz1g0,8,8,0|-b0dg1,8,8,0|-b0dg0,9,9,1|-4w041,9,9,1|-4w040,8,8,0|7pp7z,8,8,0|7pp80,9,9,1|du2jz,9,9,1|du2k0,8,8,0|q2t7z,8,8,0|q2t80,9,9,1|wk57z,9,9,1|wk580,8,8,0|195ujz,8,8,0|195uk0,9,9,1|1fn6jz,9,9,1|1fn6k0,8,8,0|1s8vvz,8,8,0|1s8vw0,9,9,1|1yd97z,9,9,1|1yd980,8,8,0|2alzvz,8,8,0|2alzw0,9,9,1|2h3bvz,9,9,1|2h3bw0,8,8,0|2tp17z,8,8,0|2tp180,9,9,1|2ztejz,9,9,1|2ztek0,8,8,0|3cf3vz,8,8,0|3cf3w0,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3us7vz,8,8,0|3us7w0,9,9,1|419jvz,9,9,1|419jw0,8,8,0|4dv97z,8,8,0|4dv980,9,9,1|4kcl7z,9,9,1|4kcl80,8,8,0|4wlbvz,8,8,0|4wlbw0,9,9,1|532nvz,9,9,1|532nw0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Sarajevo|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Saratov|,0,362,0|-qcx401,0,362,0|-qcx400,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,105,203,1|9ryajz,105,203,1|9ryak0,100,4,0|a1bbvz,100,4,0|a1bbw0,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,105,203,0|blufrz,105,203,0|blufs0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,100,4,0|dp3rvz,100,4,0|dp3rw0,105,203,1|dzwnvz,105,203,1|dzwnw0,100,4,0|e7tujz,100,4,0|e7tuk0,105,203,1|eimqjz,105,203,1|eimqk0,100,4,0|eqjx7z,100,4,0|eqjx80,105,203,1|f1ct7z,105,203,1|f1ct80,100,4,0|f99zvz,100,4,0|f99zw0,105,203,1|fkfujz,105,203,1|fkfuk0,100,4,0|fs02jz,100,4,0|fs02k0,105,203,1|g35x7z,105,203,1|g35x80,100,4,0|gaq57z,100,4,0|gaq580,105,203,1|glvzvz,105,203,1|glvzw0,100,4,0|gtt6jz,100,4,0|gtt6k0,105,203,1|h4m2jz,105,203,1|h4m2k0,100,4,0|hcj97z,100,4,0|hcj980,105,203,1|hnc57z,105,203,1|hnc580,100,4,0|hv9bvz,100,4,0|hv9bw0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,1|ip597z,105,203,1|ip5980,100,4,0|iwph7z,100,4,0|iwph80,105,203,1|j7vbvz,105,203,1|j7vbw0,100,4,0|jffjvz,100,4,0|jffjw0,105,203,1|jqlejz,105,203,1|jqlek0,100,4,0|jyil7z,100,4,0|jyil80,105,203,1|k9bh7z,105,203,1|k9bh80,100,4,0|kh8nvz,100,4,0|kh8nw0,105,203,1|ks1jvz,105,203,1|ks1jw0,100,4,0|kzyqjz,100,4,0|kzyqk0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|ne0t3z,105,203,0|ne0t40,100,4,0|ohmt7z,100,4,0|ohmt80,105,203,0|NaN,105,203,0","Europe/Simferopol|,0,363,0|-1ayy8zd,0,363,0|-1ayy8zc,84,364,0|-nu12ap,84,364,0|-nu12ao,14,9,0|-kmr1k1,14,9,0|-kmr1k0,149,4,0|-ep8301,149,4,0|-ep8300,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-df8g81,9,9,1|-df8g80,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ap2vvz,149,4,0|ap2vw0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cp3bnz,15,4,1|cp3bo0,150,203,1|cwngvz,150,203,1|cwngw0,149,4,0|d60kzz,149,4,0|d60l00,150,203,1|dfdjjz,150,203,1|dfdjk0,149,4,0|dp3mbz,149,4,0|dp3mc0,150,203,1|dzwqnz,150,203,1|dzwqo0,149,4,0|e7u03z,149,4,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n382nz,14,9,0|n382o0,149,203,0|ne0t3z,149,203,0|ne0t40,149,4,0|NaN,149,4,0","Europe/Skopje|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Sofia|,0,365,0|-1ayy6zh,0,365,0|-1ayy6zg,117,345,0|-136r6qx,117,345,0|-136r6qw,14,9,0|-e6dzw1,14,9,0|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0l41,8,8,0|-cx0l40,14,9,0|4tpgzz,14,9,0|4tph00,15,4,1|534frz,15,4,1|534fs0,14,9,0|5csibz,14,9,0|5csic0,15,4,1|5luifz,15,4,1|5luig0,14,9,0|5vikzz,14,9,0|5vil00,15,4,1|64it7z,15,4,1|64it80,14,9,0|6e8nnz,14,9,0|6e8no0,15,4,1|6n8ynz,15,4,1|6n8yo0,14,9,0|6wlzzz,14,9,0|6wm000,15,4,1|75z1bz,15,4,1|75z1c0,14,9,0|7fc2nz,14,9,0|7fc2o0,15,4,1|7p22nz,15,4,1|7p22o0,14,9,0|7yf3zz,14,9,0|7yf400,15,4,1|87s5bz,15,4,1|87s5c0,14,9,0|8h56nz,14,9,0|8h56o0,15,4,1|8qi7zz,15,4,1|8qi800,14,9,0|8zv9bz,14,9,0|8zv9c0,15,4,1|998anz,15,4,1|998ao0,14,9,0|9ilbzz,14,9,0|9ilc00,15,4,1|9rydbz,15,4,1|9rydc0,14,9,0|a1benz,14,9,0|a1beo0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34d3z,14,9,0|b34d40,15,4,1|bchbnz,15,4,1|bchbo0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60nrz,14,9,0|d60ns0,15,4,1|dfdmbz,15,4,1|dfdmc0,14,9,0|dp3p3z,14,9,0|dp3p40,15,4,1|dzwibz,15,4,1|dzwic0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Stockholm|,0,366,0|-1bhq3cd,0,366,0|-1bhq3cc,156,367,0|-10j6dgf,156,367,0|-10j6dge,8,8,0|-rzo2w1,8,8,0|-rzo2w0,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Tallinn|,0,368,0|-1ayy791,0,368,0|-1ayy790,133,368,0|-r3exx1,133,368,0|-r3exx0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-qcx6s1,8,8,0|-qcx6s0,133,368,0|-peghx1,133,368,0|-peghx0,14,9,0|-fch1k1,14,9,0|-fch1k0,149,4,0|-ern4c1,149,4,0|-ern4c0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6wg81,9,9,1|-d6wg80,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34inz,14,9,0|b34io0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blulbz,14,9,0|blulc0,15,4,1|bv7mnz,15,4,1|bv7mo0,14,9,0|c4knzz,14,9,0|c4ko00,15,4,1|cdxpbz,15,4,1|cdxpc0,14,9,0|cnaqnz,14,9,0|cnaqo0,15,4,1|cwnrzz,15,4,1|cwns00,14,9,0|d60tbz,14,9,0|d60tc0,15,4,1|dfdunz,15,4,1|dfduo0,14,9,0|dp3unz,14,9,0|dp3uo0,15,4,1|dzwqnz,15,4,1|dzwqo0,14,9,0|e7txbz,14,9,0|e7txc0,15,4,1|eimtbz,15,4,1|eimtc0,14,9,0|eqjzzz,14,9,0|eqk000,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Tirane|,0,369,0|-t85vo9,0,369,0|-t85vo8,8,8,0|-ff3es1,8,8,0|-ff3es0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dy7jw1,9,9,1|-dy7jw0,8,8,0|29h97z,8,8,0|29h980,9,9,1|2h8t3z,9,9,1|2h8t40,8,8,0|2s3mjz,8,8,0|2s3mk0,9,9,1|300qfz,9,9,1|300qg0,8,8,0|3az97z,8,8,0|3az980,9,9,1|3iwd3z,9,9,1|3iwd40,8,8,0|3u2ajz,8,8,0|3u2ak0,9,9,1|41mfrz,9,9,1|41mfs0,8,8,0|4cqijz,8,8,0|4cqik0,9,9,1|4kcifz,9,9,1|4kcig0,8,8,0|4vgl7z,8,8,0|4vgl80,9,9,1|532l3z,9,9,1|532l40,8,8,0|5e6nvz,8,8,0|5e6nw0,9,9,1|5m3rrz,9,9,1|5m3rs0,8,8,0|5wlmjz,8,8,0|5wlmk0,9,9,1|64iqfz,9,9,1|64iqg0,8,8,0|6fonvz,8,8,0|6fonw0,9,9,1|6nlrrz,9,9,1|6nlrs0,8,8,0|6xqnvz,8,8,0|6xqnw0,9,9,1|769zrz,9,9,1|769zs0,8,8,0|7foyjz,8,8,0|7foyk0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Ulyanovsk|,0,370,0|-qcx401,0,370,0|-qcx400,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,91,186,1|9ry7rz,91,186,1|9ry7s0,105,203,0|a1b93z,105,203,0|a1b940,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,100,4,1|bchjzz,100,4,1|bchk00,101,9,0|bi8ynz,101,9,0|bi8yo0,100,4,0|bluijz,100,4,0|bluik0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,100,4,0|dp3rvz,100,4,0|dp3rw0,105,203,1|dzwnvz,105,203,1|dzwnw0,100,4,0|e7tujz,100,4,0|e7tuk0,105,203,1|eimqjz,105,203,1|eimqk0,100,4,0|eqjx7z,100,4,0|eqjx80,105,203,1|f1ct7z,105,203,1|f1ct80,100,4,0|f99zvz,100,4,0|f99zw0,105,203,1|fkfujz,105,203,1|fkfuk0,100,4,0|fs02jz,100,4,0|fs02k0,105,203,1|g35x7z,105,203,1|g35x80,100,4,0|gaq57z,100,4,0|gaq580,105,203,1|glvzvz,105,203,1|glvzw0,100,4,0|gtt6jz,100,4,0|gtt6k0,105,203,1|h4m2jz,105,203,1|h4m2k0,100,4,0|hcj97z,100,4,0|hcj980,105,203,1|hnc57z,105,203,1|hnc580,100,4,0|hv9bvz,100,4,0|hv9bw0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,1|ip597z,105,203,1|ip5980,100,4,0|iwph7z,100,4,0|iwph80,105,203,1|j7vbvz,105,203,1|j7vbw0,100,4,0|jffjvz,100,4,0|jffjw0,105,203,1|jqlejz,105,203,1|jqlek0,100,4,0|jyil7z,100,4,0|jyil80,105,203,1|k9bh7z,105,203,1|k9bh80,100,4,0|kh8nvz,100,4,0|kh8nw0,105,203,1|ks1jvz,105,203,1|ks1jw0,100,4,0|kzyqjz,100,4,0|kzyqk0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|ne0t3z,105,203,0|ne0t40,100,4,0|o4o57z,100,4,0|o4o580,105,203,0|NaN,105,203,0","Europe/Uzhgorod|,0,371,0|-15cztgp,0,371,0|-15cztgo,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d55hk1,9,9,1|-d55hk0,8,8,0|-cshus1,8,8,0|-cshus0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ap2vvz,149,4,0|ap2vw0,8,8,0|b34o7z,8,8,0|b34o80,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Vaduz|,0,333,0|-1os49kx,0,333,0|-1os49kw,54,334,0|-13g441n,54,334,0|-13g441m,8,8,0|-eyh6o1,8,8,0|-eyh6o0,9,9,1|-eqk001,9,9,1|-eqk000,8,8,0|-efr401,8,8,0|-efr400,9,9,1|-e7txc1,9,9,1|-e7txc0,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Vatican|,0,360,0|-1hs7rn9,0,360,0|-1hs7rn8,136,360,0|-13r0qs1,136,360,0|-13r0qs0,8,8,0|-rymys1,8,8,0|-rymys0,9,9,1|-rsio81,9,9,1|-rsio80,8,8,0|-rj5k41,8,8,0|-rj5k40,9,9,1|-r9qqw1,9,9,1|-r9qqw0,8,8,0|-r1idg1,8,8,0|-r1idg0,9,9,1|-qqnpk1,9,9,1|-qqnpk0,8,8,0|-qj59g1,8,8,0|-qj59g0,9,9,1|-q7zhk1,9,9,1|-q7zhk0,8,8,0|-pzcas1,8,8,0|-pzcas0,9,9,1|-ppzc81,9,9,1|-ppzc80,8,8,0|-ff59g1,8,8,0|-ff59g0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d75h81,9,9,1|-d75h80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cohes1,9,9,1|-cohes0,8,8,0|-cf2d81,8,8,0|-cf2d80,9,9,1|-c4mfw1,9,9,1|-c4mfw0,8,8,0|-bwcg41,8,8,0|-bwcg40,9,9,1|-blwis1,9,9,1|-blwis0,8,8,0|-bec581,8,8,0|-bec580,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-1vwis1,8,8,0|-1vwis0,9,9,1|-1pf9k1,9,9,1|-1pf9k0,8,8,0|-1cthg1,8,8,0|-1cthg0,9,9,1|-16p441,9,9,1|-16p440,8,8,0|-u3es1,8,8,0|-u3es0,9,9,1|-nz1g1,9,9,1|-nz1g0,8,8,0|-b0dg1,8,8,0|-b0dg0,9,9,1|-4w041,9,9,1|-4w040,8,8,0|7pp7z,8,8,0|7pp80,9,9,1|du2jz,9,9,1|du2k0,8,8,0|q2t7z,8,8,0|q2t80,9,9,1|wk57z,9,9,1|wk580,8,8,0|195ujz,8,8,0|195uk0,9,9,1|1fn6jz,9,9,1|1fn6k0,8,8,0|1s8vvz,8,8,0|1s8vw0,9,9,1|1yd97z,9,9,1|1yd980,8,8,0|2alzvz,8,8,0|2alzw0,9,9,1|2h3bvz,9,9,1|2h3bw0,8,8,0|2tp17z,8,8,0|2tp180,9,9,1|2ztejz,9,9,1|2ztek0,8,8,0|3cf3vz,8,8,0|3cf3w0,9,9,1|3ijh7z,9,9,1|3ijh80,8,8,0|3us7vz,8,8,0|3us7w0,9,9,1|419jvz,9,9,1|419jw0,8,8,0|4dv97z,8,8,0|4dv980,9,9,1|4kcl7z,9,9,1|4kcl80,8,8,0|4wlbvz,8,8,0|4wlbw0,9,9,1|532nvz,9,9,1|532nw0,8,8,0|5cstfz,8,8,0|5cstg0,9,9,1|5lsw3z,9,9,1|5lsw40,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Vienna|,0,372,0|-14211oy,0,372,0|-14211ox,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,8,8,0|-pykd81,8,8,0|-pykd80,9,9,1|-pqa7w1,9,9,1|-pqa7w0,8,8,0|-fizzw1,8,8,0|-fizzw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cx0nw1,8,8,0|-cx0nw0,9,9,1|-cwi581,9,9,1|-cwi580,8,8,0|-cdmik1,8,8,0|-cdmik0,9,9,1|-c4kl81,9,9,1|-c4kl80,8,8,0|-bv9ek1,8,8,0|-bv9ek0,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bbtek1,8,8,0|-bbtek0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|5csnvz,8,8,0|5csnw0,9,9,1|5lsnrz,9,9,1|5lsns0,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Vilnius|,0,373,0|-1ayy7ct,0,373,0|-1ayy7cs,157,374,0|-rns981,157,374,0|-rns980,74,375,0|-q7q73d,74,375,0|-q7q73c,8,8,0|-ptj1g1,8,8,0|-ptj1g0,14,9,0|-poyaw1,14,9,0|-poyaw0,8,8,0|-fcmis1,8,8,0|-fcmis0,149,4,0|-evwto1,149,4,0|-evwto0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d9kqw1,9,9,1|-d9kqw0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,15,4,1|aaofzz,15,4,1|aaog00,14,9,0|ak1hbz,14,9,0|ak1hc0,15,4,1|atrhbz,15,4,1|atrhc0,14,9,0|b34inz,14,9,0|b34io0,15,4,1|bchjzz,15,4,1|bchk00,14,9,0|blulbz,14,9,0|blulc0,15,4,1|bv7mnz,15,4,1|bv7mo0,14,9,0|c4knzz,14,9,0|c4ko00,15,4,1|cdxpbz,15,4,1|cdxpc0,14,9,0|cnaqnz,14,9,0|cnaqo0,15,4,1|cwnrzz,15,4,1|cwns00,14,9,0|d60tbz,14,9,0|d60tc0,15,4,1|dfdunz,15,4,1|dfduo0,14,9,0|dp3unz,14,9,0|dp3uo0,15,4,1|dzwqnz,15,4,1|dzwqo0,14,9,0|e7txbz,14,9,0|e7txc0,15,4,1|eimtbz,15,4,1|eimtc0,14,9,0|eqk2rz,14,9,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Volgograd|,0,207,0|-q3cw85,0,207,0|-q3cw84,100,4,0|-kmr4c1,100,4,0|-kmr4c0,105,203,0|5vb3jz,105,203,0|5vb3k0,91,186,1|64pwrz,91,186,1|64pws0,105,203,0|6e30vz,105,203,0|6e30w0,91,186,1|6nhu3z,91,186,1|6nhu40,105,203,0|6wuy7z,105,203,0|6wuy80,91,186,1|769rfz,91,186,1|769rg0,105,203,0|7foq7z,105,203,0|7foq80,91,186,1|7p1x3z,91,186,1|7p1x40,105,203,0|7yeyfz,105,203,0|7yeyg0,91,186,1|87rzrz,91,186,1|87rzs0,105,203,0|8h513z,105,203,0|8h5140,91,186,1|8qi2fz,91,186,1|8qi2g0,105,203,0|8zv3rz,105,203,0|8zv3s0,91,186,1|99853z,91,186,1|998540,105,203,0|9il6fz,105,203,0|9il6g0,105,203,1|9ryajz,105,203,1|9ryak0,100,4,0|a1bbvz,100,4,0|a1bbw0,105,203,1|aaod7z,105,203,1|aaod80,100,4,0|ak1ejz,100,4,0|ak1ek0,105,203,1|atrejz,105,203,1|atrek0,100,4,0|b34fvz,100,4,0|b34fw0,105,203,0|blufrz,105,203,0|blufs0,105,203,1|bv7jvz,105,203,1|bv7jw0,100,4,0|c4kl7z,100,4,0|c4kl80,105,203,1|cdxmjz,105,203,1|cdxmk0,100,4,0|cnanvz,100,4,0|cnanw0,105,203,1|cwnp7z,105,203,1|cwnp80,100,4,0|d60qjz,100,4,0|d60qk0,105,203,1|dfdrvz,105,203,1|dfdrw0,100,4,0|dp3rvz,100,4,0|dp3rw0,105,203,1|dzwnvz,105,203,1|dzwnw0,100,4,0|e7tujz,100,4,0|e7tuk0,105,203,1|eimqjz,105,203,1|eimqk0,100,4,0|eqjx7z,100,4,0|eqjx80,105,203,1|f1ct7z,105,203,1|f1ct80,100,4,0|f99zvz,100,4,0|f99zw0,105,203,1|fkfujz,105,203,1|fkfuk0,100,4,0|fs02jz,100,4,0|fs02k0,105,203,1|g35x7z,105,203,1|g35x80,100,4,0|gaq57z,100,4,0|gaq580,105,203,1|glvzvz,105,203,1|glvzw0,100,4,0|gtt6jz,100,4,0|gtt6k0,105,203,1|h4m2jz,105,203,1|h4m2k0,100,4,0|hcj97z,100,4,0|hcj980,105,203,1|hnc57z,105,203,1|hnc580,100,4,0|hv9bvz,100,4,0|hv9bw0,105,203,1|i6f6jz,105,203,1|i6f6k0,100,4,0|idzejz,100,4,0|idzek0,105,203,1|ip597z,105,203,1|ip5980,100,4,0|iwph7z,100,4,0|iwph80,105,203,1|j7vbvz,105,203,1|j7vbw0,100,4,0|jffjvz,100,4,0|jffjw0,105,203,1|jqlejz,105,203,1|jqlek0,100,4,0|jyil7z,100,4,0|jyil80,105,203,1|k9bh7z,105,203,1|k9bh80,100,4,0|kh8nvz,100,4,0|kh8nw0,105,203,1|ks1jvz,105,203,1|ks1jw0,100,4,0|kzyqjz,100,4,0|kzyqk0,105,203,1|lb4l7z,105,203,1|lb4l80,100,4,0|liot7z,100,4,0|liot80,105,203,0|ne0t3z,105,203,0|ne0t40,100,4,0|pha57z,100,4,0|pha580,105,203,0|qlyvrz,105,203,0|qlyvs0,100,4,0|NaN,100,4,0","Europe/Warsaw|,0,374,0|-1ayy6k1,0,374,0|-1ayy6k0,157,374,0|-se9yk1,157,374,0|-se9yk0,8,8,0|-s0e081,8,8,0|-s0e080,9,9,1|-rsilg1,9,9,1|-rsilg0,8,8,0|-ridmk1,8,8,0|-ridmk0,9,9,1|-ragfw1,9,9,1|-ragfw0,8,8,0|-qznjw1,8,8,0|-qznjw0,9,9,1|-qrqd81,9,9,1|-qrqd80,14,9,0|-qgvpc1,14,9,0|-qgvpc0,15,4,1|-q8yio1,15,4,1|-q8yio0,14,9,0|-ou36w1,14,9,0|-ou36w0,8,8,0|-feqak1,8,8,0|-feqak0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6a2o1,9,9,1|-d6a2o0,8,8,0|-cvmtg1,8,8,0|-cvmtg0,9,9,1|-cm2g81,9,9,1|-cm2g80,8,8,0|-cdmo41,8,8,0|-cdmo40,9,9,1|-c4kl81,9,9,1|-c4kl80,8,8,0|-bttjw1,8,8,0|-bttjw0,9,9,1|-blwd81,9,9,1|-blwd80,8,8,0|-bbtek1,8,8,0|-bbtek0,9,9,1|-b36ak1,9,9,1|-b36ak0,8,8,0|-atgak1,8,8,0|-atgak0,9,9,1|-akg7w1,9,9,1|-akg7w0,8,8,0|-6kf401,8,8,0|-6kf400,9,9,1|-6eaqo1,9,9,1|-6eaqo0,8,8,0|-64xpc1,8,8,0|-64xpc0,9,9,1|-5vko01,9,9,1|-5vko00,8,8,0|-5iyyo1,8,8,0|-5iyyo0,9,9,1|-5chmo1,9,9,1|-5chmo0,8,8,0|-534lc1,8,8,0|-534lc0,9,9,1|-4trk01,9,9,1|-4trk00,8,8,0|-4hitc1,8,8,0|-4hitc0,9,9,1|-4b1hc1,9,9,1|-4b1hc0,8,8,0|-3ysqo1,8,8,0|-3ysqo0,9,9,1|-3sbeo1,9,9,1|-3sbeo0,8,8,0|-3g2o01,8,8,0|-3g2o00,9,9,1|-39lc01,9,9,1|-39lc00,8,8,0|-2wzmo1,8,8,0|-2wzmo0,9,9,1|-2qv9c1,9,9,1|-2qv9c0,8,8,0|3s9jzz,8,8,0|3s9k00,9,9,1|419mnz,9,9,1|419mo0,8,8,0|4azmnz,8,8,0|4azmo0,9,9,1|4kcnzz,9,9,1|4kco00,8,8,0|4tppbz,8,8,0|4tppc0,9,9,1|532qnz,9,9,1|532qo0,8,8,0|5csqnz,8,8,0|5csqo0,9,9,1|5lstbz,9,9,1|5lstc0,8,8,0|5v5unz,8,8,0|5v5uo0,9,9,1|64ivzz,9,9,1|64iw00,8,8,0|6dvxbz,8,8,0|6dvxc0,9,9,1|6n8ynz,9,9,1|6n8yo0,8,8,0|6wlzzz,8,8,0|6wm000,9,9,1|75z1bz,9,9,1|75z1c0,8,8,0|7fc2nz,8,8,0|7fc2o0,9,9,1|7p22nz,9,9,1|7p22o0,8,8,0|7yf3zz,8,8,0|7yf400,9,9,1|87s5bz,9,9,1|87s5c0,8,8,0|8h56nz,8,8,0|8h56o0,9,9,1|8qi7zz,9,9,1|8qi800,8,8,0|8zv9bz,8,8,0|8zv9c0,9,9,1|998anz,9,9,1|998ao0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Zagreb|,0,327,0|-18vsmgp,0,327,0|-18vsmgo,8,8,0|-ezayw1,8,8,0|-ezayw0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-dfqqk1,8,8,0|-dfqqk0,9,9,1|-d6dp81,9,9,1|-d6dp80,8,8,0|-cv5zw1,8,8,0|-cv5zw0,9,9,1|-cofek1,9,9,1|-cofek0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Europe/Zaporozhye|,0,244,0|-1ayy96h,0,244,0|-1ayy96g,158,376,0|-nu12hd,158,376,0|-nu12hc,14,9,0|-kmr1k1,14,9,0|-kmr1k0,149,4,0|-esq0c1,149,4,0|-esq0c0,9,9,1|-e6dzw1,9,9,1|-e6dzw0,8,8,0|-dytrw1,8,8,0|-dytrw0,9,9,1|-dp3rw1,9,9,1|-dp3rw0,8,8,0|-do11g1,8,8,0|-do11g0,149,4,0|5vb6bz,149,4,0|5vb6c0,150,203,1|64pzjz,150,203,1|64pzk0,149,4,0|6e33nz,149,4,0|6e33o0,150,203,1|6nhwvz,150,203,1|6nhww0,149,4,0|6wv0zz,149,4,0|6wv100,150,203,1|769u7z,150,203,1|769u80,149,4,0|7foszz,149,4,0|7fot00,150,203,1|7p1zvz,150,203,1|7p1zw0,149,4,0|7yf17z,149,4,0|7yf180,150,203,1|87s2jz,150,203,1|87s2k0,149,4,0|8h53vz,149,4,0|8h53w0,150,203,1|8qi57z,150,203,1|8qi580,149,4,0|8zv6jz,149,4,0|8zv6k0,150,203,1|9987vz,150,203,1|9987w0,149,4,0|9il97z,149,4,0|9il980,150,203,1|9ryajz,150,203,1|9ryak0,149,4,0|a1bbvz,149,4,0|a1bbw0,150,203,1|aaod7z,150,203,1|aaod80,149,4,0|ak1ejz,149,4,0|ak1ek0,150,203,1|atrejz,150,203,1|atrek0,149,4,0|b34fvz,149,4,0|b34fw0,15,4,1|bchbnz,15,4,1|bchbo0,14,9,0|blufrz,14,9,0|blufs0,15,4,1|bv7ebz,15,4,1|bv7ec0,14,9,0|c4kifz,14,9,0|c4kig0,15,4,1|cdxgzz,15,4,1|cdxh00,14,9,0|cnal3z,14,9,0|cnal40,15,4,1|cwnjnz,15,4,1|cwnjo0,14,9,0|d60w3z,14,9,0|d60w40,15,4,1|dfdxfz,15,4,1|dfdxg0,14,9,0|dp3xfz,14,9,0|dp3xg0,15,4,1|dzwtfz,15,4,1|dzwtg0,14,9,0|e7u03z,14,9,0|e7u040,15,4,1|eimw3z,15,4,1|eimw40,14,9,0|eqk2rz,14,9,0|eqk2s0,15,4,1|f1cyrz,15,4,1|f1cys0,14,9,0|f9a5fz,14,9,0|f9a5g0,15,4,1|fkg03z,15,4,1|fkg040,14,9,0|fs083z,14,9,0|fs0840,15,4,1|g362rz,15,4,1|g362s0,14,9,0|gaqarz,14,9,0|gaqas0,15,4,1|glw5fz,15,4,1|glw5g0,14,9,0|gttc3z,14,9,0|gttc40,15,4,1|h4m83z,15,4,1|h4m840,14,9,0|hcjerz,14,9,0|hcjes0,15,4,1|hncarz,15,4,1|hncas0,14,9,0|hv9hfz,14,9,0|hv9hg0,15,4,1|i6fc3z,15,4,1|i6fc40,14,9,0|idzk3z,14,9,0|idzk40,15,4,1|ip5erz,15,4,1|ip5es0,14,9,0|iwpmrz,14,9,0|iwpms0,15,4,1|j7vhfz,15,4,1|j7vhg0,14,9,0|jffpfz,14,9,0|jffpg0,15,4,1|jqlk3z,15,4,1|jqlk40,14,9,0|jyiqrz,14,9,0|jyiqs0,15,4,1|k9bmrz,15,4,1|k9bms0,14,9,0|kh8tfz,14,9,0|kh8tg0,15,4,1|ks1pfz,15,4,1|ks1pg0,14,9,0|kzyw3z,14,9,0|kzyw40,15,4,1|lb4qrz,15,4,1|lb4qs0,14,9,0|lioyrz,14,9,0|lioys0,15,4,1|ltutfz,15,4,1|ltutg0,14,9,0|m1f1fz,14,9,0|m1f1g0,15,4,1|mckw3z,15,4,1|mckw40,14,9,0|mki2rz,14,9,0|mki2s0,15,4,1|mvayrz,15,4,1|mvays0,14,9,0|n385fz,14,9,0|n385g0,15,4,1|ne11fz,15,4,1|ne11g0,14,9,0|nly83z,14,9,0|nly840,15,4,1|nwr43z,15,4,1|nwr440,14,9,0|o4oarz,14,9,0|o4oas0,15,4,1|ofu5fz,15,4,1|ofu5g0,14,9,0|onedfz,14,9,0|onedg0,15,4,1|oyk83z,15,4,1|oyk840,14,9,0|p64g3z,14,9,0|p64g40,15,4,1|phaarz,15,4,1|phaas0,14,9,0|pp7hfz,14,9,0|pp7hg0,15,4,1|q00dfz,15,4,1|q00dg0,14,9,0|q7xk3z,14,9,0|q7xk40,15,4,1|qiqg3z,15,4,1|qiqg40,14,9,0|qqnmrz,14,9,0|qqnms0,15,4,1|r1thfz,15,4,1|r1thg0,14,9,0|r9dpfz,14,9,0|r9dpg0,15,4,1|rkjk3z,15,4,1|rkjk40,14,9,0|rs3s3z,14,9,0|rs3s40,15,4,1|s39mrz,15,4,1|s39ms0,14,9,0|sb6tfz,14,9,0|sb6tg0,15,4,1|slzpfz,15,4,1|slzpg0,14,9,0|stww3z,14,9,0|stww40,15,4,1|t4ps3z,15,4,1|t4ps40,14,9,0|tcmyrz,14,9,0|tcmys0,15,4,1|tnfurz,15,4,1|tnfus0,14,9,0|tvd1fz,14,9,0|tvd1g0,15,4,1|u6iw3z,15,4,1|u6iw40,14,9,0|ue343z,14,9,0|ue3440,15,4,1|up8yrz,15,4,1|up8ys0,14,9,0|uwt6rz,14,9,0|uwt6s0,15,4,1|v7z1fz,15,4,1|v7z1g0,14,9,0|vfw83z,14,9,0|vfw840,15,4,1|vqp43z,15,4,1|vqp440,14,9,0|vymarz,14,9,0|vymas0,15,4,1|w9f6rz,15,4,1|w9f6s0,14,9,0|whcdfz,14,9,0|whcdg0,15,4,1|wsi83z,15,4,1|wsi840,14,9,0|x02g3z,14,9,0|x02g40,15,4,1|xb8arz,15,4,1|xb8as0,14,9,0|xisirz,14,9,0|xisis0,15,4,1|xtydfz,15,4,1|xtydg0,14,9,0|y1ilfz,14,9,0|y1ilg0,15,4,1|ycog3z,15,4,1|ycog40,14,9,0|yklmrz,14,9,0|yklms0,15,4,1|yveirz,15,4,1|yveis0,14,9,0|z3bpfz,14,9,0|z3bpg0,15,4,1|ze4lfz,15,4,1|ze4lg0,14,9,0|zm1s3z,14,9,0|zm1s40,15,4,1|zx7mrz,15,4,1|zx7ms0,14,9,0|104rurz,14,9,0|104rus0,15,4,1|10fxpfz,15,4,1|10fxpg0,14,9,0|10nhxfz,14,9,0|10nhxg0,15,4,1|10yns3z,15,4,1|10yns40,14,9,0|116kyrz,14,9,0|116kys0,15,4,1|11hdurz,15,4,1|11hdus0,14,9,0|11pb1fz,14,9,0|11pb1g0,15,4,1|1203xfz,15,4,1|1203xg0,14,9,0|128143z,14,9,0|1281440,15,4,1|12iu03z,15,4,1|12iu040,14,9,0|12qr6rz,14,9,0|12qr6s0,15,4,1|131x1fz,15,4,1|131x1g0,14,9,0|139h9fz,14,9,0|139h9g0,15,4,1|13kn43z,15,4,1|13kn440,14,9,0|13s7c3z,14,9,0|13s7c40,15,4,1|143d6rz,15,4,1|143d6s0,14,9,0|14badfz,14,9,0|14badg0,15,4,1|14m39fz,15,4,1|14m39g0,14,9,0|14u0g3z,14,9,0|14u0g40,15,4,1|154tc3z,15,4,1|154tc40,14,9,0|15cqirz,14,9,0|15cqis0,15,4,1|15nwdfz,15,4,1|15nwdg0,14,9,0|15vglfz,14,9,0|15vglg0,15,4,1|166mg3z,15,4,1|166mg40,14,9,0|16e6o3z,14,9,0|16e6o40,15,4,1|16pcirz,15,4,1|16pcis0,14,9,0|16x9pfz,14,9,0|16x9pg0,15,4,1|1782lfz,15,4,1|1782lg0,14,9,0|17fzs3z,14,9,0|17fzs40,15,4,1|17qso3z,15,4,1|17qso40,14,9,0|17ypurz,14,9,0|17ypus0,15,4,1|189iqrz,15,4,1|189iqs0,14,9,0|18hfxfz,14,9,0|18hfxg0,15,4,1|18sls3z,15,4,1|18sls40,14,9,0|190603z,14,9,0|1906040,15,4,1|19bburz,15,4,1|19bbus0,14,9,0|19iw2rz,14,9,0|19iw2s0,15,4,1|19u1xfz,15,4,1|19u1xg0,14,9,0|1a1z43z,14,9,0|1a1z440,15,4,1|1acs03z,15,4,1|1acs040,14,9,0|1akp6rz,14,9,0|1akp6s0,15,4,1|1avi2rz,15,4,1|1avi2s0,14,9,0|1b3f9fz,14,9,0|1b3f9g0,15,4,1|1bel43z,15,4,1|1bel440,14,9,0|1bm5c3z,14,9,0|1bm5c40,15,4,1|1bxb6rz,15,4,1|1bxb6s0,14,9,0|1c4verz,14,9,0|1c4ves0,15,4,1|1cg19fz,15,4,1|1cg19g0,14,9,0|1cnlhfz,14,9,0|1cnlhg0,15,4,1|1cyrc3z,15,4,1|1cyrc40,14,9,0|1d6oirz,14,9,0|1d6ois0,15,4,1|1dhherz,15,4,1|1dhhes0,14,9,0|1dpelfz,14,9,0|1dpelg0,15,4,1|1e07hfz,15,4,1|1e07hg0,14,9,0|1e84o3z,14,9,0|1e84o40,15,4,1|1ejairz,15,4,1|1ejais0,14,9,0|1equqrz,14,9,0|1equqs0,15,4,1|1f20lfz,15,4,1|1f20lg0,14,9,0|1f9ktfz,14,9,0|1f9ktg0,15,4,1|1fkqo3z,15,4,1|1fkqo40,14,9,0|1fsnurz,14,9,0|1fsnus0,15,4,1|1g3gqrz,15,4,1|1g3gqs0,14,9,0|1gbdxfz,14,9,0|1gbdxg0,15,4,1|1gm6tfz,15,4,1|1gm6tg0,14,9,0|1gu403z,14,9,0|1gu4040,15,4,1|1h4ww3z,15,4,1|1h4ww40,14,9,0|1hcu2rz,14,9,0|1hcu2s0,15,4,1|1hnzxfz,15,4,1|1hnzxg0,14,9,0|1hvk5fz,14,9,0|1hvk5g0,15,4,1|1i6q03z,15,4,1|1i6q040,14,9,0|1iea83z,14,9,0|1iea840,15,4,1|1ipg2rz,15,4,1|1ipg2s0,14,9,0|1ixd9fz,14,9,0|1ixd9g0,15,4,1|1j865fz,15,4,1|1j865g0,14,9,0|1jg3c3z,14,9,0|1jg3c40,15,4,1|1jqw83z,15,4,1|1jqw840,14,9,0|1jyterz,14,9,0|1jytes0,15,4,1|1k9z9fz,15,4,1|1k9z9g0,14,9,0|1khjhfz,14,9,0|1khjhg0,15,4,1|1kspc3z,15,4,1|1kspc40,14,9,0|1l09k3z,14,9,0|1l09k40,15,4,1|1lbferz,15,4,1|1lbfes0,14,9,0|1ljclfz,14,9,0|1ljclg0,15,4,1|1lu5hfz,15,4,1|1lu5hg0,14,9,0|1m22o3z,14,9,0|1m22o40,15,4,1|1mcvk3z,15,4,1|1mcvk40,14,9,0|1mksqrz,14,9,0|1mksqs0,15,4,1|1mvlmrz,15,4,1|1mvlms0,14,9,0|1n3itfz,14,9,0|1n3itg0,15,4,1|1neoo3z,15,4,1|1neoo40,14,9,0|1nm8w3z,14,9,0|1nm8w40,15,4,1|1nxeqrz,15,4,1|1nxeqs0,14,9,0|1o4yyrz,14,9,0|1o4yys0,15,4,1|1og4tfz,15,4,1|1og4tg0,14,9,0|1oo203z,14,9,0|1oo2040,15,4,1|1oyuw3z,15,4,1|1oyuw40,14,9,0|1p6s2rz,14,9,0|1p6s2s0,15,4,1|1phkyrz,15,4,1|1phkys0,14,9,0|1ppi5fz,14,9,0|1ppi5g0,15,4,1|1q0o03z,15,4,1|1q0o040,14,9,0|1q8883z,14,9,0|1q88840,15,4,1|1qje2rz,15,4,1|1qje2s0,14,9,0|1qqyarz,14,9,0|1qqyas0,15,4,1|1r245fz,15,4,1|1r245g0,14,9,0|1r9odfz,14,9,0|1r9odg0,15,4,1|1rku83z,15,4,1|1rku840,14,9,0|1rsrerz,14,9,0|1rsres0,15,4,1|1s3karz,15,4,1|1s3kas0,14,9,0|1sbhhfz,14,9,0|1sbhhg0,15,4,1|1smadfz,15,4,1|1smadg0,14,9,0|1su7k3z,14,9,0|1su7k40,15,4,1|1t5derz,15,4,1|1t5des0,14,9,0|1tcxmrz,14,9,0|1tcxms0,15,4,1|1to3hfz,15,4,1|1to3hg0,14,9,0|1tvnpfz,14,9,0|1tvnpg0,15,4,1|1u6tk3z,15,4,1|1u6tk40,14,9,0|1ueqqrz,14,9,0|1ueqqs0,15,4,1|1upjmrz,15,4,1|1upjms0,14,9,0|1uxgtfz,14,9,0|1uxgtg0,15,4,1|1v89pfz,15,4,1|1v89pg0,14,9,0|1vg6w3z,14,9,0|1vg6w40,15,4,1|1vqzs3z,15,4,1|1vqzs40,14,9,0|NaN,14,9,0","Europe/Zurich|,0,333,0|-1os49kx,0,333,0|-1os49kw,54,334,0|-13g441n,54,334,0|-13g441m,8,8,0|-eyh6o1,8,8,0|-eyh6o0,9,9,1|-eqk001,9,9,1|-eqk000,8,8,0|-efr401,8,8,0|-efr400,9,9,1|-e7txc1,9,9,1|-e7txc0,8,8,0|5v5xfz,8,8,0|5v5xg0,9,9,1|64iyrz,9,9,1|64iys0,8,8,0|6dw03z,8,8,0|6dw040,9,9,1|6n91fz,9,9,1|6n91g0,8,8,0|6wm2rz,8,8,0|6wm2s0,9,9,1|75z43z,9,9,1|75z440,8,8,0|7fc5fz,8,8,0|7fc5g0,9,9,1|7p25fz,9,9,1|7p25g0,8,8,0|7yf6rz,8,8,0|7yf6s0,9,9,1|87s83z,9,9,1|87s840,8,8,0|8h59fz,8,8,0|8h59g0,9,9,1|8qiarz,9,9,1|8qias0,8,8,0|8zvc3z,8,8,0|8zvc40,9,9,1|998dfz,9,9,1|998dg0,8,8,0|9ilerz,8,8,0|9iles0,9,9,1|9ryg3z,9,9,1|9ryg40,8,8,0|a1bhfz,8,8,0|a1bhg0,9,9,1|aaoirz,9,9,1|aaois0,8,8,0|ak1k3z,8,8,0|ak1k40,9,9,1|atrk3z,9,9,1|atrk40,8,8,0|b34lfz,8,8,0|b34lg0,9,9,1|bchmrz,9,9,1|bchms0,8,8,0|bluo3z,8,8,0|bluo40,9,9,1|bv7pfz,9,9,1|bv7pg0,8,8,0|c4kqrz,8,8,0|c4kqs0,9,9,1|cdxs3z,9,9,1|cdxs40,8,8,0|cnatfz,8,8,0|cnatg0,9,9,1|cwnurz,9,9,1|cwnus0,8,8,0|d60w3z,8,8,0|d60w40,9,9,1|dfdxfz,9,9,1|dfdxg0,8,8,0|dp3xfz,8,8,0|dp3xg0,9,9,1|dzwtfz,9,9,1|dzwtg0,8,8,0|e7u03z,8,8,0|e7u040,9,9,1|eimw3z,9,9,1|eimw40,8,8,0|eqk2rz,8,8,0|eqk2s0,9,9,1|f1cyrz,9,9,1|f1cys0,8,8,0|f9a5fz,8,8,0|f9a5g0,9,9,1|fkg03z,9,9,1|fkg040,8,8,0|fs083z,8,8,0|fs0840,9,9,1|g362rz,9,9,1|g362s0,8,8,0|gaqarz,8,8,0|gaqas0,9,9,1|glw5fz,9,9,1|glw5g0,8,8,0|gttc3z,8,8,0|gttc40,9,9,1|h4m83z,9,9,1|h4m840,8,8,0|hcjerz,8,8,0|hcjes0,9,9,1|hncarz,9,9,1|hncas0,8,8,0|hv9hfz,8,8,0|hv9hg0,9,9,1|i6fc3z,9,9,1|i6fc40,8,8,0|idzk3z,8,8,0|idzk40,9,9,1|ip5erz,9,9,1|ip5es0,8,8,0|iwpmrz,8,8,0|iwpms0,9,9,1|j7vhfz,9,9,1|j7vhg0,8,8,0|jffpfz,8,8,0|jffpg0,9,9,1|jqlk3z,9,9,1|jqlk40,8,8,0|jyiqrz,8,8,0|jyiqs0,9,9,1|k9bmrz,9,9,1|k9bms0,8,8,0|kh8tfz,8,8,0|kh8tg0,9,9,1|ks1pfz,9,9,1|ks1pg0,8,8,0|kzyw3z,8,8,0|kzyw40,9,9,1|lb4qrz,9,9,1|lb4qs0,8,8,0|lioyrz,8,8,0|lioys0,9,9,1|ltutfz,9,9,1|ltutg0,8,8,0|m1f1fz,8,8,0|m1f1g0,9,9,1|mckw3z,9,9,1|mckw40,8,8,0|mki2rz,8,8,0|mki2s0,9,9,1|mvayrz,9,9,1|mvays0,8,8,0|n385fz,8,8,0|n385g0,9,9,1|ne11fz,9,9,1|ne11g0,8,8,0|nly83z,8,8,0|nly840,9,9,1|nwr43z,9,9,1|nwr440,8,8,0|o4oarz,8,8,0|o4oas0,9,9,1|ofu5fz,9,9,1|ofu5g0,8,8,0|onedfz,8,8,0|onedg0,9,9,1|oyk83z,9,9,1|oyk840,8,8,0|p64g3z,8,8,0|p64g40,9,9,1|phaarz,9,9,1|phaas0,8,8,0|pp7hfz,8,8,0|pp7hg0,9,9,1|q00dfz,9,9,1|q00dg0,8,8,0|q7xk3z,8,8,0|q7xk40,9,9,1|qiqg3z,9,9,1|qiqg40,8,8,0|qqnmrz,8,8,0|qqnms0,9,9,1|r1thfz,9,9,1|r1thg0,8,8,0|r9dpfz,8,8,0|r9dpg0,9,9,1|rkjk3z,9,9,1|rkjk40,8,8,0|rs3s3z,8,8,0|rs3s40,9,9,1|s39mrz,9,9,1|s39ms0,8,8,0|sb6tfz,8,8,0|sb6tg0,9,9,1|slzpfz,9,9,1|slzpg0,8,8,0|stww3z,8,8,0|stww40,9,9,1|t4ps3z,9,9,1|t4ps40,8,8,0|tcmyrz,8,8,0|tcmys0,9,9,1|tnfurz,9,9,1|tnfus0,8,8,0|tvd1fz,8,8,0|tvd1g0,9,9,1|u6iw3z,9,9,1|u6iw40,8,8,0|ue343z,8,8,0|ue3440,9,9,1|up8yrz,9,9,1|up8ys0,8,8,0|uwt6rz,8,8,0|uwt6s0,9,9,1|v7z1fz,9,9,1|v7z1g0,8,8,0|vfw83z,8,8,0|vfw840,9,9,1|vqp43z,9,9,1|vqp440,8,8,0|vymarz,8,8,0|vymas0,9,9,1|w9f6rz,9,9,1|w9f6s0,8,8,0|whcdfz,8,8,0|whcdg0,9,9,1|wsi83z,9,9,1|wsi840,8,8,0|x02g3z,8,8,0|x02g40,9,9,1|xb8arz,9,9,1|xb8as0,8,8,0|xisirz,8,8,0|xisis0,9,9,1|xtydfz,9,9,1|xtydg0,8,8,0|y1ilfz,8,8,0|y1ilg0,9,9,1|ycog3z,9,9,1|ycog40,8,8,0|yklmrz,8,8,0|yklms0,9,9,1|yveirz,9,9,1|yveis0,8,8,0|z3bpfz,8,8,0|z3bpg0,9,9,1|ze4lfz,9,9,1|ze4lg0,8,8,0|zm1s3z,8,8,0|zm1s40,9,9,1|zx7mrz,9,9,1|zx7ms0,8,8,0|104rurz,8,8,0|104rus0,9,9,1|10fxpfz,9,9,1|10fxpg0,8,8,0|10nhxfz,8,8,0|10nhxg0,9,9,1|10yns3z,9,9,1|10yns40,8,8,0|116kyrz,8,8,0|116kys0,9,9,1|11hdurz,9,9,1|11hdus0,8,8,0|11pb1fz,8,8,0|11pb1g0,9,9,1|1203xfz,9,9,1|1203xg0,8,8,0|128143z,8,8,0|1281440,9,9,1|12iu03z,9,9,1|12iu040,8,8,0|12qr6rz,8,8,0|12qr6s0,9,9,1|131x1fz,9,9,1|131x1g0,8,8,0|139h9fz,8,8,0|139h9g0,9,9,1|13kn43z,9,9,1|13kn440,8,8,0|13s7c3z,8,8,0|13s7c40,9,9,1|143d6rz,9,9,1|143d6s0,8,8,0|14badfz,8,8,0|14badg0,9,9,1|14m39fz,9,9,1|14m39g0,8,8,0|14u0g3z,8,8,0|14u0g40,9,9,1|154tc3z,9,9,1|154tc40,8,8,0|15cqirz,8,8,0|15cqis0,9,9,1|15nwdfz,9,9,1|15nwdg0,8,8,0|15vglfz,8,8,0|15vglg0,9,9,1|166mg3z,9,9,1|166mg40,8,8,0|16e6o3z,8,8,0|16e6o40,9,9,1|16pcirz,9,9,1|16pcis0,8,8,0|16x9pfz,8,8,0|16x9pg0,9,9,1|1782lfz,9,9,1|1782lg0,8,8,0|17fzs3z,8,8,0|17fzs40,9,9,1|17qso3z,9,9,1|17qso40,8,8,0|17ypurz,8,8,0|17ypus0,9,9,1|189iqrz,9,9,1|189iqs0,8,8,0|18hfxfz,8,8,0|18hfxg0,9,9,1|18sls3z,9,9,1|18sls40,8,8,0|190603z,8,8,0|1906040,9,9,1|19bburz,9,9,1|19bbus0,8,8,0|19iw2rz,8,8,0|19iw2s0,9,9,1|19u1xfz,9,9,1|19u1xg0,8,8,0|1a1z43z,8,8,0|1a1z440,9,9,1|1acs03z,9,9,1|1acs040,8,8,0|1akp6rz,8,8,0|1akp6s0,9,9,1|1avi2rz,9,9,1|1avi2s0,8,8,0|1b3f9fz,8,8,0|1b3f9g0,9,9,1|1bel43z,9,9,1|1bel440,8,8,0|1bm5c3z,8,8,0|1bm5c40,9,9,1|1bxb6rz,9,9,1|1bxb6s0,8,8,0|1c4verz,8,8,0|1c4ves0,9,9,1|1cg19fz,9,9,1|1cg19g0,8,8,0|1cnlhfz,8,8,0|1cnlhg0,9,9,1|1cyrc3z,9,9,1|1cyrc40,8,8,0|1d6oirz,8,8,0|1d6ois0,9,9,1|1dhherz,9,9,1|1dhhes0,8,8,0|1dpelfz,8,8,0|1dpelg0,9,9,1|1e07hfz,9,9,1|1e07hg0,8,8,0|1e84o3z,8,8,0|1e84o40,9,9,1|1ejairz,9,9,1|1ejais0,8,8,0|1equqrz,8,8,0|1equqs0,9,9,1|1f20lfz,9,9,1|1f20lg0,8,8,0|1f9ktfz,8,8,0|1f9ktg0,9,9,1|1fkqo3z,9,9,1|1fkqo40,8,8,0|1fsnurz,8,8,0|1fsnus0,9,9,1|1g3gqrz,9,9,1|1g3gqs0,8,8,0|1gbdxfz,8,8,0|1gbdxg0,9,9,1|1gm6tfz,9,9,1|1gm6tg0,8,8,0|1gu403z,8,8,0|1gu4040,9,9,1|1h4ww3z,9,9,1|1h4ww40,8,8,0|1hcu2rz,8,8,0|1hcu2s0,9,9,1|1hnzxfz,9,9,1|1hnzxg0,8,8,0|1hvk5fz,8,8,0|1hvk5g0,9,9,1|1i6q03z,9,9,1|1i6q040,8,8,0|1iea83z,8,8,0|1iea840,9,9,1|1ipg2rz,9,9,1|1ipg2s0,8,8,0|1ixd9fz,8,8,0|1ixd9g0,9,9,1|1j865fz,9,9,1|1j865g0,8,8,0|1jg3c3z,8,8,0|1jg3c40,9,9,1|1jqw83z,9,9,1|1jqw840,8,8,0|1jyterz,8,8,0|1jytes0,9,9,1|1k9z9fz,9,9,1|1k9z9g0,8,8,0|1khjhfz,8,8,0|1khjhg0,9,9,1|1kspc3z,9,9,1|1kspc40,8,8,0|1l09k3z,8,8,0|1l09k40,9,9,1|1lbferz,9,9,1|1lbfes0,8,8,0|1ljclfz,8,8,0|1ljclg0,9,9,1|1lu5hfz,9,9,1|1lu5hg0,8,8,0|1m22o3z,8,8,0|1m22o40,9,9,1|1mcvk3z,9,9,1|1mcvk40,8,8,0|1mksqrz,8,8,0|1mksqs0,9,9,1|1mvlmrz,9,9,1|1mvlms0,8,8,0|1n3itfz,8,8,0|1n3itg0,9,9,1|1neoo3z,9,9,1|1neoo40,8,8,0|1nm8w3z,8,8,0|1nm8w40,9,9,1|1nxeqrz,9,9,1|1nxeqs0,8,8,0|1o4yyrz,8,8,0|1o4yys0,9,9,1|1og4tfz,9,9,1|1og4tg0,8,8,0|1oo203z,8,8,0|1oo2040,9,9,1|1oyuw3z,9,9,1|1oyuw40,8,8,0|1p6s2rz,8,8,0|1p6s2s0,9,9,1|1phkyrz,9,9,1|1phkys0,8,8,0|1ppi5fz,8,8,0|1ppi5g0,9,9,1|1q0o03z,9,9,1|1q0o040,8,8,0|1q8883z,8,8,0|1q88840,9,9,1|1qje2rz,9,9,1|1qje2s0,8,8,0|1qqyarz,8,8,0|1qqyas0,9,9,1|1r245fz,9,9,1|1r245g0,8,8,0|1r9odfz,8,8,0|1r9odg0,9,9,1|1rku83z,9,9,1|1rku840,8,8,0|1rsrerz,8,8,0|1rsres0,9,9,1|1s3karz,9,9,1|1s3kas0,8,8,0|1sbhhfz,8,8,0|1sbhhg0,9,9,1|1smadfz,9,9,1|1smadg0,8,8,0|1su7k3z,8,8,0|1su7k40,9,9,1|1t5derz,9,9,1|1t5des0,8,8,0|1tcxmrz,8,8,0|1tcxms0,9,9,1|1to3hfz,9,9,1|1to3hg0,8,8,0|1tvnpfz,8,8,0|1tvnpg0,9,9,1|1u6tk3z,9,9,1|1u6tk40,8,8,0|1ueqqrz,8,8,0|1ueqqs0,9,9,1|1upjmrz,9,9,1|1upjms0,8,8,0|1uxgtfz,8,8,0|1uxgtg0,9,9,1|1v89pfz,9,9,1|1v89pg0,8,8,0|1vg6w3z,8,8,0|1vg6w40,9,9,1|1vqzs3z,9,9,1|1vqzs40,8,8,0|NaN,8,8,0","Indian/Antananarivo|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Indian/Chagos|,0,377,0|-wvpc2t,0,377,0|-wvpc2s,91,186,0|dkgsrz,91,186,0|dkgss0,96,190,0|NaN,96,190,0","Indian/Christmas|,0,378,0|-133iwwt,0,378,0|-133iwws,90,185,0|NaN,90,185,0","Indian/Cocos|,0,379,0|-10j6sm5,0,379,0|-10j6sm4,109,223,0|NaN,109,223,0","Indian/Comoro|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Indian/Kerguelen|,59,1,0|-afrs01,59,1,0|-afrs00,91,186,0|NaN,91,186,0","Indian/Mahe|,0,380,0|-wvp8xp,0,380,0|-wvp8xo,105,203,0|NaN,105,203,0","Indian/Maldives|,0,381,0|-1ayyga1,0,381,0|-1ayyga0,20,381,0|-57x6y1,20,381,0|-57x6y0,91,186,0|NaN,91,186,0","Indian/Mauritius|,0,382,0|-wvp9bd,0,382,0|-wvp9bc,105,203,0|6nykvz,105,203,0|6nykw0,91,186,1|6wai3z,91,186,1|6wai40,105,203,0|k9befz,105,203,0|k9beg0,91,186,1|kh8ibz,91,186,1|kh8ic0,105,203,0|NaN,105,203,0","Indian/Mayotte|,0,2,0|-w6p5hh,0,2,0|-w6p5hg,2,3,0|-lnsey1,2,3,0|-lnsey0,3,4,0|-kvcdo1,3,4,0|-kvcdo0,2,3,0|-h80ka1,2,3,0|-h80ka0,4,5,0|-eb6ib1,4,5,0|-eb6ib0,3,4,0|NaN,3,4,0","Indian/Reunion|,0,383,0|-uks29t,0,383,0|-uks29s,105,203,0|NaN,105,203,0","Pacific/Apia|,0,384,0|-14fxxj5,0,384,0|-14fxxj4,0,385,0|-usiiv5,0,385,0|-usiiv4,159,386,0|-afqw21,159,386,0|-afqw20,160,33,0|l9cp7z,160,33,0|l9cp80,161,34,1|lj12vz,161,34,1|lj12w0,160,33,0|ls15jz,160,33,0|ls15k0,161,34,1|lx0h3z,161,34,1|lx0h40,104,201,1|m1r5jz,104,201,1|m1r5k0,103,195,0|mb46vz,103,195,0|mb46w0,104,201,1|mku6vz,104,201,1|mku6w0,103,195,0|mtu9jz,103,195,0|mtu9k0,104,201,1|n3k9jz,104,201,1|n3k9k0,103,195,0|nckc7z,103,195,0|nckc80,104,201,1|nmac7z,104,201,1|nmac80,103,195,0|nvaevz,103,195,0|nvaew0,104,201,1|o50evz,104,201,1|o50ew0,103,195,0|oe0hjz,103,195,0|oe0hk0,104,201,1|onqhjz,104,201,1|onqhk0,103,195,0|owqk7z,103,195,0|owqk80,104,201,1|p6gk7z,104,201,1|p6gk80,103,195,0|pftljz,103,195,0|pftlk0,104,201,1|ppjljz,104,201,1|ppjlk0,103,195,0|pyjo7z,103,195,0|pyjo80,104,201,1|q89o7z,104,201,1|q89o80,103,195,0|qh9qvz,103,195,0|qh9qw0,104,201,1|qqzqvz,104,201,1|qqzqw0,103,195,0|NaN,103,195,0","Pacific/Auckland|,0,191,0|-1gsoz15,0,191,0|-1gsoz14,97,192,0|-m01p21,97,192,0|-m01p20,98,193,1|-ltxei1,98,193,1|-ltxei0,97,192,0|-lieie1,97,192,0|-lieie0,98,194,1|-lahd41,98,194,1|-lahd40,97,192,0|-kzofq1,97,192,0|-kzofq0,98,194,1|-krrag1,98,194,1|-krrag0,97,192,0|-kgyd21,97,192,0|-kgyd20,98,194,1|-k917s1,98,194,1|-k917s0,97,192,0|-jy8ae1,97,192,0|-jy8ae0,98,194,1|-jpy6g1,98,194,1|-jpy6g0,97,192,0|-jfi7q1,97,192,0|-jfi7q0,98,194,1|-j783s1,98,194,1|-j783s0,97,192,0|-iws521,97,192,0|-iws520,98,194,1|-imc941,98,194,1|-imc940,97,192,0|-ief121,97,192,0|-ief120,98,194,1|-i3m6g1,98,194,1|-i3m6g0,97,192,0|-hvoye1,97,192,0|-hvoye0,98,194,1|-hkw3s1,98,194,1|-hkw3s0,97,192,0|-hcyvq1,97,192,0|-hcyvq0,98,194,1|-h26141,98,194,1|-h26140,97,192,0|-gu8t21,97,192,0|-gu8t20,98,194,1|-gjfyg1,98,194,1|-gjfyg0,97,192,0|-gbiqe1,97,192,0|-gbiqe0,98,194,1|-g0cx41,98,194,1|-g0cx40,97,192,0|-fssnq1,97,192,0|-fssnq0,98,194,1|-fhmug1,98,194,1|-fhmug0,97,192,0|-f9pme1,97,192,0|-f9pme0,98,194,1|-ciy9c1,98,194,1|-ciy9c0,98,194,0|2ivg7z,98,194,0|2ivg80,99,195,1|2omuvz,99,195,1|2omuw0,98,194,0|318k7z,98,194,0|318k80,99,195,1|382uvz,99,195,1|382uw0,98,194,0|3kbljz,98,194,0|3kblk0,99,195,1|3qsxjz,99,195,1|3qsxk0,98,194,0|431o7z,98,194,0|431o80,99,195,1|49j07z,99,195,1|49j080,98,194,0|4lrqvz,98,194,0|4lrqw0,99,195,1|4s92vz,99,195,1|4s92w0,98,194,0|54htjz,98,194,0|54htk0,99,195,1|5az5jz,99,195,1|5az5k0,98,194,0|5n7w7z,98,194,0|5n7w80,99,195,1|5tp87z,99,195,1|5tp880,98,194,0|65xyvz,98,194,0|65xyw0,99,195,1|6cs9jz,99,195,1|6cs9k0,98,194,0|6p107z,98,194,0|6p1080,99,195,1|6vic7z,99,195,1|6vic80,98,194,0|77r2vz,98,194,0|77r2w0,99,195,1|7e8evz,99,195,1|7e8ew0,98,194,0|7qh5jz,98,194,0|7qh5k0,99,195,1|7wyhjz,99,195,1|7wyhk0,98,194,0|89787z,98,194,0|897880,99,195,1|8fok7z,99,195,1|8fok80,98,194,0|8rxavz,98,194,0|8rxaw0,99,195,1|8yemvz,99,195,1|8yemw0,98,194,0|9andjz,98,194,0|9andk0,99,195,1|9hho7z,99,195,1|9hho80,98,194,0|9tqevz,98,194,0|9tqew0,99,195,1|a07qvz,99,195,1|a07qw0,98,194,0|abdljz,98,194,0|abdlk0,99,195,1|ajnqvz,99,195,1|ajnqw0,98,194,0|au3o7z,98,194,0|au3o80,99,195,1|b2dtjz,99,195,1|b2dtk0,98,194,0|bctqvz,98,194,0|bctqw0,99,195,1|bl3w7z,99,195,1|bl3w80,98,194,0|bvjtjz,98,194,0|bvjtk0,99,195,1|c46xjz,99,195,1|c46xk0,98,194,0|ce9w7z,98,194,0|ce9w80,99,195,1|cmx07z,99,195,1|cmx080,98,194,0|cwzyvz,98,194,0|cwzyw0,99,195,1|d5n2vz,99,195,1|d5n2w0,98,194,0|dfq1jz,98,194,0|dfq1k0,99,195,1|dod5jz,99,195,1|dod5k0,98,194,0|dyt2vz,98,194,0|dyt2w0,99,195,1|e7387z,99,195,1|e73880,98,194,0|ehj5jz,98,194,0|ehj5k0,99,195,1|eptavz,99,195,1|eptaw0,98,194,0|f0987z,98,194,0|f09880,99,195,1|f8wc7z,99,195,1|f8wc80,98,194,0|fizavz,98,194,0|fizaw0,99,195,1|frmevz,99,195,1|frmew0,98,194,0|g1pdjz,98,194,0|g1pdk0,99,195,1|gachjz,99,195,1|gachk0,98,194,0|gksevz,98,194,0|gksew0,99,195,1|gt2k7z,99,195,1|gt2k80,98,194,0|h3ihjz,98,194,0|h3ihk0,99,195,1|hbsmvz,99,195,1|hbsmw0,98,194,0|hm8k7z,98,194,0|hm8k80,99,195,1|huvo7z,99,195,1|huvo80,98,194,0|i4ymvz,98,194,0|i4ymw0,99,195,1|idlqvz,99,195,1|idlqw0,98,194,0|inopjz,98,194,0|inopk0,99,195,1|iwbtjz,99,195,1|iwbtk0,98,194,0|j6es7z,98,194,0|j6es80,99,195,1|jf1w7z,99,195,1|jf1w80,98,194,0|jp4uvz,98,194,0|jp4uw0,99,195,1|jyuuvz,99,195,1|jyuuw0,98,194,0|k7uxjz,98,194,0|k7uxk0,99,195,1|khkxjz,99,195,1|khkxk0,98,194,0|kql07z,98,194,0|kql080,99,195,1|l0b07z,99,195,1|l0b080,98,194,0|l9b2vz,98,194,0|l9b2w0,99,195,1|lj12vz,99,195,1|lj12w0,98,194,0|ls15jz,98,194,0|ls15k0,99,195,1|m1r5jz,99,195,1|m1r5k0,98,194,0|mb46vz,98,194,0|mb46w0,99,195,1|mku6vz,99,195,1|mku6w0,98,194,0|mtu9jz,98,194,0|mtu9k0,99,195,1|n3k9jz,99,195,1|n3k9k0,98,194,0|nckc7z,98,194,0|nckc80,99,195,1|nmac7z,99,195,1|nmac80,98,194,0|nvaevz,98,194,0|nvaew0,99,195,1|o50evz,99,195,1|o50ew0,98,194,0|oe0hjz,98,194,0|oe0hk0,99,195,1|onqhjz,99,195,1|onqhk0,98,194,0|owqk7z,98,194,0|owqk80,99,195,1|p6gk7z,99,195,1|p6gk80,98,194,0|pftljz,98,194,0|pftlk0,99,195,1|ppjljz,99,195,1|ppjlk0,98,194,0|pyjo7z,98,194,0|pyjo80,99,195,1|q89o7z,99,195,1|q89o80,98,194,0|qh9qvz,98,194,0|qh9qw0,99,195,1|qqzqvz,99,195,1|qqzqw0,98,194,0|qzztjz,98,194,0|qzztk0,99,195,1|r9ptjz,99,195,1|r9ptk0,98,194,0|ripw7z,98,194,0|ripw80,99,195,1|rsfw7z,99,195,1|rsfw80,98,194,0|s1fyvz,98,194,0|s1fyw0,99,195,1|sbixjz,99,195,1|sbixk0,98,194,0|skj07z,98,194,0|skj080,99,195,1|su907z,99,195,1|su9080,98,194,0|t392vz,98,194,0|t392w0,99,195,1|tcz2vz,99,195,1|tcz2w0,98,194,0|tlz5jz,98,194,0|tlz5k0,99,195,1|tvp5jz,99,195,1|tvp5k0,98,194,0|u4p87z,98,194,0|u4p880,99,195,1|uef87z,99,195,1|uef880,98,194,0|unfavz,98,194,0|unfaw0,99,195,1|ux5avz,99,195,1|ux5aw0,98,194,0|v6ic7z,98,194,0|v6ic80,99,195,1|vg8c7z,99,195,1|vg8c80,98,194,0|vp8evz,98,194,0|vp8ew0,99,195,1|vyyevz,99,195,1|vyyew0,98,194,0|w7yhjz,98,194,0|w7yhk0,99,195,1|whohjz,99,195,1|whohk0,98,194,0|wqok7z,98,194,0|wqok80,99,195,1|x0ek7z,99,195,1|x0ek80,98,194,0|x9emvz,98,194,0|x9emw0,99,195,1|xj4mvz,99,195,1|xj4mw0,98,194,0|xs4pjz,98,194,0|xs4pk0,99,195,1|y1upjz,99,195,1|y1upk0,98,194,0|yb7qvz,98,194,0|yb7qw0,99,195,1|ykxqvz,99,195,1|ykxqw0,98,194,0|ytxtjz,98,194,0|ytxtk0,99,195,1|z3ntjz,99,195,1|z3ntk0,98,194,0|zcnw7z,98,194,0|zcnw80,99,195,1|zmdw7z,99,195,1|zmdw80,98,194,0|zvdyvz,98,194,0|zvdyw0,99,195,1|1053yvz,99,195,1|1053yw0,98,194,0|10e41jz,98,194,0|10e41k0,99,195,1|10nu1jz,99,195,1|10nu1k0,98,194,0|10x72vz,98,194,0|10x72w0,99,195,1|116x2vz,99,195,1|116x2w0,98,194,0|11fx5jz,98,194,0|11fx5k0,99,195,1|11pn5jz,99,195,1|11pn5k0,98,194,0|11yn87z,98,194,0|11yn880,99,195,1|128d87z,99,195,1|128d880,98,194,0|12hdavz,98,194,0|12hdaw0,99,195,1|12r3avz,99,195,1|12r3aw0,98,194,0|1303djz,98,194,0|1303dk0,99,195,1|139tdjz,99,195,1|139tdk0,98,194,0|13itg7z,98,194,0|13itg80,99,195,1|13sjg7z,99,195,1|13sjg80,98,194,0|141whjz,98,194,0|141whk0,99,195,1|14bmhjz,99,195,1|14bmhk0,98,194,0|14kmk7z,98,194,0|14kmk80,99,195,1|14uck7z,99,195,1|14uck80,98,194,0|153cmvz,98,194,0|153cmw0,99,195,1|15d2mvz,99,195,1|15d2mw0,98,194,0|15m2pjz,98,194,0|15m2pk0,99,195,1|15vspjz,99,195,1|15vspk0,98,194,0|164ss7z,98,194,0|164ss80,99,195,1|16eis7z,99,195,1|16eis80,98,194,0|16niuvz,98,194,0|16niuw0,99,195,1|16xltjz,99,195,1|16xltk0,98,194,0|176lw7z,98,194,0|176lw80,99,195,1|17gbw7z,99,195,1|17gbw80,98,194,0|17pbyvz,98,194,0|17pbyw0,99,195,1|17z1yvz,99,195,1|17z1yw0,98,194,0|18821jz,98,194,0|18821k0,99,195,1|18hs1jz,99,195,1|18hs1k0,98,194,0|18qs47z,98,194,0|18qs480,99,195,1|190i47z,99,195,1|190i480,98,194,0|199i6vz,98,194,0|199i6w0,99,195,1|19j86vz,99,195,1|19j86w0,98,194,0|19sl87z,98,194,0|19sl880,99,195,1|1a2b87z,99,195,1|1a2b880,98,194,0|1abbavz,98,194,0|1abbaw0,99,195,1|1al1avz,99,195,1|1al1aw0,98,194,0|1au1djz,98,194,0|1au1dk0,99,195,1|1b3rdjz,99,195,1|1b3rdk0,98,194,0|1bcrg7z,98,194,0|1bcrg80,99,195,1|1bmhg7z,99,195,1|1bmhg80,98,194,0|1bvhivz,98,194,0|1bvhiw0,99,195,1|1c57ivz,99,195,1|1c57iw0,98,194,0|1ce7ljz,98,194,0|1ce7lk0,99,195,1|1cnxljz,99,195,1|1cnxlk0,98,194,0|1cxamvz,98,194,0|1cxamw0,99,195,1|1d70mvz,99,195,1|1d70mw0,98,194,0|1dg0pjz,98,194,0|1dg0pk0,99,195,1|1dpqpjz,99,195,1|1dpqpk0,98,194,0|1dyqs7z,98,194,0|1dyqs80,99,195,1|1e8gs7z,99,195,1|1e8gs80,98,194,0|1ehguvz,98,194,0|1ehguw0,99,195,1|1er6uvz,99,195,1|1er6uw0,98,194,0|1f06xjz,98,194,0|1f06xk0,99,195,1|1f9wxjz,99,195,1|1f9wxk0,98,194,0|1fj9yvz,98,194,0|1fj9yw0,99,195,1|1fszyvz,99,195,1|1fszyw0,98,194,0|1g201jz,98,194,0|1g201k0,99,195,1|1gbq1jz,99,195,1|1gbq1k0,98,194,0|1gkq47z,98,194,0|1gkq480,99,195,1|1gug47z,99,195,1|1gug480,98,194,0|1h3g6vz,98,194,0|1h3g6w0,99,195,1|1hd66vz,99,195,1|1hd66w0,98,194,0|1hm69jz,98,194,0|1hm69k0,99,195,1|1hvw9jz,99,195,1|1hvw9k0,98,194,0|1i4wc7z,98,194,0|1i4wc80,99,195,1|1iemc7z,99,195,1|1iemc80,98,194,0|1inzdjz,98,194,0|1inzdk0,99,195,1|1ixpdjz,99,195,1|1ixpdk0,98,194,0|1j6pg7z,98,194,0|1j6pg80,99,195,1|1jgfg7z,99,195,1|1jgfg80,98,194,0|1jpfivz,98,194,0|1jpfiw0,99,195,1|1jz5ivz,99,195,1|1jz5iw0,98,194,0|1k85ljz,98,194,0|1k85lk0,99,195,1|1khvljz,99,195,1|1khvlk0,98,194,0|1kqvo7z,98,194,0|1kqvo80,99,195,1|1l0lo7z,99,195,1|1l0lo80,98,194,0|1l9lqvz,98,194,0|1l9lqw0,99,195,1|1ljopjz,99,195,1|1ljopk0,98,194,0|1lsos7z,98,194,0|1lsos80,99,195,1|1m2es7z,99,195,1|1m2es80,98,194,0|1mbeuvz,98,194,0|1mbeuw0,99,195,1|1ml4uvz,99,195,1|1ml4uw0,98,194,0|1mu4xjz,98,194,0|1mu4xk0,99,195,1|1n3uxjz,99,195,1|1n3uxk0,98,194,0|1ncv07z,98,194,0|1ncv080,99,195,1|1nml07z,99,195,1|1nml080,98,194,0|1nvl2vz,98,194,0|1nvl2w0,99,195,1|1o5b2vz,99,195,1|1o5b2w0,98,194,0|1oeo47z,98,194,0|1oeo480,99,195,1|1ooe47z,99,195,1|1ooe480,98,194,0|1oxe6vz,98,194,0|1oxe6w0,99,195,1|1p746vz,99,195,1|1p746w0,98,194,0|1pg49jz,98,194,0|1pg49k0,99,195,1|1ppu9jz,99,195,1|1ppu9k0,98,194,0|1pyuc7z,98,194,0|1pyuc80,99,195,1|1q8kc7z,99,195,1|1q8kc80,98,194,0|1qhkevz,98,194,0|1qhkew0,99,195,1|1qraevz,99,195,1|1qraew0,98,194,0|1r0ahjz,98,194,0|1r0ahk0,99,195,1|1ra0hjz,99,195,1|1ra0hk0,98,194,0|1rjdivz,98,194,0|1rjdiw0,99,195,1|1rt3ivz,99,195,1|1rt3iw0,98,194,0|1s23ljz,98,194,0|1s23lk0,99,195,1|1sbtljz,99,195,1|1sbtlk0,98,194,0|1skto7z,98,194,0|1skto80,99,195,1|1sujo7z,99,195,1|1sujo80,98,194,0|1t3jqvz,98,194,0|1t3jqw0,99,195,1|1td9qvz,99,195,1|1td9qw0,98,194,0|1tm9tjz,98,194,0|1tm9tk0,99,195,1|1tvztjz,99,195,1|1tvztk0,98,194,0|1u5cuvz,98,194,0|1u5cuw0,99,195,1|1uf2uvz,99,195,1|1uf2uw0,98,194,0|1uo2xjz,98,194,0|1uo2xk0,99,195,1|1uxsxjz,99,195,1|1uxsxk0,98,194,0|1v6t07z,98,194,0|1v6t080,99,195,1|1vgj07z,99,195,1|1vgj080,98,194,0|1vpj2vz,98,194,0|1vpj2w0,99,195,1|NaN,99,195,1","Pacific/Bougainville|,0,387,0|-1ayyvh5,0,387,0|-1ayyvh4,92,188,0|-1354j8x,92,188,0|-1354j8w,93,189,0|-ecsh41,93,189,0|-ecsh40,107,218,0|-cpsbo1,107,218,0|-cpsbo0,93,189,0|nh90fz,93,189,0|nh90g0,89,184,0|NaN,89,184,0","Pacific/Chatham|,0,388,0|-1gsp0n1,0,388,0|-1gsp0n0,162,389,0|-ciya11,162,389,0|-ciya10,163,390,0|2ivg7z,163,390,0|2ivg80,164,391,1|2omuvz,164,391,1|2omuw0,163,390,0|318k7z,163,390,0|318k80,164,391,1|382uvz,164,391,1|382uw0,163,390,0|3kbljz,163,390,0|3kblk0,164,391,1|3qsxjz,164,391,1|3qsxk0,163,390,0|431o7z,163,390,0|431o80,164,391,1|49j07z,164,391,1|49j080,163,390,0|4lrqvz,163,390,0|4lrqw0,164,391,1|4s92vz,164,391,1|4s92w0,163,390,0|54htjz,163,390,0|54htk0,164,391,1|5az5jz,164,391,1|5az5k0,163,390,0|5n7w7z,163,390,0|5n7w80,164,391,1|5tp87z,164,391,1|5tp880,163,390,0|65xyvz,163,390,0|65xyw0,164,391,1|6cs9jz,164,391,1|6cs9k0,163,390,0|6p107z,163,390,0|6p1080,164,391,1|6vic7z,164,391,1|6vic80,163,390,0|77r2vz,163,390,0|77r2w0,164,391,1|7e8evz,164,391,1|7e8ew0,163,390,0|7qh5jz,163,390,0|7qh5k0,164,391,1|7wyhjz,164,391,1|7wyhk0,163,390,0|89787z,163,390,0|897880,164,391,1|8fok7z,164,391,1|8fok80,163,390,0|8rxavz,163,390,0|8rxaw0,164,391,1|8yemvz,164,391,1|8yemw0,163,390,0|9andjz,163,390,0|9andk0,164,391,1|9hho7z,164,391,1|9hho80,163,390,0|9tqevz,163,390,0|9tqew0,164,391,1|a07qvz,164,391,1|a07qw0,163,390,0|abdljz,163,390,0|abdlk0,164,391,1|ajnqvz,164,391,1|ajnqw0,163,390,0|au3o7z,163,390,0|au3o80,164,391,1|b2dtjz,164,391,1|b2dtk0,163,390,0|bctqvz,163,390,0|bctqw0,164,391,1|bl3w7z,164,391,1|bl3w80,163,390,0|bvjtjz,163,390,0|bvjtk0,164,391,1|c46xjz,164,391,1|c46xk0,163,390,0|ce9w7z,163,390,0|ce9w80,164,391,1|cmx07z,164,391,1|cmx080,163,390,0|cwzyvz,163,390,0|cwzyw0,164,391,1|d5n2vz,164,391,1|d5n2w0,163,390,0|dfq1jz,163,390,0|dfq1k0,164,391,1|dod5jz,164,391,1|dod5k0,163,390,0|dyt2vz,163,390,0|dyt2w0,164,391,1|e7387z,164,391,1|e73880,163,390,0|ehj5jz,163,390,0|ehj5k0,164,391,1|eptavz,164,391,1|eptaw0,163,390,0|f0987z,163,390,0|f09880,164,391,1|f8wc7z,164,391,1|f8wc80,163,390,0|fizavz,163,390,0|fizaw0,164,391,1|frmevz,164,391,1|frmew0,163,390,0|g1pdjz,163,390,0|g1pdk0,164,391,1|gachjz,164,391,1|gachk0,163,390,0|gksevz,163,390,0|gksew0,164,391,1|gt2k7z,164,391,1|gt2k80,163,390,0|h3ihjz,163,390,0|h3ihk0,164,391,1|hbsmvz,164,391,1|hbsmw0,163,390,0|hm8k7z,163,390,0|hm8k80,164,391,1|huvo7z,164,391,1|huvo80,163,390,0|i4ymvz,163,390,0|i4ymw0,164,391,1|idlqvz,164,391,1|idlqw0,163,390,0|inopjz,163,390,0|inopk0,164,391,1|iwbtjz,164,391,1|iwbtk0,163,390,0|j6es7z,163,390,0|j6es80,164,391,1|jf1w7z,164,391,1|jf1w80,163,390,0|jp4uvz,163,390,0|jp4uw0,164,391,1|jyuuvz,164,391,1|jyuuw0,163,390,0|k7uxjz,163,390,0|k7uxk0,164,391,1|khkxjz,164,391,1|khkxk0,163,390,0|kql07z,163,390,0|kql080,164,391,1|l0b07z,164,391,1|l0b080,163,390,0|l9b2vz,163,390,0|l9b2w0,164,391,1|lj12vz,164,391,1|lj12w0,163,390,0|ls15jz,163,390,0|ls15k0,164,391,1|m1r5jz,164,391,1|m1r5k0,163,390,0|mb46vz,163,390,0|mb46w0,164,391,1|mku6vz,164,391,1|mku6w0,163,390,0|mtu9jz,163,390,0|mtu9k0,164,391,1|n3k9jz,164,391,1|n3k9k0,163,390,0|nckc7z,163,390,0|nckc80,164,391,1|nmac7z,164,391,1|nmac80,163,390,0|nvaevz,163,390,0|nvaew0,164,391,1|o50evz,164,391,1|o50ew0,163,390,0|oe0hjz,163,390,0|oe0hk0,164,391,1|onqhjz,164,391,1|onqhk0,163,390,0|owqk7z,163,390,0|owqk80,164,391,1|p6gk7z,164,391,1|p6gk80,163,390,0|pftljz,163,390,0|pftlk0,164,391,1|ppjljz,164,391,1|ppjlk0,163,390,0|pyjo7z,163,390,0|pyjo80,164,391,1|q89o7z,164,391,1|q89o80,163,390,0|qh9qvz,163,390,0|qh9qw0,164,391,1|qqzqvz,164,391,1|qqzqw0,163,390,0|qzztjz,163,390,0|qzztk0,164,391,1|r9ptjz,164,391,1|r9ptk0,163,390,0|ripw7z,163,390,0|ripw80,164,391,1|rsfw7z,164,391,1|rsfw80,163,390,0|s1fyvz,163,390,0|s1fyw0,164,391,1|sbixjz,164,391,1|sbixk0,163,390,0|skj07z,163,390,0|skj080,164,391,1|su907z,164,391,1|su9080,163,390,0|t392vz,163,390,0|t392w0,164,391,1|tcz2vz,164,391,1|tcz2w0,163,390,0|tlz5jz,163,390,0|tlz5k0,164,391,1|tvp5jz,164,391,1|tvp5k0,163,390,0|u4p87z,163,390,0|u4p880,164,391,1|uef87z,164,391,1|uef880,163,390,0|unfavz,163,390,0|unfaw0,164,391,1|ux5avz,164,391,1|ux5aw0,163,390,0|v6ic7z,163,390,0|v6ic80,164,391,1|vg8c7z,164,391,1|vg8c80,163,390,0|vp8evz,163,390,0|vp8ew0,164,391,1|vyyevz,164,391,1|vyyew0,163,390,0|w7yhjz,163,390,0|w7yhk0,164,391,1|whohjz,164,391,1|whohk0,163,390,0|wqok7z,163,390,0|wqok80,164,391,1|x0ek7z,164,391,1|x0ek80,163,390,0|x9emvz,163,390,0|x9emw0,164,391,1|xj4mvz,164,391,1|xj4mw0,163,390,0|xs4pjz,163,390,0|xs4pk0,164,391,1|y1upjz,164,391,1|y1upk0,163,390,0|yb7qvz,163,390,0|yb7qw0,164,391,1|ykxqvz,164,391,1|ykxqw0,163,390,0|ytxtjz,163,390,0|ytxtk0,164,391,1|z3ntjz,164,391,1|z3ntk0,163,390,0|zcnw7z,163,390,0|zcnw80,164,391,1|zmdw7z,164,391,1|zmdw80,163,390,0|zvdyvz,163,390,0|zvdyw0,164,391,1|1053yvz,164,391,1|1053yw0,163,390,0|10e41jz,163,390,0|10e41k0,164,391,1|10nu1jz,164,391,1|10nu1k0,163,390,0|10x72vz,163,390,0|10x72w0,164,391,1|116x2vz,164,391,1|116x2w0,163,390,0|11fx5jz,163,390,0|11fx5k0,164,391,1|11pn5jz,164,391,1|11pn5k0,163,390,0|11yn87z,163,390,0|11yn880,164,391,1|128d87z,164,391,1|128d880,163,390,0|12hdavz,163,390,0|12hdaw0,164,391,1|12r3avz,164,391,1|12r3aw0,163,390,0|1303djz,163,390,0|1303dk0,164,391,1|139tdjz,164,391,1|139tdk0,163,390,0|13itg7z,163,390,0|13itg80,164,391,1|13sjg7z,164,391,1|13sjg80,163,390,0|141whjz,163,390,0|141whk0,164,391,1|14bmhjz,164,391,1|14bmhk0,163,390,0|14kmk7z,163,390,0|14kmk80,164,391,1|14uck7z,164,391,1|14uck80,163,390,0|153cmvz,163,390,0|153cmw0,164,391,1|15d2mvz,164,391,1|15d2mw0,163,390,0|15m2pjz,163,390,0|15m2pk0,164,391,1|15vspjz,164,391,1|15vspk0,163,390,0|164ss7z,163,390,0|164ss80,164,391,1|16eis7z,164,391,1|16eis80,163,390,0|16niuvz,163,390,0|16niuw0,164,391,1|16xltjz,164,391,1|16xltk0,163,390,0|176lw7z,163,390,0|176lw80,164,391,1|17gbw7z,164,391,1|17gbw80,163,390,0|17pbyvz,163,390,0|17pbyw0,164,391,1|17z1yvz,164,391,1|17z1yw0,163,390,0|18821jz,163,390,0|18821k0,164,391,1|18hs1jz,164,391,1|18hs1k0,163,390,0|18qs47z,163,390,0|18qs480,164,391,1|190i47z,164,391,1|190i480,163,390,0|199i6vz,163,390,0|199i6w0,164,391,1|19j86vz,164,391,1|19j86w0,163,390,0|19sl87z,163,390,0|19sl880,164,391,1|1a2b87z,164,391,1|1a2b880,163,390,0|1abbavz,163,390,0|1abbaw0,164,391,1|1al1avz,164,391,1|1al1aw0,163,390,0|1au1djz,163,390,0|1au1dk0,164,391,1|1b3rdjz,164,391,1|1b3rdk0,163,390,0|1bcrg7z,163,390,0|1bcrg80,164,391,1|1bmhg7z,164,391,1|1bmhg80,163,390,0|1bvhivz,163,390,0|1bvhiw0,164,391,1|1c57ivz,164,391,1|1c57iw0,163,390,0|1ce7ljz,163,390,0|1ce7lk0,164,391,1|1cnxljz,164,391,1|1cnxlk0,163,390,0|1cxamvz,163,390,0|1cxamw0,164,391,1|1d70mvz,164,391,1|1d70mw0,163,390,0|1dg0pjz,163,390,0|1dg0pk0,164,391,1|1dpqpjz,164,391,1|1dpqpk0,163,390,0|1dyqs7z,163,390,0|1dyqs80,164,391,1|1e8gs7z,164,391,1|1e8gs80,163,390,0|1ehguvz,163,390,0|1ehguw0,164,391,1|1er6uvz,164,391,1|1er6uw0,163,390,0|1f06xjz,163,390,0|1f06xk0,164,391,1|1f9wxjz,164,391,1|1f9wxk0,163,390,0|1fj9yvz,163,390,0|1fj9yw0,164,391,1|1fszyvz,164,391,1|1fszyw0,163,390,0|1g201jz,163,390,0|1g201k0,164,391,1|1gbq1jz,164,391,1|1gbq1k0,163,390,0|1gkq47z,163,390,0|1gkq480,164,391,1|1gug47z,164,391,1|1gug480,163,390,0|1h3g6vz,163,390,0|1h3g6w0,164,391,1|1hd66vz,164,391,1|1hd66w0,163,390,0|1hm69jz,163,390,0|1hm69k0,164,391,1|1hvw9jz,164,391,1|1hvw9k0,163,390,0|1i4wc7z,163,390,0|1i4wc80,164,391,1|1iemc7z,164,391,1|1iemc80,163,390,0|1inzdjz,163,390,0|1inzdk0,164,391,1|1ixpdjz,164,391,1|1ixpdk0,163,390,0|1j6pg7z,163,390,0|1j6pg80,164,391,1|1jgfg7z,164,391,1|1jgfg80,163,390,0|1jpfivz,163,390,0|1jpfiw0,164,391,1|1jz5ivz,164,391,1|1jz5iw0,163,390,0|1k85ljz,163,390,0|1k85lk0,164,391,1|1khvljz,164,391,1|1khvlk0,163,390,0|1kqvo7z,163,390,0|1kqvo80,164,391,1|1l0lo7z,164,391,1|1l0lo80,163,390,0|1l9lqvz,163,390,0|1l9lqw0,164,391,1|1ljopjz,164,391,1|1ljopk0,163,390,0|1lsos7z,163,390,0|1lsos80,164,391,1|1m2es7z,164,391,1|1m2es80,163,390,0|1mbeuvz,163,390,0|1mbeuw0,164,391,1|1ml4uvz,164,391,1|1ml4uw0,163,390,0|1mu4xjz,163,390,0|1mu4xk0,164,391,1|1n3uxjz,164,391,1|1n3uxk0,163,390,0|1ncv07z,163,390,0|1ncv080,164,391,1|1nml07z,164,391,1|1nml080,163,390,0|1nvl2vz,163,390,0|1nvl2w0,164,391,1|1o5b2vz,164,391,1|1o5b2w0,163,390,0|1oeo47z,163,390,0|1oeo480,164,391,1|1ooe47z,164,391,1|1ooe480,163,390,0|1oxe6vz,163,390,0|1oxe6w0,164,391,1|1p746vz,164,391,1|1p746w0,163,390,0|1pg49jz,163,390,0|1pg49k0,164,391,1|1ppu9jz,164,391,1|1ppu9k0,163,390,0|1pyuc7z,163,390,0|1pyuc80,164,391,1|1q8kc7z,164,391,1|1q8kc80,163,390,0|1qhkevz,163,390,0|1qhkew0,164,391,1|1qraevz,164,391,1|1qraew0,163,390,0|1r0ahjz,163,390,0|1r0ahk0,164,391,1|1ra0hjz,164,391,1|1ra0hk0,163,390,0|1rjdivz,163,390,0|1rjdiw0,164,391,1|1rt3ivz,164,391,1|1rt3iw0,163,390,0|1s23ljz,163,390,0|1s23lk0,164,391,1|1sbtljz,164,391,1|1sbtlk0,163,390,0|1skto7z,163,390,0|1skto80,164,391,1|1sujo7z,164,391,1|1sujo80,163,390,0|1t3jqvz,163,390,0|1t3jqw0,164,391,1|1td9qvz,164,391,1|1td9qw0,163,390,0|1tm9tjz,163,390,0|1tm9tk0,164,391,1|1tvztjz,164,391,1|1tvztk0,163,390,0|1u5cuvz,163,390,0|1u5cuw0,164,391,1|1uf2uvz,164,391,1|1uf2uw0,163,390,0|1uo2xjz,163,390,0|1uo2xk0,164,391,1|1uxsxjz,164,391,1|1uxsxk0,163,390,0|1v6t07z,163,390,0|1v6t080,164,391,1|1vgj07z,164,391,1|1vgj080,163,390,0|1vpj2vz,163,390,0|1vpj2w0,164,391,1|NaN,164,391,1","Pacific/Chuuk|,0,392,0|-1t8j2rx,0,392,0|-1t8j2rw,0,393,0|-100f5fx,0,393,0|-100f5fw,93,189,0|-su4zs1,93,189,0|-su4zs0,107,218,0|-qknl01,107,218,0|-qknl00,93,189,0|-f08x41,93,189,0|-f08x40,107,218,0|-cqtd01,107,218,0|-cqtd00,93,189,0|NaN,93,189,0","Pacific/Easter|,0,394,0|-15r0p2x,0,394,0|-15r0p2w,165,394,0|-jhfaex,165,394,0|-jhfaew,166,62,0|-lsvk1,166,62,0|-lsvk0,167,63,1|-e8qc1,167,63,1|-e8qc0,166,62,0|-1zww1,166,62,0|-1zww0,167,63,1|4hcbz,167,63,1|4hcc0,166,62,0|ekdrz,166,62,0|ekds0,167,63,1|mhhnz,167,63,1|mhho0,166,62,0|xagfz,166,62,0|xagg0,167,63,1|157kbz,167,63,1|157kc0,166,62,0|1gdhrz,166,62,0|1gdhs0,167,63,1|1nxmzz,167,63,1|1nxn00,166,62,0|1ydn3z,166,62,0|1ydn40,167,63,1|26npnz,167,63,1|26npo0,166,62,0|2htn3z,166,62,0|2htn40,167,63,1|2pdsbz,167,63,1|2pdsc0,166,62,0|30jprz,166,62,0|30jps0,167,63,1|38gtnz,167,63,1|38gto0,166,62,0|3j9sfz,166,62,0|3j9sg0,167,63,1|3r6wbz,167,63,1|3r6wc0,166,62,0|41zv3z,166,62,0|41zv40,167,63,1|49wyzz,167,63,1|49wz00,166,62,0|4l2wfz,166,62,0|4l2wg0,167,63,1|4sn1nz,167,63,1|4sn1o0,166,62,0|53sz3z,166,62,0|53sz40,167,63,1|5bd4bz,167,63,1|5bd4c0,166,62,0|5mj1rz,166,62,0|5mj1s0,167,63,1|5ug5nz,167,63,1|5ug5o0,166,62,0|6594fz,166,62,0|6594g0,167,63,1|6d68bz,167,63,1|6d68c0,167,63,0|6nz73z,167,63,0|6nz740,55,59,1|6vwazz,55,59,1|6vwb00,167,63,0|76p9rz,167,63,0|76p9s0,55,59,1|7emdnz,55,59,1|7emdo0,167,63,0|7psb3z,167,63,0|7psb40,55,59,1|7xcgbz,55,59,1|7xcgc0,167,63,0|88idrz,167,63,0|88ids0,55,59,1|8g2izz,55,59,1|8g2j00,167,63,0|8r8gfz,167,63,0|8r8gg0,55,59,1|90lezz,55,59,1|90lf00,167,63,0|99yj3z,167,63,0|99yj40,55,59,1|9hvmzz,55,59,1|9hvn00,167,63,0|9solrz,167,63,0|9sols0,55,59,1|a0lpnz,55,59,1|a0lpo0,167,63,0|abrn3z,167,63,0|abrn40,55,59,1|ajbsbz,55,59,1|ajbsc0,167,63,0|at1v3z,167,63,0|at1v40,55,59,1|b21uzz,55,59,1|b21v00,167,63,0|bd7sfz,167,63,0|bd7sg0,55,59,1|bl4wbz,55,59,1|bl4wc0,167,63,0|bvxv3z,167,63,0|bvxv40,55,59,1|c3uyzz,55,59,1|c3uz00,167,63,0|cenxrz,167,63,0|cenxs0,55,59,1|cml1nz,55,59,1|cml1o0,167,63,0|cxe0fz,167,63,0|cxe0g0,55,59,1|d5b4bz,55,59,1|d5b4c0,167,63,0|dgh1rz,167,63,0|dgh1s0,55,59,1|do16zz,55,59,1|do1700,167,63,0|dz74fz,167,63,0|dz74g0,55,59,1|e7u5nz,55,59,1|e7u5o0,167,63,0|ehx73z,167,63,0|ehx740,55,59,1|epuazz,55,59,1|epub00,167,63,0|ezxcfz,167,63,0|ezxcg0,55,59,1|f9n9nz,55,59,1|f9n9o0,167,63,0|fjdcfz,167,63,0|fjdcg0,55,59,1|fragbz,55,59,1|fragc0,167,63,0|g2gdrz,167,63,0|g2gds0,55,59,1|ga0izz,55,59,1|ga0j00,167,63,0|gl6gfz,167,63,0|gl6gg0,55,59,1|gsqlnz,55,59,1|gsqlo0,167,63,0|h3wj3z,167,63,0|h3wj40,55,59,1|hbgobz,55,59,1|hbgoc0,167,63,0|hmmlrz,167,63,0|hmmls0,55,59,1|hujpnz,55,59,1|hujpo0,167,63,0|i5cofz,167,63,0|i5cog0,55,59,1|id9sbz,55,59,1|id9sc0,167,63,0|io2r3z,167,63,0|io2r40,55,59,1|ivzuzz,55,59,1|ivzv00,167,63,0|j75sfz,167,63,0|j75sg0,55,59,1|jepxnz,55,59,1|jepxo0,167,63,0|jpvv3z,167,63,0|jpvv40,55,59,1|jyiwbz,55,59,1|jyiwc0,167,63,0|k8lxrz,167,63,0|k8lxs0,55,59,1|kgj1nz,55,59,1|kgj1o0,167,63,0|krc0fz,167,63,0|krc0g0,55,59,1|l0c0bz,55,59,1|l0c0c0,167,63,0|la233z,167,63,0|la2340,55,59,1|lkuwbz,55,59,1|lkuwc0,167,63,0|lq9f3z,167,63,0|lq9f40,55,59,1|m380bz,55,59,1|m380c0,167,63,0|m9pf3z,167,63,0|m9pf40,55,59,1|mly2zz,55,59,1|mly300,167,63,0|mssgfz,167,63,0|mssgg0,55,59,1|n4o5nz,55,59,1|n4o5o0,167,63,0|nbij3z,167,63,0|nbij40,55,59,1|o776zz,55,59,1|o77700,167,63,0|obvsfz,167,63,0|obvsg0,55,59,1|opx9nz,55,59,1|opx9o0,167,63,0|oulv3z,167,63,0|oulv40,55,59,1|p8ncbz,55,59,1|p8ncc0,167,63,0|pdbxrz,167,63,0|pdbxs0,55,59,1|ppklnz,55,59,1|ppklo0,167,63,0|pxhv3z,167,63,0|pxhv40,55,59,1|q8aobz,55,59,1|q8aoc0,167,63,0|qg7xrz,167,63,0|qg7xs0,55,59,1|qr0qzz,55,59,1|qr0r00,167,63,0|qyy0fz,167,63,0|qyy0g0,55,59,1|r9qtnz,55,59,1|r9qto0,167,63,0|rho33z,167,63,0|rho340,55,59,1|rsgwbz,55,59,1|rsgwc0,167,63,0|s0e5rz,167,63,0|s0e5s0,55,59,1|sbjxnz,55,59,1|sbjxo0,167,63,0|sjh73z,167,63,0|sjh740,55,59,1|sua0bz,55,59,1|sua0c0,167,63,0|t279rz,167,63,0|t279s0,55,59,1|td02zz,55,59,1|td0300,167,63,0|tkxcfz,167,63,0|tkxcg0,55,59,1|tvq5nz,55,59,1|tvq5o0,167,63,0|u3nf3z,167,63,0|u3nf40,55,59,1|ueg8bz,55,59,1|ueg8c0,167,63,0|umdhrz,167,63,0|umdhs0,55,59,1|uxj9nz,55,59,1|uxj9o0,167,63,0|v53kfz,167,63,0|v53kg0,55,59,1|vg9cbz,55,59,1|vg9cc0,167,63,0|vo6lrz,167,63,0|vo6ls0,55,59,1|vyzezz,55,59,1|vyzf00,167,63,0|w6wofz,167,63,0|w6wog0,55,59,1|whphnz,55,59,1|whpho0,167,63,0|wpmr3z,167,63,0|wpmr40,55,59,1|x0fkbz,55,59,1|x0fkc0,167,63,0|x8ctrz,167,63,0|x8cts0,55,59,1|xj5mzz,55,59,1|xj5n00,167,63,0|xr2wfz,167,63,0|xr2wg0,55,59,1|y28obz,55,59,1|y28oc0,167,63,0|y9sz3z,167,63,0|y9sz40,55,59,1|ykyqzz,55,59,1|ykyr00,167,63,0|ysw0fz,167,63,0|ysw0g0,55,59,1|z3otnz,55,59,1|z3oto0,167,63,0|zbm33z,167,63,0|zbm340,55,59,1|zmewbz,55,59,1|zmewc0,167,63,0|zuc5rz,167,63,0|zuc5s0,55,59,1|1054yzz,55,59,1|1054z00,167,63,0|10d28fz,167,63,0|10d28g0,55,59,1|10o80bz,55,59,1|10o80c0,167,63,0|10vsb3z,167,63,0|10vsb40,55,59,1|116y2zz,55,59,1|116y300,167,63,0|11evcfz,167,63,0|11evcg0,55,59,1|11po5nz,55,59,1|11po5o0,167,63,0|11xlf3z,167,63,0|11xlf40,55,59,1|128e8bz,55,59,1|128e8c0,167,63,0|12gbhrz,167,63,0|12gbhs0,55,59,1|12r4azz,55,59,1|12r4b00,167,63,0|12z1kfz,167,63,0|12z1kg0,55,59,1|139udnz,55,59,1|139udo0,167,63,0|13hrn3z,167,63,0|13hrn40,55,59,1|13sxezz,55,59,1|13sxf00,167,63,0|140hprz,167,63,0|140hps0,55,59,1|14bnhnz,55,59,1|14bnho0,167,63,0|14jkr3z,167,63,0|14jkr40,55,59,1|14udkbz,55,59,1|14udkc0,167,63,0|152atrz,167,63,0|152ats0,55,59,1|15d3mzz,55,59,1|15d3n00,167,63,0|15l0wfz,167,63,0|15l0wg0,55,59,1|15vtpnz,55,59,1|15vtpo0,167,63,0|163qz3z,167,63,0|163qz40,55,59,1|16ejsbz,55,59,1|16ejsc0,167,63,0|16mh1rz,167,63,0|16mh1s0,55,59,1|16xmtnz,55,59,1|16xmto0,167,63,0|175k33z,167,63,0|175k340,55,59,1|17gcwbz,55,59,1|17gcwc0,167,63,0|17oa5rz,167,63,0|17oa5s0,55,59,1|17z2yzz,55,59,1|17z2z00,167,63,0|18708fz,167,63,0|18708g0,55,59,1|18ht1nz,55,59,1|18ht1o0,167,63,0|18pqb3z,167,63,0|18pqb40,55,59,1|190j4bz,55,59,1|190j4c0,167,63,0|198gdrz,167,63,0|198gds0,55,59,1|19jm5nz,55,59,1|19jm5o0,167,63,0|19r6gfz,167,63,0|19r6gg0,55,59,1|1a2c8bz,55,59,1|1a2c8c0,167,63,0|1aa9hrz,167,63,0|1aa9hs0,55,59,1|1al2azz,55,59,1|1al2b00,167,63,0|1aszkfz,167,63,0|1aszkg0,55,59,1|1b3sdnz,55,59,1|1b3sdo0,167,63,0|1bbpn3z,167,63,0|1bbpn40,55,59,1|1bmigbz,55,59,1|1bmigc0,167,63,0|1bufprz,167,63,0|1bufps0,55,59,1|1c58izz,55,59,1|1c58j00,167,63,0|1cd5sfz,167,63,0|1cd5sg0,55,59,1|1cobkbz,55,59,1|1cobkc0,167,63,0|1cvvv3z,167,63,0|1cvvv40,55,59,1|1d71mzz,55,59,1|1d71n00,167,63,0|1deywfz,167,63,0|1deywg0,55,59,1|1dprpnz,55,59,1|1dprpo0,167,63,0|1dxoz3z,167,63,0|1dxoz40,55,59,1|1e8hsbz,55,59,1|1e8hsc0,167,63,0|1egf1rz,167,63,0|1egf1s0,55,59,1|1er7uzz,55,59,1|1er7v00,167,63,0|1ez54fz,167,63,0|1ez54g0,55,59,1|1faawbz,55,59,1|1faawc0,167,63,0|1fhv73z,167,63,0|1fhv740,55,59,1|1ft0yzz,55,59,1|1ft0z00,167,63,0|1g0y8fz,167,63,0|1g0y8g0,55,59,1|1gbr1nz,55,59,1|1gbr1o0,167,63,0|1gjob3z,167,63,0|1gjob40,55,59,1|1guh4bz,55,59,1|1guh4c0,167,63,0|1h2edrz,167,63,0|1h2eds0,55,59,1|1hd76zz,55,59,1|1hd7700,167,63,0|1hl4gfz,167,63,0|1hl4gg0,55,59,1|1hvx9nz,55,59,1|1hvx9o0,167,63,0|1i3uj3z,167,63,0|1i3uj40,55,59,1|1if0azz,55,59,1|1if0b00,167,63,0|1imklrz,167,63,0|1imkls0,55,59,1|1ixqdnz,55,59,1|1ixqdo0,167,63,0|1j5nn3z,167,63,0|1j5nn40,55,59,1|1jgggbz,55,59,1|1jgggc0,167,63,0|1jodprz,167,63,0|1jodps0,55,59,1|1jz6izz,55,59,1|1jz6j00,167,63,0|1k73sfz,167,63,0|1k73sg0,55,59,1|1khwlnz,55,59,1|1khwlo0,167,63,0|1kptv3z,167,63,0|1kptv40,55,59,1|1l0mobz,55,59,1|1l0moc0,167,63,0|1l8jxrz,167,63,0|1l8jxs0,55,59,1|1ljppnz,55,59,1|1ljppo0,167,63,0|1lrmz3z,167,63,0|1lrmz40,55,59,1|1m2fsbz,55,59,1|1m2fsc0,167,63,0|1mad1rz,167,63,0|1mad1s0,55,59,1|1ml5uzz,55,59,1|1ml5v00,167,63,0|1mt34fz,167,63,0|1mt34g0,55,59,1|1n3vxnz,55,59,1|1n3vxo0,167,63,0|1nbt73z,167,63,0|1nbt740,55,59,1|1nmm0bz,55,59,1|1nmm0c0,167,63,0|1nuj9rz,167,63,0|1nuj9s0,55,59,1|1o5p1nz,55,59,1|1o5p1o0,167,63,0|1od9cfz,167,63,0|1od9cg0,55,59,1|1oof4bz,55,59,1|1oof4c0,167,63,0|1owcdrz,167,63,0|1owcds0,55,59,1|1p756zz,55,59,1|1p75700,167,63,0|1pf2gfz,167,63,0|1pf2gg0,55,59,1|1ppv9nz,55,59,1|1ppv9o0,167,63,0|1pxsj3z,167,63,0|1pxsj40,55,59,1|1q8lcbz,55,59,1|1q8lcc0,167,63,0|1qgilrz,167,63,0|1qgils0,55,59,1|1qrbezz,55,59,1|1qrbf00,167,63,0|1qz8ofz,167,63,0|1qz8og0,55,59,1|1raegbz,55,59,1|1raegc0,167,63,0|1rhyr3z,167,63,0|1rhyr40,55,59,1|1rt4izz,55,59,1|1rt4j00,167,63,0|1s11sfz,167,63,0|1s11sg0,55,59,1|1sbulnz,55,59,1|1sbulo0,167,63,0|1sjrv3z,167,63,0|1sjrv40,55,59,1|1sukobz,55,59,1|1sukoc0,167,63,0|1t2hxrz,167,63,0|1t2hxs0,55,59,1|1tdaqzz,55,59,1|1tdar00,167,63,0|1tl80fz,167,63,0|1tl80g0,55,59,1|1twdsbz,55,59,1|1twdsc0,167,63,0|1u3y33z,167,63,0|1u3y340,55,59,1|1uf3uzz,55,59,1|1uf3v00,167,63,0|1un14fz,167,63,0|1un14g0,55,59,1|1uxtxnz,55,59,1|1uxtxo0,167,63,0|1v5r73z,167,63,0|1v5r740,55,59,1|1vgk0bz,55,59,1|1vgk0c0,167,63,0|1voh9rz,167,63,0|1voh9s0,55,59,1|NaN,55,59,1","Pacific/Efate|,0,395,0|-u964i5,0,395,0|-u964i4,89,184,0|22nynz,89,184,0|22nyo0,102,194,1|27pfzz,102,194,1|27pg00,89,184,0|75y6rz,89,184,0|75y6s0,102,194,1|7fb5bz,102,194,1|7fb5c0,89,184,0|7oo9fz,89,184,0|7oo9g0,102,194,1|7y17zz,102,194,1|7y1800,89,184,0|87rarz,89,184,0|87ras0,102,194,1|8granz,102,194,1|8grao0,89,184,0|8qhdfz,89,184,0|8qhdg0,102,194,1|8zubzz,102,194,1|8zuc00,89,184,0|997g3z,89,184,0|997g40,102,194,1|9ikenz,102,194,1|9ikeo0,89,184,0|9rxirz,89,184,0|9rxis0,102,194,1|a1ahbz,102,194,1|a1ahc0,89,184,0|aanlfz,89,184,0|aanlg0,102,194,1|ak0jzz,102,194,1|ak0k00,89,184,0|atdo3z,89,184,0|atdo40,102,194,1|b2qmnz,102,194,1|b2qmo0,89,184,0|bcgpfz,89,184,0|bcgpg0,102,194,1|bikzzz,102,194,1|bil000,89,184,0|bwmmrz,89,184,0|bwmms0,102,194,1|c1b2nz,102,194,1|c1b2o0,89,184,0|NaN,89,184,0","Pacific/Enderbury|,59,1,0|-gvk801,59,1,0|-gvk800,168,396,0|535inz,168,396,0|535io0,160,33,0|d1o97z,160,33,0|d1o980,103,195,0|NaN,103,195,0","Pacific/Fakaofo|,0,397,0|-100dhmh,0,397,0|-100dhmg,160,33,0|lx0jvz,160,33,0|lx0jw0,103,195,0|NaN,103,195,0","Pacific/Fiji|,0,398,0|-sa2x4x,0,398,0|-sa2x4w,102,194,0|f1p2vz,102,194,0|f1p2w0,103,195,1|f7tg7z,103,195,1|f7tg80,102,194,0|fks47z,102,194,0|fks480,103,195,1|fqjivz,103,195,1|fqjiw0,102,194,0|ktto7z,102,194,0|ktto80,103,195,1|kzy1jz,103,195,1|kzy1k0,102,194,0|laqxjz,102,194,0|laqxk0,103,195,1|lhl87z,103,195,1|lhl880,102,194,0|lth07z,102,194,0|lth080,103,195,1|ly5ivz,103,195,1|ly5iw0,102,194,0|mc72vz,102,194,0|mc72w0,103,195,1|mgvljz,103,195,1|mgvlk0,102,194,0|mva47z,102,194,0|mva480,103,195,1|mzllfz,103,195,1|mzllg0,102,194,0|ned5jz,102,194,0|ned5k0,103,195,1|nibqvz,103,195,1|nibqw0,102,194,0|nx387z,102,194,0|nx3880,103,195,1|o11tjz,103,195,1|o11tk0,102,194,0|og69jz,102,194,0|og69k0,103,195,1|ojrw7z,103,195,1|ojrw80,102,194,0|oywc7z,102,194,0|oywc80,103,195,1|p2hyvz,103,195,1|p2hyw0,102,194,0|phmevz,102,194,0|phmew0,103,195,1|pl81jz,103,195,1|pl81k0,102,194,0|q0pg7z,102,194,0|q0pg80,103,195,1|q3y47z,103,195,1|q3y480,102,194,0|qllavz,102,194,0|qllaw0,103,195,1|qn15jz,103,195,1|qn15k0,102,194,0|rl8mvz,102,194,0|rl8mw0,103,195,1|rohavz,103,195,1|rohaw0,102,194,0|s3ypjz,102,194,0|s3ypk0,103,195,1|s77djz,103,195,1|s77dk0,102,194,0|smos7z,102,194,0|smos80,103,195,1|spxg7z,103,195,1|spxg80,102,194,0|t5euvz,102,194,0|t5euw0,103,195,1|t90hjz,103,195,1|t90hk0,102,194,0|to4xjz,102,194,0|to4xk0,103,195,1|trqk7z,103,195,1|trqk80,102,194,0|u77yvz,102,194,0|u77yw0,103,195,1|uagmvz,103,195,1|uagmw0,102,194,0|upy1jz,102,194,0|upy1k0,103,195,1|ut6pjz,103,195,1|ut6pk0,102,194,0|v8o47z,102,194,0|v8o480,103,195,1|vbws7z,103,195,1|vbws80,102,194,0|vre6vz,102,194,0|vre6w0,103,195,1|vumuvz,103,195,1|vumuw0,102,194,0|wa49jz,102,194,0|wa49k0,103,195,1|wdpw7z,103,195,1|wdpw80,102,194,0|wt7avz,102,194,0|wt7aw0,103,195,1|wwfyvz,103,195,1|wwfyw0,102,194,0|xbxdjz,102,194,0|xbxdk0,103,195,1|xf61jz,103,195,1|xf61k0,102,194,0|xung7z,102,194,0|xung80,103,195,1|xxw47z,103,195,1|xxw480,102,194,0|yddivz,102,194,0|yddiw0,103,195,1|ygm6vz,103,195,1|ygm6w0,102,194,0|yw3ljz,102,194,0|yw3lk0,103,195,1|yzp87z,103,195,1|yzp880,102,194,0|zeto7z,102,194,0|zeto80,103,195,1|zifavz,103,195,1|zifaw0,102,194,0|zxwpjz,102,194,0|zxwpk0,103,195,1|1015djz,103,195,1|1015dk0,102,194,0|10gms7z,102,194,0|10gms80,103,195,1|10jvg7z,103,195,1|10jvg80,102,194,0|10zcuvz,102,194,0|10zcuw0,103,195,1|112livz,103,195,1|112liw0,102,194,0|11i2xjz,102,194,0|11i2xk0,103,195,1|11lbljz,103,195,1|11lblk0,102,194,0|120t07z,102,194,0|120t080,103,195,1|124emvz,103,195,1|124emw0,102,194,0|12jj2vz,102,194,0|12jj2w0,103,195,1|12n4pjz,103,195,1|12n4pk0,102,194,0|132m47z,102,194,0|132m480,103,195,1|135us7z,103,195,1|135us80,102,194,0|13lc6vz,102,194,0|13lc6w0,103,195,1|13okuvz,103,195,1|13okuw0,102,194,0|14429jz,102,194,0|14429k0,103,195,1|147axjz,103,195,1|147axk0,102,194,0|14msc7z,102,194,0|14msc80,103,195,1|14q107z,103,195,1|14q1080,102,194,0|155ievz,102,194,0|155iew0,103,195,1|15941jz,103,195,1|15941k0,102,194,0|15olg7z,102,194,0|15olg80,103,195,1|15ru47z,103,195,1|15ru480,102,194,0|167bivz,102,194,0|167biw0,103,195,1|16ak6vz,103,195,1|16ak6w0,102,194,0|16q1ljz,102,194,0|16q1lk0,103,195,1|16ta9jz,103,195,1|16ta9k0,102,194,0|178ro7z,102,194,0|178ro80,103,195,1|17c0c7z,103,195,1|17c0c80,102,194,0|17rhqvz,102,194,0|17rhqw0,103,195,1|17v3djz,103,195,1|17v3dk0,102,194,0|18a7tjz,102,194,0|18a7tk0,103,195,1|18dtg7z,103,195,1|18dtg80,102,194,0|18tauvz,102,194,0|18tauw0,103,195,1|18wjivz,103,195,1|18wjiw0,102,194,0|19c0xjz,102,194,0|19c0xk0,103,195,1|19f9ljz,103,195,1|19f9lk0,102,194,0|19ur07z,102,194,0|19ur080,103,195,1|19xzo7z,103,195,1|19xzo80,102,194,0|1adh2vz,102,194,0|1adh2w0,103,195,1|1agpqvz,103,195,1|1agpqw0,102,194,0|1aw75jz,102,194,0|1aw75k0,103,195,1|1azss7z,103,195,1|1azss80,102,194,0|1bfa6vz,102,194,0|1bfa6w0,103,195,1|1biiuvz,103,195,1|1biiuw0,102,194,0|1by09jz,102,194,0|1by09k0,103,195,1|1c18xjz,103,195,1|1c18xk0,102,194,0|1cgqc7z,102,194,0|1cgqc80,103,195,1|1cjz07z,103,195,1|1cjz080,102,194,0|1czgevz,102,194,0|1czgew0,103,195,1|1d2p2vz,103,195,1|1d2p2w0,102,194,0|1di6hjz,102,194,0|1di6hk0,103,195,1|1dls47z,103,195,1|1dls480,102,194,0|1e0wk7z,102,194,0|1e0wk80,103,195,1|1e4i6vz,103,195,1|1e4i6w0,102,194,0|1ejzljz,102,194,0|1ejzlk0,103,195,1|1en89jz,103,195,1|1en89k0,102,194,0|1f2po7z,102,194,0|1f2po80,103,195,1|1f5yc7z,103,195,1|1f5yc80,102,194,0|1flfqvz,102,194,0|1flfqw0,103,195,1|1fooevz,103,195,1|1fooew0,102,194,0|1g45tjz,102,194,0|1g45tk0,103,195,1|1g7ehjz,103,195,1|1g7ehk0,102,194,0|1gmvw7z,102,194,0|1gmvw80,103,195,1|1gqhivz,103,195,1|1gqhiw0,102,194,0|1h5lyvz,102,194,0|1h5lyw0,103,195,1|1h97ljz,103,195,1|1h97lk0,102,194,0|1hop07z,102,194,0|1hop080,103,195,1|1hrxo7z,103,195,1|1hrxo80,102,194,0|1i7f2vz,102,194,0|1i7f2w0,103,195,1|1ianqvz,103,195,1|1ianqw0,102,194,0|1iq55jz,102,194,0|1iq55k0,103,195,1|1itdtjz,103,195,1|1itdtk0,102,194,0|1j8v87z,102,194,0|1j8v880,103,195,1|1jc3w7z,103,195,1|1jc3w80,102,194,0|1jrlavz,102,194,0|1jrlaw0,103,195,1|1jv6xjz,103,195,1|1jv6xk0,102,194,0|1kaoc7z,102,194,0|1kaoc80,103,195,1|1kdx07z,103,195,1|1kdx080,102,194,0|1kteevz,102,194,0|1kteew0,103,195,1|1kwn2vz,103,195,1|1kwn2w0,102,194,0|1lc4hjz,102,194,0|1lc4hk0,103,195,1|1lfd5jz,103,195,1|1lfd5k0,102,194,0|1luuk7z,102,194,0|1luuk80,103,195,1|1ly387z,103,195,1|1ly3880,102,194,0|1mdkmvz,102,194,0|1mdkmw0,103,195,1|1mh69jz,103,195,1|1mh69k0,102,194,0|1mwapjz,102,194,0|1mwapk0,103,195,1|1mzwc7z,103,195,1|1mzwc80,102,194,0|1nfdqvz,102,194,0|1nfdqw0,103,195,1|1nimevz,103,195,1|1nimew0,102,194,0|1ny3tjz,102,194,0|1ny3tk0,103,195,1|1o1chjz,103,195,1|1o1chk0,102,194,0|1ogtw7z,102,194,0|1ogtw80,103,195,1|1ok2k7z,103,195,1|1ok2k80,102,194,0|1ozjyvz,102,194,0|1ozjyw0,103,195,1|1p2smvz,103,195,1|1p2smw0,102,194,0|1pia1jz,102,194,0|1pia1k0,103,195,1|1plvo7z,103,195,1|1plvo80,102,194,0|1q1d2vz,102,194,0|1q1d2w0,103,195,1|1q4lqvz,103,195,1|1q4lqw0,102,194,0|1qk35jz,102,194,0|1qk35k0,103,195,1|1qnbtjz,103,195,1|1qnbtk0,102,194,0|1r2t87z,102,194,0|1r2t880,103,195,1|1r61w7z,103,195,1|1r61w80,102,194,0|1rljavz,102,194,0|1rljaw0,103,195,1|1roryvz,103,195,1|1roryw0,102,194,0|1s49djz,102,194,0|1s49dk0,103,195,1|1s7v07z,103,195,1|1s7v080,102,194,0|1smzg7z,102,194,0|1smzg80,103,195,1|1sql2vz,103,195,1|1sql2w0,102,194,0|1t62hjz,102,194,0|1t62hk0,103,195,1|1t9b5jz,103,195,1|1t9b5k0,102,194,0|1tosk7z,102,194,0|1tosk80,103,195,1|1ts187z,103,195,1|1ts1880,102,194,0|1u7imvz,102,194,0|1u7imw0,103,195,1|1uaravz,103,195,1|1uaraw0,102,194,0|1uq8pjz,102,194,0|1uq8pk0,103,195,1|1uthdjz,103,195,1|1uthdk0,102,194,0|1v8ys7z,102,194,0|1v8ys80,103,195,1|1vckevz,103,195,1|1vckew0,102,194,0|1vrouvz,102,194,0|1vrouw0,103,195,1|NaN,103,195,1","Pacific/Funafuti|,0,399,0|-100fait,0,399,0|-100fais,102,194,0|NaN,102,194,0","Pacific/Galapagos|,0,400,0|-kcr62p,0,400,0|-kcr62o,55,59,0|8cmlvz,55,59,0|8cmlw0,167,63,0|byewnz,167,63,0|byewo0,55,59,1|c1ylvz,55,59,1|c1ylw0,167,63,0|NaN,167,63,0","Pacific/Gambier|,0,401,0|-tvndod,0,401,0|-tvndoc,169,35,0|NaN,169,35,0","Pacific/Guadalcanal|,0,402,0|-tvowad,0,402,0|-tvowac,89,184,0|NaN,89,184,0","Pacific/Guam|,0,403,0|-1t8j1h1,0,403,0|-1t8j1h0,0,404,0|-100f451,0,404,0|-100f450,170,189,0|-en8eg1,170,189,0|-en8eg0,107,218,0|-d9n501,107,218,0|-d9n500,170,189,0|-5hlkw1,170,189,0|-5hlkw0,171,184,1|-4nnvo1,171,184,1|-4nnvo0,170,189,0|-17w8w1,170,189,0|-17w8w0,171,184,1|-hih6d,171,184,1|-hih6c,170,189,0|-9y0w1,170,189,0|-9y0w0,171,184,1|-6ch01,171,184,1|-6ch00,170,189,0|5wcfz,170,189,0|5wcg0,171,184,1|cqkbz,171,184,1|cqkc0,170,189,0|omf3z,170,189,0|omf40,171,184,1|vgmzz,171,184,1|vgn00,170,189,0|22bb3z,170,189,0|22bb40,171,184,1|25wuzz,171,184,1|25wv00,170,189,0|3c75rz,170,189,0|3c75s0,171,184,1|3gq1pn,171,184,1|3gq1po,170,189,0|3tbtrz,170,189,0|3tbts0,171,184,1|3zt2zz,171,184,1|3zt300,170,189,0|g5z2vz,170,189,0|g5z2w0,172,189,0|NaN,172,189,0","Pacific/Honolulu|,0,405,0|-12lnw3n,0,405,0|-12lnw3m,29,406,0|-j50la1,29,406,0|-j50la0,30,407,1|-j3x0a1,30,407,1|-j3x0a0,29,406,0|-ek1pa1,29,406,0|-ek1pa0,173,407,1|-cq2tg1,173,407,1|-cq2tg0,174,407,1|-cnoo21,174,407,1|-cnoo20,29,406,0|-brzum1,29,406,0|-brzum0,29,34,0|NaN,29,34,0","Pacific/Kiritimati|,0,408,0|-100dk75,0,408,0|-100dk74,175,409,0|535eyn,175,409,0|535eyo,161,34,0|d1o6fz,161,34,0|d1o6g0,104,201,0|NaN,104,201,0","Pacific/Kosrae|,0,410,0|-1t8j4ul,0,410,0|-1t8j4uk,0,411,0|-100f7il,0,411,0|-100f7ik,89,184,0|-su52k1,89,184,0|-su52k0,107,218,0|-qknl01,107,218,0|-qknl00,89,184,0|-h817w1,89,184,0|-h817w0,93,189,0|-f08x41,93,189,0|-f08x40,107,218,0|-cqtd01,107,218,0|-cqtd00,89,184,0|-4r7w1,89,184,0|-4r7w0,102,194,0|f4tvzz,102,194,0|f4tw00,89,184,0|NaN,89,184,0","Pacific/Kwajalein|,0,412,0|-100f8bl,0,412,0|-100f8bk,89,184,0|-h817w1,89,184,0|-h817w0,93,189,0|-f08x41,93,189,0|-f08x40,107,218,0|-dip2c1,107,218,0|-dip2c0,89,184,0|-4r7w1,89,184,0|-4r7w0,168,396,0|cc3ynz,168,396,0|cc3yo0,102,194,0|NaN,102,194,0","Pacific/Majuro|,0,413,0|-100f91d,0,413,0|-100f91c,89,184,0|-su52k1,89,184,0|-su52k0,107,218,0|-qknl01,107,218,0|-qknl00,89,184,0|-h817w1,89,184,0|-h817w0,93,189,0|-f08x41,93,189,0|-f08x40,107,218,0|-dj2101,107,218,0|-dj2100,89,184,0|-4r7w1,89,184,0|-4r7w0,102,194,0|NaN,102,194,0","Pacific/Marquesas|,0,414,0|-tvncu1,0,414,0|-tvncu0,176,407,0|NaN,176,407,0","Pacific/Midway|,0,415,0|-14fxxq1,0,415,0|-14fxxq0,0,416,0|-usij21,0,416,0|-usij20,177,33,0|NaN,177,33,0","Pacific/Nauru|,0,417,0|-pjxiwt,0,417,0|-pjxiws,143,192,0|-e9rby1,143,192,0|-e9rby0,107,218,0|-couzo1,107,218,0|-couzo0,143,192,0|4r4dlz,143,192,0|4r4dm0,102,194,0|NaN,102,194,0","Pacific/Niue|,0,418,0|-8zbv79,0,418,0|-8zbv78,178,419,0|-2vdcip,178,419,0|-2vdcio,160,33,0|NaN,160,33,0","Pacific/Norfolk|,0,420,0|-100f8ft,0,420,0|-100f8fs,179,421,0|-9x0ps1,179,421,0|-9x0ps0,143,192,0|2iiixz,143,192,0|2iiiy0,180,193,1|2ozuxz,180,193,1|2ozuy0,143,192,0|nvnexz,143,192,0|nvney0,89,184,0|pywpnz,89,184,0|pywpo0,102,194,1|q89qzz,102,194,1|q89r00,89,184,0|qhmsbz,89,184,0|qhmsc0,102,194,1|qqztnz,102,194,1|qqzto0,89,184,0|r0cuzz,89,184,0|r0cv00,102,194,1|r9pwbz,102,194,1|r9pwc0,89,184,0|rj2xnz,89,184,0|rj2xo0,102,194,1|rsfyzz,102,194,1|rsfz00,89,184,0|s1t0bz,89,184,0|s1t0c0,102,194,1|sbj0bz,102,194,1|sbj0c0,89,184,0|skw1nz,89,184,0|skw1o0,102,194,1|su92zz,102,194,1|su9300,89,184,0|t3m4bz,89,184,0|t3m4c0,102,194,1|tcz5nz,102,194,1|tcz5o0,89,184,0|tmc6zz,89,184,0|tmc700,102,194,1|tvp8bz,102,194,1|tvp8c0,89,184,0|u529nz,89,184,0|u529o0,102,194,1|uefazz,102,194,1|uefb00,89,184,0|unscbz,89,184,0|unscc0,102,194,1|ux5dnz,102,194,1|ux5do0,89,184,0|v6vdnz,89,184,0|v6vdo0,102,194,1|vg8ezz,102,194,1|vg8f00,89,184,0|vplgbz,89,184,0|vplgc0,102,194,1|vyyhnz,102,194,1|vyyho0,89,184,0|w8bizz,89,184,0|w8bj00,102,194,1|whokbz,102,194,1|whokc0,89,184,0|wr1lnz,89,184,0|wr1lo0,102,194,1|x0emzz,102,194,1|x0en00,89,184,0|x9robz,89,184,0|x9roc0,102,194,1|xj4pnz,102,194,1|xj4po0,89,184,0|xshqzz,89,184,0|xshr00,102,194,1|y1usbz,102,194,1|y1usc0,89,184,0|ybksbz,89,184,0|ybksc0,102,194,1|ykxtnz,102,194,1|ykxto0,89,184,0|yuauzz,89,184,0|yuav00,102,194,1|z3nwbz,102,194,1|z3nwc0,89,184,0|zd0xnz,89,184,0|zd0xo0,102,194,1|zmdyzz,102,194,1|zmdz00,89,184,0|zvr0bz,89,184,0|zvr0c0,102,194,1|10541nz,102,194,1|10541o0,89,184,0|10eh2zz,89,184,0|10eh300,102,194,1|10nu4bz,102,194,1|10nu4c0,89,184,0|10xk4bz,89,184,0|10xk4c0,102,194,1|116x5nz,102,194,1|116x5o0,89,184,0|11ga6zz,89,184,0|11ga700,102,194,1|11pn8bz,102,194,1|11pn8c0,89,184,0|11z09nz,89,184,0|11z09o0,102,194,1|128dazz,102,194,1|128db00,89,184,0|12hqcbz,89,184,0|12hqcc0,102,194,1|12r3dnz,102,194,1|12r3do0,89,184,0|130gezz,89,184,0|130gf00,102,194,1|139tgbz,102,194,1|139tgc0,89,184,0|13j6hnz,89,184,0|13j6ho0,102,194,1|13sjizz,102,194,1|13sjj00,89,184,0|1429izz,89,184,0|1429j00,102,194,1|14bmkbz,102,194,1|14bmkc0,89,184,0|14kzlnz,89,184,0|14kzlo0,102,194,1|14ucmzz,102,194,1|14ucn00,89,184,0|153pobz,89,184,0|153poc0,102,194,1|15d2pnz,102,194,1|15d2po0,89,184,0|15mfqzz,89,184,0|15mfr00,102,194,1|15vssbz,102,194,1|15vssc0,89,184,0|1655tnz,89,184,0|1655to0,102,194,1|16eiuzz,102,194,1|16eiv00,89,184,0|16nvwbz,89,184,0|16nvwc0,102,194,1|16xlwbz,102,194,1|16xlwc0,89,184,0|176yxnz,89,184,0|176yxo0,102,194,1|17gbyzz,102,194,1|17gbz00,89,184,0|17pp0bz,89,184,0|17pp0c0,102,194,1|17z21nz,102,194,1|17z21o0,89,184,0|188f2zz,89,184,0|188f300,102,194,1|18hs4bz,102,194,1|18hs4c0,89,184,0|18r55nz,89,184,0|18r55o0,102,194,1|190i6zz,102,194,1|190i700,89,184,0|199v8bz,89,184,0|199v8c0,102,194,1|19j89nz,102,194,1|19j89o0,89,184,0|19sy9nz,89,184,0|19sy9o0,102,194,1|1a2bazz,102,194,1|1a2bb00,89,184,0|1abocbz,89,184,0|1abocc0,102,194,1|1al1dnz,102,194,1|1al1do0,89,184,0|1aueezz,89,184,0|1auef00,102,194,1|1b3rgbz,102,194,1|1b3rgc0,89,184,0|1bd4hnz,89,184,0|1bd4ho0,102,194,1|1bmhizz,102,194,1|1bmhj00,89,184,0|1bvukbz,89,184,0|1bvukc0,102,194,1|1c57lnz,102,194,1|1c57lo0,89,184,0|1cekmzz,89,184,0|1cekn00,102,194,1|1cnxobz,102,194,1|1cnxoc0,89,184,0|1cxnobz,89,184,0|1cxnoc0,102,194,1|1d70pnz,102,194,1|1d70po0,89,184,0|1dgdqzz,89,184,0|1dgdr00,102,194,1|1dpqsbz,102,194,1|1dpqsc0,89,184,0|1dz3tnz,89,184,0|1dz3to0,102,194,1|1e8guzz,102,194,1|1e8gv00,89,184,0|1ehtwbz,89,184,0|1ehtwc0,102,194,1|1er6xnz,102,194,1|1er6xo0,89,184,0|1f0jyzz,89,184,0|1f0jz00,102,194,1|1f9x0bz,102,194,1|1f9x0c0,89,184,0|1fjn0bz,89,184,0|1fjn0c0,102,194,1|1ft01nz,102,194,1|1ft01o0,89,184,0|1g2d2zz,89,184,0|1g2d300,102,194,1|1gbq4bz,102,194,1|1gbq4c0,89,184,0|1gl35nz,89,184,0|1gl35o0,102,194,1|1gug6zz,102,194,1|1gug700,89,184,0|1h3t8bz,89,184,0|1h3t8c0,102,194,1|1hd69nz,102,194,1|1hd69o0,89,184,0|1hmjazz,89,184,0|1hmjb00,102,194,1|1hvwcbz,102,194,1|1hvwcc0,89,184,0|1i59dnz,89,184,0|1i59do0,102,194,1|1iemezz,102,194,1|1iemf00,89,184,0|1iocezz,89,184,0|1iocf00,102,194,1|1ixpgbz,102,194,1|1ixpgc0,89,184,0|1j72hnz,89,184,0|1j72ho0,102,194,1|1jgfizz,102,194,1|1jgfj00,89,184,0|1jpskbz,89,184,0|1jpskc0,102,194,1|1jz5lnz,102,194,1|1jz5lo0,89,184,0|1k8imzz,89,184,0|1k8in00,102,194,1|1khvobz,102,194,1|1khvoc0,89,184,0|1kr8pnz,89,184,0|1kr8po0,102,194,1|1l0lqzz,102,194,1|1l0lr00,89,184,0|1l9ysbz,89,184,0|1l9ysc0,102,194,1|1ljosbz,102,194,1|1ljosc0,89,184,0|1lt1tnz,89,184,0|1lt1to0,102,194,1|1m2euzz,102,194,1|1m2ev00,89,184,0|1mbrwbz,89,184,0|1mbrwc0,102,194,1|1ml4xnz,102,194,1|1ml4xo0,89,184,0|1muhyzz,89,184,0|1muhz00,102,194,1|1n3v0bz,102,194,1|1n3v0c0,89,184,0|1nd81nz,89,184,0|1nd81o0,102,194,1|1nml2zz,102,194,1|1nml300,89,184,0|1nvy4bz,89,184,0|1nvy4c0,102,194,1|1o5b5nz,102,194,1|1o5b5o0,89,184,0|1of15nz,89,184,0|1of15o0,102,194,1|1ooe6zz,102,194,1|1ooe700,89,184,0|1oxr8bz,89,184,0|1oxr8c0,102,194,1|1p749nz,102,194,1|1p749o0,89,184,0|1pghazz,89,184,0|1pghb00,102,194,1|1ppucbz,102,194,1|1ppucc0,89,184,0|1pz7dnz,89,184,0|1pz7do0,102,194,1|1q8kezz,102,194,1|1q8kf00,89,184,0|1qhxgbz,89,184,0|1qhxgc0,102,194,1|1qrahnz,102,194,1|1qraho0,89,184,0|1r0nizz,89,184,0|1r0nj00,102,194,1|1ra0kbz,102,194,1|1ra0kc0,89,184,0|1rjqkbz,89,184,0|1rjqkc0,102,194,1|1rt3lnz,102,194,1|1rt3lo0,89,184,0|1s2gmzz,89,184,0|1s2gn00,102,194,1|1sbtobz,102,194,1|1sbtoc0,89,184,0|1sl6pnz,89,184,0|1sl6po0,102,194,1|1sujqzz,102,194,1|1sujr00,89,184,0|1t3wsbz,89,184,0|1t3wsc0,102,194,1|1td9tnz,102,194,1|1td9to0,89,184,0|1tmmuzz,89,184,0|1tmmv00,102,194,1|1tvzwbz,102,194,1|1tvzwc0,89,184,0|1u5pwbz,89,184,0|1u5pwc0,102,194,1|1uf2xnz,102,194,1|1uf2xo0,89,184,0|1uofyzz,89,184,0|1uofz00,102,194,1|1uxt0bz,102,194,1|1uxt0c0,89,184,0|1v761nz,89,184,0|1v761o0,102,194,1|1vgj2zz,102,194,1|1vgj300,89,184,0|1vpw4bz,89,184,0|1vpw4c0,102,194,1|NaN,102,194,1","Pacific/Noumea|,0,422,0|-u9645p,0,422,0|-u9645o,89,184,0|44uerz,89,184,0|44ues0,102,194,1|497qnz,102,194,1|497qo0,89,184,0|4nkhfz,89,184,0|4nkhg0,102,194,1|4rznzz,102,194,1|4rzo00,89,184,0|e1ouzz,89,184,0|e1ov00,102,194,1|e6ddnz,102,194,1|e6ddo0,89,184,0|NaN,89,184,0","Pacific/Pago_Pago|,0,415,0|-14fxxq1,0,415,0|-14fxxq0,0,416,0|-usij21,0,416,0|-usij20,177,33,0|NaN,177,33,0","Pacific/Palau|,0,423,0|-1t8izkl,0,423,0|-1t8izkk,0,424,0|-100f28l,0,424,0|-100f28k,107,218,0|NaN,107,218,0","Pacific/Pitcairn|,0,425,0|-100dp8t,0,425,0|-100dp8s,181,426,0|es2cxz,181,426,0|es2cy0,182,38,0|NaN,182,38,0","Pacific/Pohnpei|,0,427,0|-1t8j3yt,0,427,0|-1t8j3ys,0,428,0|-100f6mt,0,428,0|-100f6ms,89,184,0|-su52k1,89,184,0|-su52k0,107,218,0|-qknl01,107,218,0|-qknl00,89,184,0|-h817w1,89,184,0|-h817w0,93,189,0|-f08x41,93,189,0|-f08x40,107,218,0|-cqtd01,107,218,0|-cqtd00,89,184,0|NaN,89,184,0","Pacific/Port_Moresby|,0,187,0|-1ayytx5,0,187,0|-1ayytx4,92,188,0|-1354j8x,92,188,0|-1354j8w,93,189,0|NaN,93,189,0","Pacific/Rarotonga|,0,429,0|-10jifqx,0,429,0|-10jifqw,0,430,0|-8zbx2x,0,430,0|-8zbx2w,183,406,0|4mj95z,183,406,0|4mj960,176,407,1|4sal1z,176,407,1|4sal20,161,34,0|54jd3z,161,34,0|54jd40,176,407,1|5b0npz,176,407,1|5b0nq0,161,34,0|5n9frz,161,34,0|5n9fs0,176,407,1|5tqqdz,176,407,1|5tqqe0,161,34,0|65zifz,161,34,0|65zig0,176,407,1|6ctrpz,176,407,1|6ctrq0,161,34,0|6p2jrz,161,34,0|6p2js0,176,407,1|6vjudz,176,407,1|6vjue0,161,34,0|77smfz,161,34,0|77smg0,176,407,1|7e9x1z,176,407,1|7e9x20,161,34,0|7qip3z,161,34,0|7qip40,176,407,1|7wzzpz,176,407,1|7wzzq0,161,34,0|898rrz,161,34,0|898rs0,176,407,1|8fq2dz,176,407,1|8fq2e0,161,34,0|8ryufz,161,34,0|8ryug0,176,407,1|8yg51z,176,407,1|8yg520,161,34,0|9aox3z,161,34,0|9aox40,176,407,1|9hj6dz,176,407,1|9hj6e0,161,34,0|9tryfz,161,34,0|9tryg0,176,407,1|a0991z,176,407,1|a09920,161,34,0|aci13z,161,34,0|aci140,176,407,1|aizbpz,176,407,1|aizbq0,161,34,0|av83rz,161,34,0|av83s0,176,407,1|b1pedz,176,407,1|b1pee0,161,34,0|NaN,161,34,0","Pacific/Saipan|,0,403,0|-1t8j1h1,0,403,0|-1t8j1h0,0,404,0|-100f451,0,404,0|-100f450,170,189,0|-en8eg1,170,189,0|-en8eg0,107,218,0|-d9n501,107,218,0|-d9n500,170,189,0|-5hlkw1,170,189,0|-5hlkw0,171,184,1|-4nnvo1,171,184,1|-4nnvo0,170,189,0|-17w8w1,170,189,0|-17w8w0,171,184,1|-hih6d,171,184,1|-hih6c,170,189,0|-9y0w1,170,189,0|-9y0w0,171,184,1|-6ch01,171,184,1|-6ch00,170,189,0|5wcfz,170,189,0|5wcg0,171,184,1|cqkbz,171,184,1|cqkc0,170,189,0|omf3z,170,189,0|omf40,171,184,1|vgmzz,171,184,1|vgn00,170,189,0|22bb3z,170,189,0|22bb40,171,184,1|25wuzz,171,184,1|25wv00,170,189,0|3c75rz,170,189,0|3c75s0,171,184,1|3gq1pn,171,184,1|3gq1po,170,189,0|3tbtrz,170,189,0|3tbts0,171,184,1|3zt2zz,171,184,1|3zt300,170,189,0|g5z2vz,170,189,0|g5z2w0,172,189,0|NaN,172,189,0","Pacific/Tahiti|,0,431,0|-tvnayx,0,431,0|-tvnayw,161,34,0|NaN,161,34,0","Pacific/Tarawa|,0,432,0|-100f9dh,0,432,0|-100f9dg,102,194,0|NaN,102,194,0","Pacific/Tongatapu|,0,433,0|-corjk1,0,433,0|-corjk0,184,434,0|-4p3zld,184,434,0|-4p3zlc,103,195,0|fj6mrz,103,195,0|fj6ms0,104,201,1|frmc3z,104,201,1|frmc40,103,195,0|g3i43z,103,195,0|g3i440,104,201,1|g7tlbz,104,201,1|g7tlc0,103,195,0|gm86rz,103,195,0|gm86s0,104,201,1|gqjnzz,104,201,1|gqjo00,103,195,0|og66rz,103,195,0|og66s0,104,201,1|ojrtfz,104,201,1|ojrtg0,103,195,0|NaN,103,195,0","Pacific/Wake|,0,435,0|-100f86t,0,435,0|-100f86s,102,194,0|NaN,102,194,0","Pacific/Wallis|,0,436,0|-100fbdl,0,436,0|-100fbdk,102,194,0|NaN,102,194,0"],abbrvs:"LMT|GMT|+0230|EAT|+0245|PMT|WET|WEST|CET|CEST|+0030|WAT|-01|CAT|EET|EEST|+00|+01|SAST|CAST|MMT|WAST|+0130|NST|NWT|NPT|BST|BDT|AHST|HST|HDT|AST|AWT|APT|AHDT|YST|AKST|AKDT|-03|-02|CMT|-04|AMT|EST|MST|CST|PST|MDT|CDT|ADT|-0330|-0530|CWT|CPT|BMT|-05|PDT|MWT|MPT|-00|MDDT|EDT|-0430|SJMT|YDT|YWT|YPT|YDDT|PWT|PPT|EWT|EPT|NDT|ADDT|KMT|QMT|-0345|HMT|PDDT|EDDT|FFMT|-0230|-0130|PPMT|SMT|CDDT|SDMT|NDDT|+08|+11|+07|+05|PMMT|+10|AEST|AEDT|+06|NZMT|NZST|NZDT|+03|+02|+12|+13|+14|+04|+0730|+09|+0530|+0630|IST|IDT|PLMT|HKT|HKST|HKWT|JST|IMT|+0720|WIB|+0930|WIT|JMT|IDDT|+0430|PKT|PKST|+0545|+0820|WITA|KST|KDT|TBMT|TMT|+0330|JDT|RMT|FMT|ACST|ACDT|+0845|+0945|+1030|+1130|AWST|AWDT|+0120|+0020|CEMT|MSK|MSD|DMT|BDST|WEMT|MDST|LST|SET|WMT|+0220|-1130|-11|-10|+1215|+1245|+1345|EMT|-07|-06|-12|-09|GST|GDT|ChST|HWT|HPT|-1040|-0930|SST|-1120|+1112|+1230|-0830|-08|-1030|+1220|GMT+14|GMT+13|GMT+12|GMT+11|GMT+10|GMT+9|GMT+8|GMT+7|GMT+6|GMT+5|GMT+4|GMT+3|GMT+2|GMT+1|GMT-1|GMT-2|GMT-3|GMT-4|GMT-5|GMT-6|GMT-7|GMT-8|GMT-9|GMT-10|GMT-11|GMT-12",offsets:"-qw|0|6tg|6y0|8c0|7n0|kc|fl|2s0|5k0|mn|1e0|-2vw|-2s0|618|5sl|-1ek|-zg|-2g0|56o|460|5us|60w|-1zw|-226|2sc|18w|-1p9|2fw|1vw|360|xya|-wpq|-uk0|-rs0|-p00|12wo|-rrc|-m80|-c8p|-b40|-8c0|-8xc|-5k0|-ato|-bw0|-c6k|-c3c|-cdo|-cqs|-ctg|-c44|-cos|-cac|-c2s|-cnc|-aog|-eq8|-eso|-dw0|-74s|-jho|-jg0|-go0|-b1h|-9q0|-8z8|-gc0|-fa0|-b8g|-dps|-lip|-a44|-g2g|-ce8|-ce4|-ci0|-9ow|-g8c|-jn8|-fkd|-kr6|-adw|-3gg|-ptg|-m9k|-jfw|-fdn|-l0g|-cxs|-gio|-mpz|-74o|-b3o|-b6s|-9rg|-6zg|-6y0|-d68|-e7y|-grg|-es8|-ejc|-arr|-af0|-bs0|-f94|-f9c|-kjs|-fye|-g1i|-fzn|-g5v|-g2f|-fr4|-g7j|-g1d|15rv|-ow5|-fvq|-fpo|-cmc|-9uc|-e9o|-eac|-lwa|-6m4|-fz8|-fzc|-b44|-bb8|-iio|-jpg|-g83|-glg|16au|-od6|-id0|-aeg|-bzw|-iks|-aer|-460|-ep8|-dpe|-gcg|101a|-umq|-604|-iuj|-irc|-is3|-9kw|-jc4|-a7s|-a84|-a7o|-de8|-ddo|-bu0|-d4s|-d3a|-hig|-6go|-jdo|-ck0|-a4o|-cy0|-cyo|-8ms|-42g|15lz|-p21|-jyw|-g5g|-cqk|-gj0|-lo4|-mss|-p0c|-hzo|14sh|-pvj|m80|uk0|jg0|dw0|r94|r8w|rs0|go0|wd4|vy0|yq0|xc0|1040|8ng|1zo|e90|6nk|wv8|12w0|9b4|b40|al4|at8|9m8|884|880|9jk|98c|im4|fic|6ko|dtc|la4|ku0|l0g|p00|l7c|esc|esk|fa0|i20|6q0|gqs|gcw|n98|a8o|cqo|6ac|6ds|6hz|jr4|jqu|l56|nm0|gz0|jb5|js0|kdc|q20|qe0|6iu|6ig|ctc|ci0|tdo|cf0|fss|fz0|p3p|gd4|eva|h72|ity|j8d|kfk|n5c|l0y|rxc|m40|-189c|meo|66g|g5c|fcs|dl6|9ic|k8w|nac|bs4|c4g|qfc|ceh|nig|mhj|sgs|mi0|ctz|8an|9iw|9q0|glo|pvn|fqf|jsk|g7w|qiu|of7|o0y|htb|b89|af5|88o|-4r4|-5aw|-c06|-986|-2uo|-4cs|-194|-34o|-42o|-6rk|-apo|pnw|t60|sc8|q70|ra4|o88|nv4|ob0|r30|rl8|tgk|qug|lgc|s04|wk|3ok|3pc|xc|a4|8wc|4e4|3so|2h4|2o8|t6|4u0|3j8|1kw|1dm|5c8|5bo|2bw|-15o|-169|1lr|-zo|-23|4md|5d4|5ew|5ng|97c|150|-ok|2os|53s|53c|1d8|6yh|707|9s7|ck7|4gy|78y|2b8|99w|8j6|6bc|6ao|4bg|3cc|2se|4l0|3o8|8yo|44o|30x|4os|3w0|4fc|6hc|des|jks|hy4|a9o|dm0|anc|a9s|yv4|-vsw|-vy0|st4|xz0|y10|zf0|1270|-12k4|s3w|-k94|v64|-xc0|-vpk|x4w|x6s|-glc|-ozo|tmc|-13v0|qt0|-t8e|-t60|-qe0|-t4w|-tmo|-10hg|u6k|uzk|vpc|-pu0|z20|-vm0|uws|-vgs|-vhc|v3s|v40|uto|-15rg|owk|-o38|-nm0|-11d8|tas|112w|-tl4|-rp4|w1g|y80|y9c|uus|y1k"}); diff --git a/custom_components/hacs/hacs_frontend/c.ad739743.js.gz b/custom_components/hacs/hacs_frontend/c.ad739743.js.gz deleted file mode 100644 index 324a6c8aa9d93d38720a67842b3017e10dfa0e9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188403 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⪙w~d7X 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 z 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 MzW+LiH-Z-NKgxq$bN~PV diff --git a/custom_components/hacs/hacs_frontend/c.bc53dda1.js b/custom_components/hacs/hacs_frontend/c.bc53dda1.js deleted file mode 100644 index 2f09697..0000000 --- a/custom_components/hacs/hacs_frontend/c.bc53dda1.js +++ /dev/null @@ -1 +0,0 @@ -var t,e;t=window,e=document,L.drawVersion="1.0.4",L.Draw={},L.drawLocal={draw:{toolbar:{actions:{title:"Cancel drawing",text:"Cancel"},finish:{title:"Finish drawing",text:"Finish"},undo:{title:"Delete last point drawn",text:"Delete last point"},buttons:{polyline:"Draw a polyline",polygon:"Draw a polygon",rectangle:"Draw a rectangle",circle:"Draw a circle",marker:"Draw a marker",circlemarker:"Draw a circlemarker"}},handlers:{circle:{tooltip:{start:"Click and drag to draw circle."},radius:"Radius"},circlemarker:{tooltip:{start:"Click map to place circle marker."}},marker:{tooltip:{start:"Click map to place marker."}},polygon:{tooltip:{start:"Click to start drawing shape.",cont:"Click to continue drawing shape.",end:"Click first point to close this shape."}},polyline:{error:"Error: shape edges cannot cross!",tooltip:{start:"Click to start drawing line.",cont:"Click to continue drawing line.",end:"Click last point to finish line."}},rectangle:{tooltip:{start:"Click and drag to draw rectangle."}},simpleshape:{tooltip:{end:"Release mouse to finish drawing."}}}},edit:{toolbar:{actions:{save:{title:"Save changes",text:"Save"},cancel:{title:"Cancel editing, discards all changes",text:"Cancel"},clearAll:{title:"Clear all layers",text:"Clear All"}},buttons:{edit:"Edit layers",editDisabled:"No layers to edit",remove:"Delete layers",removeDisabled:"No layers to delete"}},handlers:{edit:{tooltip:{text:"Drag handles or markers to edit features.",subtext:"Click cancel to undo changes."}},remove:{tooltip:{text:"Click on a feature to remove."}}}}},L.Draw.Event={},L.Draw.Event.CREATED="draw:created",L.Draw.Event.EDITED="draw:edited",L.Draw.Event.DELETED="draw:deleted",L.Draw.Event.DRAWSTART="draw:drawstart",L.Draw.Event.DRAWSTOP="draw:drawstop",L.Draw.Event.DRAWVERTEX="draw:drawvertex",L.Draw.Event.EDITSTART="draw:editstart",L.Draw.Event.EDITMOVE="draw:editmove",L.Draw.Event.EDITRESIZE="draw:editresize",L.Draw.Event.EDITVERTEX="draw:editvertex",L.Draw.Event.EDITSTOP="draw:editstop",L.Draw.Event.DELETESTART="draw:deletestart",L.Draw.Event.DELETESTOP="draw:deletestop",L.Draw.Event.TOOLBAROPENED="draw:toolbaropened",L.Draw.Event.TOOLBARCLOSED="draw:toolbarclosed",L.Draw.Event.MARKERCONTEXT="draw:markercontext",L.Draw=L.Draw||{},L.Draw.Feature=L.Handler.extend({initialize:function(t,e){this._map=t,this._container=t._container,this._overlayPane=t._panes.overlayPane,this._popupPane=t._panes.popupPane,e&&e.shapeOptions&&(e.shapeOptions=L.Util.extend({},this.options.shapeOptions,e.shapeOptions)),L.setOptions(this,e);var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.Draw.Feature.include(L.Evented.prototype):L.Draw.Feature.include(L.Mixin.Events)},enable:function(){this._enabled||(L.Handler.prototype.enable.call(this),this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DRAWSTART,{layerType:this.type}))},disable:function(){this._enabled&&(L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DRAWSTOP,{layerType:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(L.DomUtil.disableTextSelection(),t.getContainer().focus(),this._tooltip=new L.Draw.Tooltip(this._map),L.DomEvent.on(this._container,"keyup",this._cancelDrawing,this))},removeHooks:function(){this._map&&(L.DomUtil.enableTextSelection(),this._tooltip.dispose(),this._tooltip=null,L.DomEvent.off(this._container,"keyup",this._cancelDrawing,this))},setOptions:function(t){L.setOptions(this,t)},_fireCreatedEvent:function(t){this._map.fire(L.Draw.Event.CREATED,{layer:t,layerType:this.type})},_cancelDrawing:function(t){27===t.keyCode&&(this._map.fire("draw:canceled",{layerType:this.type}),this.disable())}}),L.Draw.Polyline=L.Draw.Feature.extend({statics:{TYPE:"polyline"},Poly:L.Polyline,options:{allowIntersection:!0,repeatMode:!1,drawError:{color:"#b00b00",timeout:2500},icon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon"}),touchIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-touch-icon"}),guidelineDistance:20,maxGuideLineLength:4e3,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!1,clickable:!0},metric:!0,feet:!0,nautic:!1,showLength:!0,zIndexOffset:2e3,factor:1,maxPoints:0},initialize:function(t,e){L.Browser.touch&&(this.options.icon=this.options.touchIcon),this.options.drawError.message=L.drawLocal.draw.handlers.polyline.error,e&&e.drawError&&(e.drawError=L.Util.extend({},this.options.drawError,e.drawError)),this.type=L.Draw.Polyline.TYPE,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._markers=[],this._markerGroup=new L.LayerGroup,this._map.addLayer(this._markerGroup),this._poly=new L.Polyline([],this.options.shapeOptions),this._tooltip.updateContent(this._getTooltipText()),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("mouseout",this._onMouseOut,this).on("mousemove",this._onMouseMove,this).on("mousedown",this._onMouseDown,this).on("mouseup",this._onMouseUp,this).addTo(this._map),this._map.on("mouseup",this._onMouseUp,this).on("mousemove",this._onMouseMove,this).on("zoomlevelschange",this._onZoomEnd,this).on("touchstart",this._onTouch,this).on("zoomend",this._onZoomEnd,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._clearHideErrorTimeout(),this._cleanUpShape(),this._map.removeLayer(this._markerGroup),delete this._markerGroup,delete this._markers,this._map.removeLayer(this._poly),delete this._poly,this._mouseMarker.off("mousedown",this._onMouseDown,this).off("mouseout",this._onMouseOut,this).off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._clearGuides(),this._map.off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this).off("zoomlevelschange",this._onZoomEnd,this).off("zoomend",this._onZoomEnd,this).off("touchstart",this._onTouch,this).off("click",this._onTouch,this)},deleteLastVertex:function(){if(!(this._markers.length<=1)){var t=this._markers.pop(),e=this._poly,i=e.getLatLngs(),o=i.splice(-1,1)[0];this._poly.setLatLngs(i),this._markerGroup.removeLayer(t),e.getLatLngs().length<2&&this._map.removeLayer(e),this._vertexChanged(o,!1)}},addVertex:function(t){this._markers.length>=2&&!this.options.allowIntersection&&this._poly.newLatLngIntersects(t)?this._showErrorTooltip():(this._errorShown&&this._hideErrorTooltip(),this._markers.push(this._createMarker(t)),this._poly.addLatLng(t),2===this._poly.getLatLngs().length&&this._map.addLayer(this._poly),this._vertexChanged(t,!0))},completeShape:function(){this._markers.length<=1||!this._shapeIsValid()||(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_finishShape:function(){var t=this._poly._defaultShape?this._poly._defaultShape():this._poly.getLatLngs(),e=this._poly.newLatLngIntersects(t[t.length-1]);!this.options.allowIntersection&&e||!this._shapeIsValid()?this._showErrorTooltip():(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_shapeIsValid:function(){return!0},_onZoomEnd:function(){null!==this._markers&&this._updateGuide()},_onMouseMove:function(t){var e=this._map.mouseEventToLayerPoint(t.originalEvent),i=this._map.layerPointToLatLng(e);this._currentLatLng=i,this._updateTooltip(i),this._updateGuide(e),this._mouseMarker.setLatLng(i),L.DomEvent.preventDefault(t.originalEvent)},_vertexChanged:function(t,e){this._map.fire(L.Draw.Event.DRAWVERTEX,{layers:this._markerGroup}),this._updateFinishHandler(),this._updateRunningMeasure(t,e),this._clearGuides(),this._updateTooltip()},_onMouseDown:function(t){if(!this._clickHandled&&!this._touchHandled&&!this._disableMarkers){this._onMouseMove(t),this._clickHandled=!0,this._disableNewMarkers();var e=t.originalEvent,i=e.clientX,o=e.clientY;this._startPoint.call(this,i,o)}},_startPoint:function(t,e){this._mouseDownOrigin=L.point(t,e)},_onMouseUp:function(t){var e=t.originalEvent,i=e.clientX,o=e.clientY;this._endPoint.call(this,i,o,t),this._clickHandled=null},_endPoint:function(e,i,o){if(this._mouseDownOrigin){var a=L.point(e,i).distanceTo(this._mouseDownOrigin),n=this._calculateFinishDistance(o.latlng);this.options.maxPoints>1&&this.options.maxPoints==this._markers.length+1?(this.addVertex(o.latlng),this._finishShape()):n<10&&L.Browser.touch?this._finishShape():Math.abs(a)<9*(t.devicePixelRatio||1)&&this.addVertex(o.latlng),this._enableNewMarkers()}this._mouseDownOrigin=null},_onTouch:function(t){var e,i,o=t.originalEvent;!o.touches||!o.touches[0]||this._clickHandled||this._touchHandled||this._disableMarkers||(e=o.touches[0].clientX,i=o.touches[0].clientY,this._disableNewMarkers(),this._touchHandled=!0,this._startPoint.call(this,e,i),this._endPoint.call(this,e,i,t),this._touchHandled=null),this._clickHandled=null},_onMouseOut:function(){this._tooltip&&this._tooltip._onMouseOut.call(this._tooltip)},_calculateFinishDistance:function(t){var e;if(this._markers.length>0){var i;if(this.type===L.Draw.Polyline.TYPE)i=this._markers[this._markers.length-1];else{if(this.type!==L.Draw.Polygon.TYPE)return 1/0;i=this._markers[0]}var o=this._map.latLngToContainerPoint(i.getLatLng()),a=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset}),n=this._map.latLngToContainerPoint(a.getLatLng());e=o.distanceTo(n)}else e=1/0;return e},_updateFinishHandler:function(){var t=this._markers.length;t>1&&this._markers[t-1].on("click",this._finishShape,this),t>2&&this._markers[t-2].off("click",this._finishShape,this)},_createMarker:function(t){var e=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset});return this._markerGroup.addLayer(e),e},_updateGuide:function(t){var e=this._markers?this._markers.length:0;e>0&&(t=t||this._map.latLngToLayerPoint(this._currentLatLng),this._clearGuides(),this._drawGuide(this._map.latLngToLayerPoint(this._markers[e-1].getLatLng()),t))},_updateTooltip:function(t){var e=this._getTooltipText();t&&this._tooltip.updatePosition(t),this._errorShown||this._tooltip.updateContent(e)},_drawGuide:function(t,e){var i,o,a,n=Math.floor(Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))),s=this.options.guidelineDistance,r=this.options.maxGuideLineLength,l=n>r?n-r:s;for(this._guidesContainer||(this._guidesContainer=L.DomUtil.create("div","leaflet-draw-guides",this._overlayPane));l1&&this._markers[this._markers.length-1].off("click",this._finishShape,this)},_fireCreatedEvent:function(){var t=new this.Poly(this._poly.getLatLngs(),this.options.shapeOptions);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.Polygon=L.Draw.Polyline.extend({statics:{TYPE:"polygon"},Poly:L.Polygon,options:{showArea:!1,showLength:!1,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},metric:!0,feet:!0,nautic:!1,precision:{}},initialize:function(t,e){L.Draw.Polyline.prototype.initialize.call(this,t,e),this.type=L.Draw.Polygon.TYPE},_updateFinishHandler:function(){var t=this._markers.length;1===t&&this._markers[0].on("click",this._finishShape,this),t>2&&(this._markers[t-1].on("dblclick",this._finishShape,this),t>3&&this._markers[t-2].off("dblclick",this._finishShape,this))},_getTooltipText:function(){var t,e;return 0===this._markers.length?t=L.drawLocal.draw.handlers.polygon.tooltip.start:this._markers.length<3?(t=L.drawLocal.draw.handlers.polygon.tooltip.cont,e=this._getMeasurementString()):(t=L.drawLocal.draw.handlers.polygon.tooltip.end,e=this._getMeasurementString()),{text:t,subtext:e}},_getMeasurementString:function(){var t=this._area,e="";return t||this.options.showLength?(this.options.showLength&&(e=L.Draw.Polyline.prototype._getMeasurementString.call(this)),t&&(e+="
"+L.GeometryUtil.readableArea(t,this.options.metric,this.options.precision)),e):null},_shapeIsValid:function(){return this._markers.length>=3},_vertexChanged:function(t,e){var i;!this.options.allowIntersection&&this.options.showArea&&(i=this._poly.getLatLngs(),this._area=L.GeometryUtil.geodesicArea(i)),L.Draw.Polyline.prototype._vertexChanged.call(this,t,e)},_cleanUpShape:function(){var t=this._markers.length;t>0&&(this._markers[0].off("click",this._finishShape,this),t>2&&this._markers[t-1].off("dblclick",this._finishShape,this))}}),L.SimpleShape={},L.Draw.SimpleShape=L.Draw.Feature.extend({options:{repeatMode:!1},initialize:function(t,e){this._endLabelText=L.drawLocal.draw.handlers.simpleshape.tooltip.end,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._mapDraggable=this._map.dragging.enabled(),this._mapDraggable&&this._map.dragging.disable(),this._container.style.cursor="crosshair",this._tooltip.updateContent({text:this._initialLabelText}),this._map.on("mousedown",this._onMouseDown,this).on("mousemove",this._onMouseMove,this).on("touchstart",this._onMouseDown,this).on("touchmove",this._onMouseMove,this),e.addEventListener("touchstart",L.DomEvent.preventDefault,{passive:!1}))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._mapDraggable&&this._map.dragging.enable(),this._container.style.cursor="",this._map.off("mousedown",this._onMouseDown,this).off("mousemove",this._onMouseMove,this).off("touchstart",this._onMouseDown,this).off("touchmove",this._onMouseMove,this),L.DomEvent.off(e,"mouseup",this._onMouseUp,this),L.DomEvent.off(e,"touchend",this._onMouseUp,this),e.removeEventListener("touchstart",L.DomEvent.preventDefault),this._shape&&(this._map.removeLayer(this._shape),delete this._shape)),this._isDrawing=!1},_getTooltipText:function(){return{text:this._endLabelText}},_onMouseDown:function(t){this._isDrawing=!0,this._startLatLng=t.latlng,L.DomEvent.on(e,"mouseup",this._onMouseUp,this).on(e,"touchend",this._onMouseUp,this).preventDefault(t.originalEvent)},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._isDrawing&&(this._tooltip.updateContent(this._getTooltipText()),this._drawShape(e))},_onMouseUp:function(){this._shape&&this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()}}),L.Draw.Rectangle=L.Draw.SimpleShape.extend({statics:{TYPE:"rectangle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showArea:!0,metric:!0},initialize:function(t,e){this.type=L.Draw.Rectangle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.rectangle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},disable:function(){this._enabled&&(this._isCurrentlyTwoClickDrawing=!1,L.Draw.SimpleShape.prototype.disable.call(this))},_onMouseUp:function(t){this._shape||this._isCurrentlyTwoClickDrawing?this._isCurrentlyTwoClickDrawing&&!function(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}(t.target,"leaflet-pane")||L.Draw.SimpleShape.prototype._onMouseUp.call(this):this._isCurrentlyTwoClickDrawing=!0},_drawShape:function(t){this._shape?this._shape.setBounds(new L.LatLngBounds(this._startLatLng,t)):(this._shape=new L.Rectangle(new L.LatLngBounds(this._startLatLng,t),this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Rectangle(this._shape.getBounds(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_getTooltipText:function(){var t,e,i,o=L.Draw.SimpleShape.prototype._getTooltipText.call(this),a=this._shape,n=this.options.showArea;return a&&(t=this._shape._defaultShape?this._shape._defaultShape():this._shape.getLatLngs(),e=L.GeometryUtil.geodesicArea(t),i=n?L.GeometryUtil.readableArea(e,this.options.metric):""),{text:o.text,subtext:i}}}),L.Draw.Marker=L.Draw.Feature.extend({statics:{TYPE:"marker"},options:{icon:new L.Icon.Default,repeatMode:!1,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.Marker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.marker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._tooltip.updateContent({text:this._initialLabelText}),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("click",this._onClick,this).addTo(this._map),this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onTouch,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._map.off("click",this._onClick,this).off("click",this._onTouch,this),this._marker&&(this._marker.off("click",this._onClick,this),this._map.removeLayer(this._marker),delete this._marker),this._mouseMarker.off("click",this._onClick,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._map.off("mousemove",this._onMouseMove,this))},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._mouseMarker.setLatLng(e),this._marker?(e=this._mouseMarker.getLatLng(),this._marker.setLatLng(e)):(this._marker=this._createMarker(e),this._marker.on("click",this._onClick,this),this._map.on("click",this._onClick,this).addLayer(this._marker))},_createMarker:function(t){return new L.Marker(t,{icon:this.options.icon,zIndexOffset:this.options.zIndexOffset})},_onClick:function(){this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()},_onTouch:function(t){this._onMouseMove(t),this._onClick()},_fireCreatedEvent:function(){var t=new L.Marker.Touch(this._marker.getLatLng(),{icon:this.options.icon});L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.CircleMarker=L.Draw.Marker.extend({statics:{TYPE:"circlemarker"},options:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.CircleMarker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circlemarker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},_fireCreatedEvent:function(){var t=new L.CircleMarker(this._marker.getLatLng(),this.options);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)},_createMarker:function(t){return new L.CircleMarker(t,this.options)}}),L.Draw.Circle=L.Draw.SimpleShape.extend({statics:{TYPE:"circle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showRadius:!0,metric:!0,feet:!0,nautic:!1},initialize:function(t,e){this.type=L.Draw.Circle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},_drawShape:function(t){if(L.GeometryUtil.isVersion07x())var e=this._startLatLng.distanceTo(t);else e=this._map.distance(this._startLatLng,t);this._shape?this._shape.setRadius(e):(this._shape=new L.Circle(this._startLatLng,e,this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Circle(this._startLatLng,this._shape.getRadius(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_onMouseMove:function(t){var e,i=t.latlng,o=this.options.showRadius,a=this.options.metric;if(this._tooltip.updatePosition(i),this._isDrawing){this._drawShape(i),e=this._shape.getRadius().toFixed(1);var n="";o&&(n=L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(e,a,this.options.feet,this.options.nautic)),this._tooltip.updateContent({text:this._endLabelText,subtext:n})}}}),L.Edit=L.Edit||{},L.Edit.Marker=L.Handler.extend({initialize:function(t,e){this._marker=t,L.setOptions(this,e)},addHooks:function(){var t=this._marker;t.dragging.enable(),t.on("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},removeHooks:function(){var t=this._marker;t.dragging.disable(),t.off("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},_onDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_toggleMarkerHighlight:function(){var t=this._marker._icon;t&&(t.style.display="none",L.DomUtil.hasClass(t,"leaflet-edit-marker-selected")?(L.DomUtil.removeClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,-4)):(L.DomUtil.addClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,4)),t.style.display="")},_offsetMarker:function(t,e){var i=parseInt(t.style.marginTop,10)-e,o=parseInt(t.style.marginLeft,10)-e;t.style.marginTop=i+"px",t.style.marginLeft=o+"px"}}),L.Marker.addInitHook((function(){L.Edit.Marker&&(this.editing=new L.Edit.Marker(this),this.options.editable&&this.editing.enable())})),L.Edit=L.Edit||{},L.Edit.Poly=L.Handler.extend({initialize:function(t){this.latlngs=[t._latlngs],t._holes&&(this.latlngs=this.latlngs.concat(t._holes)),this._poly=t,this._poly.on("revert-edited",this._updateLatLngs,this)},_defaultShape:function(){return L.Polyline._flat?L.Polyline._flat(this._poly._latlngs)?this._poly._latlngs:this._poly._latlngs[0]:this._poly._latlngs},_eachVertexHandler:function(t){for(var e=0;et&&(i._index+=e)}))},_createMiddleMarker:function(t,e){var i,o,a,n=this._getMiddleLatLng(t,e),s=this._createMarker(n);s.setOpacity(.6),t._middleRight=e._middleLeft=s,o=function(){s.off("touchmove",o,this);var a=e._index;s._index=a,s.off("click",i,this).on("click",this._onMarkerClick,this),n.lat=s.getLatLng().lat,n.lng=s.getLatLng().lng,this._spliceLatLngs(a,0,n),this._markers.splice(a,0,s),s.setOpacity(1),this._updateIndexes(a,1),e._index++,this._updatePrevNext(t,s),this._updatePrevNext(s,e),this._poly.fire("editstart")},a=function(){s.off("dragstart",o,this),s.off("dragend",a,this),s.off("touchmove",o,this),this._createMiddleMarker(t,s),this._createMiddleMarker(s,e)},i=function(){o.call(this),a.call(this),this._fireEdit()},s.on("click",i,this).on("dragstart",o,this).on("dragend",a,this).on("touchmove",o,this),this._markerGroup.addLayer(s)},_updatePrevNext:function(t,e){t&&(t._next=e),e&&(e._prev=t)},_getMiddleLatLng:function(t,e){var i=this._poly._map,o=i.project(t.getLatLng()),a=i.project(e.getLatLng());return i.unproject(o._add(a)._divideBy(2))}}),L.Polyline.addInitHook((function(){this.editing||(L.Edit.Poly&&(this.editing=new L.Edit.Poly(this),this.options.editable&&this.editing.enable()),this.on("add",(function(){this.editing&&this.editing.enabled()&&this.editing.addHooks()})),this.on("remove",(function(){this.editing&&this.editing.enabled()&&this.editing.removeHooks()})))})),L.Edit=L.Edit||{},L.Edit.SimpleShape=L.Handler.extend({options:{moveIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move"}),resizeIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize"}),touchMoveIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move leaflet-touch-icon"}),touchResizeIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize leaflet-touch-icon"})},initialize:function(t,e){L.Browser.touch&&(this.options.moveIcon=this.options.touchMoveIcon,this.options.resizeIcon=this.options.touchResizeIcon),this._shape=t,L.Util.setOptions(this,e)},addHooks:function(){var t=this._shape;this._shape._map&&(this._map=this._shape._map,t.setStyle(t.options.editing),t._map&&(this._map=t._map,this._markerGroup||this._initMarkers(),this._map.addLayer(this._markerGroup)))},removeHooks:function(){var t=this._shape;if(t.setStyle(t.options.original),t._map){this._unbindMarker(this._moveMarker);for(var e=0,i=this._resizeMarkers.length;e"+L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(radius,!0,this.options.feet,this.options.nautic)}),this._shape.setRadius(radius),this._map.fire(L.Draw.Event.EDITRESIZE,{layer:this._shape})}}),L.Circle.addInitHook((function(){L.Edit.Circle&&(this.editing=new L.Edit.Circle(this),this.options.editable&&this.editing.enable())})),L.Map.mergeOptions({touchExtend:!0}),L.Map.TouchExtend=L.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane},addHooks:function(){L.DomEvent.on(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.on(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.on(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.on(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.on(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.on(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.on(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.on(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.on(this._container,"touchleave",this._onTouchLeave,this))},removeHooks:function(){L.DomEvent.off(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.off(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.off(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.off(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.off(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.off(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.off(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.off(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.off(this._container,"touchleave",this._onTouchLeave,this))},_touchEvent:function(t,e){var i={};if(void 0!==t.touches){if(!t.touches.length)return;i=t.touches[0]}else{if("touch"!==t.pointerType)return;if(i=t,!this._filterClick(t))return}var o=this._map.mouseEventToContainerPoint(i),a=this._map.mouseEventToLayerPoint(i),n=this._map.layerPointToLatLng(a);this._map.fire(e,{latlng:n,layerPoint:a,containerPoint:o,pageX:i.pageX,pageY:i.pageY,originalEvent:t})},_filterClick:function(t){var e=t.timeStamp||t.originalEvent.timeStamp,i=L.DomEvent._lastClick&&e-L.DomEvent._lastClick;return i&&i>100&&i<500||t.target._simulatedClick&&!t._simulated?(L.DomEvent.stop(t),!1):(L.DomEvent._lastClick=e,!0)},_onTouchStart:function(t){this._map._loaded&&this._touchEvent(t,"touchstart")},_onTouchEnd:function(t){this._map._loaded&&this._touchEvent(t,"touchend")},_onTouchCancel:function(t){if(this._map._loaded){var e="touchcancel";this._detectIE()&&(e="pointercancel"),this._touchEvent(t,e)}},_onTouchLeave:function(t){this._map._loaded&&this._touchEvent(t,"touchleave")},_onTouchMove:function(t){this._map._loaded&&this._touchEvent(t,"touchmove")},_detectIE:function(){var e=t.navigator.userAgent,i=e.indexOf("MSIE ");if(i>0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.Map.addInitHook("addHandler","touchExtend",L.Map.TouchExtend),L.Marker.Touch=L.Marker.extend({_initInteraction:function(){return this.addInteractiveTarget?L.Marker.prototype._initInteraction.apply(this):this._initInteractionLegacy()},_initInteractionLegacy:function(){if(this.options.clickable){var t=this._icon,e=["dblclick","mousedown","mouseover","mouseout","contextmenu","touchstart","touchend","touchmove"];this._detectIE?e.concat(["MSPointerDown","MSPointerUp","MSPointerMove","MSPointerCancel"]):e.concat(["touchcancel"]),L.DomUtil.addClass(t,"leaflet-clickable"),L.DomEvent.on(t,"click",this._onMouseClick,this),L.DomEvent.on(t,"keypress",this._onKeyPress,this);for(var i=0;i0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.LatLngUtil={cloneLatLngs:function(t){for(var e=[],i=0,o=t.length;i2){for(var s=0;s1&&(i=i+s+r[1])}return i},readableArea:function(e,i,o){var a,n;return o=L.Util.extend({},t,o),i?(n=["ha","m"],type=typeof i,"string"===type?n=[i]:"boolean"!==type&&(n=i),a=e>=1e6&&-1!==n.indexOf("km")?L.GeometryUtil.formattedNumber(1e-6*e,o.km)+" km²":e>=1e4&&-1!==n.indexOf("ha")?L.GeometryUtil.formattedNumber(1e-4*e,o.ha)+" ha":L.GeometryUtil.formattedNumber(e,o.m)+" m²"):a=(e/=.836127)>=3097600?L.GeometryUtil.formattedNumber(e/3097600,o.mi)+" mi²":e>=4840?L.GeometryUtil.formattedNumber(e/4840,o.ac)+" acres":L.GeometryUtil.formattedNumber(e,o.yd)+" yd²",a},readableDistance:function(e,i,o,a,n){var s;switch(n=L.Util.extend({},t,n),i?"string"==typeof i?i:"metric":o?"feet":a?"nauticalMile":"yards"){case"metric":s=e>1e3?L.GeometryUtil.formattedNumber(e/1e3,n.km)+" km":L.GeometryUtil.formattedNumber(e,n.m)+" m";break;case"feet":e*=3.28083,s=L.GeometryUtil.formattedNumber(e,n.ft)+" ft";break;case"nauticalMile":e*=.53996,s=L.GeometryUtil.formattedNumber(e/1e3,n.nm)+" nm";break;default:s=(e*=1.09361)>1760?L.GeometryUtil.formattedNumber(e/1760,n.mi)+" miles":L.GeometryUtil.formattedNumber(e,n.yd)+" yd"}return s},isVersion07x:function(){var t=L.version.split(".");return 0===parseInt(t[0],10)&&7===parseInt(t[1],10)}})}(),L.Util.extend(L.LineUtil,{segmentsIntersect:function(t,e,i,o){return this._checkCounterclockwise(t,i,o)!==this._checkCounterclockwise(e,i,o)&&this._checkCounterclockwise(t,e,i)!==this._checkCounterclockwise(t,e,o)},_checkCounterclockwise:function(t,e,i){return(i.y-t.y)*(e.x-t.x)>(e.y-t.y)*(i.x-t.x)}}),L.Polyline.include({intersects:function(){var t,e,i,o=this._getProjectedPoints(),a=o?o.length:0;if(this._tooFewPointsForIntersection())return!1;for(t=a-1;t>=3;t--)if(e=o[t-1],i=o[t],this._lineSegmentsIntersectsRange(e,i,t-2))return!0;return!1},newLatLngIntersects:function(t,e){return!!this._map&&this.newPointIntersects(this._map.latLngToLayerPoint(t),e)},newPointIntersects:function(t,e){var i=this._getProjectedPoints(),o=i?i.length:0,a=i?i[o-1]:null,n=o-2;return!this._tooFewPointsForIntersection(1)&&this._lineSegmentsIntersectsRange(a,t,n,e?1:0)},_tooFewPointsForIntersection:function(t){var e=this._getProjectedPoints(),i=e?e.length:0;return!e||(i+=t||0)<=3},_lineSegmentsIntersectsRange:function(t,e,i,o){var a,n,s=this._getProjectedPoints();o=o||0;for(var r=i;r>o;r--)if(a=s[r-1],n=s[r],L.LineUtil.segmentsIntersect(t,e,a,n))return!0;return!1},_getProjectedPoints:function(){if(!this._defaultShape)return this._originalPoints;for(var t=[],e=this._defaultShape(),i=0;i=2?L.Toolbar.include(L.Evented.prototype):L.Toolbar.include(L.Mixin.Events)},enabled:function(){return null!==this._activeMode},disable:function(){this.enabled()&&this._activeMode.handler.disable()},addToolbar:function(t){var e,i=L.DomUtil.create("div","leaflet-draw-section"),o=0,a=this._toolbarClass||"",n=this.getModeHandlers(t);for(this._toolbarContainer=L.DomUtil.create("div","leaflet-draw-toolbar leaflet-bar"),this._map=t,e=0;e0&&this._singleLineLabel&&(L.DomUtil.removeClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!1):(L.DomUtil.addClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!0),this._container.innerHTML=(t.subtext.length>0?''+t.subtext+"
":"")+""+t.text+"",t.text||t.subtext?(this._visible=!0,this._container.style.visibility="inherit"):(this._visible=!1,this._container.style.visibility="hidden"),this):this},updatePosition:function(t){var e=this._map.latLngToLayerPoint(t),i=this._container;return this._container&&(this._visible&&(i.style.visibility="inherit"),L.DomUtil.setPosition(i,e)),this},showAsError:function(){return this._container&&L.DomUtil.addClass(this._container,"leaflet-error-draw-tooltip"),this},removeError:function(){return this._container&&L.DomUtil.removeClass(this._container,"leaflet-error-draw-tooltip"),this},_onMouseOut:function(){this._container&&(this._container.style.visibility="hidden")}}),L.DrawToolbar=L.Toolbar.extend({statics:{TYPE:"draw"},options:{polyline:{},polygon:{},rectangle:{},circle:{},marker:{},circlemarker:{}},initialize:function(t){for(var e in this.options)this.options.hasOwnProperty(e)&&t[e]&&(t[e]=L.extend({},this.options[e],t[e]));this._toolbarClass="leaflet-draw-draw",L.Toolbar.prototype.initialize.call(this,t)},getModeHandlers:function(t){return[{enabled:this.options.polyline,handler:new L.Draw.Polyline(t,this.options.polyline),title:L.drawLocal.draw.toolbar.buttons.polyline},{enabled:this.options.polygon,handler:new L.Draw.Polygon(t,this.options.polygon),title:L.drawLocal.draw.toolbar.buttons.polygon},{enabled:this.options.rectangle,handler:new L.Draw.Rectangle(t,this.options.rectangle),title:L.drawLocal.draw.toolbar.buttons.rectangle},{enabled:this.options.circle,handler:new L.Draw.Circle(t,this.options.circle),title:L.drawLocal.draw.toolbar.buttons.circle},{enabled:this.options.marker,handler:new L.Draw.Marker(t,this.options.marker),title:L.drawLocal.draw.toolbar.buttons.marker},{enabled:this.options.circlemarker,handler:new L.Draw.CircleMarker(t,this.options.circlemarker),title:L.drawLocal.draw.toolbar.buttons.circlemarker}]},getActions:function(t){return[{enabled:t.completeShape,title:L.drawLocal.draw.toolbar.finish.title,text:L.drawLocal.draw.toolbar.finish.text,callback:t.completeShape,context:t},{enabled:t.deleteLastVertex,title:L.drawLocal.draw.toolbar.undo.title,text:L.drawLocal.draw.toolbar.undo.text,callback:t.deleteLastVertex,context:t},{title:L.drawLocal.draw.toolbar.actions.title,text:L.drawLocal.draw.toolbar.actions.text,callback:this.disable,context:this}]},setOptions:function(t){for(var e in L.setOptions(this,t),this._modes)this._modes.hasOwnProperty(e)&&t.hasOwnProperty(e)&&this._modes[e].handler.setOptions(t[e])}}),L.EditToolbar=L.Toolbar.extend({statics:{TYPE:"edit"},options:{edit:{selectedPathOptions:{dashArray:"10, 10",fill:!0,fillColor:"#fe57a1",fillOpacity:.1,maintainColor:!1}},remove:{},poly:null,featureGroup:null},initialize:function(t){t.edit&&(void 0===t.edit.selectedPathOptions&&(t.edit.selectedPathOptions=this.options.edit.selectedPathOptions),t.edit.selectedPathOptions=L.extend({},this.options.edit.selectedPathOptions,t.edit.selectedPathOptions)),t.remove&&(t.remove=L.extend({},this.options.remove,t.remove)),t.poly&&(t.poly=L.extend({},this.options.poly,t.poly)),this._toolbarClass="leaflet-draw-edit",L.Toolbar.prototype.initialize.call(this,t),this._selectedFeatureCount=0},getModeHandlers:function(t){var e=this.options.featureGroup;return[{enabled:this.options.edit,handler:new L.EditToolbar.Edit(t,{featureGroup:e,selectedPathOptions:this.options.edit.selectedPathOptions,poly:this.options.poly}),title:L.drawLocal.edit.toolbar.buttons.edit},{enabled:this.options.remove,handler:new L.EditToolbar.Delete(t,{featureGroup:e}),title:L.drawLocal.edit.toolbar.buttons.remove}]},getActions:function(t){var e=[{title:L.drawLocal.edit.toolbar.actions.save.title,text:L.drawLocal.edit.toolbar.actions.save.text,callback:this._save,context:this},{title:L.drawLocal.edit.toolbar.actions.cancel.title,text:L.drawLocal.edit.toolbar.actions.cancel.text,callback:this.disable,context:this}];return t.removeAllLayers&&e.push({title:L.drawLocal.edit.toolbar.actions.clearAll.title,text:L.drawLocal.edit.toolbar.actions.clearAll.text,callback:this._clearAllLayers,context:this}),e},addToolbar:function(t){var e=L.Toolbar.prototype.addToolbar.call(this,t);return this._checkDisabled(),this.options.featureGroup.on("layeradd layerremove",this._checkDisabled,this),e},removeToolbar:function(){this.options.featureGroup.off("layeradd layerremove",this._checkDisabled,this),L.Toolbar.prototype.removeToolbar.call(this)},disable:function(){this.enabled()&&(this._activeMode.handler.revertLayers(),L.Toolbar.prototype.disable.call(this))},_save:function(){this._activeMode.handler.save(),this._activeMode&&this._activeMode.handler.disable()},_clearAllLayers:function(){this._activeMode.handler.removeAllLayers(),this._activeMode&&this._activeMode.handler.disable()},_checkDisabled:function(){var t,e=0!==this.options.featureGroup.getLayers().length;this.options.edit&&(t=this._modes[L.EditToolbar.Edit.TYPE].button,e?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",e?L.drawLocal.edit.toolbar.buttons.edit:L.drawLocal.edit.toolbar.buttons.editDisabled)),this.options.remove&&(t=this._modes[L.EditToolbar.Delete.TYPE].button,e?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",e?L.drawLocal.edit.toolbar.buttons.remove:L.drawLocal.edit.toolbar.buttons.removeDisabled))}}),L.EditToolbar.Edit=L.Handler.extend({statics:{TYPE:"edit"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.setOptions(this,e),this._featureGroup=e.featureGroup,!(this._featureGroup instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this._uneditedLayerProps={},this.type=L.EditToolbar.Edit.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Edit.include(L.Evented.prototype):L.EditToolbar.Edit.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.EDITSTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._featureGroup.on("layeradd",this._enableLayerEdit,this).on("layerremove",this._disableLayerEdit,this))},disable:function(){this._enabled&&(this._featureGroup.off("layeradd",this._enableLayerEdit,this).off("layerremove",this._disableLayerEdit,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.EDITSTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._featureGroup.eachLayer(this._enableLayerEdit,this),this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}),t._editTooltip=this._tooltip,this._updateTooltip(),this._map.on("mousemove",this._onMouseMove,this).on("touchmove",this._onMouseMove,this).on("MSPointerMove",this._onMouseMove,this).on(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},removeHooks:function(){this._map&&(this._featureGroup.eachLayer(this._disableLayerEdit,this),this._uneditedLayerProps={},this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this).off("touchmove",this._onMouseMove,this).off("MSPointerMove",this._onMouseMove,this).off(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},revertLayers:function(){this._featureGroup.eachLayer((function(t){this._revertLayer(t)}),this)},save:function(){var t=new L.LayerGroup;this._featureGroup.eachLayer((function(e){e.edited&&(t.addLayer(e),e.edited=!1)})),this._map.fire(L.Draw.Event.EDITED,{layers:t})},_backupLayer:function(t){var e=L.Util.stamp(t);this._uneditedLayerProps[e]||(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?this._uneditedLayerProps[e]={latlngs:L.LatLngUtil.cloneLatLngs(t.getLatLngs())}:t instanceof L.Circle?this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng()),radius:t.getRadius()}:(t instanceof L.Marker||t instanceof L.CircleMarker)&&(this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng())}))},_getTooltipText:function(){return{text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}},_updateTooltip:function(){this._tooltip.updateContent(this._getTooltipText())},_revertLayer:function(t){var e=L.Util.stamp(t);t.edited=!1,this._uneditedLayerProps.hasOwnProperty(e)&&(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?t.setLatLngs(this._uneditedLayerProps[e].latlngs):t instanceof L.Circle?(t.setLatLng(this._uneditedLayerProps[e].latlng),t.setRadius(this._uneditedLayerProps[e].radius)):(t instanceof L.Marker||t instanceof L.CircleMarker)&&t.setLatLng(this._uneditedLayerProps[e].latlng),t.fire("revert-edited",{layer:t}))},_enableLayerEdit:function(t){var e,i,o=t.layer||t.target||t;this._backupLayer(o),this.options.poly&&(i=L.Util.extend({},this.options.poly),o.options.poly=i),this.options.selectedPathOptions&&((e=L.Util.extend({},this.options.selectedPathOptions)).maintainColor&&(e.color=o.options.color,e.fillColor=o.options.fillColor),o.options.original=L.extend({},o.options),o.options.editing=e),o instanceof L.Marker?(o.editing&&o.editing.enable(),o.dragging.enable(),o.on("dragend",this._onMarkerDragEnd).on("touchmove",this._onTouchMove,this).on("MSPointerMove",this._onTouchMove,this).on("touchend",this._onMarkerDragEnd,this).on("MSPointerUp",this._onMarkerDragEnd,this)):o.editing.enable()},_disableLayerEdit:function(t){var e=t.layer||t.target||t;e.edited=!1,e.editing&&e.editing.disable(),delete e.options.editing,delete e.options.original,this._selectedPathOptions&&(e instanceof L.Marker?this._toggleMarkerHighlight(e):(e.setStyle(e.options.previousOptions),delete e.options.previousOptions)),e instanceof L.Marker?(e.dragging.disable(),e.off("dragend",this._onMarkerDragEnd,this).off("touchmove",this._onTouchMove,this).off("MSPointerMove",this._onTouchMove,this).off("touchend",this._onMarkerDragEnd,this).off("MSPointerUp",this._onMarkerDragEnd,this)):e.editing.disable()},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_onMarkerDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_onTouchMove:function(t){var e=t.originalEvent.changedTouches[0],i=this._map.mouseEventToLayerPoint(e),o=this._map.layerPointToLatLng(i);t.target.setLatLng(o)},_hasAvailableLayers:function(){return 0!==this._featureGroup.getLayers().length}}),L.EditToolbar.Delete=L.Handler.extend({statics:{TYPE:"remove"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.Util.setOptions(this,e),this._deletableLayers=this.options.featureGroup,!(this._deletableLayers instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this.type=L.EditToolbar.Delete.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Delete.include(L.Evented.prototype):L.EditToolbar.Delete.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DELETESTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._deletableLayers.on("layeradd",this._enableLayerDelete,this).on("layerremove",this._disableLayerDelete,this))},disable:function(){this._enabled&&(this._deletableLayers.off("layeradd",this._enableLayerDelete,this).off("layerremove",this._disableLayerDelete,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DELETESTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._deletableLayers.eachLayer(this._enableLayerDelete,this),this._deletedLayers=new L.LayerGroup,this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.remove.tooltip.text}),this._map.on("mousemove",this._onMouseMove,this))},removeHooks:function(){this._map&&(this._deletableLayers.eachLayer(this._disableLayerDelete,this),this._deletedLayers=null,this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this))},revertLayers:function(){this._deletedLayers.eachLayer((function(t){this._deletableLayers.addLayer(t),t.fire("revert-deleted",{layer:t})}),this)},save:function(){this._map.fire(L.Draw.Event.DELETED,{layers:this._deletedLayers})},removeAllLayers:function(){this._deletableLayers.eachLayer((function(t){this._removeLayer({layer:t})}),this),this.save()},_enableLayerDelete:function(t){(t.layer||t.target||t).on("click",this._removeLayer,this)},_disableLayerDelete:function(t){var e=t.layer||t.target||t;e.off("click",this._removeLayer,this),this._deletedLayers.removeLayer(e)},_removeLayer:function(t){var e=t.layer||t.target||t;this._deletableLayers.removeLayer(e),this._deletedLayers.addLayer(e),e.fire("deleted")},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_hasAvailableLayers:function(){return 0!==this._deletableLayers.getLayers().length}}); diff --git a/custom_components/hacs/hacs_frontend/c.bc53dda1.js.gz b/custom_components/hacs/hacs_frontend/c.bc53dda1.js.gz deleted file mode 100644 index f0d83321c91f62d9dc9ad55ef2c788dee75043f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13543 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 diff --git a/custom_components/hacs/hacs_frontend/c.e23b0d0b.js b/custom_components/hacs/hacs_frontend/c.e23b0d0b.js deleted file mode 100644 index 909d3f5..0000000 --- a/custom_components/hacs/hacs_frontend/c.e23b0d0b.js +++ /dev/null @@ -1 +0,0 @@ -Intl.PluralRules&&"function"==typeof Intl.PluralRules.__addLocaleData&&Intl.PluralRules.__addLocaleData({data:{categories:{cardinal:["one","other"],ordinal:["one","two","few","other"]},fn:function(e,l){var a=String(e).split("."),t=!a[1],o=Number(a[0])==e,n=o&&a[0].slice(-1),r=o&&a[0].slice(-2);return l?1==n&&11!=r?"one":2==n&&12!=r?"two":3==n&&13!=r?"few":"other":1==e&&t?"one":"other"}},locale:"en"}); diff --git a/custom_components/hacs/hacs_frontend/c.e23b0d0b.js.gz b/custom_components/hacs/hacs_frontend/c.e23b0d0b.js.gz deleted file mode 100644 index a0c853a02a38aa42fe2393426e422d00a160b4a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260 zcmV+f0sH$j8?%LMx?cI;=P(6wdMY1yZwFm$K8z*Y#7Xe1r$j zUdsO(s;|eiedQU>i2}6Knd*Q(+EOG0VMO8&AaOKl#rc}XY~cFW8BBxrS5$$Cy8rUD z@$QW&;8}sr+Dim&vzi@%lo5t4h*^^<#fy17%EVAxi++Bh29fz zN4SZH+&Ppo&$o^avz{$(q?pL8YIirXo5-wf7i~MPK}ueh3mpa%=Z~@iPz-wiGcEwU Kn-*D>0RR9#k$md_ diff --git a/custom_components/hacs/hacs_frontend/entrypoint.js b/custom_components/hacs/hacs_frontend/entrypoint.js index b8c4983..7a16dbc 100644 --- a/custom_components/hacs/hacs_frontend/entrypoint.js +++ b/custom_components/hacs/hacs_frontend/entrypoint.js @@ -1,10 +1 @@ - -try { - new Function("import('/hacsfiles/frontend/main-ad130be7.js')")(); -} catch (err) { - var el = document.createElement('script'); - el.src = '/hacsfiles/frontend/main-ad130be7.js'; - el.type = 'module'; - document.body.appendChild(el); -} - \ No newline at end of file +!function(){function n(n){var e=document.createElement("script");e.src=n,document.body.appendChild(e)}if(/.*Version\/(?:11|12)(?:\.\d+)*.*Safari\//.test(navigator.userAgent))n("/hacsfiles/frontend/frontend_es5/entrypoint.4G_vEpsjfjQ.js");else try{new Function("import('/hacsfiles/frontend/frontend_latest/entrypoint.xkDQGhK7H8M.js')")()}catch(e){n("/hacsfiles/frontend/frontend_es5/entrypoint.4G_vEpsjfjQ.js")}}() \ No newline at end of file diff --git a/custom_components/hacs/hacs_frontend/entrypoint.js.gz b/custom_components/hacs/hacs_frontend/entrypoint.js.gz deleted file mode 100644 index 4236d2bc18bd447c04c9ba5b16dfab69b912d359..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmV;o07(BIiwFP!000021C5ToPQ)+_fcHLy)g{S53SwYDObFg1bzC(le{x(~#czK7^F#qnlG{sFxMj_mdT000ITR|o(A diff --git a/custom_components/hacs/hacs_frontend/manifest.json b/custom_components/hacs/hacs_frontend/manifest.json deleted file mode 100644 index 132cb86..0000000 --- a/custom_components/hacs/hacs_frontend/manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "./src/main.ts": "main-ad130be7.js" -} \ No newline at end of file diff --git a/custom_components/hacs/hacs_frontend/version.py b/custom_components/hacs/hacs_frontend/version.py index 3c9a5ad..14562ad 100644 --- a/custom_components/hacs/hacs_frontend/version.py +++ b/custom_components/hacs/hacs_frontend/version.py @@ -1 +1 @@ -VERSION="20220906112053" \ No newline at end of file +VERSION="20240814080035" \ No newline at end of file diff --git a/custom_components/hacs/manifest.json b/custom_components/hacs/manifest.json index f368b7b..051ee7d 100644 --- a/custom_components/hacs/manifest.json +++ b/custom_components/hacs/manifest.json @@ -1,6 +1,9 @@ { "domain": "hacs", "name": "HACS", + "after_dependencies": [ + "python_script" + ], "codeowners": [ "@ludeeus" ], @@ -19,5 +22,5 @@ "requirements": [ "aiogithubapi>=22.10.1" ], - "version": "1.34.0" + "version": "2.0.0" } \ No newline at end of file diff --git a/custom_components/hacs/repositories/__init__.py b/custom_components/hacs/repositories/__init__.py index fcd8f1f..e19ca33 100644 --- a/custom_components/hacs/repositories/__init__.py +++ b/custom_components/hacs/repositories/__init__.py @@ -1,22 +1,21 @@ """Initialize repositories.""" + from __future__ import annotations from ..enums import HacsCategory from .appdaemon import HacsAppdaemonRepository from .base import HacsRepository from .integration import HacsIntegrationRepository -from .netdaemon import HacsNetdaemonRepository from .plugin import HacsPluginRepository from .python_script import HacsPythonScriptRepository from .template import HacsTemplateRepository from .theme import HacsThemeRepository -RERPOSITORY_CLASSES: dict[HacsCategory, HacsRepository] = { +REPOSITORY_CLASSES: dict[HacsCategory, HacsRepository] = { HacsCategory.THEME: HacsThemeRepository, HacsCategory.INTEGRATION: HacsIntegrationRepository, HacsCategory.PYTHON_SCRIPT: HacsPythonScriptRepository, HacsCategory.APPDAEMON: HacsAppdaemonRepository, - HacsCategory.NETDAEMON: HacsNetdaemonRepository, HacsCategory.PLUGIN: HacsPluginRepository, HacsCategory.TEMPLATE: HacsTemplateRepository, } diff --git a/custom_components/hacs/repositories/appdaemon.py b/custom_components/hacs/repositories/appdaemon.py index 0385add..f25aa1d 100644 --- a/custom_components/hacs/repositories/appdaemon.py +++ b/custom_components/hacs/repositories/appdaemon.py @@ -1,4 +1,5 @@ """Class for appdaemon apps in HACS.""" + from __future__ import annotations from typing import TYPE_CHECKING @@ -79,7 +80,7 @@ class HacsAppdaemonRepository(HacsRepository): # Set local path self.content.path.local = self.localpath - # Signal entities to refresh + # Signal frontend to refresh if self.data.installed: self.hacs.async_dispatch( HacsDispatchEvent.REPOSITORY, diff --git a/custom_components/hacs/repositories/base.py b/custom_components/hacs/repositories/base.py index 4af6fb0..4b0dabe 100644 --- a/custom_components/hacs/repositories/base.py +++ b/custom_components/hacs/repositories/base.py @@ -1,8 +1,9 @@ """Repository.""" + from __future__ import annotations from asyncio import sleep -from datetime import datetime +from datetime import UTC, datetime import os import pathlib import shutil @@ -20,7 +21,7 @@ import attr from homeassistant.helpers import device_registry as dr, issue_registry as ir from ..const import DOMAIN -from ..enums import ConfigurationType, HacsDispatchEvent, RepositoryFile +from ..enums import HacsDispatchEvent, RepositoryFile from ..exceptions import ( HacsException, HacsNotModifiedException, @@ -28,16 +29,17 @@ from ..exceptions import ( HacsRepositoryExistException, ) from ..types import DownloadableContent -from ..utils.backup import Backup, BackupNetDaemon +from ..utils.backup import Backup from ..utils.decode import decode_content from ..utils.decorator import concurrent +from ..utils.file_system import async_exists, async_remove, async_remove_directory from ..utils.filters import filter_content_return_one_of_type +from ..utils.github_graphql_query import GET_REPOSITORY_RELEASES from ..utils.json import json_loads from ..utils.logger import LOGGER from ..utils.path import is_safe from ..utils.queue_manager import QueueManager from ..utils.store import async_remove_store -from ..utils.template import render_template from ..utils.url import github_archive, github_release_asset from ..utils.validate import Validate from ..utils.version import ( @@ -84,7 +86,6 @@ TOPIC_FILTER = ( "lovelace", "media-player", "mediaplayer", - "netdaemon", "plugin", "python_script", "python-script", @@ -113,6 +114,7 @@ REPOSITORY_KEYS_TO_EXPORT = ( ("last_version", None), ("manifest_name", None), ("open_issues", 0), + ("prerelease", None), ("stargazers_count", 0), ("topics", []), ) @@ -164,6 +166,7 @@ class RepositoryData: manifest_name: str = None new: bool = True open_issues: int = 0 + prerelease: str = None published_tags: list[str] = [] releases: bool = False selected_tag: str = None @@ -174,7 +177,7 @@ class RepositoryData: @property def name(self): """Return the name.""" - if self.category in ["integration", "netdaemon"]: + if self.category == "integration": return self.domain return self.full_name.split("/")[-1] @@ -196,7 +199,7 @@ class RepositoryData: continue if key == "last_fetched" and isinstance(value, float): - setattr(self, key, datetime.fromtimestamp(value)) + setattr(self, key, datetime.fromtimestamp(value, UTC)) elif key == "id": setattr(self, key, str(value)) elif key == "country": @@ -384,7 +387,9 @@ class HacsRepository: @property def display_available_version(self) -> str: """Return display_authors""" - if self.data.last_version is not None: + if self.data.show_beta and self.data.prerelease is not None: + available = self.data.prerelease + elif self.data.last_version is not None: available = self.data.last_version else: if self.data.last_commit is not None: @@ -501,13 +506,7 @@ class HacsRepository: if self.repository_object: self.data.last_updated = self.repository_object.attributes.get("pushed_at", 0) - self.data.last_fetched = datetime.utcnow() - - # Set topics - self.data.topics = self.data.topics - - # Set description - self.data.description = self.data.description + self.data.last_fetched = datetime.now(UTC) @concurrent(concurrenttasks=10, backoff_time=5) async def common_update(self, ignore_issues=False, force=False, skip_releases=False) -> bool: @@ -555,7 +554,7 @@ class HacsRepository: self.additional_info = await self.async_get_info_file_contents() # Set last fetch attribute - self.data.last_fetched = datetime.utcnow() + self.data.last_fetched = datetime.now(UTC) return True @@ -574,9 +573,11 @@ class HacsRepository: ), validate, ) - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + except BaseException: validate.errors.append( - f"Download of {self.repository_manifest.filename} was not completed" + f"Download of { + self.repository_manifest.filename} was not completed" ) async def async_download_zip_file( @@ -596,8 +597,12 @@ class HacsRepository: temp_file = f"{temp_dir}/{self.repository_manifest.filename}" result = await self.hacs.async_save_file(temp_file, filecontent) - with zipfile.ZipFile(temp_file, "r") as zip_file: - zip_file.extractall(self.content.path.local) + + def _extract_zip_file(): + with zipfile.ZipFile(temp_file, "r") as zip_file: + zip_file.extractall(self.content.path.local) + + await self.hacs.hass.async_add_executor_job(_extract_zip_file) def cleanup_temp_dir(): """Cleanup temp_dir.""" @@ -611,24 +616,24 @@ class HacsRepository: return validate.errors.append(f"[{content['name']}] was not downloaded") - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + except BaseException: validate.errors.append("Download was not completed") async def download_content(self, version: string | None = None) -> None: """Download the content of a directory.""" contents: list[FileInformation] | None = None - if self.hacs.configuration.experimental: - if ( - not self.repository_manifest.zip_release - and not self.data.file_name - and self.content.path.remote is not None - ): - self.logger.info("%s Trying experimental download", self.string) - try: - await self.download_repository_zip() - return - except HacsException as exception: - self.logger.exception(exception) + if ( + not self.repository_manifest.zip_release + and not self.data.file_name + and self.content.path.remote is not None + ): + self.logger.info("%s Downloading repository archive", self.string) + try: + await self.download_repository_zip() + return + except HacsException as exception: + self.logger.exception(exception) if self.repository_manifest.filename: self.logger.debug("%s %s", self.string, self.repository_manifest.filename) @@ -679,23 +684,26 @@ class HacsRepository: if not result: raise HacsException("Could not save ZIP file") - with zipfile.ZipFile(temp_file, "r") as zip_file: - extractable = [] - for path in zip_file.filelist: - filename = "/".join(path.filename.split("/")[1:]) - if ( - filename.startswith(self.content.path.remote) - and filename != self.content.path.remote - ): - path.filename = filename.replace(self.content.path.remote, "") - if path.filename == "/": - # Blank files is not valid, and will start to throw in Python 3.12 - continue - extractable.append(path) + def _extract_zip_file(): + with zipfile.ZipFile(temp_file, "r") as zip_file: + extractable = [] + for path in zip_file.filelist: + filename = "/".join(path.filename.split("/")[1:]) + if ( + filename.startswith(self.content.path.remote) + and filename != self.content.path.remote + ): + path.filename = filename.replace(self.content.path.remote, "") + if path.filename == "/": + # Blank files is not valid, and will start to throw in Python 3.12 + continue + extractable.append(path) - if len(extractable) == 0: - raise HacsException("No content to extract") - zip_file.extractall(self.content.path.local, extractable) + if len(extractable) == 0: + raise HacsException("No content to extract") + zip_file.extractall(self.content.path.local, extractable) + + await self.hacs.hass.async_add_executor_job(_extract_zip_file) def cleanup_temp_dir(): """Cleanup temp_dir.""" @@ -718,18 +726,15 @@ class HacsRepository: ) if response: return json_loads(decode_content(response.data.content)) - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + except BaseException: pass - async def async_get_info_file_contents(self) -> str: + async def async_get_info_file_contents(self, *, version: str | None = None, **kwargs) -> str: """Get the content of the info.md file.""" def _info_file_variants() -> tuple[str, ...]: - name: str = ( - "readme" - if self.repository_manifest.render_readme or self.hacs.configuration.experimental - else "info" - ) + name: str = "readme" return ( f"{name.upper()}.md", f"{name}.md", @@ -744,7 +749,7 @@ class HacsRepository: if not info_files: return "" - return await self.get_documentation(filename=info_files[0]) or "" + return await self.get_documentation(filename=info_files[0], version=version) or "" def remove(self) -> None: """Run remove tasks.""" @@ -758,19 +763,7 @@ class HacsRepository: if not await self.remove_local_directory(): raise HacsException("Could not uninstall") self.data.installed = False - if self.data.category == "integration": - if self.data.config_flow: - await self.reload_custom_components() - else: - self.pending_restart = True - elif self.data.category == "theme": - try: - await self.hacs.hass.services.async_call("frontend", "reload_themes", {}) - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except - pass - elif self.data.category == "template": - await self.hacs.hass.services.async_call("homeassistant", "reload_custom_templates", {}) - + await self._async_post_uninstall() await async_remove_store(self.hacs.hass, f"hacs/{self.data.id}.hacs") self.data.installed_version = None @@ -802,8 +795,7 @@ class HacsRepository: f"{self.hacs.configuration.theme_path}/" f"{self.data.name}.yaml" ) - if os.path.exists(path): - os.remove(path) + await async_remove(self.hacs.hass, path, missing_ok=True) local_path = self.content.path.local elif self.data.category == "integration": if not self.data.domain: @@ -817,18 +809,18 @@ class HacsRepository: else: local_path = self.content.path.local - if os.path.exists(local_path): + if await async_exists(self.hacs.hass, local_path): if not is_safe(self.hacs, local_path): self.logger.error("%s Path %s is blocked from removal", self.string, local_path) return False self.logger.debug("%s Removing %s", self.string, local_path) if self.data.category in ["python_script", "template"]: - os.remove(local_path) + await async_remove(self.hacs.hass, local_path) else: - shutil.rmtree(local_path) + await async_remove_directory(self.hacs.hass, local_path) - while os.path.exists(local_path): + while await async_exists(self.hacs.hass, local_path): await sleep(1) else: self.logger.debug( @@ -836,7 +828,8 @@ class HacsRepository: ) except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: self.logger.debug("%s Removing %s failed with %s", self.string, local_path, exception) return False @@ -905,6 +898,13 @@ class HacsRepository: async def async_post_installation(self) -> None: """Run post install steps.""" + async def async_post_uninstall(self): + """Run post uninstall steps.""" + + async def _async_post_uninstall(self): + """Run post uninstall steps.""" + await self.async_post_uninstall() + async def _async_post_install(self) -> None: """Run post install steps.""" self.logger.info("%s Running post installation steps", self.string) @@ -943,17 +943,15 @@ class HacsRepository: {"repository": self.data.full_name, "progress": 40}, ) - if self.data.installed and self.data.category == "netdaemon": - persistent_directory = BackupNetDaemon(hacs=self.hacs, repository=self) - await self.hacs.hass.async_add_executor_job(persistent_directory.create) - - elif self.repository_manifest.persistent_directory: - if os.path.exists( - f"{self.content.path.local}/{self.repository_manifest.persistent_directory}" + if self.repository_manifest.persistent_directory: + if await async_exists( + self.hacs.hass, + f"{self.content.path.local}/{self.repository_manifest.persistent_directory}", ): persistent_directory = Backup( hacs=self.hacs, - local_path=f"{self.content.path.local}/{self.repository_manifest.persistent_directory}", + local_path=f"{ + self.content.path.local}/{self.repository_manifest.persistent_directory}", backup_path=tempfile.gettempdir() + "/hacs_persistent_directory/", ) await self.hacs.hass.async_add_executor_job(persistent_directory.create) @@ -1066,9 +1064,9 @@ class HacsRepository: ) self.repository_object = repository_object if self.data.full_name.lower() != repository_object.full_name.lower(): - self.hacs.common.renamed_repositories[ - self.data.full_name - ] = repository_object.full_name + self.hacs.common.renamed_repositories[self.data.full_name] = ( + repository_object.full_name + ) if not self.hacs.system.generator: raise HacsRepositoryExistException self.logger.error( @@ -1084,7 +1082,7 @@ class HacsRepository: except HacsRepositoryExistException: raise HacsRepositoryExistException from None except (AIOGitHubAPIException, HacsException) as exception: - if not self.hacs.status.startup: + if not self.hacs.status.startup or self.hacs.system.generator: self.logger.error("%s %s", self.string, exception) if not ignore_issues: self.validate.errors.append("Repository does not exist.") @@ -1107,15 +1105,28 @@ class HacsRepository: # Get releases. if not skip_releases: try: - releases = await self.get_releases( - prerelease=self.data.show_beta, - returnlimit=self.hacs.configuration.release_limit, - ) + releases = await self.get_releases(prerelease=True, returnlimit=30) if releases: + self.data.prerelease = None + for release in releases: + if release.draft: + continue + elif release.prerelease: + if self.data.prerelease is None: + self.data.prerelease = release.tag_name + else: + self.data.last_version = release.tag_name + break + self.data.releases = True - self.releases.objects = releases - self.data.published_tags = [x.tag_name for x in self.releases.objects] - self.data.last_version = next(iter(self.data.published_tags)) + + filtered_releases = [ + release + for release in releases + if not release.draft and (self.data.show_beta or not release.prerelease) + ] + self.releases.objects = filtered_releases + self.data.published_tags = [x.tag_name for x in filtered_releases] except HacsException: self.data.releases = False @@ -1280,18 +1291,13 @@ class HacsRepository: self.validate.errors.append(f"[{content.name}] was not downloaded.") except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: self.validate.errors.append(f"Download was not completed [{exception}]") async def async_remove_entity_device(self) -> None: """Remove the entity device.""" - if ( - self.hacs.configuration == ConfigurationType.YAML - or not self.hacs.configuration.experimental - ): - return - device_registry: dr.DeviceRegistry = dr.async_get(hass=self.hacs.hass) device = device_registry.async_get_device(identifiers={(DOMAIN, str(self.data.id))}) @@ -1322,39 +1328,39 @@ class HacsRepository: self, *, filename: str | None = None, + version: str | None = None, **kwargs, ) -> str | None: """Get the documentation of the repository.""" if filename is None: return None - version = ( - (self.data.installed_version or self.data.installed_commit) - if self.data.installed - else (self.data.last_version or self.data.last_commit or self.ref) - ) + if version is not None: + target_version = version + elif self.data.installed: + target_version = self.data.installed_version or self.data.installed_commit + else: + target_version = self.data.last_version or self.data.last_commit or self.ref + self.logger.debug( "%s Getting documentation for version=%s,filename=%s", self.string, - version, + target_version, filename, ) - if version is None: + if target_version is None: return None result = await self.hacs.async_download_file( - f"https://raw.githubusercontent.com/{self.data.full_name}/{version}/{filename}", + f"https://raw.githubusercontent.com/{ + self.data.full_name}/{target_version}/{filename}", nolog=True, ) return ( - render_template( - self.hacs, - result.decode(encoding="utf-8") - .replace(" None: + """Ensure that the download can be handled.""" + target_manifest: HacsManifest | None = None + if ref is None: + if not self.can_download: + raise HacsException( + f"This { + self.data.category.value} is not available for download." + ) + return + + if ref == self.data.last_version: + target_manifest = self.repository_manifest + else: + target_manifest = await self.get_hacs_json(version=ref) + + if target_manifest is None: + raise HacsException( + f"The version {ref} for this { + self.data.category.value} can not be used with HACS." + ) + + if ( + target_manifest.homeassistant is not None + and self.hacs.core.ha_version < target_manifest.homeassistant + ): + raise HacsException( + f"This version requires Home Assistant { + target_manifest.homeassistant} or newer." + ) + if target_manifest.hacs is not None and self.hacs.version < target_manifest.hacs: + raise HacsException(f"This version requires HACS { + target_manifest.hacs} or newer.") + + async def async_download_repository(self, *, ref: str | None = None, **_) -> None: + """Download the content of a repository.""" + await self._ensure_download_capabilities(ref) + self.logger.info("Starting download, %s", ref) + if self.display_version_or_commit == "version": + self.hacs.async_dispatch( + HacsDispatchEvent.REPOSITORY_DOWNLOAD_PROGRESS, + {"repository": self.data.full_name, "progress": 10}, + ) + if not ref: + await self.update_repository(force=True) + else: + self.ref = ref + self.data.selected_tag = ref + self.force_branch = ref is not None + self.hacs.async_dispatch( + HacsDispatchEvent.REPOSITORY_DOWNLOAD_PROGRESS, + {"repository": self.data.full_name, "progress": 20}, + ) + + try: + await self.async_install(version=ref) + except HacsException as exception: + raise HacsException( + f"Downloading {self.data.full_name} with version { + ref or self.data.last_version or self.data.last_commit} failed with ({exception})" + ) from exception + finally: + self.data.selected_tag = None + self.force_branch = False + self.hacs.async_dispatch( + HacsDispatchEvent.REPOSITORY_DOWNLOAD_PROGRESS, + {"repository": self.data.full_name, "progress": False}, + ) + + async def async_get_releases(self, *, first: int = 30) -> list[GitHubReleaseModel]: + """Get the last x releases of a repository.""" + response = await self.hacs.async_github_api_method( + method=self.hacs.githubapi.repos.releases.list, + repository=self.data.full_name, + kwargs={"per_page": 30}, + ) + return response.data diff --git a/custom_components/hacs/repositories/integration.py b/custom_components/hacs/repositories/integration.py index 70b8b54..8456ce6 100644 --- a/custom_components/hacs/repositories/integration.py +++ b/custom_components/hacs/repositories/integration.py @@ -1,4 +1,5 @@ """Class for integrations in HACS.""" + from __future__ import annotations from typing import TYPE_CHECKING, Any @@ -45,7 +46,7 @@ class HacsIntegrationRepository(HacsRepository): if self.data.first_install: self.pending_restart = False - if self.pending_restart and self.hacs.configuration.experimental: + if self.pending_restart: self.logger.debug("%s Creating restart_required issue", self.string) async_create_issue( hass=self.hacs.hass, @@ -60,6 +61,13 @@ class HacsIntegrationRepository(HacsRepository): }, ) + async def async_post_uninstall(self) -> None: + """Run post uninstall steps.""" + if self.data.config_flow: + await self.reload_custom_components() + else: + self.pending_restart = True + async def validate_repository(self): """Validate.""" await self.common_validate() @@ -78,7 +86,8 @@ class HacsIntegrationRepository(HacsRepository): ): raise AddonRepositoryException() raise HacsException( - f"{self.string} Repository structure for {self.ref.replace('tags/','')} is not compliant" + f"{self.string} Repository structure for { + self.ref.replace('tags/', '')} is not compliant" ) self.content.path.remote = f"custom_components/{name}" @@ -93,7 +102,8 @@ class HacsIntegrationRepository(HacsRepository): except KeyError as exception: self.validate.errors.append( - f"Missing expected key '{exception}' in { RepositoryFile.MAINIFEST_JSON}" + f"Missing expected key '{exception}' in { + RepositoryFile.MAINIFEST_JSON}" ) self.hacs.log.error( "Missing expected key '%s' in '%s'", exception, RepositoryFile.MAINIFEST_JSON @@ -133,7 +143,8 @@ class HacsIntegrationRepository(HacsRepository): except KeyError as exception: self.validate.errors.append( - f"Missing expected key '{exception}' in { RepositoryFile.MAINIFEST_JSON}" + f"Missing expected key '{exception}' in { + RepositoryFile.MAINIFEST_JSON}" ) self.hacs.log.error( "Missing expected key '%s' in '%s'", exception, RepositoryFile.MAINIFEST_JSON @@ -142,7 +153,7 @@ class HacsIntegrationRepository(HacsRepository): # Set local path self.content.path.local = self.localpath - # Signal entities to refresh + # Signal frontend to refresh if self.data.installed: self.hacs.async_dispatch( HacsDispatchEvent.REPOSITORY, @@ -180,3 +191,27 @@ class HacsIntegrationRepository(HacsRepository): ) if response: return json_loads(decode_content(response.data.content)) + + async def get_integration_manifest(self, *, version: str, **kwargs) -> dict[str, Any] | None: + """Get the content of the manifest.json file.""" + manifest_path = ( + "manifest.json" + if self.repository_manifest.content_in_root + else f"{self.content.path.remote}/{RepositoryFile.MAINIFEST_JSON}" + ) + + if manifest_path not in (x.full_path for x in self.tree): + raise HacsException(f"No {RepositoryFile.MAINIFEST_JSON} file found '{manifest_path}'") + + self.logger.debug("%s Getting manifest.json for version=%s", self.string, version) + try: + result = await self.hacs.async_download_file( + f"https://raw.githubusercontent.com/{ + self.data.full_name}/{version}/{manifest_path}", + nolog=True, + ) + if result is None: + return None + return json_loads(result) + except Exception: # pylint: disable=broad-except + return None diff --git a/custom_components/hacs/repositories/netdaemon.py b/custom_components/hacs/repositories/netdaemon.py deleted file mode 100644 index ef892bf..0000000 --- a/custom_components/hacs/repositories/netdaemon.py +++ /dev/null @@ -1,104 +0,0 @@ -"""Class for netdaemon apps in HACS.""" -from __future__ import annotations - -from typing import TYPE_CHECKING - -from ..enums import HacsCategory, HacsDispatchEvent -from ..exceptions import HacsException -from ..utils import filters -from ..utils.decorator import concurrent -from .base import HacsRepository - -if TYPE_CHECKING: - from ..base import HacsBase - - -class HacsNetdaemonRepository(HacsRepository): - """Netdaemon apps in HACS.""" - - def __init__(self, hacs: HacsBase, full_name: str): - """Initialize.""" - super().__init__(hacs=hacs) - self.data.full_name = full_name - self.data.full_name_lower = full_name.lower() - self.data.category = HacsCategory.NETDAEMON - self.content.path.local = self.localpath - self.content.path.remote = "apps" - - @property - def localpath(self): - """Return localpath.""" - return f"{self.hacs.core.config_path}/netdaemon/apps/{self.data.name}" - - async def validate_repository(self): - """Validate.""" - await self.common_validate() - - # Custom step 1: Validate content. - if self.repository_manifest: - if self.repository_manifest.content_in_root: - self.content.path.remote = "" - - if self.content.path.remote == "apps": - self.data.domain = filters.get_first_directory_in_directory( - self.tree, self.content.path.remote - ) - self.content.path.remote = f"apps/{self.data.name}" - - compliant = False - for treefile in self.treefiles: - if treefile.startswith(f"{self.content.path.remote}") and treefile.endswith(".cs"): - compliant = True - break - if not compliant: - raise HacsException( - f"{self.string} Repository structure for {self.ref.replace('tags/','')} is not compliant" - ) - - # Handle potential errors - if self.validate.errors: - for error in self.validate.errors: - if not self.hacs.status.startup: - self.logger.error("%s %s", self.string, error) - return self.validate.success - - @concurrent(concurrenttasks=10, backoff_time=5) - async def update_repository(self, ignore_issues=False, force=False): - """Update.""" - if not await self.common_update(ignore_issues, force) and not force: - return - - # Get appdaemon objects. - if self.repository_manifest: - if self.repository_manifest.content_in_root: - self.content.path.remote = "" - - if self.content.path.remote == "apps": - self.data.domain = filters.get_first_directory_in_directory( - self.tree, self.content.path.remote - ) - self.content.path.remote = f"apps/{self.data.name}" - - # Set local path - self.content.path.local = self.localpath - - # Signal entities to refresh - if self.data.installed: - self.hacs.async_dispatch( - HacsDispatchEvent.REPOSITORY, - { - "id": 1337, - "action": "update", - "repository": self.data.full_name, - "repository_id": self.data.id, - }, - ) - - async def async_post_installation(self): - """Run post installation steps.""" - try: - await self.hacs.hass.services.async_call( - "hassio", "addon_restart", {"addon": "c6a2317c_netdaemon"} - ) - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except - pass diff --git a/custom_components/hacs/repositories/plugin.py b/custom_components/hacs/repositories/plugin.py index 63d95e4..86e30f9 100644 --- a/custom_components/hacs/repositories/plugin.py +++ b/custom_components/hacs/repositories/plugin.py @@ -1,6 +1,8 @@ """Class for plugins in HACS.""" + from __future__ import annotations +import re from typing import TYPE_CHECKING from ..enums import HacsCategory, HacsDispatchEvent @@ -9,7 +11,11 @@ from ..utils.decorator import concurrent from ..utils.json import json_loads from .base import HacsRepository +HACSTAG_REPLACER = re.compile(r"\D+") + if TYPE_CHECKING: + from homeassistant.components.lovelace.resources import ResourceStorageCollection + from ..base import HacsBase @@ -55,7 +61,12 @@ class HacsPluginRepository(HacsRepository): async def async_post_installation(self): """Run post installation steps.""" - self.hacs.async_setup_frontend_endpoint_plugin() + await self.hacs.async_setup_frontend_endpoint_plugin() + await self.update_dashboard_resources() + + async def async_post_uninstall(self): + """Run post uninstall steps.""" + await self.remove_dashboard_resources() @concurrent(concurrenttasks=10, backoff_time=5) async def update_repository(self, ignore_issues=False, force=False): @@ -74,7 +85,7 @@ class HacsPluginRepository(HacsRepository): if self.content.path.remote == "release": self.content.single = True - # Signal entities to refresh + # Signal frontend to refresh if self.data.installed: self.hacs.async_dispatch( HacsDispatchEvent.REPOSITORY, @@ -99,9 +110,9 @@ class HacsPluginRepository(HacsRepository): def update_filenames(self) -> None: """Get the filename to target.""" - # Handler for plug requirement 3 - if self.repository_manifest.filename: - valid_filenames = (self.repository_manifest.filename,) + content_in_root = self.repository_manifest.content_in_root + if specific_filename := self.repository_manifest.filename: + valid_filenames = (specific_filename,) else: valid_filenames = ( f"{self.data.name.replace('lovelace-', '')}.js", @@ -110,7 +121,7 @@ class HacsPluginRepository(HacsRepository): f"{self.data.name}-bundle.js", ) - if not self.repository_manifest.content_in_root: + if not content_in_root: if self.releases.objects: release = self.releases.objects[0] if release.assets: @@ -124,11 +135,106 @@ class HacsPluginRepository(HacsRepository): self.content.path.remote = "release" return - for location in ("",) if self.repository_manifest.content_in_root else ("dist", ""): - for filename in valid_filenames: - if f"{location+'/' if location else ''}{filename}" in [ - x.full_path for x in self.tree - ]: - self.data.file_name = filename.split("/")[-1] - self.content.path.remote = location - break + all_paths = {x.full_path for x in self.tree} + for filename in valid_filenames: + if filename in all_paths: + self.data.file_name = filename + self.content.path.remote = "" + return + if not content_in_root and f"dist/{filename}" in all_paths: + self.data.file_name = filename.split("/")[-1] + self.content.path.remote = "dist" + return + + def generate_dashboard_resource_hacstag(self) -> str: + """Get the HACS tag used by dashboard resources.""" + version = ( + self.display_installed_version + or self.data.selected_tag + or self.display_available_version + ) + return f"{self.data.id}{HACSTAG_REPLACER.sub('', version)}" + + def generate_dashboard_resource_namespace(self) -> str: + """Get the dashboard resource namespace.""" + return f"/hacsfiles/{self.data.full_name.split("/")[1]}" + + def generate_dashboard_resource_url(self) -> str: + """Get the dashboard resource namespace.""" + filename = self.data.file_name + if "/" in filename: + self.logger.warning("%s have defined an invalid file name %s", self.string, filename) + filename = filename.split("/")[-1] + return ( + f"{self.generate_dashboard_resource_namespace()}/{filename}" + f"?hacstag={self.generate_dashboard_resource_hacstag()}" + ) + + def _get_resource_handler(self) -> ResourceStorageCollection | None: + """Get the resource handler.""" + if not (hass_data := self.hacs.hass.data): + self.logger.error("%s Can not access the hass data", self.string) + return + + if (lovelace_data := hass_data.get("lovelace")) is None: + self.logger.warning("%s Can not access the lovelace integration data", self.string) + return + + resources: ResourceStorageCollection | None = lovelace_data.get("resources") + + if resources is None: + self.logger.warning("%s Can not access the dashboard resources", self.string) + return + + if not hasattr(resources, "store") or resources.store is None: + self.logger.info("%s YAML mode detected, can not update resources", self.string) + return + + if resources.store.key != "lovelace_resources" or resources.store.version != 1: + self.logger.warning("%s Can not use the dashboard resources", self.string) + return + + return resources + + async def update_dashboard_resources(self) -> None: + """Update dashboard resources.""" + if not (resources := self._get_resource_handler()): + return + + if not resources.loaded: + await resources.async_load() + + namespace = self.generate_dashboard_resource_namespace() + url = self.generate_dashboard_resource_url() + + for entry in resources.async_items(): + if (entry_url := entry["url"]).startswith(namespace): + if entry_url != url: + self.logger.info( + "%s Updating existing dashboard resource from %s to %s", + self.string, + entry_url, + url, + ) + await resources.async_update_item(entry["id"], {"url": url}) + return + + # Nothing was updated, add the resource + self.logger.info("%s Adding dashboard resource %s", self.string, url) + await resources.async_create_item({"res_type": "module", "url": url}) + + async def remove_dashboard_resources(self) -> None: + """Remove dashboard resources.""" + if not (resources := self._get_resource_handler()): + return + + if not resources.loaded: + await resources.async_load() + + namespace = self.generate_dashboard_resource_namespace() + + for entry in resources.async_items(): + if entry["url"].startswith(namespace): + self.logger.info("%s Removing dashboard resource %s", self.string, entry["url"]) + await resources.async_delete_item(entry["id"]) + return diff --git a/custom_components/hacs/repositories/python_script.py b/custom_components/hacs/repositories/python_script.py index b705655..abbb6a1 100644 --- a/custom_components/hacs/repositories/python_script.py +++ b/custom_components/hacs/repositories/python_script.py @@ -1,4 +1,5 @@ """Class for python_scripts in HACS.""" + from __future__ import annotations from typing import TYPE_CHECKING @@ -89,7 +90,7 @@ class HacsPythonScriptRepository(HacsRepository): # Update name self.update_filenames() - # Signal entities to refresh + # Signal frontend to refresh if self.data.installed: self.hacs.async_dispatch( HacsDispatchEvent.REPOSITORY, diff --git a/custom_components/hacs/repositories/theme.py b/custom_components/hacs/repositories/theme.py index 54d417f..bd90aa4 100644 --- a/custom_components/hacs/repositories/theme.py +++ b/custom_components/hacs/repositories/theme.py @@ -1,8 +1,11 @@ """Class for themes in HACS.""" + from __future__ import annotations from typing import TYPE_CHECKING +from homeassistant.exceptions import HomeAssistantError + from ..enums import HacsCategory, HacsDispatchEvent from ..exceptions import HacsException from ..utils.decorator import concurrent @@ -32,12 +35,7 @@ class HacsThemeRepository(HacsRepository): async def async_post_installation(self): """Run post installation steps.""" - try: - await self.hacs.hass.services.async_call("frontend", "reload_themes", {}) - except BaseException: # lgtm [py/catch-base-exception] pylint: disable=broad-except - pass - - self.hacs.async_setup_frontend_endpoint_themes() + await self._reload_frontend_themes() async def validate_repository(self): """Validate.""" @@ -74,6 +72,18 @@ class HacsThemeRepository(HacsRepository): if self.hacs.system.action: await self.hacs.validation.async_run_repository_checks(self) + async def _reload_frontend_themes(self) -> None: + """Reload frontend themes.""" + self.logger.debug("%s Reloading frontend themes", self.string) + try: + await self.hacs.hass.services.async_call("frontend", "reload_themes", {}) + except HomeAssistantError as exception: + self.logger.exception("%s %s", self.string, exception) + + async def async_post_uninstall(self) -> None: + """Run post uninstall steps.""" + await self._reload_frontend_themes() + @concurrent(concurrenttasks=10, backoff_time=5) async def update_repository(self, ignore_issues=False, force=False): """Update.""" @@ -88,7 +98,7 @@ class HacsThemeRepository(HacsRepository): self.update_filenames() self.content.path.local = self.localpath - # Signal entities to refresh + # Signal frontend to refresh if self.data.installed: self.hacs.async_dispatch( HacsDispatchEvent.REPOSITORY, diff --git a/custom_components/hacs/sensor.py b/custom_components/hacs/sensor.py deleted file mode 100644 index 0724782..0000000 --- a/custom_components/hacs/sensor.py +++ /dev/null @@ -1,62 +0,0 @@ -"""Sensor platform for HACS.""" -from __future__ import annotations - -from typing import TYPE_CHECKING - -from homeassistant.components.sensor import SensorEntity -from homeassistant.core import callback - -if TYPE_CHECKING: - from .base import HacsBase - -from .const import DOMAIN -from .entity import HacsSystemEntity -from .enums import ConfigurationType - - -async def async_setup_platform(hass, _config, async_add_entities, _discovery_info=None): - """Setup sensor platform.""" - async_add_entities([HACSSensor(hacs=hass.data.get(DOMAIN))]) - - -async def async_setup_entry(hass, _config_entry, async_add_devices): - """Setup sensor platform.""" - hacs: HacsBase = hass.data.get(DOMAIN) - if hacs.configuration.experimental: - return - - async_add_devices([HACSSensor(hacs=hass.data.get(DOMAIN))]) - - -class HACSSensor(HacsSystemEntity, SensorEntity): - """HACS Sensor class.""" - - _attr_name = "hacs" - _attr_native_unit_of_measurement = "pending update(s)" - _attr_native_value = None - - @callback - def _update(self) -> None: - """Update the sensor.""" - - repositories = [ - repository - for repository in self.hacs.repositories.list_all - if repository.pending_update - ] - self._attr_native_value = len(repositories) - if ( - self.hacs.configuration.config_type == ConfigurationType.YAML - or not self.hacs.configuration.experimental - ): - self._attr_extra_state_attributes = { - "repositories": [ - { - "name": repository.data.full_name, - "display_name": repository.display_name, - "installed_version": repository.display_installed_version, - "available_version": repository.display_available_version, - } - for repository in repositories - ] - } diff --git a/custom_components/hacs/system_health.py b/custom_components/hacs/system_health.py index 008016d..2081c37 100644 --- a/custom_components/hacs/system_health.py +++ b/custom_components/hacs/system_health.py @@ -1,4 +1,7 @@ """Provide info to system health.""" + +from typing import Any + from aiogithubapi.common.const import BASE_API_URL from homeassistant.components import system_health from homeassistant.core import HomeAssistant, callback @@ -17,8 +20,11 @@ def async_register(hass: HomeAssistant, register: system_health.SystemHealthRegi register.async_register_info(system_health_info, "/hacs") -async def system_health_info(hass): +async def system_health_info(hass: HomeAssistant) -> dict[str, Any]: """Get info for the info page.""" + if DOMAIN not in hass.data: + return {"Disabled": "HACS is not loaded, but HA still requests this information..."} + hacs: HacsBase = hass.data[DOMAIN] response = await hacs.githubapi.rate_limit() @@ -30,6 +36,9 @@ async def system_health_info(hass): "GitHub Web": system_health.async_check_can_reach_url( hass, "https://github.com/", GITHUB_STATUS ), + "HACS Data": system_health.async_check_can_reach_url( + hass, "https://data-v2.hacs.xyz/data.json", CLOUDFLARE_STATUS + ), "GitHub API Calls Remaining": response.data.resources.core.remaining, "Installed Version": hacs.version, "Stage": hacs.stage, @@ -40,9 +49,4 @@ async def system_health_info(hass): if hacs.system.disabled: data["Disabled"] = hacs.system.disabled_reason - if hacs.configuration.experimental: - data["HACS Data"] = system_health.async_check_can_reach_url( - hass, "https://data-v2.hacs.xyz/data.json", CLOUDFLARE_STATUS - ) - return data diff --git a/custom_components/hacs/translations/en.json b/custom_components/hacs/translations/en.json index ef4b3ed..6385bcd 100644 --- a/custom_components/hacs/translations/en.json +++ b/custom_components/hacs/translations/en.json @@ -17,8 +17,7 @@ "acc_logs": "I know how to access Home Assistant logs", "acc_addons": "I know that there are no add-ons in HACS", "acc_untested": "I know that everything inside HACS including HACS itself is custom and untested by Home Assistant", - "acc_disable": "I know that if I get issues with Home Assistant I should disable all my custom_components", - "experimental": "Enable experimental features, this is what eventually will become HACS 2.0.0, if you enable it now you do not need to do anything when 2.0.0 is released" + "acc_disable": "I know that if I get issues with Home Assistant I should disable all my custom_components" }, "description": "Before you can setup HACS you need to acknowledge the following" }, @@ -45,11 +44,9 @@ "data": { "not_in_use": "Not in use with YAML", "country": "Filter with country code", - "experimental": "Enable experimental features", "release_limit": "Number of releases to show", "debug": "Enable debug", "appdaemon": "Enable AppDaemon apps discovery & tracking", - "netdaemon": "[DEPRECATED] Enable NetDaemon apps discovery & tracking", "sidepanel_icon": "Side panel icon", "sidepanel_title": "Side panel title" } @@ -71,10 +68,17 @@ "removed": { "title": "Repository removed from HACS", "description": "Because {reason}, `{name}` has been removed from HACS. Please visit the [HACS Panel](/hacs/repository/{repositry_id}) to remove it." - }, - "deprecated_yaml_configuration": { - "title": "YAML configuration is deprecated", - "description": "YAML configuration of HACS is deprecated and will be removed in version 2.0.0, there will be no automatic import of this.\nPlease remove it from your configuration, restart Home Assistant and use the UI to configure it instead." + } + }, + "entity": { + "switch": { + "pre-release": { + "name": "Pre-release", + "state": { + "off": "No pre-releases", + "on": "Pre-releases preferred" + } + } } } } \ No newline at end of file diff --git a/custom_components/hacs/update.py b/custom_components/hacs/update.py index 163aed5..ce8a0b2 100644 --- a/custom_components/hacs/update.py +++ b/custom_components/hacs/update.py @@ -1,24 +1,28 @@ """Update entities for HACS.""" + from __future__ import annotations from typing import Any from homeassistant.components.update import UpdateEntity, UpdateEntityFeature -from homeassistant.core import HomeAssistantError, callback +from homeassistant.config_entries import ConfigEntry +from homeassistant.core import HomeAssistant, HomeAssistantError, callback from homeassistant.helpers.dispatcher import async_dispatcher_connect +from homeassistant.helpers.entity_platform import AddEntitiesCallback from .base import HacsBase from .const import DOMAIN from .entity import HacsRepositoryEntity from .enums import HacsCategory, HacsDispatchEvent from .exceptions import HacsException -from .repositories.base import HacsManifest -async def async_setup_entry(hass, _config_entry, async_add_devices): +async def async_setup_entry( + hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback +) -> None: """Setup update platform.""" - hacs: HacsBase = hass.data.get(DOMAIN) - async_add_devices( + hacs: HacsBase = hass.data[DOMAIN] + async_add_entities( HacsRepositoryUpdateEntity(hacs=hacs, repository=repository) for repository in hacs.repositories.list_downloaded ) @@ -59,8 +63,6 @@ class HacsRepositoryUpdateEntity(HacsRepositoryEntity, UpdateEntity): @property def release_summary(self) -> str | None: """Return the release summary.""" - if not self.repository.can_download: - return f"Requires Home Assistant {self.repository.repository_manifest.homeassistant}" if self.repository.pending_restart: return "Restart of Home Assistant required" return None @@ -76,64 +78,20 @@ class HacsRepositoryUpdateEntity(HacsRepositoryEntity, UpdateEntity): return f"https://brands.home-assistant.io/_/{self.repository.data.domain}/icon.png" - async def _ensure_capabilities(self, version: str | None, **kwargs: Any) -> None: - """Ensure that the entity has capabilities.""" - target_manifest: HacsManifest | None = None - if version is None: - if not self.repository.can_download: - raise HomeAssistantError( - f"This {self.repository.data.category.value} is not available for download." - ) - return - - if version == self.repository.data.last_version: - target_manifest = self.repository.repository_manifest - else: - target_manifest = await self.repository.get_hacs_json(version=version) - - if target_manifest is None: - raise HomeAssistantError( - f"The version {version} for this {self.repository.data.category.value} can not be used with HACS." - ) - - if ( - target_manifest.homeassistant is not None - and self.hacs.core.ha_version < target_manifest.homeassistant - ): - raise HomeAssistantError( - f"This version requires Home Assistant {target_manifest.homeassistant} or newer." - ) - if target_manifest.hacs is not None and self.hacs.version < target_manifest.hacs: - raise HomeAssistantError(f"This version requires HACS {target_manifest.hacs} or newer.") - async def async_install(self, version: str | None, backup: bool, **kwargs: Any) -> None: """Install an update.""" - await self._ensure_capabilities(version) - self.repository.logger.info("Starting update, %s", version) - if self.repository.display_version_or_commit == "version": - self._update_in_progress(progress=10) - if not version: - await self.repository.update_repository(force=True) - else: - self.repository.ref = version - self.repository.data.selected_tag = version - self.repository.force_branch = version is not None - self._update_in_progress(progress=20) - + to_download = version or self.latest_version + if to_download == self.installed_version: + raise HomeAssistantError(f"Version {self.installed_version} of { + self.repository.data.full_name} is already downloaded") try: - await self.repository.async_install(version=version) + await self.repository.async_download_repository(ref=version or self.latest_version) except HacsException as exception: - raise HomeAssistantError( - f"Downloading {self.repository.data.full_name} with version {version or self.repository.data.last_version or self.repository.data.last_commit} failed with ({exception})" - ) from exception - finally: - self.repository.data.selected_tag = None - self.repository.force_branch = False - self._update_in_progress(progress=False) + raise HomeAssistantError(exception) from exception async def async_release_notes(self) -> str | None: """Return the release notes.""" - if self.repository.pending_restart or not self.repository.can_download: + if self.repository.pending_restart: return None if self.latest_version not in self.repository.data.published_tags: @@ -148,9 +106,18 @@ class HacsRepositoryUpdateEntity(HacsRepositoryEntity, UpdateEntity): self.repository.data.last_version = next(iter(self.repository.data.published_tags)) release_notes = "" - if len(self.repository.releases.objects) > 0: - release = self.repository.releases.objects[0] - release_notes += release.body + # Compile release notes from installed version up to the latest + if self.installed_version in self.repository.data.published_tags: + for release in self.repository.releases.objects: + if release.tag_name == self.installed_version: + break + release_notes += f"# {release.tag_name}" + if release.tag_name != release.name: + release_notes += f" - {release.name}" + release_notes += f"\n\n{release.body}" + release_notes += "\n\n---\n\n" + elif any(self.repository.releases.objects): + release_notes += self.repository.releases.objects[0].body if self.repository.pending_update: if self.repository.data.category == HacsCategory.INTEGRATION: diff --git a/custom_components/hacs/utils/backup.py b/custom_components/hacs/utils/backup.py index 3f78558..0c64bfc 100644 --- a/custom_components/hacs/utils/backup.py +++ b/custom_components/hacs/utils/backup.py @@ -1,4 +1,5 @@ """Backup.""" + from __future__ import annotations import os @@ -27,7 +28,7 @@ class Backup: backup_path: str = DEFAULT_BACKUP_PATH, repository: HacsRepository | None = None, ) -> None: - """initialize.""" + """Initialize.""" self.hacs = hacs self.repository = repository self.local_path = local_path or repository.content.path.local @@ -107,33 +108,3 @@ class Backup: while os.path.exists(self.backup_path): sleep(0.1) self.hacs.log.debug("Backup dir %s cleared", self.backup_path) - - -class BackupNetDaemon(Backup): - """BackupNetDaemon.""" - - def create(self) -> None: - """Create a backup in /tmp""" - if not self._init_backup_dir(): - return - - for filename in os.listdir(self.repository.content.path.local): - if not filename.endswith(".yaml"): - continue - - source_file_name = f"{self.repository.content.path.local}/{filename}" - target_file_name = f"{self.backup_path}/{filename}" - shutil.copyfile(source_file_name, target_file_name) - - def restore(self) -> None: - """Create a backup in /tmp""" - if not os.path.exists(self.backup_path): - return - - for filename in os.listdir(self.backup_path): - if not filename.endswith(".yaml"): - continue - - source_file_name = f"{self.backup_path}/{filename}" - target_file_name = f"{self.repository.content.path.local}/{filename}" - shutil.copyfile(source_file_name, target_file_name) diff --git a/custom_components/hacs/utils/configuration_schema.py b/custom_components/hacs/utils/configuration_schema.py index 268fc4c..b003bf7 100644 --- a/custom_components/hacs/utils/configuration_schema.py +++ b/custom_components/hacs/utils/configuration_schema.py @@ -1,74 +1,9 @@ """HACS Configuration Schemas.""" -# pylint: disable=dangerous-default-value -import voluptuous as vol - -from ..const import LOCALE # Configuration: -TOKEN = "token" SIDEPANEL_TITLE = "sidepanel_title" SIDEPANEL_ICON = "sidepanel_icon" -FRONTEND_REPO = "frontend_repo" -FRONTEND_REPO_URL = "frontend_repo_url" APPDAEMON = "appdaemon" -NETDAEMON = "netdaemon" # Options: COUNTRY = "country" -DEBUG = "debug" -RELEASE_LIMIT = "release_limit" -EXPERIMENTAL = "experimental" - -# Config group -PATH_OR_URL = "frontend_repo_path_or_url" - - -def hacs_base_config_schema(config: dict = {}) -> dict: - """Return a shcema configuration dict for HACS.""" - if not config: - config = { - TOKEN: "xxxxxxxxxxxxxxxxxxxxxxxxxxx", - } - return { - vol.Required(TOKEN, default=config.get(TOKEN)): str, - } - - -def hacs_config_option_schema(options: dict = {}) -> dict: - """Return a shcema for HACS configuration options.""" - if not options: - options = { - APPDAEMON: False, - COUNTRY: "ALL", - DEBUG: False, - EXPERIMENTAL: False, - NETDAEMON: False, - RELEASE_LIMIT: 5, - SIDEPANEL_ICON: "hacs:hacs", - SIDEPANEL_TITLE: "HACS", - FRONTEND_REPO: "", - FRONTEND_REPO_URL: "", - } - return { - vol.Optional(SIDEPANEL_TITLE, default=options.get(SIDEPANEL_TITLE)): str, - vol.Optional(SIDEPANEL_ICON, default=options.get(SIDEPANEL_ICON)): str, - vol.Optional(RELEASE_LIMIT, default=options.get(RELEASE_LIMIT)): int, - vol.Optional(COUNTRY, default=options.get(COUNTRY)): vol.In(LOCALE), - vol.Optional(APPDAEMON, default=options.get(APPDAEMON)): bool, - vol.Optional(NETDAEMON, default=options.get(NETDAEMON)): bool, - vol.Optional(DEBUG, default=options.get(DEBUG)): bool, - vol.Optional(EXPERIMENTAL, default=options.get(EXPERIMENTAL)): bool, - vol.Exclusive(FRONTEND_REPO, PATH_OR_URL): str, - vol.Exclusive(FRONTEND_REPO_URL, PATH_OR_URL): str, - } - - -def hacs_config_combined() -> dict: - """Combine the configuration options.""" - base = hacs_base_config_schema() - options = hacs_config_option_schema() - - for option in options: - base[option] = options[option] - - return base diff --git a/custom_components/hacs/utils/data.py b/custom_components/hacs/utils/data.py index 12e9db7..7b548d9 100644 --- a/custom_components/hacs/utils/data.py +++ b/custom_components/hacs/utils/data.py @@ -1,13 +1,13 @@ """Data handler for HACS.""" + from __future__ import annotations import asyncio -from datetime import datetime +from datetime import UTC, datetime from typing import Any from homeassistant.core import callback from homeassistant.exceptions import HomeAssistantError -from homeassistant.util import json as json_util from ..base import HacsBase from ..const import HACS_REPOSITORY_ID @@ -47,6 +47,7 @@ EXPORTED_DOWNLOADED_REPOSITORY_DATA = EXPORTED_REPOSITORY_DATA + ( ("last_version", None), ("manifest_name", None), ("open_issues", 0), + ("prerelease", None), ("published_tags", []), ("releases", False), ("selected_tag", None), @@ -84,8 +85,7 @@ class HacsData: "ignored_repositories": self.hacs.common.ignored_repositories, }, ) - if self.hacs.configuration.experimental: - await self._async_store_experimental_content_and_repos() + await self._async_store_experimental_content_and_repos() await self._async_store_content_and_repos() async def _async_store_content_and_repos(self, _=None): # bb: ignore @@ -100,7 +100,7 @@ class HacsData: for event in (HacsDispatchEvent.REPOSITORY, HacsDispatchEvent.CONFIG): self.hacs.async_dispatch(event, {}) - async def _async_store_experimental_content_and_repos(self, _=None): # bb: ignore + async def _async_store_experimental_content_and_repos(self, _=None): """Store the main repos file and each repo that is out of date.""" # Repositories self.content = {} @@ -165,29 +165,16 @@ class HacsData: pass try: - data = ( - await async_load_from_store( - self.hacs.hass, - "data" if self.hacs.configuration.experimental else "repositories", - ) - or {} - ) - if data and self.hacs.configuration.experimental: + repositories = await async_load_from_store(self.hacs.hass, "repositories") + if not repositories and (data := await async_load_from_store(self.hacs.hass, "data")): for category, entries in data.get("repositories", {}).items(): for repository in entries: repositories[repository["id"]] = {"category": category, **repository} - else: - repositories = ( - data or await async_load_from_store(self.hacs.hass, "repositories") or {} - ) + except HomeAssistantError as exception: self.hacs.log.error( "Could not read %s, restore the file from a backup - %s", - self.hacs.hass.config.path( - ".storage/hacs.data" - if self.hacs.configuration.experimental - else ".storage/hacs.repositories" - ), + self.hacs.hass.config.path(".storage/hacs.data"), exception, ) self.hacs.disable_hacs(HacsDisabledReason.RESTORE) @@ -196,13 +183,7 @@ class HacsData: if not hacs and not repositories: # Assume new install self.hacs.status.new = True - if self.hacs.configuration.experimental: - return True - self.logger.info(" Loading base repository information") - repositories = await self.hacs.hass.async_add_executor_job( - json_util.load_json, - f"{self.hacs.core.config_path}/custom_components/hacs/utils/default.repositories", - ) + return True self.logger.info(" Restore started") @@ -242,7 +223,8 @@ class HacsData: self.logger.info(" Restore done") except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except + # lgtm [py/catch-base-exception] pylint: disable=broad-except + BaseException ) as exception: self.logger.critical( " [%s] Restore Failed!", exception, exc_info=exception @@ -250,22 +232,28 @@ class HacsData: return False return True - async def register_unknown_repositories(self, repositories, category: str | None = None): + async def register_unknown_repositories( + self, repositories: dict[str, dict[str, Any]], category: str | None = None + ): """Registry any unknown repositories.""" - register_tasks = [ - self.hacs.async_register_repository( + for repo_idx, (entry, repo_data) in enumerate(repositories.items()): + # async_register_repository is awaited in a loop + # since its unlikely to ever suspend at startup + if ( + entry == "0" + or repo_data.get("category", category) is None + or self.hacs.repositories.is_registered(repository_id=entry) + ): + continue + await self.hacs.async_register_repository( repository_full_name=repo_data["full_name"], category=repo_data.get("category", category), check=False, repository_id=entry, ) - for entry, repo_data in repositories.items() - if entry != "0" - and not self.hacs.repositories.is_registered(repository_id=entry) - and repo_data.get("category", category) is not None - ] - if register_tasks: - await asyncio.gather(*register_tasks) + if repo_idx % 100 == 0: + # yield to avoid blocking the event loop + await asyncio.sleep(0) @callback def async_restore_repository(self, entry: str, repository_data: dict[str, Any]): @@ -302,18 +290,22 @@ class HacsData: repository.data.selected_tag = repository_data.get("selected_tag") repository.data.show_beta = repository_data.get("show_beta", False) repository.data.last_version = repository_data.get("last_version") + repository.data.prerelease = repository_data.get("prerelease") repository.data.last_commit = repository_data.get("last_commit") repository.data.installed_version = repository_data.get("version_installed") repository.data.installed_commit = repository_data.get("installed_commit") repository.data.manifest_name = repository_data.get("manifest_name") if last_fetched := repository_data.get("last_fetched"): - repository.data.last_fetched = datetime.fromtimestamp(last_fetched) + repository.data.last_fetched = datetime.fromtimestamp(last_fetched, UTC) repository.repository_manifest = HacsManifest.from_dict( repository_data.get("manifest") or repository_data.get("repository_manifest") or {} ) + if repository.data.prerelease == repository.data.last_version: + repository.data.prerelease = None + if repository.localpath is not None and is_safe(self.hacs, repository.localpath): # Set local path repository.content.path.local = repository.localpath diff --git a/custom_components/hacs/utils/decode.py b/custom_components/hacs/utils/decode.py index 9d42516..708f22f 100644 --- a/custom_components/hacs/utils/decode.py +++ b/custom_components/hacs/utils/decode.py @@ -1,4 +1,5 @@ """Util to decode content from the github API.""" + from base64 import b64decode diff --git a/custom_components/hacs/utils/decorator.py b/custom_components/hacs/utils/decorator.py index 4cf9c69..7c5e76a 100644 --- a/custom_components/hacs/utils/decorator.py +++ b/custom_components/hacs/utils/decorator.py @@ -1,9 +1,11 @@ """HACS Decorators.""" + from __future__ import annotations import asyncio +from collections.abc import Coroutine from functools import wraps -from typing import TYPE_CHECKING, Any, Coroutine +from typing import TYPE_CHECKING, Any from ..const import DEFAULT_CONCURRENT_BACKOFF_TIME, DEFAULT_CONCURRENT_TASKS diff --git a/custom_components/hacs/utils/default.repositories b/custom_components/hacs/utils/default.repositories deleted file mode 100644 index 56cb46a..0000000 --- a/custom_components/hacs/utils/default.repositories +++ /dev/null @@ -1 +0,0 @@ -{"343112953": {"repository_manifest": {"name": "Kodi Search Card", "render_readme": true, "filename": "kodi-search-card.js"}, "full_name": "jtbgroup/kodi-search-card", "category": "plugin", "description": "Custom card for home assistant allowing to search in the libraries of kodi", "downloads": 638, "etag_repository": "W/\"b8e841ba441fabe3a20ffe2b027e9328c99df117d0121621f09d9cff81dea306\"", "last_updated": "2023-04-21T02:41:58Z", "stargazers_count": 8, "topics": ["kodi", "kodi-media-sensors"], "last_fetched": 1695553540.881705, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "217374413": {"repository_manifest": {"name": "Halloween Theme"}, "full_name": "home-assistant-community-themes/halloween", "category": "theme", "description": "Halloween theme for Home Assistant", "etag_repository": "W/\"1aff822ea25fa65b48debce7fe85d09ddd7d21edf2d9189a5222587121d08ea3\"", "last_updated": "2023-03-27T19:57:15Z", "stargazers_count": 2, "last_fetched": 1695553498.472384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151280062": {"repository_manifest": {"name": "mini-graph-card", "render_readme": true}, "full_name": "kalkih/mini-graph-card", "category": "plugin", "description": "Minimalistic graph card for Home Assistant Lovelace UI", "downloads": 238177, "etag_repository": "W/\"4947802cf2ff3406780b10b7607ac1af243f04b166050a423aa86b3662e9ec1b\"", "last_updated": "2023-09-11T02:23:48Z", "stargazers_count": 2460, "topics": ["automation", "custom", "graph"], "last_fetched": 1695553541.284354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "148520838": {"repository_manifest": {}, "full_name": "kalkih/mini-media-player", "category": "plugin", "description": "Minimalistic media card for Home Assistant Lovelace UI", "downloads": 98978, "etag_repository": "W/\"c7ed58c4441c013eb85400062b6cd5e70045f76d2b0f49723848b76f831d2e0a\"", "last_updated": "2023-06-18T20:10:04Z", "stargazers_count": 1320, "topics": ["automation", "custom", "sonos"], "last_fetched": 1695553541.073296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363428919": {"repository_manifest": {"name": "Plex Meets Home Assistant", "render_readme": true, "filename": "plex-meets-homeassistant.js"}, "full_name": "JurajNyiri/PlexMeetsHomeAssistant", "category": "plugin", "description": "Custom card which integrates plex into Home Assistant and makes it possible to launch movies or tv shows on TV with a simple click", "etag_repository": "W/\"5f9273ded9dd5496fa2a2e7f817e794d266dac9cd406e2bdd785fde704692072\"", "last_updated": "2023-08-23T11:49:14Z", "stargazers_count": 86, "topics": ["adb", "androidtv", "hacktoberfest2021", "homeassistant-custom-component", "kodi", "plex", "plexmediaserver", "tv"], "last_fetched": 1695553540.910531, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221287384": {"repository_manifest": {"name": "Clear Theme", "homeassistant": "0.102.0"}, "full_name": "naofireblade/clear-theme", "category": "theme", "description": "Clear Theme for Home Assistant", "etag_repository": "W/\"747acd3e2f1b211445a09953c22d103f133d8e42d8ea0e60dff3e0dfbd568bf8\"", "last_updated": "2020-10-08T10:10:49Z", "stargazers_count": 20, "last_fetched": 1695553503.231576, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075899": {"repository_manifest": {"name": "Grey Night Theme"}, "full_name": "home-assistant-community-themes/grey-night", "category": "theme", "description": "Grey Night theme for Home Assistant", "etag_repository": "W/\"154be526d097ab46c42d3b34adf628169c7a2e9307c6bc2821fb432eb96b9040\"", "last_updated": "2023-03-22T10:58:13Z", "stargazers_count": 4, "last_fetched": 1695553498.439168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257275420": {"repository_manifest": {"name": "OpenMediaVault", "homeassistant": "2022.2.0", "zip_release": true, "filename": "openmediavault.zip"}, "full_name": "tomaae/homeassistant-openmediavault", "authors": ["@tomaae"], "category": "integration", "description": "OpenMediaVault integration for Home Assistant", "domain": "openmediavault", "downloads": 1265, "etag_repository": "W/\"1c9c5aee8a397842b27fff83f6f059d5cecbe86a459800aa7f8ae0052d980b35\"", "last_updated": "2023-09-18T09:19:01Z", "stargazers_count": 81, "topics": ["omv", "openmediavault"], "last_fetched": 1695554183.709745, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320117484": {"repository_manifest": {"name": "Vibrant (Dark) Clear Theme", "homeassistant": "0.109.0"}, "full_name": "myleskeeffe/clear-theme-dark-vibrant", "category": "theme", "description": "Vibrant (Dark) Version of Clear Theme", "etag_repository": "W/\"868ada08e4d8c7991d4e6b0a9df071745f65a678fde94b1996bd0040bc3eec27\"", "last_updated": "2021-02-10T10:21:44Z", "stargazers_count": 2, "topics": ["clear", "dark", "vibrant"], "last_fetched": 1695553502.63408, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225969186": {"repository_manifest": {"name": "Aqua Fiesta Theme"}, "full_name": "home-assistant-community-themes/aqua-fiesta", "category": "theme", "description": "Aqua Fiesta theme for Home Assistant", "etag_repository": "W/\"4e6b7e9d1f73e0d052453bb347866efc9bb55bfed9f28656c6a34a420c58ece5\"", "last_updated": "2023-05-29T09:57:07Z", "stargazers_count": 4, "last_fetched": 1695553496.637853, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413798425": {"repository_manifest": {"name": "UI Lovelace Minimalist", "render_readme": true, "homeassistant": "2023.5.0", "zip_release": true, "filename": "ui_lovelace_minimalist.zip"}, "full_name": "UI-Lovelace-Minimalist/UI", "authors": ["@stokkie90"], "category": "integration", "description": "UI-Lovelace-Minimalist is a \"theme\" for HomeAssistant", "domain": "ui_lovelace_minimalist", "downloads": 26648, "etag_repository": "W/\"7f41f32d4a13380a1eee393499db081ad218095d22d9d5c87b12fc58dd24effb\"", "last_updated": "2023-09-15T20:17:05Z", "stargazers_count": 1270, "last_fetched": 1695554190.742996, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524730333": {"repository_manifest": {"name": "Team Tracker", "homeassistant": "0.95.4", "render_readme": true}, "full_name": "vasqued2/ha-teamtracker", "authors": ["@vasqued2"], "category": "integration", "description": "Home Assistant integration that provides real-time scores in multiple professional (NBA, NFL, NHL, MLB, MLS, and more), college (NCAA), and international (soccer, golf, tennis, mma, racing) sports using ESPN APIs.", "domain": "teamtracker", "etag_repository": "W/\"1a372300c46895f11dffbb11230b063717bc507a680176a4d84750c6a65dbd07\"", "last_updated": "2023-07-19T00:17:18Z", "stargazers_count": 88, "topics": ["afl", "atp", "baseball", "basketball", "espn", "football", "hockey", "mlb", "mls", "nba", "ncaa", "nfl", "nhl", "pga", "soccer", "teamtracker", "ufc", "volleyball", "wta"], "last_fetched": 1695554192.774098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266779715": {"repository_manifest": {"name": "Yahoo Finance", "render_readme": true}, "full_name": "iprak/yahoofinance", "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component which allows you to get stock updates from Yahoo finance.", "domain": "yahoofinance", "etag_repository": "W/\"70ca6c269b47ba6462c4804d1657c4f46301d5502e3dbbfaeca5728cb55b147c\"", "last_updated": "2023-06-22T10:14:09Z", "stargazers_count": 56, "topics": ["stock-updates", "yahoo-finance"], "last_fetched": 1695553663.813191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442878365": {"repository_manifest": {"name": "Golden Security Alarm", "render_readme": true}, "full_name": "hostcc/hass-gs-alarm", "authors": ["@hostcc"], "category": "integration", "description": "Custom Home Assistant integration for G90 security systems", "domain": "gs_alarm", "etag_repository": "W/\"3ce051e26ab3735388051100f98426e135d22aa5b5cfa6c1bb21188c322fbec9\"", "last_updated": "2023-01-05T19:40:44Z", "stargazers_count": 1, "topics": ["alarm", "alarm-panel"], "last_fetched": 1695553661.123498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316527506": {"repository_manifest": {"name": "Winix Purifier", "render_readme": true}, "full_name": "iprak/winix", "authors": ["@iprak"], "category": "integration", "description": "Home Assistant component for C545 Winix Air Purifier", "domain": "winix", "etag_repository": "W/\"4abc59f025e30187befb3aae3e1b201770343def1387b525d9875781f203710f\"", "last_updated": "2023-06-22T10:09:24Z", "stargazers_count": 70, "topics": ["purifier", "winix"], "last_fetched": 1695553663.569499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012483": {"repository_manifest": {"name": "Livebox TV UHD", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "AkA57/liveboxtvuhd", "authors": ["@AkA57"], "category": "integration", "description": "Livebox TV UHD custom component for Home Assistant", "domain": "liveboxtvuhd", "etag_repository": "W/\"eec36aa33bb92e4cd697096c6b6c0304a6310f00cb30abf2f663e518fd989620\"", "last_updated": "2023-06-02T20:41:22Z", "stargazers_count": 22, "topics": ["livebox"], "last_fetched": 1695553573.456544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216183299": {"repository_manifest": {"name": "Material Dark Pink Theme"}, "full_name": "home-assistant-community-themes/material-dark-pink", "category": "theme", "description": "Material Dark Pink theme for Home Assistant", "etag_repository": "W/\"13b5b8d0ba4757edaa5d12276f9b3b08eae020e9218b85392ff9d7e28e5bf77c\"", "last_updated": "2023-03-27T19:57:38Z", "stargazers_count": 3, "last_fetched": 1695553498.466225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "617699018": {"repository_manifest": {"name": "EIA Hourly Demand"}, "full_name": "hokiebrian/eia_hourly_demand", "authors": ["@hokiebrian"], "category": "integration", "description": "Home Assistant Component to retrieve Hourly Energy Demand Data from EIA by Balancing Authority", "domain": "eia_hourly_demand", "etag_repository": "W/\"81521211853a464bf4ad4cc99405416b0bddd7ff30935282b03cdf1afd08ce0d\"", "last_updated": "2023-07-10T08:13:12Z", "stargazers_count": 4, "topics": ["eia", "energy", "energy-monitor", "homeassistant-custom-component", "megawatts"], "last_fetched": 1695553659.008191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402612874": {"repository_manifest": {"name": "WeatherAPI", "render_readme": true}, "full_name": "iprak/weatherapi", "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant custom integration to fetch data from weatherapi", "domain": "weatherapi", "etag_repository": "W/\"9ef7ff875c0f1532772de31b74ec3b5fbfc0fa273c8a0084e951a38220eca82b\"", "last_updated": "2023-09-09T19:55:08Z", "stargazers_count": 8, "topics": ["custom", "weather", "weatherapi"], "last_fetched": 1695553663.726676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577080457": {"repository_manifest": {"name": "Sensi", "render_readme": true}, "full_name": "iprak/sensi", "authors": ["@iprak"], "category": "integration", "description": "HomeAssistant integration for Sensi thermostat", "domain": "sensi", "etag_repository": "W/\"38e207c10b8b48dce216d834c24ccdd4bf94476de7be8ae4c90045173279ac0f\"", "last_updated": "2023-09-19T10:15:44Z", "stargazers_count": 9, "topics": ["sensi"], "last_fetched": 1695553664.375533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191831638": {"repository_manifest": {"name": "Meross Integration", "hacs": "1.6.0", "homeassistant": "2022.6"}, "full_name": "albertogeniola/meross-homeassistant", "authors": ["@albertogeniola"], "category": "integration", "description": "Custom component that leverages the Meross IoT library to integrate with Homeassistant", "domain": "meross_cloud", "etag_repository": "W/\"742abed178d888d55434b0fa7e40f7f613b1fcbd2bfaeee92118cbfd144100eb\"", "last_updated": "2023-09-18T08:21:56Z", "stargazers_count": 576, "topics": ["meross", "meross-homeassistant"], "last_fetched": 1695553574.196883, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235057110": {"repository_manifest": {"name": "Material Dark Red Theme"}, "full_name": "home-assistant-community-themes/material-dark-red", "category": "theme", "description": "Material Dark Red theme for Home Assistant", "etag_repository": "W/\"ac0c790fe2800866ca3d16c17dc3260ce9b8d2ad5c21824c4d0800d5deecaf66\"", "last_updated": "2023-03-22T23:57:27Z", "stargazers_count": 3, "last_fetched": 1695553498.563978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318182014": {"repository_manifest": {"name": "Xiaomi Miot Auto", "zip_release": true, "filename": "xiaomi_miot.zip", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "al-one/hass-xiaomi-miot", "authors": ["@al-one"], "category": "integration", "description": "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices. \u5c0f\u7c73\u7c73\u5bb6\u667a\u80fd\u5bb6\u5c45\u8bbe\u5907\u63a5\u5165Hass\u96c6\u6210", "domain": "xiaomi_miot", "downloads": 7252, "etag_repository": "W/\"1333c1f314a14b95be73bf4bc0ee51c31db63bdc586970e21bf227396e3729bf\"", "last_updated": "2023-09-20T05:50:48Z", "stargazers_count": 3011, "topics": ["iot", "miio", "miot", "miot-spec", "xiaoai", "xiaomi", "xiaomi-miot"], "last_fetched": 1695553574.155528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153870340": {"repository_manifest": {"name": "Harmony Hub Climate Controller", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "nickneos/HA_harmony_climate_component", "category": "integration", "description": "\u2744 Use a Harmony Hub to control an IR controlled climate device", "domain": "harmony_ac", "etag_repository": "W/\"69ce6ec9422eed5b44f92cd5907b628daae6cc6c0200f34fb2aa4825d76b6dfb\"", "last_updated": "2023-06-22T06:49:29Z", "stargazers_count": 25, "topics": ["air-conditioner", "climate", "harmony", "hvac"], "last_fetched": 1695554134.192468, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489457357": {"repository_manifest": {"name": "Minimalistic Area Card", "render_readme": true, "filename": "minimalistic-area-card.js"}, "full_name": "junalmeida/homeassistant-minimalistic-area-card", "category": "plugin", "description": "A minimalistic area card with sensors and buttons.", "downloads": 6249, "etag_repository": "W/\"43e58f8cebf031f48c17bdce3417fab3215578a544c56a20ce8e713b0b965b9f\"", "last_updated": "2023-09-05T06:41:30Z", "stargazers_count": 68, "topics": ["area-card"], "last_fetched": 1695553540.846107, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204700563": {"repository_manifest": {"name": "Momentary Switch Component"}, "full_name": "twrecked/hass-momentary", "authors": ["@sherrell"], "category": "integration", "description": "Momentary Switch Component for Home Assistant", "domain": "momentary", "etag_repository": "W/\"2160677dee987fc8fadf25ff93dc7d6ae72acf017d5b1de3d66ac78449d1ff1f\"", "last_updated": "2023-01-21T01:53:05Z", "stargazers_count": 36, "last_fetched": 1695554190.151405, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313850121": {"repository_manifest": {"name": "Xiaomi Miio For Yeelink", "render_readme": true}, "full_name": "al-one/hass-miio-yeelink", "authors": ["@al-one"], "category": "integration", "description": "Xiaomi Miio Yeelink/Yeelight devices for Home Assistant", "domain": "miio_yeelink", "downloads": 148, "etag_repository": "W/\"faee97b4976f1dd8942cf73773e3b3607576cf51b1ed720ab4019542e1ff1c4e\"", "last_updated": "2023-06-11T13:00:06Z", "stargazers_count": 152, "topics": ["miio", "miot", "xiaomi", "yeelight", "yeelink"], "last_fetched": 1695553573.747617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292621909": {"repository_manifest": {"name": "Windows 10 themes", "render_readme": true}, "full_name": "mikosoft83/hass-windows10-themes", "category": "theme", "description": "Home Assistant Windows 10 inspired themes", "etag_repository": "W/\"93afaf5ae5ca14b77f8b2b750ae1c0c65ecc23b156c3ed06d796629e07b1d83b\"", "last_updated": "2022-11-23T21:32:59Z", "stargazers_count": 8, "topics": ["accent-color", "windows", "windows-10"], "last_fetched": 1695553502.594214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214664317": {"repository_manifest": {"name": "Midnight Theme"}, "full_name": "home-assistant-community-themes/midnight", "category": "theme", "description": "Midnight theme for Home Assistant", "etag_repository": "W/\"b67413743bf9a9837d9bd475edec5b9fb79421df69c802028a9cd5f097b6d6e6\"", "last_updated": "2023-03-27T11:57:13Z", "stargazers_count": 52, "last_fetched": 1695553498.507087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483269510": {"repository_manifest": {"name": "OilFox Sensor", "render_readme": true}, "full_name": "chises/ha-oilfox", "authors": ["@chises"], "category": "integration", "description": "HomeAssistant Sensor for Oilfox ", "domain": "oilfox", "etag_repository": "W/\"01aa571cc37ca02a2dfa6f2de22392ffdb9125f6a32779fdcaea08e619846588\"", "last_updated": "2023-04-28T15:18:52Z", "stargazers_count": 18, "topics": ["homeassistant-custom-component", "oiflox"], "last_fetched": 1695553601.881373, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507584200": {"repository_manifest": {"name": "Ecopower Dynamic Grid Prices", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "infradom/ecopower_dynamic_grid_prices", "authors": ["@infradom"], "category": "integration", "description": "Dynamic Grid Prices for Ecopower", "domain": "ecopower_dynamic_grid_prices", "etag_repository": "W/\"245addeb8df15132dd9851932e03311049cf027a8f7f88ac2ac2d690aa78b328\"", "last_updated": "2023-02-07T20:24:28Z", "stargazers_count": 6, "topics": ["day-ahead-market", "ecopower", "electricity-market", "electricity-prices", "forecasts"], "last_fetched": 1695553663.354757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "324913968": {"repository_manifest": {"name": "Deutscher Wetterdienst (by hg1337)", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "hg1337/homeassistant-dwd", "authors": ["@hg1337"], "category": "integration", "description": "Custom component for Home Assistant that integrates weather data (measurements and forecasts) of Deutscher Wetterdienst (DWD).", "domain": "dwd", "etag_repository": "W/\"2c77cf6a16501a210dc091de3b1ab0b903b62ce79bf919ddc3519df10eb5e9a5\"", "last_updated": "2023-08-09T20:28:50Z", "stargazers_count": 51, "topics": ["deutscher-wetterdienst", "dwd", "hacs-custom", "home-assistant-component", "home-assistant-custom-component", "home-assistant-integration", "home-assistant-weather", "homeassistant-component", "homeassistant-custom-component", "homeassistant-weather", "weather", "wetter"], "last_fetched": 1695553659.004587, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "606563418": {"repository_manifest": {"name": "ventoptimization", "render_readme": true}, "full_name": "HrGaertner/HA-vent-optimization", "authors": ["@HrGaertner"], "category": "integration", "description": "A integration for minimizing heat loss through optimal venting", "domain": "ventoptimization", "etag_repository": "W/\"fae441a8c6b38b13588e3a6a7670448b5c6f8eae4c1f98c9d56cebad1dfc2ef4\"", "last_updated": "2023-09-19T07:38:14Z", "stargazers_count": 13, "topics": ["efficiency", "optimization", "venting"], "last_fetched": 1695553661.061028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221288367": {"repository_manifest": {"name": "Clear Theme Dark", "homeassistant": "0.108.9"}, "full_name": "naofireblade/clear-theme-dark", "category": "theme", "description": "Dark variant of Clear Theme for Home Assistant", "etag_repository": "W/\"8173e097698b3b8a96aa00ee69893704b2520f33199cef726c60d967c22a6e94\"", "last_updated": "2020-10-08T10:10:57Z", "stargazers_count": 16, "last_fetched": 1695553504.077943, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306822538": {"repository_manifest": {"name": "NSW Rural Fire Service - Fire Danger", "country": ["AU"], "homeassistant": "2022.8.0"}, "full_name": "exxamalte/home-assistant-custom-components-nsw-rural-fire-service-fire-danger", "authors": ["@exxamalte"], "category": "integration", "description": "Home Assistant Custom Component: NSW Rural Fire Service Fire Danger", "domain": "nsw_rural_fire_service_fire_danger", "etag_repository": "W/\"e818f9329dcef587e90e40222d94fad2cb6080c2348d4ea9e987336702f07b24\"", "last_updated": "2023-08-26T07:11:57Z", "stargazers_count": 4, "topics": ["fire-danger", "nsw", "rural-fire-service"], "last_fetched": 1695553638.293958, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535833284": {"repository_manifest": {"name": "Chroma", "homeassistant": "2022.9.0"}, "full_name": "Vaskivskyi/ha-chroma", "authors": ["@vaskivskyi"], "category": "integration", "description": "Control your Chroma-enabled devices from Home Assistant", "domain": "chroma", "etag_repository": "W/\"ec4bd4cb41cd2bc2c61e2de2dae031f8c211b9dee5759c7fa15847922063e7af\"", "last_updated": "2023-09-18T06:30:44Z", "stargazers_count": 15, "topics": ["chroma", "razer", "razer-chroma"], "last_fetched": 1695554192.443391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233715171": {"repository_manifest": {"name": "Darkish Theme"}, "full_name": "78wesley/Home-Assistant-Darkish-Theme", "category": "theme", "description": "Darkish-Theme for Home Assistant", "etag_repository": "W/\"a948e11f422edca87951c7ac062bbf001ad9e71dcb61f1df181ebdbbf6ab0d45\"", "last_updated": "2021-12-14T20:45:38Z", "stargazers_count": 5, "last_fetched": 1695553492.576815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594842145": {"repository_manifest": {"name": "NPM Switches", "hacs": "1.6.0", "homeassistant": "2022.06.01"}, "full_name": "InTheDaylight14/nginx-proxy-manager-switches", "authors": ["@InTheDaylight14"], "category": "integration", "description": "Home Assistant HACs repository that provides switches to enable or disable Nginx Proxy Manager proxies.", "domain": "npm_switches", "etag_repository": "W/\"39e8d8dd68f069a67f3e5bc879d2ac4904d24debeeea0f300804489e7f7f05b1\"", "last_updated": "2023-06-02T17:40:23Z", "stargazers_count": 10, "topics": ["nginx-proxy-manager"], "last_fetched": 1695553663.252271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362700564": {"repository_manifest": {"name": "Tesla", "hacs": "1.6.0", "homeassistant": "2023.6.0", "zip_release": true, "filename": "tesla_custom.zip"}, "full_name": "alandtse/tesla", "authors": ["@alandtse"], "category": "integration", "description": "Tesla custom integration for Home Assistant. This requires a refresh token be generated by third-party apps to login.", "domain": "tesla_custom", "downloads": 6771, "etag_repository": "W/\"0f46b3ca60a5ec3859d4627e37b661e845b1c99a18262d64f4d5651add7c51c3\"", "last_updated": "2023-09-19T00:27:04Z", "stargazers_count": 378, "topics": ["home-assistant-component", "tesla"], "last_fetched": 1695553574.050148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216178553": {"repository_manifest": {"name": "Material Dark Green Theme"}, "full_name": "home-assistant-community-themes/material-dark-green", "category": "theme", "description": "Material Dark Green theme for Home Assistant", "etag_repository": "W/\"6a3d58c3ae4b1d745c863bad821f6a541fa3d83633d3ad8e2fe337044bcb6383\"", "last_updated": "2023-03-27T02:57:14Z", "stargazers_count": 2, "last_fetched": 1695553498.494082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562402396": {"repository_manifest": {"name": "Siku Fan", "filename": "siku-integration.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "hmn/siku-integration", "authors": ["@hmn"], "category": "integration", "description": "Siku Fan Home Assistant Integration (Siku / Duka / Oxxify)", "domain": "siku", "downloads": 36, "etag_repository": "W/\"bd7fdd00a38c046991453bd198bbdd90d2adf96897683c165a7a55499f20ea94\"", "last_updated": "2023-09-13T04:47:19Z", "stargazers_count": 4, "last_fetched": 1695553658.93959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286038496": {"repository_manifest": {"name": "Compass Card", "render_readme": true, "filename": "compass-card.js"}, "full_name": "tomvanswam/compass-card", "category": "plugin", "description": "A Lovelace card that shows a directional indicator on a compass for Home Assistant", "downloads": 6595, "etag_repository": "W/\"d302cf37a671b21f0d9923c2e07e5c30bf2385b996558212edec11c1e0251f8b\"", "last_updated": "2023-09-15T04:11:03Z", "stargazers_count": 124, "topics": ["compass", "lovelace-card"], "last_fetched": 1695553567.448897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "631670903": {"repository_manifest": {"name": "ZCS Lawn Mower Robot", "homeassistant": "2023.9.0"}, "full_name": "ufozone/ha-zcs-mower", "authors": ["@ufozone"], "category": "integration", "description": "ZCS Lawn Mower Robots (Ambrogio, Techline, Wiper) platform as a Custom Component for Home Assistant.", "domain": "zcsmower", "downloads": 2, "etag_repository": "W/\"e03c6345a888468d68644ec59a3f70847b971556fa80059331bc1c314dd8b30f\"", "last_updated": "2023-09-24T08:19:19Z", "stargazers_count": 5, "topics": ["ambrogio", "lawn-mower", "lawnmower", "mower", "mower-robot", "wiper", "zcs", "zucchetti"], "last_fetched": 1695554190.353775, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401454435": {"repository_manifest": {"name": "battery_sim", "render_readme": true}, "full_name": "hif2k1/battery_sim", "authors": ["@hif2k1"], "category": "integration", "description": "Home assistant home battery simulator - allows you to model how much energy you would save with a home battery", "domain": "battery_sim", "etag_repository": "W/\"e04922d4498515fb6d1a62a4cdf5c012a8a11d51a50d0ef6eac03b5e8ad6dec7\"", "last_updated": "2023-09-09T20:13:02Z", "stargazers_count": 73, "topics": ["energy-storage", "environmental"], "last_fetched": 1695553659.081388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634513270": {"repository_manifest": {"name": "Helium Integration", "render_readme": true}, "full_name": "enes-oerdek/Home-Assistant-Helium-Integration", "authors": ["@enes-oerdek"], "category": "integration", "description": "Helium Integration for Home Assistant", "domain": "helium_solana", "etag_repository": "W/\"866bc68df993b1c779901e47ffe7a2cc78fad4a96fa75cb403e7ee5915da1793\"", "last_updated": "2023-09-17T08:35:33Z", "stargazers_count": 11, "topics": ["helium", "helium-mining", "helium-network", "iot", "solana"], "last_fetched": 1695553636.217808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326288498": {"repository_manifest": {"name": "worldtidesinfocustom", "homeassistant": "2022.4.0"}, "full_name": "jugla/worldtidesinfocustom", "authors": ["@jugla"], "category": "integration", "description": "world tides info custom component for home assistant", "domain": "worldtidesinfocustom", "etag_repository": "W/\"8f718251c84842cb9eadf72128d27fc87a4a3222b3a0966cb99c495e2b46d0ee\"", "last_updated": "2023-05-13T21:28:31Z", "stargazers_count": 18, "topics": ["tides", "worldtides"], "last_fetched": 1695554096.866627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253842395": {"repository_manifest": {"name": "Jaguar Landrover InControl", "homeassistant": "0.115.0"}, "full_name": "msp1974/homeassistant-jlrincontrol", "authors": ["@msp1974"], "category": "integration", "description": "An integration for JLR InControl to Home Assistant", "domain": "jlrincontrol", "etag_repository": "W/\"b011d476ca1b70e03f39dd8a24014ca1834928030d851e6ee929a8b75bdde0d9\"", "last_updated": "2023-09-10T18:34:21Z", "stargazers_count": 39, "topics": ["i-pace", "jaguar", "jlr", "landrover", "rrs", "vehicle", "wirelesscar"], "last_fetched": 1695554126.59385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "533014913": {"repository_manifest": {"name": "EV Smart Charging", "homeassistant": "2022.7.0", "zip_release": true, "filename": "ev_smart_charging.zip", "render_readme": true}, "full_name": "jonasbkarlsson/ev_smart_charging", "authors": ["@jonasbkarlsson"], "category": "integration", "description": "Electric vehicle smart charging for Home Assistant.", "domain": "ev_smart_charging", "downloads": 636, "etag_repository": "W/\"d2195e5d53ede1e833cdef0ee492c352bea15fc461a06082f8c841d0b49ba578\"", "last_updated": "2023-09-15T08:15:08Z", "stargazers_count": 91, "topics": ["ev-charging"], "last_fetched": 1695554092.683162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503856080": {"repository_manifest": {"name": "My Edenred", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-myedenred", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "myEdenred - Custom Component for Home Assistant", "domain": "myedenred", "etag_repository": "W/\"b9d1d0e6d0a7998ce2ee36055081fc916a1f3e5cae0329c6e81c5e4bfcc92b77\"", "last_updated": "2023-05-08T11:18:04Z", "stargazers_count": 6, "topics": ["meal-card", "myedenred"], "last_fetched": 1695554132.66153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230672465": {"repository_manifest": {"name": "Ugly Christmas Theme"}, "full_name": "houtknots/UglyChristmas-Theme", "category": "theme", "description": "Christmas theme for Home-Assistant", "etag_repository": "W/\"47c8fd20f569712bca1ec557618f44dcecda458f7907786cbba0b474adda9f74\"", "last_updated": "2023-02-08T22:28:56Z", "last_fetched": 1695553500.306286, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229755760": {"repository_manifest": {"name": "Balboa Spa Client", "render_readme": true}, "full_name": "garbled1/balboa_homeassistan", "authors": ["@garbled1", "@natekspencer"], "category": "integration", "description": "Balboa spa integration for home-assistant", "domain": "balboa", "etag_repository": "W/\"6131dde6aee6c38a9c22adead88e8c41190d31c317465e5d5508b3482e671e11\"", "last_updated": "2022-07-20T20:37:26Z", "stargazers_count": 24, "topics": ["balboa"], "last_fetched": 1695553645.38748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253311340": {"repository_manifest": {"name": "3Ative Blue Theme", "render_readme": true}, "full_name": "3ative/3ative-blue-theme", "category": "theme", "description": "\ud83d\ude0e My Theme 'Blue' - with semi-transparent Cards", "etag_repository": "W/\"71578544b566b9e7aa2186ada39e78be7b424fefd5cf0bc04d2f9670ffad7d19\"", "last_updated": "2023-07-30T09:08:42Z", "stargazers_count": 3, "topics": ["3ative", "blue", "theme-ui"], "last_fetched": 1695553492.774278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589348474": {"repository_manifest": {"name": "EnergyTariff", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "epaulsen/energytariff", "authors": ["@epaulsen"], "category": "integration", "description": "HACS Integration for monitoring Norwegian grid tariff level", "domain": "energytariff", "etag_repository": "W/\"78e33b34e44ede1b5169eb1b44c834156734bab77b72623e325da40fffed4ef6\"", "last_updated": "2023-09-17T12:33:38Z", "stargazers_count": 22, "topics": ["energy-tariff"], "last_fetched": 1695553636.240817, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199313405": {"repository_manifest": {"name": "Beward Integration", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-beward", "authors": ["@Limych"], "category": "integration", "description": "Home Assistant custom component for Beward security Cameras and Doorbells", "domain": "beward", "downloads": 5, "etag_repository": "W/\"6b8c6841e2274e49803b7c30f3a4f8a7897a49a73090c6b3d5c479d07ab02602\"", "last_updated": "2023-03-08T12:08:57Z", "stargazers_count": 20, "topics": ["beward", "camera", "doorbell", "dvr", "security", "surveillance"], "last_fetched": 1695554110.289614, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194319685": {"repository_manifest": {"name": "Shellies Discovery", "homeassistant": "2023.9.0b0", "zip_release": true, "filename": "shellies-discovery.zip"}, "full_name": "bieniu/ha-shellies-discovery", "category": "python_script", "description": "Script that adds MQTT discovery support for Shellies devices", "downloads": 207, "etag_repository": "W/\"f4e3c732569f4eb4a5ed2a52227043e1e86184af788eb9740ab081fb7f0db440\"", "last_updated": "2023-09-22T04:49:37Z", "stargazers_count": 260, "topics": ["discovery", "mqtt", "shelly"], "last_fetched": 1695553506.755162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587057164": {"repository_manifest": {"name": "Magic Home Party Card", "filename": "magic-home-party-card.js", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "kizza/magic-home-party-card", "category": "plugin", "description": "A Home Assistant custom card for managing Magic Home lighting effects", "downloads": 1135, "etag_repository": "W/\"b3165be58876b0e073b8a52da6584e90907b25473135c8ba9dacec5e2b9ff0f8\"", "last_updated": "2023-01-16T08:19:14Z", "stargazers_count": 2, "topics": ["magic-home"], "last_fetched": 1695553543.068792, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457767453": {"repository_manifest": {"name": "Skolmat Card", "filename": "skolmat-card.js", "content_in_root": true, "render_readme": true}, "full_name": "Kaptensanders/skolmat-card", "category": "plugin", "description": "Home Assistant Lovelace card to display the food menu in Swedish schools.", "etag_repository": "W/\"7e6a9786d7da019f216ccad430dea4e6b1ec0d763a81ba1630169e64f898768f\"", "last_updated": "2023-02-07T20:21:10Z", "stargazers_count": 6, "topics": ["home-assistant-component", "lovelace-card", "lovelace-custom-card", "skola", "skollunch", "skolmat"], "last_fetched": 1695553541.326124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297379398": {"repository_manifest": {"name": "Tractive"}, "full_name": "Danielhiversen/home_assistant_tractive", "authors": ["@danielhiversen"], "category": "integration", "description": "Custom component for Tractive", "domain": "tractive_custom", "etag_repository": "W/\"7605e7a3da55cc313f61e118a0cbfc860bb676bbcae6e2e1eabec08664321634\"", "last_updated": "2021-12-20T09:30:02Z", "stargazers_count": 33, "topics": ["tractive"], "last_fetched": 1695553618.220171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597502676": {"repository_manifest": {"name": "Hikvision NVR / IP Camera", "render_readme": true, "homeassistant": "2022.8"}, "full_name": "maciej-or/hikvision_next", "authors": ["@maciej-or"], "category": "integration", "description": "Home Assistant integration for Hikvision NVRs and IP cameras", "domain": "hikvision_next", "etag_repository": "W/\"5f1d5d788bf49549a6807ee17fef5aae2f8cbd4857761d6ec16940ce5898115f\"", "last_updated": "2023-08-10T19:07:04Z", "stargazers_count": 37, "topics": ["hikvision"], "last_fetched": 1695554115.376921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172998062": {"repository_manifest": {}, "full_name": "kalkih/simple-weather-card", "category": "plugin", "description": "Minimalistic weather card for Home Assistant", "downloads": 19400, "etag_repository": "W/\"c001d7703123d00828a5489e69a7d0580bac24293edab3d6b8c4f00aedb087a5\"", "last_updated": "2023-05-12T19:41:22Z", "stargazers_count": 232, "topics": ["weather"], "last_fetched": 1695553540.858323, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219363790": {"repository_manifest": {"name": "TV4 Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-tv4-play", "category": "integration", "description": "Play videos from the Swedish channel 4", "domain": "tv4_play", "etag_repository": "W/\"55f9eecc59b5010e4425f97a8cb00756523133d98165e1a756460501c41e0d0c\"", "last_updated": "2022-11-17T13:46:26Z", "stargazers_count": 18, "topics": ["tv4", "tv4play"], "last_fetched": 1695554112.455942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634013716": {"repository_manifest": {"name": "sixdegrees-card", "content_in_root": true, "filename": "sixdegrees-card.js", "render_readme": true}, "full_name": "krissen/sixdegrees-card", "category": "plugin", "description": "Lovelace card, like a gauge but only in six degrees", "etag_repository": "W/\"b74d40bc31105caf024fe386853a6b5bd0897f7250bf81cb299b28ae94ad4e4b\"", "last_updated": "2023-08-23T11:39:01Z", "stargazers_count": 2, "topics": ["gauge"], "last_fetched": 1695553543.198981, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555110808": {"repository_manifest": {"name": "IamMeter Modbus", "render_readme": true}, "full_name": "lewei50/ha_iammeter_modbus", "authors": ["@lewei50"], "category": "integration", "description": "IamMeterr Modbus custom_component for Home Assistant", "domain": "iammeter_modbus", "etag_repository": "W/\"55a4172a1b1e2fe0d2ddb4624efa668e86e16246a60ce3db1a8ec6b9408b6d03\"", "last_updated": "2023-09-11T01:05:04Z", "stargazers_count": 1, "last_fetched": 1695554110.005635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276636213": {"repository_manifest": {"name": "Vertical Slider Cover Card", "render_readme": true, "filename": "vertical-slider-cover-card.js"}, "full_name": "konnectedvn/lovelace-vertical-slider-cover-card", "category": "plugin", "description": "Cover card with homekit style vertical position slider (best with panel-mode but normal-mode works also)", "downloads": 6632, "etag_repository": "W/\"d6232794d6b54060706744773522e0f34dca67c705808e3f8f03527630ca73ab\"", "last_updated": "2022-07-09T10:24:45Z", "stargazers_count": 50, "topics": ["card"], "last_fetched": 1695553543.124508, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357338258": {"repository_manifest": {"name": "Temperature Feels Like", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-temperature-feels-like", "authors": ["@Limych"], "category": "integration", "description": "Sensor of Temperature Feels Like for Home Assistant.", "domain": "temperature_feels_like", "downloads": 17, "etag_repository": "W/\"ccd7fd1b57ec8dfd5a3a4601dcd0555b8260c387ea928fafddad497c817f6f9e\"", "last_updated": "2023-04-10T09:57:41Z", "stargazers_count": 71, "topics": ["home-assistant-climate", "home-assistant-component", "home-assistant-temperature", "home-assistant-weather"], "last_fetched": 1695554112.298146, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274111031": {"repository_manifest": {"name": "Animated Weather Card", "render_readme": true, "homeassistant": "0.109.0"}, "full_name": "wowgamr/animated-weather-card", "category": "theme", "description": "Animated icons for default Home Assistant weather card", "etag_repository": "W/\"cc34adec9d160169a0c976f1529e6a8ba87631c90babd94893bff19b37e851ca\"", "last_updated": "2022-06-05T21:09:01Z", "stargazers_count": 21, "topics": ["weather-card"], "last_fetched": 1695553506.220967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481763130": {"repository_manifest": {"name": "Generic Water Heater", "hacs": "1.6.0", "homeassistant": "2021.12", "render_readme": true}, "full_name": "dgomes/ha_generic_water_heater", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component - Generic Water Heater", "domain": "generic_water_heater", "etag_repository": "W/\"8acf1fc6cb2962cd8dcdfa3f52a161294e3946b19607cf29c5a891b33100e1af\"", "last_updated": "2022-12-02T16:25:58Z", "stargazers_count": 9, "topics": ["home-assistant-integration"], "last_fetched": 1695553624.824473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522245338": {"repository_manifest": {"name": "Checkly", "render_readme": true}, "full_name": "ndom91/homeassistant-checkly", "authors": ["@ndom91"], "category": "integration", "description": "Home Assistant Integration for Checkly", "domain": "checkly", "etag_repository": "W/\"a3e9d784c7a18cc926ec1be06b1d443698af2822278c3b07888e67b7cc039c6c\"", "last_updated": "2022-12-18T23:34:44Z", "stargazers_count": 6, "topics": ["checkly"], "last_fetched": 1695554132.035726, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "658074877": {"repository_manifest": {"name": "IPv64", "zip_release": true, "country": ["DE", "US"], "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "ipv64.zip"}, "full_name": "Ludy87/ipv64", "authors": ["@Ludy87"], "category": "integration", "description": "IPv64.net | Free DynDNS2 & Healthcheck Service Home Assistant Integration", "domain": "ipv64", "downloads": 172, "etag_repository": "W/\"3070081c36955d1168d57b730c0010cf60f2f23b37c94e6c77490a10c7971afa\"", "last_updated": "2023-09-23T18:12:27Z", "stargazers_count": 2, "topics": ["dyndns", "hassio-integration", "hassos", "home-assistant-component", "ipv4", "ipv6", "ipv64", "rpicloud"], "last_fetched": 1695554114.759787, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "508800396": {"repository_manifest": {"name": "Coverflex Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-coverflex", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Coverflex - Custom Component for Home Assistant", "domain": "coverflex", "etag_repository": "W/\"c821cd7b8c1f938e4bb7d668e7cbbb22ab409b14eed278bcfe2e014efab9e146\"", "last_updated": "2022-11-10T14:45:17Z", "stargazers_count": 3, "topics": ["coverflex", "meal-card"], "last_fetched": 1695554132.409333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "369883961": {"repository_manifest": {"name": "Silence Scooter Integration", "hacs": "1.6.0", "render_readme": true}, "full_name": "lorenzo-deluca/homeassistant-silence", "authors": ["@lorenzo-deluca"], "category": "integration", "description": "Home Assistant Integration for Silence Scooter", "domain": "silencescooter", "etag_repository": "W/\"a62cc27fee4c3b1335f1f1cd890a341df9577e53763ad6e37a94c65c526632ed\"", "last_updated": "2023-03-18T07:22:04Z", "stargazers_count": 12, "topics": ["electric-vehicles", "silence", "silence-s01", "silence-scooter"], "last_fetched": 1695554114.530554, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307098646": {"repository_manifest": {"name": "Alarmo", "render_readme": true, "zip_release": true, "filename": "alarmo.zip", "hide_default_branch": true, "homeassistant": "2023.4.0b1"}, "full_name": "nielsfaber/alarmo", "authors": ["@nielsfaber"], "category": "integration", "description": "Easy to use alarm system integration for Home Assistant", "domain": "alarmo", "downloads": 23931, "etag_repository": "W/\"c36cf008402bcd0ead3ef44f3bb88b8e38ad5fd3e9f0cf1a4aa12362220f7c82\"", "last_updated": "2023-09-02T03:45:27Z", "stargazers_count": 889, "topics": ["alarm", "assistant", "home", "security"], "last_fetched": 1695554134.911137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293843053": {"repository_manifest": {"name": "Adax heaters"}, "full_name": "Danielhiversen/home_assistant_adax", "authors": ["@danielhiversen"], "category": "integration", "description": "Integration for Adax heaters", "domain": "adax", "etag_repository": "W/\"9ffdd6fb8758859ce3dfcc51e788731f59cef5a8c771ed69dac089d02f8af84d\"", "last_updated": "2021-04-28T05:30:29Z", "stargazers_count": 26, "topics": ["adax", "adax-heaters"], "last_fetched": 1695553618.311827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250488711": {"repository_manifest": {"name": "Niu Scooter Integration", "render_readme": true}, "full_name": "marcelwestrahome/home-assistant-niu-component", "authors": ["@mwestra", "@pikka97"], "category": "integration", "description": "niu scooter integration for Home assistant.", "domain": "niu", "etag_repository": "W/\"e5b722d5df8f8debd13934c7d20de9bb99095409aad3fdd3f0f63f5104a42c82\"", "last_updated": "2023-05-31T15:45:49Z", "stargazers_count": 36, "topics": ["niu", "scooters"], "last_fetched": 1695554117.171479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236358405": {"repository_manifest": {"name": "Broadlink s2c and s1c sensors", "render_readme": true, "homeassistant": "0.112.0"}, "full_name": "nick2525/broadlink_s1c_s2c", "authors": ["@nick2525"], "category": "integration", "description": "Broadlink s2c and Broadlink s1c sensors for Home Assistant", "domain": "broadlink_s1c", "etag_repository": "W/\"24a7e7a42c51621eeadeb4841b97f1d1006b1d711046b7ee9f5b77ac4ad27ea9\"", "last_updated": "2023-06-09T13:38:22Z", "stargazers_count": 7, "topics": ["broadlink", "hacz", "s1c", "s2c"], "last_fetched": 1695554133.586204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512965887": {"repository_manifest": {"name": "mhtzn", "render_readme": true, "country": "CN"}, "full_name": "leonardlcl/mhtzn", "authors": ["@leonardlcl"], "category": "integration", "description": "MHTZN custom component for Home Assistant", "domain": "mhtzn", "etag_repository": "W/\"8d72379843c0af1e191ac081ac36d5ad7374403f3ab478bbe500d148e26b8531\"", "last_updated": "2023-02-27T02:30:14Z", "stargazers_count": 2, "topics": ["hass-mhtzn", "mhtzn"], "last_fetched": 1695554108.361453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531321012": {"repository_manifest": {"name": "IAMMETER", "homeassistant": "2022.8.0"}, "full_name": "lewei50/ha_iammeter", "authors": ["@lewei50"], "category": "integration", "description": "IAMMETER custom component for Home Assistant", "domain": "iammeter_http", "etag_repository": "W/\"b33844d532b61c495cbc1358d7347d80864c762d5801d0bed3e325c289d37563\"", "last_updated": "2023-05-09T01:05:34Z", "stargazers_count": 4, "last_fetched": 1695554109.666111, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228063780": {"repository_manifest": {"name": "Indoor Air Quality UK Index", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-iaquk", "authors": ["@Limych"], "category": "integration", "description": "Indoor Air Quality Sensor Component for Home Assistant", "domain": "iaquk", "downloads": 23, "etag_repository": "W/\"13ba863f8e4d909f589e42e3ba3d101f9ac05993e001adf6e4af5ae2e4e53205\"", "last_updated": "2023-05-08T21:38:02Z", "stargazers_count": 87, "topics": ["air-quality", "indoor"], "last_fetched": 1695554110.31881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480127478": {"repository_manifest": {"name": "ista EcoTrend", "zip_release": true, "country": "DE", "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "ecotrend_ista.zip"}, "full_name": "Ludy87/ecotrend-ista", "authors": ["@Ludy87"], "category": "integration", "description": "ecotrend-ista Home Assistant Integration", "domain": "ecotrend_ista", "downloads": 62, "etag_repository": "W/\"6dced7391d93192e2b06c5bb75c9ed1076d777982df3aad762cfc6179d1c6188\"", "last_updated": "2023-09-22T20:56:45Z", "stargazers_count": 26, "topics": ["ecotrend", "hassio-integration", "hassos", "home-assistant-component", "ista"], "last_fetched": 1695554114.88544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304573324": {"repository_manifest": {"name": "SQL (with JSON detection)", "render_readme": true, "homeassistant": "0.99.9", "persistent_directory": "userfiles"}, "full_name": "crowbarz/ha-sql_json", "authors": ["@dgomes", "@crowbarz"], "category": "integration", "description": "Updated SQL integration for Home Assistant that supports JSON attributes", "domain": "sql_json", "etag_repository": "W/\"e95a907de7ee7eec4e8e3e02422520d182798ccb80e3256438f5fb249bd83804\"", "last_updated": "2023-04-17T09:10:21Z", "stargazers_count": 6, "topics": ["json", "sql"], "last_fetched": 1695553605.088861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233289477": {"repository_manifest": {"name": "Greenely Sensors", "render_readme": true, "country": ["SE"]}, "full_name": "linsvensson/sensor.greenely", "authors": ["@linsvensson"], "category": "integration", "description": "Custom component to get usage data and prices from Greenely for Home Assistant", "domain": "greenely", "etag_repository": "W/\"25fab3b29ff9cd0898d856bd9e25b61ed042f443106513727c96636664460a57\"", "last_updated": "2023-01-02T21:20:56Z", "stargazers_count": 45, "last_fetched": 1695554112.463337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545025660": {"repository_manifest": {"name": "Web Untis", "render_readme": true, "zip_release": true, "filename": "webuntis.zip", "homeassistant": "2021.11.0"}, "full_name": "JonasJoKuJonas/homeassistant-WebUntis", "authors": ["@JonasJoKuJonas"], "category": "integration", "description": "Custom component to access data from Web Untis in Home Assistant", "domain": "webuntis", "downloads": 275, "etag_repository": "W/\"4c0e872f3cce8b0e5a7621254271b8712665da10808b38c33b084af32565681e\"", "last_updated": "2023-09-13T06:05:22Z", "stargazers_count": 25, "topics": ["homeassista", "homeassistant-custom-component", "school", "webuntis", "webuntis-api", "webuntis-client"], "last_fetched": 1695554092.554205, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "206868881": {"repository_manifest": {"name": "Gismeteo", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-gismeteo", "authors": ["@Limych"], "category": "integration", "description": "Gismeteo Weather Provider for Home Assistant", "domain": "gismeteo", "downloads": 42, "etag_repository": "W/\"034165b5b7dd086afb01045b4ef206cf373e6637191d224d374cf3adeb24e749\"", "last_updated": "2023-03-08T22:57:28Z", "stargazers_count": 94, "topics": ["forecast", "gismeteo", "gismeteo-weather", "sensors", "weather-provider"], "last_fetched": 1695554110.493083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398767994": {"repository_manifest": {"name": "Wibeee (and Mirubee) energy monitor", "render_readme": true, "zip_release": true, "filename": "hass_wibeee.zip", "homeassistant": "2022.2.0"}, "full_name": "luuuis/hass_wibeee", "authors": ["@luuuis"], "category": "integration", "description": "Home Assistant: Wibeee energy monitor custom component", "domain": "wibeee", "downloads": 394, "etag_repository": "W/\"b87ce88f3ec959ed739e398f3a19c8c7dd828f0ab58acdefcf470f1cec314d77\"", "last_updated": "2023-06-12T11:46:53Z", "stargazers_count": 13, "topics": ["circutor", "mirubee", "smilics", "wibeee"], "last_fetched": 1695554114.934384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243841075": {"repository_manifest": {"name": "CS:GO game state", "homeassistant": "0.100"}, "full_name": "lociii/homeassistant-csgo", "authors": ["@lociii", "@davidramiro"], "category": "integration", "description": "CS:GO gamestate reporting to Home Assistant", "domain": "csgo_gamestate", "etag_repository": "W/\"f292299b49af1ee4119dfacf175859dac7c5479978d48887b223b437fa7cc88a\"", "last_updated": "2023-01-31T09:51:08Z", "stargazers_count": 17, "last_fetched": 1695554112.781482, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460167330": {"repository_manifest": {"name": "Pod Point", "country": "GB", "hacs": "1.6.0", "homeassistant": "2023.1.0"}, "full_name": "mattrayner/pod-point-home-assistant-component", "authors": ["@mattrayner"], "category": "integration", "description": "A simple Home Assistant integration that shows basic information from Pod Point and allows the control of charging schedules to disable and enable the pod.", "domain": "pod_point", "etag_repository": "W/\"dc1304c470f18c0503a8e97f8c7c5bae893de48be825f4dfedee2f956edad334\"", "last_updated": "2023-06-16T15:30:56Z", "stargazers_count": 26, "topics": ["energy-consumption", "ev-charging"], "last_fetched": 1695554119.714247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282714722": {"repository_manifest": {"name": "Senec solar system sensor", "country": ["DE"], "homeassistant": "2021.12.8", "hacs": "1.18.0", "render_readme": true}, "full_name": "mchwalisz/home-assistant-senec", "authors": ["@mchwalisz"], "category": "integration", "description": "SENEC Battery integration for Home Assistant", "domain": "senec", "etag_repository": "W/\"37472750406ea689cbfeeec818dfa0e5bea2327e29772b72c968b9e61a7326ff\"", "last_updated": "2023-09-12T03:51:09Z", "stargazers_count": 46, "topics": ["home-assistant-component"], "last_fetched": 1695554121.007616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259739166": {"repository_manifest": {"name": "Octopus Agile", "render_readme": true}, "full_name": "markgdev/home-assistant_OctopusAgile", "authors": ["@markgdev"], "category": "integration", "description": "Octopus Agile custom component for Home Assistant", "domain": "octopusagile", "etag_repository": "W/\"c35edc217ea02b0d90b3b31c78aab4a5db3ff386b41457d8237095543f47945b\"", "last_updated": "2023-03-11T07:58:59Z", "stargazers_count": 77, "topics": ["energy", "octopus", "octopus-agile", "octopus-energy"], "last_fetched": 1695554117.264748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505066911": {"repository_manifest": {"name": "Intex Spa", "hacs": "1.6.0", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "mathieu-mp/homeassistant-intex-spa", "authors": ["@mathieu-mp", "@Elkropac"], "category": "integration", "description": "Home Assistant integration for Intex Spa", "domain": "intex_spa", "etag_repository": "W/\"747616ad80777f3669383ec7228d35aa6030277ad450894605a06c841a096016\"", "last_updated": "2023-09-05T11:02:09Z", "stargazers_count": 18, "topics": ["climate", "intex", "purespa", "spa", "switch"], "last_fetched": 1695554119.437632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340664955": {"repository_manifest": {"name": "Proof Dashcam Integration", "country": "IL", "render_readme": true}, "full_name": "dimagoltsman/ha-proof-dashcam-integration", "authors": ["@dimagoltsman"], "category": "integration", "description": "HACS integration to proof.co.il dashcam", "domain": "proof", "etag_repository": "W/\"55df1cd43b544604d8baf30f981b9dbe95d70def167ac2a498c489daf21b9d1a\"", "last_updated": "2021-03-13T18:43:28Z", "stargazers_count": 1, "topics": ["proof"], "last_fetched": 1695553624.925476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "608596416": {"repository_manifest": {"name": "Taipit Cloud Meters", "render_readme": true, "country": "RU"}, "full_name": "lizardsystems/hass-taipit", "authors": ["@lizardsystems"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u0434\u043b\u044f Home Assistant, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0449\u0430\u044f \u043e\u0431\u043b\u0430\u0447\u043d\u044b\u0435 \u0441\u0447\u0435\u0442\u0447\u0438\u043a\u0438 \u0422\u0430\u0439\u043f\u0438\u0442", "domain": "taipit", "etag_repository": "W/\"52179280d473689746519cacaff3f59c51ae22f414b620aa21f48920688e8821\"", "last_updated": "2023-04-22T19:54:10Z", "stargazers_count": 2, "topics": ["energy", "smartmeter", "taipit"], "last_fetched": 1695554112.552001, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361961255": {"repository_manifest": {"name": "Metlink Wellington Transport", "render_readme": true, "country": "NZ", "homeassistant": "2023.6.0"}, "full_name": "make-all/metlink-nz", "authors": ["@make-all"], "category": "integration", "description": "Metlink Wellington Public Transport integration for Home Assistant", "domain": "metlink", "etag_repository": "W/\"a18209cac0f8003d2c3b0c469024d144ba82fea76f02be36f4a7972098f85cbc\"", "last_updated": "2023-07-03T14:20:35Z", "stargazers_count": 7, "topics": ["metlink", "metlink-api", "transport", "wellington"], "last_fetched": 1695554116.322893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458237432": {"repository_manifest": {"name": "Uptime Kuma", "render_readme": true, "hide_default_branch": true, "homeassistant": "2021.12.0"}, "full_name": "meichthys/uptime_kuma", "authors": ["@meichthys", "@jayakornk"], "category": "integration", "description": "Uptime Kuma HACS integration", "domain": "uptime_kuma", "etag_repository": "W/\"11e3ddc7a037151e495ff95d5344aa71934c70bca08cd3b2fcb7617cc568c39b\"", "last_updated": "2023-09-18T04:30:54Z", "stargazers_count": 66, "topics": ["home-assistant-custom-component", "homeassistant-custom-component", "uptime-kuma"], "last_fetched": 1695554121.648616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443905243": {"repository_manifest": {"name": "Xplora\u00ae Watch", "zip_release": true, "render_readme": true, "homeassistant": "2023.9.2", "hacs": "1.32.1", "filename": "xplora_watch.zip"}, "full_name": "Ludy87/xplora_watch", "authors": ["@Ludy87"], "category": "integration", "description": "Xplora\u00ae Watch Home Assistant Integration", "domain": "xplora_watch", "downloads": 189, "etag_repository": "W/\"e3f9e99134c86ed58c0024499ecfa8fb9f79a1bfc782aee24fab91e0e9a04eca\"", "last_updated": "2023-09-22T19:23:59Z", "stargazers_count": 36, "topics": ["devicetracker", "hassio-addons", "hassio-integration", "hassos", "homeassistant-custom-component", "notify", "watch", "xplora", "xplora-watch"], "last_fetched": 1695554114.968663, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254347436": {"repository_manifest": {"name": "Waste Collection Schedule"}, "full_name": "mampfes/hacs_waste_collection_schedule", "authors": ["@mampfes"], "category": "integration", "description": "Home Assistant integration framework for (garbage collection) schedules", "domain": "waste_collection_schedule", "etag_repository": "W/\"0a49780be79f1e78061378b86c0d7640ab833e1f7139f21da56c1927258edf24\"", "last_updated": "2023-09-23T20:04:09Z", "stargazers_count": 508, "topics": ["abfall", "abfallnavi", "abfallplus", "garbage", "garbage-collection", "jumomind", "muell", "muellabfuhr", "muellsammlung", "mymuell", "regioit", "waste", "waste-collection"], "last_fetched": 1695554117.418112, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322735": {"repository_manifest": {"name": "Plex recently added sensor", "render_readme": true}, "full_name": "NemesisRE/sensor.plex_recently_added", "authors": ["@maykar", "@NemesisRE"], "category": "integration", "description": "\u25b6\ufe0f Plex component to feed Upcoming Media Card.", "domain": "plex_recently_added", "etag_repository": "W/\"1f29aca12a943993f8d07c2686a18dfe6eb5fa1ea1ce1bdb1ddd4e5679e193db\"", "last_updated": "2023-03-14T10:16:26Z", "stargazers_count": 9, "last_fetched": 1695554132.49359, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584497784": {"repository_manifest": {"name": "FreeAir Connect", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/ha_freeair_connect", "authors": ["@mampfes"], "category": "integration", "description": "Adds data from FreeAir-Connect to Home Assistant", "domain": "freeair_connect", "etag_repository": "W/\"036046d76c0f16b069fe4c434468e78e012beab0a88ac145f887e673706c25d9\"", "last_updated": "2023-08-18T15:34:38Z", "stargazers_count": 8, "topics": ["blumartin", "freeair", "freeair-connect"], "last_fetched": 1695554116.831886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "568434741": {"repository_manifest": {"name": "ha_heliotherm", "render_readme": true, "zip_release": true, "filename": "ha_heliotherm.zip", "homeassistant": "0.100.0", "hacs": "0.24.0"}, "full_name": "mbuchber/ha_heliotherm", "authors": ["@mbuchber"], "category": "integration", "description": "Home Assistant Custom Component for Heliotherm Heatpumps", "domain": "ha_heliotherm", "downloads": 79, "etag_repository": "W/\"cb0fd3f3d5d828c1f33d0d83ef31a51aa9205616f10a3f2957a476d685b80f7b\"", "last_updated": "2023-07-20T12:34:20Z", "stargazers_count": 9, "topics": ["heatpump", "heliotherm", "homeassistant-custom-component"], "last_fetched": 1695554121.134504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458636658": {"repository_manifest": {"name": "iOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/ios-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the iOS system-wide light and dark mode interface", "etag_repository": "W/\"c463bec69f0da531b13fe227fac4604ce4478a7f3c5bf3a56b07f47e6b4a259a\"", "last_updated": "2023-01-13T19:19:48Z", "stargazers_count": 23, "topics": ["darkmode", "darktheme", "lightmode", "lighttheme"], "last_fetched": 1695553502.14998, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183222061": {"repository_manifest": {"name": "Local Luftdaten Sensor", "render_readme": true}, "full_name": "lichtteil/local_luftdaten", "authors": ["@lichtteil"], "category": "integration", "description": "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud.", "domain": "local_luftdaten", "etag_repository": "W/\"e53c5533776464a7720872087ba08b6f27713967361da494b90c651ae09e55fe\"", "last_updated": "2023-06-12T14:48:45Z", "stargazers_count": 41, "topics": ["air-quality"], "last_fetched": 1695554110.14546, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326220257": {"repository_manifest": {"name": "Viomi Robot Vacuum Cleaner SE (V-RVCLM21A)", "country": ["FR", "PL", "PT"], "zip_release": true, "filename": "viomi_se.zip"}, "full_name": "marotoweb/home-assistant-vacuum-viomise", "authors": ["@nqkdev", "@KrzysztofHajdamowicz", "@marotoweb"], "category": "integration", "description": "Hacky Home assistant support for Viomi SE (V-RVCLM21A)", "domain": "viomise", "downloads": 2099, "etag_repository": "W/\"aea9a42fab08a6a56d02d1888ed98e0da6c83b32adc13da2d30a1e97d7010a68\"", "last_updated": "2022-06-29T18:36:07Z", "stargazers_count": 19, "topics": ["robot-vacuum", "vacuum", "viomi"], "last_fetched": 1695554118.869911, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505598474": {"repository_manifest": {"name": "Pre\u00e7os dos Combust\u00edveis - DGEG", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-precoscombustiveis", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Pre\u00e7os dos Combust\u00edveis Online - DGEG", "domain": "precoscombustiveis", "etag_repository": "W/\"a1ce9f33690aabc2832e9803a6523ce153cd294168c674fbb6233329738cc44f\"", "last_updated": "2023-05-19T09:24:41Z", "stargazers_count": 14, "topics": ["combustiveis", "dgeg", "fuel-prices", "gas", "portugal"], "last_fetched": 1695554132.911429, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279184610": {"repository_manifest": {"name": "Amber Electric", "country": "AU", "homeassistant": "2021.7.1"}, "full_name": "madpilot/hass-amber-electric", "authors": ["@madpilot"], "category": "integration", "description": "Home Assistant Component to pull the latest energy prices from Amber Electric", "domain": "amberelectric", "etag_repository": "W/\"b5d6c29c78884d7cca04c03b000ef592df57d1b47ca4a1e6db22e388a4cf8591\"", "last_updated": "2021-10-07T09:01:00Z", "stargazers_count": 24, "topics": ["amber-electric", "electricity-market", "electricity-prices"], "last_fetched": 1695554114.87452, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246657442": {"repository_manifest": {"name": "Current Cost"}, "full_name": "lolouk44/CurrentCost_HA_CC", "authors": ["@lolouk44"], "category": "integration", "description": "CurrentCost Meter Reading Custom Component for Home Assistant ", "domain": "currentcost", "etag_repository": "W/\"891a8368d35989cabfff5eefbf32a1f2da57eeb27610f4b541bbb60a3c32a9b7\"", "last_updated": "2023-06-29T21:12:28Z", "stargazers_count": 16, "topics": ["cc128", "current-cost", "currentcost", "envi", "envir"], "last_fetched": 1695554114.138767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570874359": {"repository_manifest": {"name": "Watchman SENSiT integration for Home Assistant", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "masaccio/ha-kingspan-watchman-sensit", "authors": ["@masaccio"], "category": "integration", "description": "Kingspan Connect Sensor integration for Home Assistant", "domain": "kingspan_watchman_sensit", "etag_repository": "W/\"51b273bbf3fc6841da5c161d9990df9b54125548de571c031e55859095da819f\"", "last_updated": "2023-09-18T16:13:40Z", "stargazers_count": 7, "topics": ["energy-monitor", "iot", "kingspan", "monitoring", "oil-sensor"], "last_fetched": 1695554119.200605, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "418810115": {"repository_manifest": {"name": "pfSense integration for Home Assistant", "homeassistant": "2022.4.0", "render_readme": true}, "full_name": "travisghansen/hass-pfsense", "authors": ["@travisghansen"], "category": "integration", "description": "pfSense integration with Home Assistant", "domain": "pfsense", "etag_repository": "W/\"61e4c6351058396bd005b5ca252247c5eb4e1132314d44e570c4dad8f71a6fdb\"", "last_updated": "2023-05-07T14:41:39Z", "stargazers_count": 154, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1695554188.087835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231829137": {"repository_manifest": {"name": "Noctis"}, "full_name": "aFFekopp/noctis", "category": "theme", "description": "\ud83d\udc35 Dark Blue Theme for Home Assistant", "etag_repository": "W/\"23b9ee7fe9476df3f4f109e4b0f820ce095f3f78653584829f81c4e35713950f\"", "last_updated": "2023-03-23T17:13:01Z", "stargazers_count": 178, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1695553493.192396, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379621461": {"repository_manifest": {"name": "Mixergy"}, "full_name": "tomasmcguinness/homeassistant-mixergy", "authors": ["@tomasmcguinness"], "category": "integration", "description": "Add support for Mixergy's smart water tank into Home Assistant", "domain": "mixergy", "etag_repository": "W/\"77a14f5a8bb3047087d800281de684c156cb46f7ad138d3c3ebc44e6965ac7a3\"", "last_updated": "2023-08-19T08:02:17Z", "stargazers_count": 26, "topics": ["hotwater", "mixergy"], "last_fetched": 1695554185.832882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234375294": {"repository_manifest": {"name": "Vaporwave Pink Theme", "render_readme": true}, "full_name": "home-assistant-community-themes/vaporwave-pink", "category": "theme", "description": "Vaporwave Pink Theme for Home Assistant", "etag_repository": "W/\"122c80ded7ab80ffccce64030c2c1aacdc1db78056c2bb8631c1d03ee0d38507\"", "last_updated": "2022-06-17T14:41:05Z", "stargazers_count": 3, "topics": ["80s", "pink", "vaporwave"], "last_fetched": 1695553500.397523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439367892": {"repository_manifest": {"name": "Better Thermostat UI", "render_readme": true, "filename": "better-thermostat-ui-card.js"}, "full_name": "KartoffelToby/better-thermostat-ui-card", "category": "plugin", "description": "a custom card for a better thermostat in home assistant based on ai_thermostat intigration", "downloads": 1788, "etag_repository": "W/\"9cd62d67f34d958179463021f8edf56f8bdb1a0f904300fb7b0e2f1aa686f43c\"", "last_updated": "2023-09-22T18:08:07Z", "stargazers_count": 124, "topics": ["thermostat"], "last_fetched": 1695553542.161826, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228604799": {"repository_manifest": {"name": "Arpscan Device Tracker", "country": "NL"}, "full_name": "cyberjunky/home-assistant-arpscan_tracker", "authors": ["@cyberjunky"], "category": "integration", "description": "This component tracks devices using the arp-scan liinux command, it's very fast, and reasonably accurate.", "domain": "arpscan_tracker", "etag_repository": "W/\"b5ca450647b9d76ba4a422d6aa02ba90aa459ab044c48b12fc4c8b5f7497c08f\"", "last_updated": "2023-05-09T20:03:04Z", "stargazers_count": 23, "last_fetched": 1695553612.091102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277201070": {"repository_manifest": {"name": "AmsHan", "homeassistant": "2022.8.0b0", "render_readme": true}, "full_name": "toreamun/amshan-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integrasjon for str\u00f8mm\u00e5lere (AMS/HAN/P1). Integrasjonen st\u00f8ter b\u00e5de streaming (serieport/TCP-IP) og MQTT (Tibber Pulse, energyintelligence.se etc)", "domain": "amshan", "downloads": 33, "etag_repository": "W/\"8b50ef6557cde2635725336fb283468ce474113b8b33498dcd2646ed6206bbec\"", "last_updated": "2023-06-14T21:51:57Z", "stargazers_count": 125, "topics": ["aidon", "ams", "han", "kaifa", "kamstrup", "mbus", "meterbus", "mqtt", "p1", "smart-meter", "tibberpulse"], "last_fetched": 1695554186.030997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198794376": {"repository_manifest": {"name": "Met.no Nowcast", "render_readme": true, "zip_release": true, "filename": "metnowcast.zip"}, "full_name": "toringer/home-assistant-metnowcast", "authors": ["@toringer"], "category": "integration", "description": "Met.no Nowcast component for Home Assistant", "domain": "metnowcast", "downloads": 359, "etag_repository": "W/\"5bd0e172901974834ad48a68fdcea0ec9f5367baf0683664fb540157776ef959\"", "last_updated": "2023-05-28T21:38:05Z", "stargazers_count": 8, "topics": ["metno", "nowcast", "nowcasting-precipitation"], "last_fetched": 1695554185.937098, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299875200": {"repository_manifest": {"name": "Victor Smart-Kill", "homeassistant": "2022.8.0b0", "render_readme": true}, "full_name": "toreamun/victorsmartkill-homeassistant", "authors": ["@toreamun"], "category": "integration", "description": "Home Assistant integration for Victor Smart-Kill WI-FI electronic mouse and rat traps from VictorPest.com.", "domain": "victorsmartkill", "downloads": 11, "etag_repository": "W/\"3bda996d416410c47651b9f015b6a9327f75bd4e6858d1aca283ae408d17e270\"", "last_updated": "2023-06-14T22:05:37Z", "stargazers_count": 13, "topics": ["mouse", "rat", "trap", "victor"], "last_fetched": 1695554186.069864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303793543": {"repository_manifest": {"name": "Skydance", "country": ["EN", "CZ"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-skydance", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration for communication with Skydance lighting WiFi relay.", "domain": "skydance", "etag_repository": "W/\"58441241b338f4c3b978f8c9a6b620f651cbd2d9185bb1eeef9be9f84d51c282\"", "last_updated": "2023-02-25T23:22:38Z", "stargazers_count": 13, "topics": ["networking"], "last_fetched": 1695554185.781876, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "124766061": {"repository_manifest": {"name": "Sbanken", "render_readme": true, "zip_release": true, "filename": "sbanken.zip"}, "full_name": "toringer/home-assistant-sbanken", "authors": ["@toringer"], "category": "integration", "description": "Sbanken sensor for Home Assistant", "domain": "sbanken", "downloads": 72, "etag_repository": "W/\"c7dd30c4f9c282abd8aefff52139750b3ad414c194b4c68f87fcad6c08ad0985\"", "last_updated": "2023-02-12T14:41:52Z", "stargazers_count": 2, "topics": ["sbanken"], "last_fetched": 1695554186.106267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284293899": {"repository_manifest": {"name": "iOS Dark Mode", "render_readme": true}, "full_name": "JuanMTech/ios_dark_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS dark mode interface.", "etag_repository": "W/\"4eb55aec8a19efece4128f002d71752d6c42487541f876a6f679c67065468080\"", "last_updated": "2023-01-12T22:58:52Z", "stargazers_count": 19, "topics": ["dark-mode", "dark-theme"], "last_fetched": 1695553502.158582, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461906076": {"repository_manifest": {"name": "Raspberry Pi RF", "homeassistant": "2022.7.0"}, "full_name": "markvader/ha-rpi_rf", "authors": ["@markvader"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO RF Integration", "domain": "rpi_rf", "etag_repository": "W/\"17042bbc79e848a2ea8a49efdac6f10ec72fc07aff3dd4480e22362b8ab33b18\"", "last_updated": "2023-09-11T20:19:17Z", "stargazers_count": 26, "topics": ["home-assistant-component", "rpi-gpio", "rpi-rf"], "last_fetched": 1695554117.663233, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532263303": {"repository_manifest": {"name": "Met.no next 6 hours forecast", "render_readme": true, "zip_release": true, "filename": "met_next_6_hours_forecast.zip"}, "full_name": "toringer/home-assistant-met-next-6-hours-forecast", "authors": ["@toringer"], "category": "integration", "description": "Met.no next 6 hours forecast component for Home Assistant", "domain": "met_next_6_hours_forecast", "downloads": 854, "etag_repository": "W/\"d7089181fae2b9854d35693c8cd50e2c45e269dadd4b533bb2bbfa92364609fc\"", "last_updated": "2023-05-29T08:48:33Z", "stargazers_count": 2, "topics": ["forecast", "metno", "weather", "weather-forecast"], "last_fetched": 1695554185.876737, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448604854": {"repository_manifest": {"name": "Cardiff Waste", "homeassistant": "2021.12.0", "render_readme": true, "country": "GB"}, "full_name": "TomBrien/cardiffwaste-ha", "authors": ["@tombrien"], "category": "integration", "description": "A Home Assistant integration to provide sensors for waste collections in Cardiff, UK", "domain": "cardiffwaste", "etag_repository": "W/\"29324e691b2a66ddf0f33f3cb26fc161700c4a4dd0ad2b2a2881552ffcd49dbe\"", "last_updated": "2023-04-04T14:19:45Z", "stargazers_count": 8, "topics": ["cardiff", "waste-collection"], "last_fetched": 1695554185.929153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "406939721": {"repository_manifest": {"name": "Hik-Connect", "country": ["EN"], "render_readme": true}, "full_name": "tomasbedrich/home-assistant-hikconnect", "authors": ["@tomasbedrich"], "category": "integration", "description": "A Home Assistant integration to communicate with Hikvision smart doorbells via Hik-Connect cloud.", "domain": "hikconnect", "etag_repository": "W/\"cdfdc36a43d5167a046b665278dc2ed7a436d704fa8c9c7228b3a24f50a95f8e\"", "last_updated": "2023-09-02T09:03:39Z", "stargazers_count": 34, "topics": ["hikvision"], "last_fetched": 1695554185.687343, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582268944": {"repository_manifest": {"name": "EPEX Spot", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/ha_epex_spot", "authors": ["@mampfes"], "category": "integration", "description": "Adds EPEX Spot data to Home Assistant.", "domain": "epex_spot", "etag_repository": "W/\"c9965ebb036f8c7035bb20e2c084ff6e3c584faee2e82ef5750dad552a484be7\"", "last_updated": "2023-09-23T18:21:23Z", "stargazers_count": 46, "topics": ["awattar", "epex", "epex-spot", "smard"], "last_fetched": 1695554116.644854, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "627970137": {"repository_manifest": {"name": "HERU", "homeassistant": "2023.1.0", "zip_release": true, "filename": "heru.zip", "render_readme": true}, "full_name": "toringer/home-assistant-heru", "authors": ["@toringer"], "category": "integration", "description": "\u00d6stberg HERU energy recovery unit component for Home Assistant", "domain": "heru", "downloads": 122, "etag_repository": "W/\"2ce9e139889b11349ac5396101d6d1e37d68dc24d3239c6cea1490ae4d1c303b\"", "last_updated": "2023-06-21T17:09:38Z", "stargazers_count": 8, "topics": ["climate", "energy-recovery", "energy-recovery-unit", "heru", "ostberg"], "last_fetched": 1695554185.91583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440374794": {"repository_manifest": {"name": "history-explorer-card", "filename": "history-explorer-card.js"}, "full_name": "alexarch21/history-explorer-card", "category": "plugin", "description": "A card for Home Assistant Lovelace for exploring the history of your entities interactively and in real time.", "downloads": 5296, "etag_repository": "W/\"220b98aa21df1695ba6a031d1d5325251688ca9adea2881ef0767c03eeeb7adb\"", "last_updated": "2023-09-12T23:46:44Z", "stargazers_count": 322, "topics": ["history"], "last_fetched": 1695553510.713155, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382335433": {"repository_manifest": {"name": "SAJ eSolar"}, "full_name": "djansen1987/SAJeSolar", "authors": ["@djansen1987"], "category": "integration", "description": "SAJ eSolar Portal Sensors", "domain": "saj_esolar", "etag_repository": "W/\"c826422eef677eb4a8623fa9360899136abdd2b1884e0176745e383e37ce94f7\"", "last_updated": "2023-08-30T11:03:33Z", "stargazers_count": 16, "topics": ["esolar", "intergration", "saj", "solar", "solar-system"], "last_fetched": 1695553625.298149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "298816063": {"repository_manifest": {"name": "Trackimo Device Tracker", "country": "AU", "homeassistant": "2021.7.1"}, "full_name": "troykelly/hacs-trackimo", "authors": ["@troykelly"], "category": "integration", "description": "Trackimo Integration for HACS Home Assistant", "domain": "trackimo", "downloads": 6, "etag_repository": "W/\"f511e04bee23e7d388a169e2642643dab3d7ee3eb8292d115eae9998b8cfe90c\"", "last_updated": "2022-06-02T13:49:21Z", "stargazers_count": 1, "topics": ["geolocation", "trackimo"], "last_fetched": 1695554188.015278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388979130": {"repository_manifest": {"name": "NSW Covid Data", "country": "AU", "homeassistant": "2021.9.0", "zip_release": true, "filename": "nswcovid.zip"}, "full_name": "troykelly/homeassistant-au-nsw-covid", "authors": ["@troykelly"], "category": "integration", "description": "A group of sensors for Home Assistant that tracks New South Wales COVID-19 Data", "domain": "nswcovid", "downloads": 326, "etag_repository": "W/\"dcf32d88381d4efdb4d3f4cd6478a227a5ffa831dea2194152552755b27d1fe6\"", "last_updated": "2023-02-22T06:17:16Z", "stargazers_count": 1, "topics": ["covid-19", "nsw-government", "nsw-health"], "last_fetched": 1695554188.196101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "519811207": {"repository_manifest": {"name": "EVN Data Fetcher", "country": ["VN"], "homeassistant": "2022.7.0", "render_readme": true}, "full_name": "trvqhuy/nestup_evn", "authors": ["@trvqhuy"], "category": "integration", "description": "A simple yet efficient custom component to fetch data from EVN Vietnam for Home Assistant", "domain": "nestup_evn", "etag_repository": "W/\"adcdffafd5bf1de254402f0961bf2270f2b6df12f6af73531d890eb6d20b3364\"", "last_updated": "2023-07-07T02:41:24Z", "stargazers_count": 38, "topics": ["electricity-meter", "homeassistant-custom-component", "polling-service"], "last_fetched": 1695554188.004046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232424544": {"repository_manifest": {"name": "Bosch Smart Home Controller (SHC) integration", "homeassistant": "2021.1.5"}, "full_name": "tschamm/boschshc-hass", "authors": ["@tschamm"], "category": "integration", "description": "Home Assistant component for accessing Bosch Smart Home Controller using boschshcpy python library.", "domain": "bosch_shc", "etag_repository": "W/\"da5713ebe0ccc6b121fab97e59d17c04e38dd3785c3a6688b7d52276dd585437\"", "last_updated": "2023-08-16T08:19:52Z", "stargazers_count": 95, "topics": ["bosch-smart-home", "boschshcpy", "home-assistant-component"], "last_fetched": 1695554188.27311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487536666": {"repository_manifest": {"name": "Nilan", "homeassistant": "2023.9.0", "render_readme": true}, "full_name": "veista/nilan", "authors": ["@veista"], "category": "integration", "description": "Nilan integration for Home Assistant", "domain": "nilan", "etag_repository": "W/\"e15e632966ad8439563dff80b958ca9545771d34aeb5dd2ee43b3aefcdd1a2a0\"", "last_updated": "2023-09-22T21:45:37Z", "stargazers_count": 34, "topics": ["iot", "modbus-tcp"], "last_fetched": 1695554192.644921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247566230": {"repository_manifest": {"name": "Next Rocket Launch", "country": "FR", "render_readme": true}, "full_name": "Verbalinsurection/next_rocket_launch", "authors": ["@Verbalinsurection"], "category": "integration", "description": "The Next Rocket Launch sensor platform allows you to monitor the next rocket launch from Teamup.", "domain": "next_rocket_launch", "etag_repository": "W/\"e61b32f11e876107a0d1f6ad31100fe3105d6874b89972faeb3c2a0920fd6bc3\"", "last_updated": "2022-04-08T21:54:51Z", "stargazers_count": 9, "topics": ["rocket"], "last_fetched": 1695554192.429847, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258012818": {"repository_manifest": {"name": "simpleicons", "render_readme": true, "homeassistant": "2021.11.0", "zip_release": true, "filename": "hass-simpleicons.zip"}, "full_name": "vigonotion/hass-simpleicons", "category": "integration", "description": "Use Simple Icons in Home Assistant", "domain": "simpleicons", "downloads": 6201, "etag_repository": "W/\"016fc20caf3eb7a6b351adfdeace56ee121fd8d4e4dd462bd4bf931f3ae5c79b\"", "last_updated": "2022-10-08T17:58:57Z", "stargazers_count": 108, "topics": ["simple-icons"], "last_fetched": 1695554192.766569, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354887961": {"repository_manifest": {"name": "Abalin Name Day", "country": "GR", "homeassistant": "core-2021.4.0", "render_readme": true}, "full_name": "viktak/ha-cc-abalin-nameday", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component for the abalin name day API", "domain": "abalin_nameday", "etag_repository": "W/\"e854de6aeb6e4bdbe643f41a58a862ffe8fa673dfdfbe5fedb7a56d4929cf3a4\"", "last_updated": "2022-02-24T10:30:22Z", "stargazers_count": 5, "topics": ["namedays"], "last_fetched": 1695554192.509588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "353966616": {"repository_manifest": {"name": "OpenWeatherMap All", "country": "GR", "homeassistant": "core-2021.3.4", "render_readme": true}, "full_name": "viktak/ha-cc-openweathermap_all", "authors": ["@viktak"], "category": "integration", "description": "Home Assistant custom component combining multiple OpenWeatherMap API calls", "domain": "openweathermap_all", "etag_repository": "W/\"58d531b0b7be9f8b579264788140c8eaa2c51de661e8f75ad93c903dba4cfbb3\"", "last_updated": "2023-01-16T08:26:19Z", "stargazers_count": 19, "topics": ["openweathermap"], "last_fetched": 1695554192.657476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164155243": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.9.3"}, "full_name": "TimSoethout/goodwe-sems-home-assistant", "authors": ["@TimSoethout"], "category": "integration", "description": "Sensor for Home Assistant pulling data from the GoodWe SEMS API for solar panel production metrics.", "domain": "sems", "etag_repository": "W/\"5bd7b21f6233b869696b42d2edf940a313918dc8b041ed3f4884ff4db16fb339\"", "last_updated": "2023-05-24T17:45:24Z", "stargazers_count": 73, "topics": ["goodwe-sems", "pv", "sems-portal"], "last_fetched": 1695554183.785707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "416883534": {"repository_manifest": {"name": "Micronova Agua IOT", "render_readme": true}, "full_name": "vincentwolsink/home_assistant_micronova_agua_iot", "authors": ["@vincentwolsink"], "category": "integration", "description": "Home Assistant integration controlling heating devices connected via the Agua IOT platform of Micronova", "domain": "aguaiot", "etag_repository": "W/\"cc29953fc02fadd6d3f063dc6f9b9c60f48acd697269fb2c793403c65372ee58\"", "last_updated": "2023-09-23T07:56:26Z", "stargazers_count": 14, "topics": ["agua-iot", "hacs-custom", "home-assistant-component", "home-assistant-integration", "micronova", "micronova-agua-iot"], "last_fetched": 1695554193.051424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "120696364": {"repository_manifest": {"name": "OpenSprinkler integration for Home Assistant", "homeassistant": "2023.7.3", "render_readme": true}, "full_name": "vinteo/hass-opensprinkler", "authors": ["@vinteo"], "category": "integration", "description": "OpenSprinkler Integration for Home Assistant", "domain": "opensprinkler", "etag_repository": "W/\"85e9195d8669e36b59f33b7b034b3476618a2b20b141fe876fe6d9b70c3f9e8b\"", "last_updated": "2023-09-24T01:18:02Z", "stargazers_count": 167, "topics": ["opensprinkler"], "last_fetched": 1695554193.094128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "386049746": {"repository_manifest": {"name": "Virage Dashboard", "render_readme": "true"}, "full_name": "viragelabs/virage_dashboard", "authors": ["@viragelabs"], "category": "integration", "description": "A Home Assistant integration to keep track of Virage Laboratories devices, and set up and properly label rf sensors and door contacts", "domain": "virage_dashboard", "etag_repository": "W/\"96ea1f8315e28b2f2576da091847b8c1204d0edcac4f125c438365278ea4d5bb\"", "last_updated": "2022-10-23T18:48:35Z", "stargazers_count": 1, "topics": ["virage", "viragelaboratories", "viragelabs"], "last_fetched": 1695554194.589033, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234875951": {"repository_manifest": {"name": "Securitas Home", "render_readme": "true", "country": "SE", "homeassistant": "0.110.1"}, "full_name": "vlumikero/home-assistant-securitas", "authors": ["@nwiborg", "@vlumikero"], "category": "integration", "description": "A Home Assistant custom component for Securitas Home Alarm, for alarms bought in Sweden before 2018-12-01", "domain": "securitas", "etag_repository": "W/\"4dc7df8f16230a42c408444b744a7cf93d7d91a9171f988e3f9c8771857f10af\"", "last_updated": "2021-07-24T17:58:21Z", "last_fetched": 1695554194.616788, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520066480": {"repository_manifest": {"name": "Huawei Mesh Router", "hide_default_branch": true, "render_readme": true}, "full_name": "vmakeev/huawei_mesh_router", "authors": ["@vmakeev"], "category": "integration", "description": "Huawei mesh router component for Home Assistant", "domain": "huawei_mesh_router", "downloads": 14, "etag_repository": "W/\"6e96407a9f939af484d5acde8be74ae769e4359201aa25e5760c3136d4dbdd56\"", "last_updated": "2023-09-19T10:32:53Z", "stargazers_count": 26, "topics": ["huawei-router", "huawei-routers"], "last_fetched": 1695554194.732973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235316264": {"repository_manifest": {"name": "Meteo Swiss", "render_readme": true, "country": "CH"}, "full_name": "websylv/homeassistant-meteoswiss", "authors": ["websylv"], "category": "integration", "description": ":sun_behind_rain_cloud: :switzerland: Meteo Swiss Integration for Home Assisant", "domain": "meteo-swiss", "etag_repository": "W/\"f896ddfb85bff244f07f4bbf74c0d561d562f0f2c54daa2d3ff29cb7baa4db20\"", "last_updated": "2023-09-18T20:35:14Z", "stargazers_count": 58, "last_fetched": 1695554194.754316, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334925385": {"repository_manifest": {"name": "RCT Power", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "weltenwort/home-assistant-rct-power-integration", "authors": ["@weltenwort"], "category": "integration", "description": "A Home Assistant custom component to integrate with RCT Power inverters.", "domain": "rct_power", "etag_repository": "W/\"05741a2c3a49dda9bc59e2c0fdb08ebd2f033a9d96ebe9082836c326a495df29\"", "last_updated": "2023-07-11T17:30:18Z", "stargazers_count": 39, "topics": ["rct-power"], "last_fetched": 1695554194.93656, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "434912125": {"repository_manifest": {"name": "Load Shedding", "render_readme": true, "country": "ZA", "homeassistant": "2022.7.0"}, "full_name": "wernerhp/ha.integration.load_shedding", "authors": ["@wernerhp"], "category": "integration", "description": "A Home Assistant integration to track your load schedding schedule.", "domain": "load_shedding", "etag_repository": "W/\"ffae1383502d2fa16b0aba8bb94bc3fdd493f13660e3cf32276c02105cd128ba\"", "last_updated": "2023-09-16T15:59:11Z", "stargazers_count": 80, "topics": ["eskom", "load-shedding"], "last_fetched": 1695554194.869683, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "388918745": {"repository_manifest": {"name": "Creasol DomBus"}, "full_name": "CreasolTech/home-assistant-creasol-dombus", "authors": ["@CreasolTech"], "category": "integration", "description": "Home Assistant integration for Creasol DomBus RS485 modules (inputs, outputs, sensors).", "domain": "creasoldombus", "etag_repository": "W/\"e8107078ebbbe632a5ccb6e5ee97be159ac2316611b1760d10576de5a402c92e\"", "last_updated": "2023-07-22T10:29:32Z", "stargazers_count": 1, "topics": ["dombus", "domotic", "rs485"], "last_fetched": 1695553604.890366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572282256": {"repository_manifest": {"name": "Govee LAN Control", "homeassistant": "2022.12.0", "render_readme": true}, "full_name": "wez/govee-lan-hass", "authors": ["@wez"], "category": "integration", "description": "Control Govee lights via the LAN API from Home Assistant", "domain": "govee_lan", "etag_repository": "W/\"cc469dc85d8958d17f0e93f7ba1fe853cffae15e2d40331a69c1b93d942a3aed\"", "last_updated": "2023-06-10T14:56:39Z", "stargazers_count": 119, "topics": ["govee", "light"], "last_fetched": 1695554194.808393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307678069": {"repository_manifest": {"name": "Variables+History", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "Wibias/hass-variables", "authors": ["@rogro82", "@wibias", "@Snuffy2"], "category": "integration", "description": "Home Assistant variables component", "domain": "variable", "etag_repository": "W/\"c59a24f3fcda5d4578c8c97c3e9d4c41e68a6b50dffcab31e4f3405e7c2af238\"", "last_updated": "2023-07-20T15:50:56Z", "stargazers_count": 63, "topics": ["counter", "keypad", "last-motion", "timer", "variables"], "last_fetched": 1695554195.161894, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201805130": {"repository_manifest": {"name": "nordpool", "render_readme": true}, "full_name": "custom-components/nordpool", "authors": ["@hellowlol"], "category": "integration", "description": "This component allows you to pull in the energy prices into Home-Assistant.", "domain": "nordpool", "etag_repository": "W/\"27911792366969d5f0d854ec01a4db09e0a0a27df24a34594223925f0182e705\"", "last_updated": "2023-09-17T18:41:11Z", "stargazers_count": 345, "topics": ["energy-prices", "nordpool"], "last_fetched": 1695553608.01618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413680511": {"repository_manifest": {"name": "Toyota (North America)", "homeassistant": "2021.12.0", "render_readme": true, "zip_release": true, "filename": "ha_toyota_na.zip"}, "full_name": "widewing/ha-toyota-na", "authors": ["@vanstinator, @widewing"], "category": "integration", "description": "Home Assistant integration for Toyota Motor (North America) connected services", "domain": "toyota_na", "downloads": 848, "etag_repository": "W/\"d592f8354b792ef081b30fb4e706e1869d7cd9ff73977e44ccf67b4f5aa1c2ac\"", "last_updated": "2023-03-05T01:55:47Z", "stargazers_count": 35, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1695554195.328242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235659413": {"repository_manifest": {"name": "Eloverblik", "render_readme": true}, "full_name": "JonasPed/homeassistant-eloverblik", "authors": ["@JonasPed"], "category": "integration", "description": "Home Assistant Custom Component showing data from eloverblik.dk", "domain": "eloverblik", "etag_repository": "W/\"71aabd230eaf11ce991e78854da5ee5efe5f920ab74c730fd510ddd89eafc8df\"", "last_updated": "2023-05-07T18:51:16Z", "stargazers_count": 143, "last_fetched": 1695554094.372961, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419786466": {"repository_manifest": {"name": "SolarEdge Modbus Multi", "homeassistant": "2023.9.1"}, "full_name": "WillCodeForCats/solaredge-modbus-multi", "authors": ["@WillCodeForCats"], "category": "integration", "description": "Integrates SolarEdge inverters with Modbus/TCP local polling. Single inverters, multiple inverters, meters, and batteries are supported.", "domain": "solaredge_modbus_multi", "etag_repository": "W/\"3f97858ec084a1b73758d1f2b233674e85e76a9bd1a67081082d83d692b19b4a\"", "last_updated": "2023-09-19T16:13:02Z", "stargazers_count": 114, "topics": ["modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1695554195.519517, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "430818561": {"repository_manifest": {"name": "Tekmar Gateway 482", "homeassistant": "2022.8.0"}, "full_name": "WillCodeForCats/tekmar-482", "authors": ["@WillCodeForCats"], "category": "integration", "description": "Home Assistant integration for the Tekmar Gateway 482", "domain": "tekmar_482", "etag_repository": "W/\"d73eb6e69ba085cad2c346a38abe77b0a0237ef3acf20e05c1ab97ebb5429727\"", "last_updated": "2023-09-14T23:48:23Z", "stargazers_count": 2, "topics": ["tekmar"], "last_fetched": 1695554196.852042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299967654": {"repository_manifest": {"name": "HiFiBerry", "render_readme": "true"}, "full_name": "willholdoway/hifiberry", "authors": ["@willholdoway", "@dgomes"], "category": "integration", "description": "This is a custom component to allow control of HifiberryOS devices in Home Assistant using the audiocontrol2 REST API.", "domain": "hifiberry", "etag_repository": "W/\"6c3ed9e79f5aef01c24fe3db9a6546ac123be4c59f1e34a87e24e5dc33fc59a5\"", "last_updated": "2023-08-26T16:36:46Z", "stargazers_count": 37, "topics": ["hifiberry", "internet-of-things", "iot"], "last_fetched": 1695554196.644413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394704821": {"repository_manifest": {"name": "SolaX Inverter Modbus", "render_readme": true}, "full_name": "wills106/homeassistant-solax-modbus", "authors": ["@wills106"], "category": "integration", "description": "SolaX Power Modbus custom_component for Home Assistant (Supports some Ginlong Solis, Growatt, Sofar Solar, TIGO TSI & Qcells Q.Volt Hyb)", "domain": "solax_modbus", "etag_repository": "W/\"31aae54518c119d08728245191bdf72975271aefc395de055ee055cc3870f532\"", "last_updated": "2023-09-24T08:29:28Z", "stargazers_count": 159, "topics": ["ginlong-solis", "growatt", "modbus", "modbus-rtu", "modbus-serial", "modbus-tcp", "qcells", "qvolt-inverter", "rs485", "sofar", "sofar-hyd", "sofarsolar", "solax", "solis"], "last_fetched": 1695554197.180271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344636306": {"repository_manifest": {"name": "SAJ Inverter Modbus", "homeassistant": "2021.12.0"}, "full_name": "wimb0/home-assistant-saj-modbus", "authors": ["@wimb0", "@fsaris"], "category": "integration", "description": "Home Assistant Component for reading data locally from SAJ (and Zonneplan) Inverters through modbus TCP.", "domain": "saj_modbus", "etag_repository": "W/\"47854997203839cd63f1fc19a060671b86705f47438c393255e8152e07fe8220\"", "last_updated": "2023-08-28T09:20:33Z", "stargazers_count": 23, "topics": ["saj-inverters", "saj-r5", "zonneplan"], "last_fetched": 1695554196.956138, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302985427": {"repository_manifest": {"name": "Zidoo Media Player", "homeassistant": "2022.8"}, "full_name": "wizmo2/zidoo-player", "authors": ["@wizmo2"], "category": "integration", "description": "Home-assistant custom component and api wrapper for Zidoo Media Players", "domain": "zidoo", "etag_repository": "W/\"fd9000cd248881a25537cc14c63d1a6ed314ea611fdc858d4b49fc6ce8d85cbb\"", "last_updated": "2023-08-19T08:36:42Z", "stargazers_count": 11, "topics": ["media", "player", "video-player", "zidoo"], "last_fetched": 1695554197.01501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197006509": {"repository_manifest": {}, "full_name": "seangreen2/slate_theme", "category": "theme", "description": "A Dark Theme for Home Assistant", "etag_repository": "W/\"7cfcea433d16851293c079dcb2ffda4273c0695be3b79b1a712d94005dcddd34\"", "last_updated": "2023-07-21T14:19:58Z", "stargazers_count": 99, "last_fetched": 1695553504.871815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419381725": {"repository_manifest": {"name": "Huawei Solar", "content_in_root": true, "render_readme": true, "homeassistant": "2023.3.7"}, "full_name": "wlcrs/huawei_solar", "authors": ["@wlcrs"], "category": "integration", "description": "Home Assistant integration for Huawei Solar inverters via Modbus", "domain": "huawei_solar", "etag_repository": "W/\"e54c4081389cebb0f73a1181cb9740a84aece6fe2578c1b42e9c86a95880ab7a\"", "last_updated": "2023-09-22T17:14:54Z", "stargazers_count": 329, "topics": ["home-assistant-integration", "huawei", "huawei-solar", "modbus", "modbus-rtu", "modbus-tcp", "solar-energy"], "last_fetched": 1695554197.199469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512007926": {"repository_manifest": {"name": "Reolink Discovery", "homeassistant": "2022.7.0"}, "full_name": "xannor/ha_reolink_discovery", "authors": ["@xannor"], "category": "integration", "description": "ReoLink Discovery Protocol Integration for Home Assistant", "domain": "reolink_discovery", "etag_repository": "W/\"f2dd8c406c19d2171c646a17919b9bf389b48c5f012d852a85581fe2ab0af75c\"", "last_updated": "2023-03-07T14:31:27Z", "stargazers_count": 7, "topics": ["component"], "last_fetched": 1695554197.030028, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "374763546": {"repository_manifest": {"name": "AIMP Media Player", "content_in_root": true, "render_readme": true}, "full_name": "xilense/aimp_custom_component", "authors": ["@xilense"], "category": "integration", "description": "AIMP custom component for \ud83c\udfe0 Home Assistant using web remote", "domain": "aimp", "etag_repository": "W/\"e567c6890606d8d27c8b02d80cf591030d485951683bfdd93b9357c0861b27a8\"", "last_updated": "2021-06-21T18:20:20Z", "stargazers_count": 4, "topics": ["aimp", "internet-of-things", "iot", "iot-automation", "raspberry-pi", "remote-control"], "last_fetched": 1695554197.550315, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127251446": {"repository_manifest": {"name": "Afvalwijzer", "render_readme": true, "country": "NL", "homeassistant": "0.118.0"}, "full_name": "xirixiz/homeassistant-afvalwijzer", "authors": ["@xirixiz"], "category": "integration", "description": "Provides sensors for some Dutch waste collectors", "domain": "afvalwijzer", "etag_repository": "W/\"ad3db2c091f6bf132fa1649749062da0a267a516cb07dba9098729048cf9f0c2\"", "last_updated": "2023-06-26T05:41:25Z", "stargazers_count": 144, "topics": ["afvalwijzer", "trash"], "last_fetched": 1695554197.684431, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "547177218": {"repository_manifest": {"name": "cFos Powerbrain", "render_readme": true}, "full_name": "mb-software/homeassistant-powerbrain", "authors": ["@mb-software"], "category": "integration", "description": "Custom Component for Homeassistant to integrate cFos Powerbrain devices", "domain": "powerbrain", "etag_repository": "W/\"9938cb8309a70e800c04dd896c652e0fd0c352bcc020fe9703148cf7561d32d0\"", "last_updated": "2023-09-18T03:26:05Z", "stargazers_count": 9, "topics": ["cfos", "evse", "homeassistant-custom-component", "powerbrain", "wallbox"], "last_fetched": 1695554119.859867, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299556199": {"repository_manifest": {"name": "Mercedes Me API", "homeassistant": "2022.11.0"}, "full_name": "xraver/mercedes_me_api", "authors": ["@xraver"], "category": "integration", "description": "Script to use Mercedes Me APIs.", "domain": "mercedesmeapi", "etag_repository": "W/\"2a2bddceb009703436b495a4d42b667e601d3de1a21924a6b351562953c95062\"", "last_updated": "2023-02-26T13:39:29Z", "stargazers_count": 48, "topics": ["mercedes", "mercedes-benz-car"], "last_fetched": 1695554197.73746, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "516625225": {"repository_manifest": {"name": "Sutro", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "ydogandjiev/hass-sutro", "authors": ["@ydogandjiev"], "category": "integration", "description": "This component integrates Home Assistant with Sutro (https://mysutro.com/), a device that enables automated remote monitoring of the temperature as well as the chlorine/bromine, pH, and alkalinity levels.", "domain": "sutro", "etag_repository": "W/\"870522eba0d8064f95b0474dbd2e68fc28b6a9ead4dae541e90afb0ce32da44b\"", "last_updated": "2023-07-20T16:04:19Z", "stargazers_count": 8, "topics": ["sutro"], "last_fetched": 1695554198.807243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572284948": {"repository_manifest": {"name": "Carelink Integration", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "yo-han/Home-Assistant-Carelink", "authors": ["@yo-han"], "category": "integration", "description": "Unofficial Home Assistant Carelink Component", "domain": "carelink", "etag_repository": "W/\"6ea2575d984423ef80132d7cb43c76a45a65d5b36cd2b0a725a43f3808023db0\"", "last_updated": "2023-08-24T08:14:26Z", "stargazers_count": 14, "topics": ["carelink", "diabetic", "hassio-integration", "medtronic"], "last_fetched": 1695554199.158368, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582955421": {"repository_manifest": {"name": "SmartEVSE", "render_readme": true}, "full_name": "dingo35/ha-SmartEVSEv3", "authors": ["@dingo35"], "category": "integration", "description": "Integrate SmartEVSEv3 with HomeAssistant through custom component ", "domain": "smartevse", "etag_repository": "W/\"5a8bfd3a684a2ec017a07d38fe6ba70d049fea145a15905f2427d85b93596cc0\"", "last_updated": "2023-07-26T12:38:46Z", "stargazers_count": 8, "topics": ["evse"], "last_fetched": 1695553625.126973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319744131": {"repository_manifest": {"name": "TapHome", "render_readme": true, "homeassistant": "2022.12.0", "content_in_root": true}, "full_name": "martindybal/taphome-homeassistant", "authors": ["@martindybal"], "category": "integration", "description": "TapHome integration into Home Assistant.", "domain": "taphome", "etag_repository": "W/\"8261b1bad7486e46a31db8c53d2cde0dac00860174356946840ca6231c016592\"", "last_updated": "2023-07-19T09:54:21Z", "stargazers_count": 8, "topics": ["taphome"], "last_fetched": 1695554118.873162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261031401": {"repository_manifest": {"name": "couchpotato", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-couchpotato", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 CouchPotato component to feed Upcoming Media Card.", "domain": "couchpotato", "etag_repository": "W/\"81c3f35d6fcf1cf3726fb974fa67b244570d77bf3bb6c0b4638c082e994e5e1b\"", "last_updated": "2022-06-01T18:11:07Z", "stargazers_count": 5, "topics": ["couchpotato"], "last_fetched": 1695554199.16944, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216181396": {"repository_manifest": {"name": "Teal Theme"}, "full_name": "home-assistant-community-themes/teal", "category": "theme", "description": "Teal theme for Home Assistant", "etag_repository": "W/\"3cdde7663b29241834717574a78df233034d4006847e8932401872c7d0d591f4\"", "last_updated": "2023-04-03T14:07:08Z", "stargazers_count": 1, "last_fetched": 1695553500.364503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262645913": {"repository_manifest": {"name": "gitea", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gitea", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udf75 Gitea component to follow your repositories", "domain": "gitea", "etag_repository": "W/\"5eb46bd0318c90725bcb02f88f045799be82992f306245f3c34d3d71c7d6478b\"", "last_updated": "2022-04-24T20:15:46Z", "stargazers_count": 9, "topics": ["gitea", "homeassistant-custom-component", "pyhton"], "last_fetched": 1695554199.069985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453785158": {"repository_manifest": {"name": "gogs", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-gogs", "authors": ["@youdroid"], "category": "integration", "description": "Gogs component to follow your repositories", "domain": "gogs", "etag_repository": "W/\"419024698ab74456278faf193feb02a80aff9aae345126bfc4bf0f3d179c46b3\"", "last_updated": "2022-04-24T20:35:04Z", "stargazers_count": 1, "topics": ["gogs", "home-assistant-component"], "last_fetched": 1695554199.187619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261614146": {"repository_manifest": {"name": "SickChill", "render_readme": true, "country": "FR"}, "full_name": "youdroid/home-assistant-sickchill", "authors": ["@youdroid"], "category": "integration", "description": "\ud83c\udfa5 SickChill component to feed Upcoming Media Card.", "domain": "sickchill", "etag_repository": "W/\"0fac6026f3d268b1bf09e37446cb8e59c201583c79d3bda47fe6cb792212bb5b\"", "last_updated": "2022-06-01T18:12:09Z", "stargazers_count": 3, "topics": ["sickchill"], "last_fetched": 1695554199.361648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448980525": {"repository_manifest": {"name": "\ud83e\uddf0 ZHA Toolkit - Service for advanced Zigbee Usage", "zip_release": true, "render_readme": true, "persistent_directory": "local", "homeassistant": "2021.1"}, "full_name": "mdeweerd/zha-toolkit", "authors": ["@mdeweerd"], "category": "integration", "description": "\ud83e\uddf0 Zigbee Home Assistant Toolkit - service for \"rare\" Zigbee operations using ZHA on Home Assistant", "domain": "zha_toolkit", "downloads": 2332, "etag_repository": "W/\"74a4338ce22d7cf3825755abf08642bff82f37ce7aa08c959920b1343c8f1c39\"", "last_updated": "2023-09-20T21:58:46Z", "stargazers_count": 94, "topics": ["home-assistant-component", "zha", "zigbee", "zigpy"], "last_fetched": 1695554121.607851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441369133": {"repository_manifest": {"name": "SmartRent", "render_readme": true, "zip_release": true, "filename": "smartrent.zip"}, "full_name": "ZacheryThomas/homeassistant-smartrent", "authors": ["@zacherythomas"], "category": "integration", "description": "Home Assistant Custom Component for SmartRent Locks \ud83d\udd10, Thermostats \ud83c\udf21, Sensors \ud83d\udca7 and Switches\ud83d\udca1", "domain": "smartrent", "downloads": 193, "etag_repository": "W/\"67bf43b68c75daab44046e6aebda34a05800f32ee6cd16fa5ec6a2750c6f9bee\"", "last_updated": "2023-07-30T20:53:55Z", "stargazers_count": 50, "topics": ["smartrent"], "last_fetched": 1695554199.554216, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246939713": {"repository_manifest": {"name": "Wasteplan TRV", "country": "NO", "render_readme": true}, "full_name": "jonkristian/wasteplan_trv", "authors": ["@jonkristian"], "category": "integration", "description": "Home Assistant component for Trondheim renholdsverk pickups.", "domain": "wasteplan_trv", "etag_repository": "W/\"e3090d5de372390fcf920933762b22c6a7bb968618fe5439b75d4c85d68a588f\"", "last_updated": "2023-06-26T10:39:35Z", "stargazers_count": 13, "topics": ["trondheim", "trv", "waste-management"], "last_fetched": 1695554094.551719, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471478227": {"repository_manifest": {"name": "ChargePoint", "render_readme": true}, "full_name": "mbillow/ha-chargepoint", "authors": ["@mbillow"], "category": "integration", "description": "Home Assistant ChargePoint EV Charger Integration", "domain": "chargepoint", "etag_repository": "W/\"2fbbef3ca99fa05f55c7479315d8be90869c9f561085ebb5bdf42acd6e0c20d3\"", "last_updated": "2023-08-22T00:27:40Z", "stargazers_count": 25, "topics": ["chargepoint", "hassio-integration"], "last_fetched": 1695554120.82021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202987887": {"repository_manifest": {"name": "Node-RED Companion", "homeassistant": "2023.7.0"}, "full_name": "zachowj/hass-node-red", "authors": ["@zachowj"], "category": "integration", "description": "Companion Component for node-red-contrib-home-assistant-websocket to help integrate Node-RED with Home Assistant Core", "domain": "nodered", "etag_repository": "W/\"8c8b931cbca530eb58c71aec6e2abf48a14565a27121aa6b5025cd45d76a0138\"", "last_updated": "2023-09-08T04:54:44Z", "stargazers_count": 363, "topics": ["node-red"], "last_fetched": 1695554199.949502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504081359": {"repository_manifest": {"name": "Sonic", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "markvader/sonic", "authors": ["@markvader"], "category": "integration", "description": "Sonic water shutoff valve Home Assistant integration by @markvader", "domain": "sonic", "etag_repository": "W/\"b71eb12989c6fca135303234f77707cbae6855b819434f306e645d448d88e762\"", "last_updated": "2023-09-04T14:56:00Z", "stargazers_count": 9, "topics": ["hero-labs", "herolabs", "leaks", "sonic", "water"], "last_fetched": 1695554118.614249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "641757757": {"repository_manifest": {"name": "Energy meter", "render_readme": true, "zip_release": true, "filename": "energy_meter.zip"}, "full_name": "zeronounours/HA-custom-component-energy-meter", "authors": ["@zeronounours"], "category": "integration", "description": "Provides extended features on top of utility-meter to track costs for each tariff as well as total costs", "domain": "energy_meter", "downloads": 1799, "etag_repository": "W/\"115ffc7afd3d43246b8394c7362a1b447b2717117eefcbc4d8d208f8082a57e8\"", "last_updated": "2023-09-18T15:25:24Z", "stargazers_count": 5, "topics": ["energy"], "last_fetched": 1695554199.841096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305147191": {"repository_manifest": {"name": "CEZ Distribuce CZ", "country": "CZ", "homeassistant": "0.110.0"}, "full_name": "zigul/HomeAssistant-CEZdistribuce", "authors": ["@zigul"], "category": "integration", "description": "CEZ Distribuce - Home Assistant Sensor", "domain": "cezdistribuce", "etag_repository": "W/\"5459374246cf2ba315558211b54961ff93bce98c68d21aef69254bea263bed4e\"", "last_updated": "2023-02-17T15:40:03Z", "stargazers_count": 22, "topics": ["cez"], "last_fetched": 1695554200.311714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234032927": {"repository_manifest": {"name": "Google Light Theme", "render_readme": true}, "full_name": "JuanMTech/google_light_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app light mode.", "etag_repository": "W/\"cd81e97971764fad82c8f9a8fcdc7afce0292a181115ef49c76a9d2fd55a6353\"", "last_updated": "2023-01-12T22:52:07Z", "stargazers_count": 56, "topics": ["assistant-theme"], "last_fetched": 1695553501.063765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544550612": {"repository_manifest": {"name": "W1000 energy monitor", "render_readme": true, "country": ["HU"]}, "full_name": "ZsBT/hass-w1000-portal", "authors": ["@ZsBT"], "category": "integration", "description": "Home Assistant custom component for W1000 energy portal (e.g. https://energia.eon-hungaria.hu/ ) ", "domain": "w1000-energy-monitor", "etag_repository": "W/\"5f3e27b864386a23907de9be4297de15279d268f9c610a8168d3b775735edacb\"", "last_updated": "2023-01-27T00:31:08Z", "stargazers_count": 30, "topics": ["energy", "eon", "home-assistant-component", "w1000"], "last_fetched": 1695554200.862509, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "632590573": {"repository_manifest": {"name": "pollenprognos-card", "content_in_root": true, "filename": "pollenprognos-card.js", "country": ["SE"], "render_readme": true}, "full_name": "krissen/pollenprognos-card", "category": "plugin", "description": "A custom Lovelace card to display pollen information", "etag_repository": "W/\"b52fc87236da227f76e8f656fbac155826a68b0bfb1cbe1049c373b67f9244c8\"", "last_updated": "2023-05-09T17:42:14Z", "stargazers_count": 6, "topics": ["lovelace-card", "lovelace-custom-card", "pollen", "pollenprognos"], "last_fetched": 1695553543.257727, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "306914292": {"repository_manifest": {"name": "Transparent Blue", "render_readme": "true"}, "full_name": "JOHLC/transparentblue", "category": "theme", "description": "A transparent blue theme for Home Assistant", "etag_repository": "W/\"df7cb95c4030a404dc8a11f9a0262e57b8c49bc8813fb4441c9cf7c890adae23\"", "last_updated": "2023-02-26T20:34:39Z", "stargazers_count": 24, "topics": ["homeassistant-addons", "transparent-blue-theme", "transparentblue", "yaml"], "last_fetched": 1695553500.59249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "543068603": {"repository_manifest": {"name": "Philips TV Remote", "content_in_root": true, "filename": "philips-tv-remote.js", "render_readme": true}, "full_name": "abualy/philips-tv-remote-card", "category": "plugin", "description": "philips tv remote card for for home assistant ", "etag_repository": "W/\"84f47bd46b6a798e1feaac958c9f111565316b091bfa20b0daee6df28641c28f\"", "last_updated": "2023-02-27T22:46:21Z", "stargazers_count": 9, "topics": ["hacs-custom", "philips", "remote", "remote-control"], "last_fetched": 1695553508.994523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "506738088": {"repository_manifest": {"name": "Sodexo Card", "country": "PT", "render_readme": true}, "full_name": "netsoft-ruidias/ha-custom-component-sodexo", "authors": ["@netsoft-ruidias"], "category": "integration", "description": "Sodexo - Custom Component for Home Assistant", "domain": "sodexo", "etag_repository": "W/\"4c8c44ef3e8c697860a4b88c60e91e4a3be3379fdfd200d2b42250988d213d7b\"", "last_updated": "2023-05-08T11:26:16Z", "stargazers_count": 4, "topics": ["meal-card", "sodexo"], "last_fetched": 1695554132.914313, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342944383": {"repository_manifest": {"name": "Neerslag Card", "render_readme": true, "country": ["NL", "BE"], "filename": "neerslag-card.js"}, "full_name": "aex351/home-assistant-neerslag-card", "category": "plugin", "description": "Display Buienalarm and/or Buienradar data in a graph for Home Assistant.", "etag_repository": "W/\"1f8b701406baa86d38cb55fc05bf5de197b3bd663068e88fc706f547cf432e3e\"", "last_updated": "2023-08-23T14:38:02Z", "stargazers_count": 23, "last_fetched": 1695553510.086109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234022648": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "JuanMTech/google_dark_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the Google app dark mode.", "etag_repository": "W/\"edd7d1cc136a62038a88229232687703ec92075c8495f9bc23aaf907d8716fac\"", "last_updated": "2023-01-12T22:47:14Z", "stargazers_count": 140, "last_fetched": 1695553500.637258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361776538": {"repository_manifest": {"name": "Your HA Digital Twin floor3d-card", "render_readme": true}, "full_name": "adizanni/floor3d-card", "category": "plugin", "description": "Your Home Digital Twin: aka floor3d-card. Visualize Home Assistant state and perform actions using objects in a 3D home model based on Three.js.", "downloads": 3529, "etag_repository": "W/\"9765292342aecf848e81468c7b4abd7687f9456a781194dff04ca14528c4e66e\"", "last_updated": "2023-04-10T21:30:29Z", "stargazers_count": 344, "topics": ["3d-models", "card", "entity-bindings"], "last_fetched": 1695553510.379132, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "405007807": {"repository_manifest": {"name": "FoxESS Cloud"}, "full_name": "macxq/foxess-ha", "authors": ["@macxq", "@r-amado"], "category": "integration", "description": "Home Assistant & FoxESS integration. Monitor you photovoltaic installation directly from HA \u2600\ufe0f \u26a1\ufe0f ", "domain": "foxess", "etag_repository": "W/\"1a0c6acb4a8cf6c0382c0061b0ac5377c1a0e23d509da61c8a1b72a233083d3b\"", "last_updated": "2023-08-15T06:43:08Z", "stargazers_count": 76, "topics": ["energy-monitor", "foxess", "photovoltaics", "pv"], "last_fetched": 1695554115.15447, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443651710": {"repository_manifest": {"name": "Midnight Teal", "render_readme": true}, "full_name": "Neekster/MidnightTeal", "category": "theme", "description": "A dark teal theme for HomeAssistant.", "etag_repository": "W/\"5be3f6b095cf887296da67fa2299df6904b8a6f5ce41cb75c5ab0130c12fd2e0\"", "last_updated": "2022-03-11T20:50:36Z", "stargazers_count": 1, "topics": ["dark-theme"], "last_fetched": 1695553504.185225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456201687": {"repository_manifest": {"name": "Mushroom Themes", "homeassistant": "2022.11.0b0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom-themes", "category": "theme", "description": "Additional themes for Lovelace Mushroom Cards \ud83c\udf44", "etag_repository": "W/\"606a7e316c3e7db74b33f2d11c9c22de3fece500601008a0ab39abfa9622c756\"", "last_updated": "2022-11-03T11:39:08Z", "stargazers_count": 170, "topics": ["mushroom"], "last_fetched": 1695553504.362895, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263179176": {"repository_manifest": {"name": "Smart Irrigation", "render_readme": true}, "full_name": "jeroenterheerdt/HAsmartirrigation", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Smart Irrigation custom component for Home Assistant", "domain": "smart_irrigation", "etag_repository": "W/\"b6d179e58ec8f0af5de4ef9e1fd0ec3cda7f2c733b4874fbd4f594453b2f1169\"", "last_updated": "2023-09-24T08:02:00Z", "stargazers_count": 249, "topics": ["crop", "evaporation", "evapotranspiration", "flow", "grass", "irrigation", "lawn", "openweathermap", "rain", "snow", "sprinkler", "sprinklers", "water", "watering"], "last_fetched": 1695553675.45317, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461936688": {"repository_manifest": {"name": "Whatsapp Theme", "render_readme": true}, "full_name": "robinwittebol/whatsapp-theme", "category": "theme", "description": "Home Assistant theme based on Whatsapp's colors", "etag_repository": "W/\"91863015da740bf7611a8b4ced8c5eb2652df7fc1186ad4cd5fcac56882631ac\"", "last_updated": "2022-07-17T12:43:07Z", "stargazers_count": 7, "topics": ["darkmode", "green", "lightmode", "whatsapp", "whatsapptheme"], "last_fetched": 1695553504.550407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210194956": {"repository_manifest": {"name": "Car Wash", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-car_wash", "authors": ["@Limych"], "category": "integration", "description": "Car Wash Binary Sensor for Home Assistant", "domain": "car_wash", "downloads": 24, "etag_repository": "W/\"091d4f9afcbd802065a31117007355a3cee1131418f35e5dc6c99edceff7a38b\"", "last_updated": "2023-03-26T00:33:13Z", "stargazers_count": 74, "topics": ["binary-sensor", "car", "car-wash", "wash", "weather-forecast"], "last_fetched": 1695554110.248602, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233445397": {"repository_manifest": {"name": "Sundown Theme"}, "full_name": "am80l/sundown", "category": "theme", "description": "Custom theme for home assistant", "etag_repository": "W/\"48528ae9c5de30c31aaa323e6a596021c5b4e495e9c82f8ff5bd62069deab158\"", "last_updated": "2020-07-29T01:28:19Z", "stargazers_count": 3, "last_fetched": 1695553492.802518, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "390073284": {"repository_manifest": {"name": "Sonos Cloud", "country": "US", "homeassistant": "2022.8.0", "render_readme": true}, "full_name": "jjlawren/sonos_cloud", "authors": ["@jjlawren"], "category": "integration", "description": "Sonos cloud API integration for Home Assistant with improved TTS/alerts handling", "domain": "sonos_cloud", "etag_repository": "W/\"24a8a1848a8cb75c75f4c3fa9e2e99aad1273157057036cc4378c51ead3309ee\"", "last_updated": "2023-02-23T04:27:28Z", "stargazers_count": 98, "topics": ["sonos"], "last_fetched": 1695553680.164287, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "277068969": {"repository_manifest": {"name": "Caule Themes Pack 1 - by caule.studio", "filename": "caule-themes-pack-1.yaml"}, "full_name": "orickcorreia/caule-themes-pack-1", "category": "theme", "description": "10 modern colors | 4 categories of styles (Black Glass, Black, Dark, Light) | 40 themes in total | Animated icons for the weather forecast card | And a bonus automatic theme selector for your interface.", "etag_repository": "W/\"f7cd5a0734d4ed2ba67df7df77dc97a7ffc3a2d70059d4ff618f06ef6c0735e3\"", "last_updated": "2023-08-21T06:11:40Z", "stargazers_count": 217, "topics": ["caule", "pack"], "last_fetched": 1695553504.163586, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339464185": {"repository_manifest": {"name": "Weishaupt WEM Portal"}, "full_name": "erikkastelec/hass-WEM-Portal", "authors": ["@erikkastelec"], "category": "integration", "description": "Custom component for retrieving sensor information from Weishaupt WEM Portal", "domain": "wemportal", "etag_repository": "W/\"73fdf7f43eaa685aae467b991e306a24a570e6ec6040d644829bb19d0173df09\"", "last_updated": "2023-06-01T08:39:06Z", "stargazers_count": 34, "topics": ["weishaupt", "wem-portal"], "last_fetched": 1695553636.573288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249722008": {"repository_manifest": {"name": "Your Name.", "render_readme": true}, "full_name": "Nihvel/your_name", "category": "theme", "description": "Home Assistant theme - A dark, electric blue theme that reminds the movie Your Name. ", "etag_repository": "W/\"01aebdb1e6212fbfc2d49fa3fe3de92cf6fd5bba92db29ae3cb2c177efc390b8\"", "last_updated": "2022-04-29T23:58:08Z", "stargazers_count": 21, "last_fetched": 1695553504.114547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193372044": {"repository_manifest": {"name": "Xiaomi Vacuum Map Card", "render_readme": true, "filename": "xiaomi-vacuum-map-card.js"}, "full_name": "PiotrMachowski/lovelace-xiaomi-vacuum-map-card", "category": "plugin", "description": "This card provides a user-friendly way to fully control map-based vacuums in Home Assistant. Supported brands include Xiaomi (Roborock/Viomi/Dreame/Roidmi/Valetudo/Valetudo RE), Neato, Wyze, Roomba, Ecovacs (and probably more).", "downloads": 30766, "etag_repository": "W/\"dd26fa77f5323703bbfbed6e443d0e05077a73e721d122e6930515fa2ad2dd71\"", "last_updated": "2023-09-14T19:35:00Z", "stargazers_count": 1174, "topics": ["deebot", "ecovacs", "lovelace-card", "myneato", "neato", "roborock", "roomba", "roomba980", "vacuum", "valetudo", "valetudo-re", "wyze", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1695553555.050168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458817847": {"repository_manifest": {"name": "Material 3 Dark & Light Theme 04: Magenta", "filename": "m3-04-magenta.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-04-Magenta", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"2c35f687605625bc05bdd9d96c19b9df89df417cabc2d4b389a7ce792598536d\"", "last_updated": "2022-06-15T07:59:38Z", "topics": ["dark-mode", "home-assistant-theme", "light-mode", "material-3"], "last_fetched": 1695553492.790103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "522634019": {"repository_manifest": {"name": "Clock Weather Card", "render_readme": true, "filename": "clock-weather-card.js"}, "full_name": "pkissling/clock-weather-card", "category": "plugin", "description": "A Home Assistant Card indicating today's date/time, along with an iOS inspired weather forecast for the next days with animated icons", "downloads": 13965, "etag_repository": "W/\"e0e156e6b798675da275780f7a42ac025bc83da326dafd250ce631f6a4071fc3\"", "last_updated": "2023-08-16T13:24:10Z", "stargazers_count": 154, "topics": ["animated", "animation", "bar", "clock", "date", "forecast", "gradient", "icons", "ios", "time", "weather"], "last_fetched": 1695553555.397804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "423082071": {"repository_manifest": {"name": "Flipdown Timer Card", "render_readme": true, "filename": "flipdown-timer-card.js"}, "full_name": "pmongloid/flipdown-timer-card", "category": "plugin", "description": "Flipdown Timer Card for Home Assistant Lovelace", "downloads": 5577, "etag_repository": "W/\"04ed1ebbc473c2ccaafc6cf50d6508d49e2622a46c536e6bd416622e27b0d106\"", "last_updated": "2022-11-18T16:12:38Z", "stargazers_count": 57, "topics": ["timer"], "last_fetched": 1695553555.487718, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "140907992": {"repository_manifest": {"name": "Goldair WiFi climate devices", "render_readme": true, "hide_default_branch": true, "country": ["NZ", "AU"], "homeassistant": "0.96.0", "zip_release": true, "filename": "homeassistant-goldair-climate.zip"}, "full_name": "nicole-ashley/homeassistant-goldair-climate", "authors": ["@nikrolls"], "category": "integration", "description": "Home Assistant integration for Goldair WiFi heaters, dehumidifiers and fans", "domain": "goldair_climate", "downloads": 998, "etag_repository": "W/\"69685d5e94889bc1b98489c9198e55f10b5d6e2fe55b4801bd8490c3fb0d31bf\"", "last_updated": "2022-05-17T04:15:51Z", "stargazers_count": 17, "topics": ["dehumidifier", "fan", "goldair", "heater", "wifi"], "last_fetched": 1695554134.693473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "599334003": {"repository_manifest": {"name": "simple-weather-clock", "render_readme": true}, "full_name": "pkscout/simple-weather-clock", "category": "plugin", "description": "A card for Home Assistant designed to display a digital clock with six slots below for various numeric environmental sensor data.", "etag_repository": "W/\"91e99d6bbe0b82d0758e13cadc0d2b663dad88de160694c38997c73b40c28c44\"", "last_updated": "2023-06-03T21:45:55Z", "stargazers_count": 2, "topics": ["clock", "weather"], "last_fetched": 1695553555.102687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204192861": {"repository_manifest": {"name": "Average Sensor", "hacs": "1.6.0", "homeassistant": "2022.7.0"}, "full_name": "Limych/ha-average", "authors": ["@Limych"], "category": "integration", "description": "Average Sensor for Home Assistant", "domain": "average", "downloads": 299, "etag_repository": "W/\"40247fc90882a749d6e94cc9bbeecb5383ff4d4f1ba996628a629559d6310997\"", "last_updated": "2023-09-23T14:23:09Z", "stargazers_count": 252, "topics": ["average", "home-assistant-component"], "last_fetched": 1695554110.347692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287840715": {"repository_manifest": {"name": "OZW Network Visualization Card", "content_in_root": true, "filename": "ozw-network-visualization-card.js", "homeassistant": "0.115.0", "render_readme": true}, "full_name": "abmantis/ozw-network-visualization-card", "category": "plugin", "description": "Lovelace custom card for visualizing the ZWave network with the OpenZWave (beta) integration.", "etag_repository": "W/\"6577088e8df24ff6819ac50dd70ad8e3b330da951767b8506914372cc4225cd2\"", "last_updated": "2022-06-05T22:24:45Z", "stargazers_count": 30, "topics": ["ozw", "zwave", "zwave2mqtt"], "last_fetched": 1695553508.674621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193408399": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-html-card", "category": "plugin", "description": "This card displays provided data as an HTML content of a card.", "etag_repository": "W/\"f962f7a9d68e4d30b5ea3282428aed900c100142ee743dfe39aadf25c13d5687\"", "last_updated": "2023-07-20T20:13:11Z", "stargazers_count": 37, "topics": ["lovelace-card"], "last_fetched": 1695553554.459827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197759180": {"repository_manifest": {}, "full_name": "postlund/search-card", "category": "plugin", "description": "Quickly search for entities from a Lovelace card.", "etag_repository": "W/\"b3754253249fe59497692da71186d5e7c3cd3ceba662cf9a5d65683992e6a4df\"", "last_updated": "2022-10-07T18:53:17Z", "stargazers_count": 90, "last_fetched": 1695553555.191926, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "539629703": {"repository_manifest": {"name": "MeteoGalicia", "country": "ES", "zip_release": true, "filename": "homeassistant-meteogalicia.zip"}, "full_name": "Danieldiazi/homeassistant-meteogalicia", "authors": ["@danieldiazi"], "category": "integration", "description": "A Home Assistant integration that gives you weather info from MeteoGalicia, the meteorological agency for Galicia, Spain", "domain": "meteogalicia", "downloads": 47, "etag_repository": "W/\"a2143986707e384ad94d9decab452faa20eb7a2aea1947190b12a082956832c2\"", "last_updated": "2023-09-23T13:23:02Z", "stargazers_count": 7, "topics": ["meteogalicia", "weather", "weather-forecast", "weather-station"], "last_fetched": 1695553618.446248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237532750": {"repository_manifest": {"name": "Harmony Card", "render_readme": true, "filename": "harmony-card.js"}, "full_name": "sbryfcz/harmony-card", "category": "plugin", "description": "A Home Assistant Lovelace Care for Harmony Integration", "downloads": 5819, "etag_repository": "W/\"d27389e7eb4095f058837f0c45eaf94a19a7bbafa753f196339230ba59f77d27\"", "last_updated": "2023-09-24T01:48:57Z", "stargazers_count": 95, "last_fetched": 1695553559.559703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145180996": {"repository_manifest": {"name": "Feedparser", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "custom-components/feedparser", "authors": ["@iantrich", "@ogajduse"], "category": "integration", "description": "\ud83d\udcf0 RSS Feed Integration", "domain": "feedparser", "etag_repository": "W/\"d42841e6c7554c45931b7ada46651a3d1b5387766a130cdde3a973d1d224882c\"", "last_updated": "2023-09-13T21:26:35Z", "stargazers_count": 111, "topics": ["feedparser", "home-assistant-component", "rss", "rss-parser"], "last_fetched": 1695553607.31072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199546187": {"repository_manifest": {}, "full_name": "PiotrMachowski/lovelace-google-keep-card", "category": "plugin", "description": "This is a companion card for Google Keep sensor. It displays notes downloaded by integration in a friendly way, similar to Google Keep app.", "etag_repository": "W/\"19f9961956018f9ba80eb6cbb23f79e3ba03b8dda47a1932b5c6013900d2efff\"", "last_updated": "2023-07-07T02:53:42Z", "stargazers_count": 50, "topics": ["lovelace-card"], "last_fetched": 1695553554.133682, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291157903": {"repository_manifest": {"name": "RRD Recorder", "render_readme": true}, "full_name": "dgomes/ha_rrd_recorder", "authors": ["@dgomes"], "category": "integration", "description": "RRD Custom Component for Home Assistant", "domain": "rrd_recorder", "etag_repository": "W/\"41789fe17c51703b453b98e6be0737ba30beb59724fdab3d4b847d3ac88eadcf\"", "last_updated": "2022-08-18T16:20:29Z", "stargazers_count": 10, "topics": ["home-assistant-component", "rrdtool"], "last_fetched": 1695553624.891757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183064800": {"repository_manifest": {"name": "Email Sensor", "render_readme": true}, "full_name": "ljmerza/ha-email-sensor", "authors": ["@ljmerza"], "category": "integration", "description": "Email Sensor for collecting tracking numbers from over 40 providers.", "domain": "email", "etag_repository": "W/\"48c926ccd909af7b19b18fd62782ceaf2a428463d907041bff95afe4d716164d\"", "last_updated": "2023-07-27T17:36:02Z", "stargazers_count": 77, "last_fetched": 1695554112.779219, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "538235457": {"repository_manifest": {"name": "ZTE tracker", "render_readme": true, "country": "ES"}, "full_name": "juacas/zte_tracker", "authors": ["@juacas"], "category": "integration", "description": "Device tracker for ZTE F6640 Router in Home Assistant", "domain": "zte_tracker", "etag_repository": "W/\"f81b1fafa96ac06425d46742165ceb99fa580d92bf60956b5265e1bcd4d72e1e\"", "last_updated": "2023-08-31T07:59:31Z", "stargazers_count": 6, "topics": ["device-tracker", "router"], "last_fetched": 1695554094.848257, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "614083491": {"repository_manifest": {"name": "Horizon Card", "render_readme": true, "filename": "lovelace-horizon-card.js"}, "full_name": "rejuvenate/lovelace-horizon-card", "category": "plugin", "description": "Sun Card successor: Visualize the position of the Sun over the horizon.", "downloads": 5088, "etag_repository": "W/\"4d65107a3bd83270e4b09631c2310dc9ff2a0a0eafc19fce5702e1e1a9d304c1\"", "last_updated": "2023-08-15T23:47:23Z", "stargazers_count": 191, "topics": ["home-assistant-sun-card", "homeassistant-sun-card", "lovelace-card", "sun-card"], "last_fetched": 1695553557.3149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236317072": {"repository_manifest": {"name": "Pie Chart Card", "content_in_root": true, "filename": "pie-chart-card.js", "render_readme": true}, "full_name": "sdelliot/pie-chart-card", "category": "plugin", "description": "Generalized Lovelace pie chart card", "etag_repository": "W/\"5f44ac221422eeb16638bd10cce9c2903696652bfdc2489f928ffcc987a12cc4\"", "last_updated": "2020-03-07T21:19:19Z", "stargazers_count": 11, "last_fetched": 1695553559.3051, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340616586": {"repository_manifest": {"name": "Narodmon Cloud Integration", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-narodmon", "authors": ["@Limych"], "category": "integration", "description": "Component to integrate Narodmon cloud into Home Assistant", "domain": "narodmon", "downloads": 54, "etag_repository": "W/\"baadb30cc4b0ee543415c99958433551b61b37d09e3f01ef7dbc2aae6f4b872a\"", "last_updated": "2023-03-09T08:57:47Z", "stargazers_count": 15, "topics": ["home-assistant-component", "narodmon", "weather"], "last_fetched": 1695554110.693264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594389396": {"repository_manifest": {"name": "Energy Overview Card", "render_readme": true, "filename": "energy-overview-card.js"}, "full_name": "Sese-Schneider/ha-energy-overview-card", "category": "plugin", "description": "A simple card which displays energy usage details of one or multiple entities.", "downloads": 5742, "etag_repository": "W/\"5e6111f1a46d8e012b857c3c79501213fe7093329c5a51bd59192ee680b69437\"", "last_updated": "2023-03-30T10:07:15Z", "stargazers_count": 35, "topics": ["energy", "energy-monitor", "power", "shelly-3em"], "last_fetched": 1695553559.491555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241706284": {"repository_manifest": {"name": "Button Text Card", "render_readme": true, "filename": "button-text-card.js"}, "full_name": "Savjee/button-text-card", "category": "plugin", "description": "Custom, \"neumorphism\" Lovelace card", "etag_repository": "W/\"1bb20da2c932664ddbac3e7e290a885c6055fa9824783070a04c03800b69e61f\"", "last_updated": "2023-04-06T05:55:03Z", "stargazers_count": 112, "topics": ["lovelace-card", "templating", "typescript"], "last_fetched": 1695553559.067606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "218178802": {"repository_manifest": {"name": "Local Conditional card", "render_readme": true, "filename": "local-conditional-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-Local-Conditional-card", "category": "plugin", "description": "This card can show and hide a specific card on current device while not affecting other windows. It does not require any integration to run.", "downloads": 1791, "etag_repository": "W/\"2257ef00603a9d5f2696a5143122c90adf5440cceeb2f8333fa7b5e4075f08c6\"", "last_updated": "2023-07-07T02:53:33Z", "stargazers_count": 53, "topics": ["lovelace-card"], "last_fetched": 1695553553.986945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319346850": {"repository_manifest": {"name": "Snowtire Sensor", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-snowtire", "authors": ["@limych"], "category": "integration", "description": "Home Assistant sensor to predict if it's time to change car tires from summer to winter and vice versa.", "domain": "snowtire", "downloads": 6, "etag_repository": "W/\"eb41eef1deabbdbc54201608d70dd6efda64961632e9ee6992d4f918f8b12094\"", "last_updated": "2023-03-27T16:05:52Z", "stargazers_count": 24, "topics": ["car-winter-tires", "home-assistant-component", "tires"], "last_fetched": 1695554111.892169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417802358": {"repository_manifest": {"name": "TooGoodToGo", "render_readme": true}, "full_name": "Chouffy/home_assistant_tgtg", "authors": ["@chouffy", "@tjorim"], "category": "integration", "description": "TooGoodToGo items stock as sensor in Home Assistant", "domain": "tgtg", "etag_repository": "W/\"421c62a23f0053bdd63796b4e5e8113e11c6e6f053c870bc6b3a46b4473db001\"", "last_updated": "2023-09-15T07:20:57Z", "stargazers_count": 51, "topics": ["home-assistant-integration", "python3", "toogoodtogo"], "last_fetched": 1695553602.470487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205261230": {"repository_manifest": {"name": "HTML Jinja2 Template card", "filename": "html-template-card.js"}, "full_name": "PiotrMachowski/Home-Assistant-Lovelace-HTML-Jinja2-Template-card", "category": "plugin", "description": "This card displays provided Jinja2 template as an HTML content of a card. It uses exactly the same engine as Home Assistant in Developer tools.", "etag_repository": "W/\"1aad4cbfad87767aa7eb2f4053ef5b2114a8dd4014124fafa54d3d49f942bc9d\"", "last_updated": "2023-07-07T02:53:40Z", "stargazers_count": 47, "topics": ["jinja2", "lovelace-card"], "last_fetched": 1695553553.866811, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207110572": {"repository_manifest": {"name": "Avfallsor", "country": "NOR", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "custom-components/sensor.avfallsor", "authors": ["@hellowlol"], "category": "integration", "description": "Simple sensor for avfallsor", "domain": "avfallsor", "etag_repository": "W/\"fc5cced35db2c810c7c39911d55fbc351ecc83e0fbfdaa02d3c1376b35967dd8\"", "last_updated": "2022-12-27T19:15:58Z", "stargazers_count": 8, "last_fetched": 1695553609.735268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536329656": {"repository_manifest": {"name": "Firemote Card", "render_readme": true, "filename": "HA-Firemote.js"}, "full_name": "PRProd/HA-Firemote", "category": "plugin", "description": "Amazon Fire TV, Fire streaming stick, Chromecast, NVIDIA Shield, and Xiaomi Mi remote control emulator for Home Assistant", "etag_repository": "W/\"be8fd2f64af0bdd2bcb2c73ff33f3bd43fcfe1635eafb3cabbc2270792684a47\"", "last_updated": "2023-09-23T20:12:46Z", "stargazers_count": 111, "topics": ["amazon-fire", "amazon-fire-cube", "amazon-fire-stick", "amazon-fire-tv", "android", "android-debug-bridge", "android-tv", "android-tv-remote", "chromecast", "chromecast-4k", "firestick4k", "nvidia", "nvidia-shield", "shield", "xiaomi", "xiaomi-mi"], "last_fetched": 1695553556.1371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383732864": {"repository_manifest": {"name": "Garmin Connect", "render_readme": true}, "full_name": "cyberjunky/home-assistant-garmin_connect", "authors": ["@cyberjunky"], "category": "integration", "description": "The Garmin Connect integration allows you to expose data from Garmin Connect to Home Assistant.", "domain": "garmin_connect", "etag_repository": "W/\"ecb972238dcb01a526b08efbeae06746355d0cd49f2094e57f8979f32b0abd2c\"", "last_updated": "2023-09-15T11:03:59Z", "stargazers_count": 138, "topics": ["garmin-connect", "home-assistant-component"], "last_fetched": 1695553613.006878, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "331701152": {"repository_manifest": {"name": "apexcharts-card", "render_readme": true}, "full_name": "RomRider/apexcharts-card", "category": "plugin", "description": "\ud83d\udcc8 A Lovelace card to display advanced graphs and charts based on ApexChartsJS for Home Assistant", "downloads": 59055, "etag_repository": "W/\"127fd13452d095b4b2fa9f1b812cd4d05f82740c63c1546e1060419fdb0d6037\"", "last_updated": "2023-09-07T13:36:12Z", "stargazers_count": 798, "topics": ["apexcharts", "iot"], "last_fetched": 1695553558.498092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "465062337": {"repository_manifest": {"name": "Electrolux Care Integration (Not Official)", "hacs": "1.32.1", "homeassistant": "2023.5.3"}, "full_name": "mauro-midolo/homeassistant_electrolux_status", "authors": ["@mauro-midolo"], "category": "integration", "description": "Get the status from your Electrolux Care devices", "domain": "electrolux_status", "etag_repository": "W/\"5f74e90ccbb783e3fe4dfa0dc7f930438f46152a86139abfb8e4b78c910af9a6\"", "last_updated": "2023-09-22T11:03:52Z", "stargazers_count": 67, "topics": ["aeg", "electrolux", "home-assistant-integration"], "last_fetched": 1695554119.819442, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175927964": {"repository_manifest": {"name": "Podcast Card", "render_readme": true}, "full_name": "iantrich/podcast-card", "category": "plugin", "description": "\ud83c\udfa7 Podcast Player Card", "downloads": 1371, "etag_repository": "W/\"9ed34161a009ef584b6c2cbc39fa6a48f02de1e1172dc69f20c8d3df8d9e15aa\"", "last_updated": "2023-07-11T01:43:27Z", "stargazers_count": 21, "last_fetched": 1695553536.011495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537806998": {"repository_manifest": {"name": "Overwolf Webhook"}, "full_name": "lociii/homeassistant-overwolf-status", "authors": ["@lociii"], "category": "integration", "description": "Home Assistant custom integration that handles game events from Overwolf and broadcasts them as events in Home Assistant", "domain": "overwolfstatus", "etag_repository": "W/\"4938d4cfe690127a0585c43847b6b6753e3b07cec41150e247425e74bb070dc8\"", "last_updated": "2023-03-29T18:56:17Z", "stargazers_count": 4, "topics": ["overwolf", "overwolf-hooks", "pubg"], "last_fetched": 1695554112.787835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216008446": {"repository_manifest": {"name": "Logbook Card", "filename": "logbook-card.js"}, "full_name": "royto/logbook-card", "category": "plugin", "description": "Logbook card for Home Assistant UI Lovelace", "downloads": 2594, "etag_repository": "W/\"21ba1b88df89a2278eb7ebf601d2fc9b101445720917f0f79bbea972fe4d026b\"", "last_updated": "2023-08-23T20:17:02Z", "stargazers_count": 119, "last_fetched": 1695553558.902039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594007512": {"repository_manifest": {"name": "Moonraker", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "marcolivierarsenault/moonraker-home-assistant", "authors": ["@marcolivierarsenault", "@cashew22"], "category": "integration", "description": "Home Assistant integration for Moonraker, Klipper and Mainsail", "domain": "moonraker", "etag_repository": "W/\"f581c2be9f35e6b730c27358b1fff5ac61ba5dd673050ec67f4bb8f83c3ba051\"", "last_updated": "2023-09-20T02:45:01Z", "stargazers_count": 103, "topics": ["klipper", "moonraker"], "last_fetched": 1695554117.240487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302122266": {"repository_manifest": {"name": "Cover Icon Element", "render_readme": true, "filename": "cover-icon-element.js"}, "full_name": "queimadus/cover-icon-element", "category": "plugin", "description": "Improved cover icon for home assistant picture element", "etag_repository": "W/\"d1adf8811ab51a84ed4ba733a055df9359a72de9de4164f5a33e5c28043113e3\"", "last_updated": "2023-08-07T18:15:04Z", "stargazers_count": 5, "topics": ["cover"], "last_fetched": 1695553555.965479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458664750": {"repository_manifest": {"name": "Google Theme - Based on the Android light and dark interface", "render_readme": true}, "full_name": "JuanMTech/google-theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the Google Android light and dark mode interface", "etag_repository": "W/\"be6d46bd852cbc4247623cd58ac541b6e278763a922ace4601e9e3b818d7d421\"", "last_updated": "2023-01-13T19:49:35Z", "stargazers_count": 72, "topics": ["darkmode", "googletheme", "lightmode"], "last_fetched": 1695553500.449512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449218690": {"repository_manifest": {}, "full_name": "rautesamtr/thermal_comfort_icons", "category": "plugin", "description": "Thermal Comfort custom icons for Home Assistant to accompany the MDI icons", "etag_repository": "W/\"0238e4707990ffd6fc756cc1e59cb37b8096a22cbceecec2b6321799a1ef5acd\"", "last_updated": "2022-01-29T15:14:16Z", "stargazers_count": 19, "topics": ["absolute-humidity", "dew-point", "dew-point-perception", "frost-point", "frost-risk", "heat-index", "icons", "iconset", "simmer-index", "simmer-zone", "thermal-perception"], "last_fetched": 1695553557.112042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447474061": {"repository_manifest": {"name": "Irrigation Unlimited Card", "render_readme": true, "filename": "irrigation-unlimited-card.js"}, "full_name": "rgc99/irrigation-unlimited-card", "category": "plugin", "description": "A companion card for the Irrigation Unlimited integration", "downloads": 818, "etag_repository": "W/\"84ec1404207a131b1c3cb4e95675cccf5976c6e45fe7d6315948974b380061ae\"", "last_updated": "2023-08-07T02:00:24Z", "stargazers_count": 13, "topics": ["irrigation", "irrigation-controller", "sprinkler-controller", "watering"], "last_fetched": 1695553557.416884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313269367": {"repository_manifest": {"name": "kibibit Better Graph Colors", "render_readme": true, "filename": "kb-better-graph-colors.js"}, "full_name": "Kibibit/kb-better-graph-colors", "category": "plugin", "description": "Replace the history graph colors with a material design color palette.", "etag_repository": "W/\"15304f2aa88665061e191a8ce729f2b4cf9f122b8a5ebd1cab4b9398a15e55a6\"", "last_updated": "2022-06-19T17:37:46Z", "stargazers_count": 9, "topics": ["color-scheme", "graphs", "palette"], "last_fetched": 1695553541.929263, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313270182": {"repository_manifest": {"name": "kibibit Frosted Cards", "render_readme": true, "filename": "kb-frosted-cards.js"}, "full_name": "Kibibit/kb-frosted-cards", "category": "plugin", "description": "Make Cards and Popups blur everything behind them.", "etag_repository": "W/\"8263ff09ab501abc947e9d421b2b142c093b6b6f4842cd158088d32db169c613\"", "last_updated": "2022-06-19T17:40:45Z", "stargazers_count": 9, "topics": ["effect", "frosted-glass"], "last_fetched": 1695553542.522551, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376904517": {"repository_manifest": {"name": "Timer Bar Card", "render_readme": true, "filename": "timer-bar-card.js"}, "full_name": "rianadon/timer-bar-card", "category": "plugin", "description": "A progress bar display for Home Assistant timers", "downloads": 7656, "etag_repository": "W/\"78423f25cdb5281351356b803146c85ea0ea3af7f17def455fc30d1e946b466a\"", "last_updated": "2023-07-21T22:02:18Z", "stargazers_count": 206, "last_fetched": 1695553558.249985, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378256174": {"repository_manifest": {"name": "OpenSprinkler Card", "render_readme": true, "filename": "opensprinkler-card.js"}, "full_name": "rianadon/opensprinkler-card", "category": "plugin", "description": "Home Assistant card for collecting OpenSprinkler status", "downloads": 2143, "etag_repository": "W/\"403d867ae0634f3ced7b358b55edb954d7ab148eed810841e1c41efeb7610dd6\"", "last_updated": "2022-11-25T09:22:58Z", "stargazers_count": 59, "topics": ["opensprinkler"], "last_fetched": 1695553557.940281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197715418": {"repository_manifest": {}, "full_name": "RodBr/miflora-card", "category": "plugin", "description": "A Home Assistant Lovelace card to report MiFlora plant sensors based on the HA Plant Card.", "etag_repository": "W/\"fd2906e99422abead06682736df22ac95066e0b36e15f3e56fe70c46259bc77e\"", "last_updated": "2023-04-16T12:17:24Z", "stargazers_count": 21, "last_fetched": 1695553557.809264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420365062": {"repository_manifest": {"name": "Last Changed Element", "render_readme": true, "filename": "last-changed-element.js"}, "full_name": "queimadus/last-changed-element", "category": "plugin", "description": "Display when entity was last changed in home assistant picture element", "etag_repository": "W/\"a8f28b20e7ac1a09d7521e267d2d9fbd25a7d7a0cf22f5375ee6fd20339b89f8\"", "last_updated": "2023-08-07T18:16:25Z", "stargazers_count": 7, "last_fetched": 1695553556.023944, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256709811": {"repository_manifest": {"name": "JQ-300/200/100 Indoor Air Quality Meter", "hacs": "1.6.0", "homeassistant": "2022.10.0"}, "full_name": "Limych/ha-jq300", "authors": ["@Limych"], "category": "integration", "description": "JQ-300 Indoor Air Quality Meter Home Assistant Integration", "domain": "jq300", "downloads": 9, "etag_repository": "W/\"871fc83c5bdc1f63b8b0a44d03297337f6ba9664d6d15982b7db575d5812f63e\"", "last_updated": "2023-03-08T15:57:41Z", "stargazers_count": 44, "topics": ["air-quality", "air-quality-measurements", "air-quality-sensor", "home-assistant-component"], "last_fetched": 1695554110.593992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289188530": {"repository_manifest": {"name": "Tesla style solar power card", "content_in_root": true, "filename": "tesla-style-solar-power-card.js", "render_readme": true}, "full_name": "reptilex/tesla-style-solar-power-card", "category": "plugin", "description": "Home assistant power card mimicking the one tesla provides for the powerwall app.", "etag_repository": "W/\"83f90c50a59d73e9b711c3ba19baff040c0810dff723998a40cf40c35322bf3e\"", "last_updated": "2023-09-15T19:31:28Z", "stargazers_count": 184, "topics": ["battery", "card", "eletric-car", "power", "solar-energy"], "last_fetched": 1695553557.463109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292008305": {"repository_manifest": {"name": "Steam Card", "render_readme": true, "filename": "kb-steam-card.js"}, "full_name": "Kibibit/kb-steam-card", "category": "plugin", "description": "A Home Assistant card for Steam integrations", "etag_repository": "W/\"846b6a272a3b15c3f69cea4f13ebea4eccecb5014003ad4962b6eab1a348441c\"", "last_updated": "2023-04-21T15:14:57Z", "stargazers_count": 22, "topics": ["card", "steam"], "last_fetched": 1695553542.85516, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330454534": {"repository_manifest": {"name": "La Marzocco Config Card", "render_readme": true, "filename": "lamarzocco-config-card.js"}, "full_name": "rccoleman/lovelace-lamarzocco-config-card", "category": "plugin", "description": "Lovelace card to configure network-connected La Marzocco espresso machines", "downloads": 125, "etag_repository": "W/\"2f49893b0e76d216405e9ebeb317e631b0c4e416e9f7094ec9d5c1ed4aa1de86\"", "last_updated": "2022-11-15T05:00:39Z", "stargazers_count": 2, "topics": ["automation", "espresso", "lamarzocco", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553557.156144, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279157206": {"repository_manifest": {"name": "Water Heater Card", "render_readme": true, "homeassistant": "0.81.0", "filename": "water-heater-card.js"}, "full_name": "rsnodgrass/water-heater-card", "category": "plugin", "description": "Water Heater card for Home Assistant's Lovelace UI", "etag_repository": "W/\"a9267aab7aa856d0fbf0abff33f078764b690217423007546fab0aa685fe4d73\"", "last_updated": "2022-09-09T06:27:18Z", "stargazers_count": 4, "last_fetched": 1695553559.062387, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173563704": {"repository_manifest": {}, "full_name": "custom-components/climate.programmable_thermostat", "category": "integration", "description": "Programmable thermostat that let you have a smart thermostat on budget.", "domain": "programmable_thermostat", "etag_repository": "W/\"114875d916282a17598ad9c9f2dc1dc21a065c5e146264315b98749832ceba58\"", "last_updated": "2023-08-25T10:25:15Z", "stargazers_count": 105, "last_fetched": 1695553606.782504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228649088": {"repository_manifest": {"name": "P2000 Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-p2000", "authors": ["@cyberjunky"], "category": "integration", "description": ":fire_engine: This component tracks P2000 emergency events in The Netherlands.", "domain": "p2000", "etag_repository": "W/\"601c9d46b484ffc9f7356c2206eef8dfc8c7b8df6c6d12ddc1ecca19de0bafae\"", "last_updated": "2022-12-31T13:58:27Z", "stargazers_count": 50, "topics": ["emergency", "p2000"], "last_fetched": 1695553613.269647, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "578872078": {"repository_manifest": {"name": "Bouncie", "country": "US", "homeassistant": "2022.11.0"}, "full_name": "mandarons/ha-bouncie", "authors": ["@mandarons"], "category": "integration", "description": "Home Assistant custom integration for Bouncie.com - track your car stuff in Home Assistant", "domain": "bouncie", "downloads": 3, "etag_repository": "W/\"ce1a3ab3f08dbaf60358058b0f3a1f0542e9fb74f4f1a08beca52a31f436b439\"", "last_updated": "2023-08-19T22:50:22Z", "stargazers_count": 17, "topics": ["car", "car-metrics", "home-assistant-custom-component"], "last_fetched": 1695554117.07596, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262803775": {"repository_manifest": {"name": "Carbon Intensity UK", "hacs": "0.24.0", "homeassistant": "0.108.0"}, "full_name": "jscruz/sensor.carbon_intensity_uk", "authors": ["@jscruz"], "category": "integration", "description": "Carbon Intensity UK Sensor for Home Assistant", "domain": "carbon_intensity_uk", "etag_repository": "W/\"ddfc7d2a1a200f6cf177dd53e0971d9e9e0950b9abfcd423860bcc04a47972fe\"", "last_updated": "2022-07-07T21:57:10Z", "stargazers_count": 4, "topics": ["carbon", "custom-integration", "energy", "sensor-platform"], "last_fetched": 1695554094.502063, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327695137": {"repository_manifest": {"name": "Kodi Media Sensors", "homeassistant": "2022.8.7", "render_readme": true}, "full_name": "jtbgroup/kodi-media-sensors", "authors": ["@boralyl", "@Gautier Vanderslyen"], "category": "integration", "description": "Custom component to feed multiple sensors in Home Assistan and so custom cards can be to display those sensors. This repository is a fork of https://github.com/boralyl/kodi-recently-added", "domain": "kodi_media_sensors", "etag_repository": "W/\"a1903e5f9e995e5de4f4645d1418ee75ca45dddde03fd6ca7d616f5f1d0d712c\"", "last_updated": "2023-04-30T15:03:45Z", "stargazers_count": 9, "topics": ["home-assistant-component", "homeassistant-custom-component", "kodi", "playlist", "playlists", "pyth"], "last_fetched": 1695554094.845413, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199291345": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-qBitTorrentAlternativeSpeed", "authors": ["@JurajNyiri"], "category": "integration", "description": "Adds ability to switch alternative speed in qBittorrent through Home Assistant.", "domain": "qbittorrent_alternative_speed", "etag_repository": "W/\"6dd43c7c71d6dba48ec994642936505cec11c43b001ebd9f8645b35859b1e467\"", "last_updated": "2022-07-07T10:39:14Z", "stargazers_count": 10, "last_fetched": 1695554096.614335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "170309600": {"repository_manifest": {"name": "Atrea", "homeassistant": "2022.4.0"}, "full_name": "JurajNyiri/HomeAssistant-Atrea", "authors": ["@JurajNyiri"], "category": "integration", "description": "Custom component allowing control of Atrea ventilation units", "domain": "atrea", "etag_repository": "W/\"75a8d67dfd139c94ad9a81587978712a650d3f3d50a40a73124218df7878775e\"", "last_updated": "2023-01-21T12:42:13Z", "stargazers_count": 19, "last_fetched": 1695554096.829476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453890532": {"repository_manifest": {"name": "Ontario Energy Board", "render_readme": true, "country": "CA"}, "full_name": "jrfernandes/ontario_energy_board", "authors": ["@jrfernandes"], "category": "integration", "description": "Home Assistant component that installs a sensor with the current energy rate for Ontario energy companies", "domain": "ontario_energy_board", "etag_repository": "W/\"4a3ab29fffbb7418810527d30dd4f920ec35902a632746ab4c0311dfd40d3465\"", "last_updated": "2023-09-17T12:19:16Z", "stargazers_count": 27, "topics": ["canada", "electricity", "energy-prices", "hydro", "ontario"], "last_fetched": 1695554094.560908, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625887812": {"repository_manifest": {"name": "Azure OpenAI Conversation", "filename": "azure_openai_conversation.zip", "homeassistant": "2023.4.0", "render_readme": true, "zip_release": true}, "full_name": "joselcaguilar/azure-openai-ha", "authors": ["@joselcaguilar"], "category": "integration", "description": "Azure OpenAI Conversation for Home Assistant", "domain": "azure_openai_conversation", "downloads": 758, "etag_repository": "W/\"bb5f9106b13fae13075d0c6d79e775683a7f96fe130d23d014915cdd8f0e5d54\"", "last_updated": "2023-09-18T16:58:50Z", "stargazers_count": 25, "topics": ["azure-openai", "gpt"], "last_fetched": 1695554094.565987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "322881712": {"repository_manifest": {"name": "Honor Router 3/X3 tracker", "render_readme": "true"}, "full_name": "juacas/honor_x3", "authors": ["@juacas"], "category": "integration", "description": "Honor X3 router Device tracker for Home Assistant", "domain": "honor_x3", "etag_repository": "W/\"e52114fe48025c140a9d1726cbaa3d3aaf809ee4a4fba00eca4c1df06d4c06d3\"", "last_updated": "2021-08-24T07:44:17Z", "stargazers_count": 10, "topics": ["device-tracker", "presence-detection", "router"], "last_fetched": 1695554094.574927, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403062943": {"repository_manifest": {"name": "battery_consumption"}, "full_name": "jugla/battery_consumption", "authors": ["@jugla"], "category": "integration", "description": "Home Assistant Component to compute battery consumption", "domain": "battery_consumption", "etag_repository": "W/\"bfb450be79f7234b9d5bfa2f6f7ea465d425c389cb3ea4b696ce1f91a7d89fca\"", "last_updated": "2023-05-13T21:56:34Z", "stargazers_count": 12, "topics": ["battery", "consumption"], "last_fetched": 1695554094.802013, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242335771": {"repository_manifest": {"name": "SVT Play", "country": ["SE"]}, "full_name": "lindell/home-assistant-svt-play", "category": "integration", "description": "Play SVT Play videos and channels via home assistant", "domain": "svt_play", "etag_repository": "W/\"a72f34466aba95e3ecb46f1e845383f2c1df440c646eed3ad77f2ffb7fe019b1\"", "last_updated": "2022-05-24T17:33:40Z", "stargazers_count": 20, "topics": ["svt", "svtplay", "sweden", "tv", "video"], "last_fetched": 1695554112.285513, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299123388": {"repository_manifest": {"name": "Magic Areas", "homeassistant": "2021.7.0"}, "full_name": "jseidl/hass-magic_areas", "authors": ["@jseidl"], "category": "integration", "description": "Areas with batteries included for Home Assistant", "domain": "magic_areas", "etag_repository": "W/\"35a1d5bee06c420ad00ba2968ea62c864f30a51ceefd5d5ab299d41d19862991\"", "last_updated": "2023-03-05T23:23:13Z", "stargazers_count": 153, "topics": ["automation"], "last_fetched": 1695554094.766639, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300358676": {"repository_manifest": {"name": "Tapo: Cameras Control", "homeassistant": "2023.5.2"}, "full_name": "JurajNyiri/HomeAssistant-Tapo-Control", "authors": ["@JurajNyiri"], "category": "integration", "description": "Control for Tapo cameras as a Home Assistant component", "domain": "tapo_control", "etag_repository": "W/\"741eb3f8e07a99941ecb5d82b5fe791b943e467b512aa9a8312e2c53626f932d\"", "last_updated": "2023-08-21T12:19:34Z", "stargazers_count": 612, "topics": ["camera", "cameras", "homeassistant-custom-component", "ptz", "tapo"], "last_fetched": 1695554096.896495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197950768": {"repository_manifest": {}, "full_name": "ljmerza/ha-our-groceries", "authors": ["@ljmerza"], "category": "integration", "description": "Our Groceries Integration for Home Assistant", "domain": "ourgroceries", "etag_repository": "W/\"ffbec4a30d3b18dcc33a0c5c2497e881ae12b4e9810e2b39a9f0d90159102ca3\"", "last_updated": "2023-09-19T14:58:29Z", "stargazers_count": 36, "last_fetched": 1695554112.577578, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "411736321": {"repository_manifest": {"name": "DWD Pollenflug", "render_readme": true, "homeassistant": "2023.2.0"}, "full_name": "mampfes/hacs_dwd_pollenflug", "authors": ["@mampfes"], "category": "integration", "description": "Adds pollen forecasts from DWD to Home Assistant.", "domain": "dwd_pollenflug", "etag_repository": "W/\"ea208d3a56ce97df0e442e4bb9a786936b4ad8ad6831fe73f6d01e622d965954\"", "last_updated": "2023-09-20T15:34:23Z", "stargazers_count": 42, "topics": ["dwd", "pollen", "pollenflug"], "last_fetched": 1695554116.842333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195883127": {"repository_manifest": {}, "full_name": "Martinvdm/garbage-nissewaard-homeassistant", "authors": ["@Martinvdm", "@vloris"], "category": "integration", "description": "Garbage collection Nissewaard for Home Assistant", "domain": "nissewaard", "etag_repository": "W/\"301980ad4d758375995a30c2cbd958033b408ee0bedaf0f9e39e42e57cac9450\"", "last_updated": "2021-04-11T12:18:11Z", "last_fetched": 1695554118.672352, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452866308": {"repository_manifest": {"name": "Tabbed Card", "render_readme": true}, "full_name": "kinghat/tabbed-card", "category": "plugin", "description": "a custom card for home assistant that utilizes tabs to segregate individual cards.", "downloads": 4664, "etag_repository": "W/\"ca373608db1d9e0e5baa2d09642a6c8ab7cdf9f8b10c72f09104d051f66bba36\"", "last_updated": "2023-09-20T20:37:40Z", "stargazers_count": 50, "topics": ["card", "hacs-custom", "home-assistant-component", "lovelace-custom-card"], "last_fetched": 1695553542.854377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260940136": {"repository_manifest": {"name": "HA (Lovelace) Card Weather Conditions", "filename": "ha-card-weather-conditions.js"}, "full_name": "r-renato/ha-card-weather-conditions", "category": "plugin", "description": "Weather condition card (Lovelace) for Home Assistant.", "etag_repository": "W/\"55820313600d73f4271cc05ada4b9542f3753823a58ab4de131e0e90a90f321e\"", "last_updated": "2023-06-29T12:51:50Z", "stargazers_count": 171, "topics": ["card", "weather-conditions"], "last_fetched": 1695553556.437081, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215037975": {"repository_manifest": {"name": "HA (Lovelace) Card Waze Travel Time"}, "full_name": "r-renato/ha-card-waze-travel-time", "category": "plugin", "description": "Home Assistant Lovelace card for Waze Travel Time Sensor", "etag_repository": "W/\"fe3c18d6ca091854637a419cd34569dc7e936b42d1c7f64e369a73412d3d53d2\"", "last_updated": "2022-11-09T00:43:36Z", "stargazers_count": 35, "topics": ["lovelace-card"], "last_fetched": 1695553556.282121, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200035037": {"repository_manifest": {"name": "Discord Game", "homeassistant": "2022.03.0b0"}, "full_name": "LordBoos/discord_game", "category": "integration", "description": "Home Assistant custom component to get online and game status of Discord users", "domain": "discord_game", "etag_repository": "W/\"c04fb88c1197c23b1b9d052b6d4d2154d6cfb4b6a6d3f0a3b856bec8a03d957e\"", "last_updated": "2023-08-02T09:28:31Z", "stargazers_count": 47, "last_fetched": 1695554114.654377, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344660161": {"repository_manifest": {"name": "eGauge", "hacs": "1.6.0", "homeassistant": "2021.9.0", "render_readme": true}, "full_name": "neggert/hass-egauge", "authors": ["@neggert"], "category": "integration", "description": "Home Assistant custom component for eGauge monitor", "domain": "egauge", "etag_repository": "W/\"57366e2bb5b1924caf51ae2e57fedd422fac81892a721f1700fbed6ee00127f1\"", "last_updated": "2023-05-24T06:57:35Z", "stargazers_count": 13, "last_fetched": 1695554132.355995, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334076222": {"repository_manifest": {"name": "AstroWeather", "render_readme": true}, "full_name": "mawinkler/astroweather", "authors": ["@mawinkler"], "category": "integration", "description": "Asynchronous Astro Weather Forecast for Home Assistant", "domain": "astroweather", "etag_repository": "W/\"ca61dedce80ae058577a83a06b22c07d31258461af89013447375cf3b8a8310c\"", "last_updated": "2023-09-23T06:53:45Z", "stargazers_count": 42, "topics": ["7timer", "astronomy", "forecast"], "last_fetched": 1695554119.717033, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234750356": {"repository_manifest": {"name": "iOS Light Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-light-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme based on iOS Light Mode for Lovelace Home Assistant ", "etag_repository": "W/\"1a156e88708fa6ab2ddfbe272c0b7f4224d4cf9eaaf2a623f6f87844daf8a1e9\"", "last_updated": "2020-01-20T19:48:02Z", "stargazers_count": 9, "topics": ["ios", "light-mode", "lightmode"], "last_fetched": 1695553494.542608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173564471": {"repository_manifest": {}, "full_name": "custom-components/sensor.file_restore", "category": "integration", "description": "Improved file sensor component that let you read the whole last line content.", "domain": "file_restore", "etag_repository": "W/\"b12351bb821098b3cd7c2cac715b2dfd0126d633a78af3a3a07b1d57a84c6ff7\"", "last_updated": "2021-03-20T08:09:50Z", "stargazers_count": 11, "last_fetched": 1695553609.757661, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306003": {"repository_manifest": {"name": "Buienalarm", "render_readme": true}, "full_name": "gieljnssns/buienalarm-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "Buienalarm custom_component for Home-Assistant", "domain": "buienalarm", "etag_repository": "W/\"162082137d7bba476d2e2ac55ccb92bb0f833d2540a0b911772f8664f2dfaeae\"", "last_updated": "2021-12-04T09:48:55Z", "stargazers_count": 26, "last_fetched": 1695553649.858432, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330644825": {"repository_manifest": {"name": "Google Home", "homeassistant": "2023.2.4", "render_readme": true}, "full_name": "leikoilja/ha-google-home", "authors": ["@leikoilja", "@DurgNomis-drol", "@ArnyminerZ", "@KapJI"], "category": "integration", "description": "Home Assistant Google Home custom component ", "domain": "google_home", "etag_repository": "W/\"c4f6a69d1d378f19e129c99e922dec599515acf05bec5a965fc73f5e95c6dafe\"", "last_updated": "2023-09-20T14:30:47Z", "stargazers_count": 348, "topics": ["google-assistent", "google-home"], "last_fetched": 1695554108.134273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255366214": {"repository_manifest": {"name": "Vintage", "render_readme": true, "filename": "themes/vintage.yaml"}, "full_name": "Banditen01/vintage_theme", "category": "theme", "description": "\ud83c\udf99\ufe0f Vintage theme original colours & style designed by @surendrananup HACS adapted by @Banditen01", "etag_repository": "W/\"3d749f2070254f3bc74fbcca1f46df9db321084ea19bd079119b0ec4a6a2d2b2\"", "last_updated": "2021-05-20T16:21:54Z", "stargazers_count": 5, "topics": ["unofficial"], "last_fetched": 1695553494.592841, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230151505": {"repository_manifest": {"name": "Dijnet integration", "country": "HU", "render_readme": true, "zip_release": true, "filename": "homeassistant-dijnet.zip"}, "full_name": "laszlojakab/homeassistant-dijnet", "authors": ["@laszlojakab"], "category": "integration", "description": "Dijnet integration for Home Assistant", "domain": "dijnet", "downloads": 252, "etag_repository": "W/\"705062634979828efe4891145d8f20a82d1d789189943606d48fcae89c290ae2\"", "last_updated": "2023-01-03T20:18:28Z", "stargazers_count": 11, "topics": ["dijnet"], "last_fetched": 1695554107.825886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236318024": {"repository_manifest": {"name": "iOS Themes - Dark Mode and Light Mode", "hacs": "0.21.2", "filename": "ios-themes.yaml", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-themes", "category": "theme", "description": "\u2764\ufe0f\ud83d\udcf1\ud83c\udfe0\ud83e\udd16 Themes inspired by iOS Dark \u2b1b\ufe0f and Light \u25fb\ufe0f Mode for Lovelace Home Assistant with different backgrounds by @basnijholt", "etag_repository": "W/\"92f54edac372c417b3cbfe2fe7ad5fee5f133088518ad772d58475e113f0bf86\"", "last_updated": "2022-11-20T20:05:49Z", "stargazers_count": 471, "last_fetched": 1695553494.676825, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391700886": {"repository_manifest": {"name": "aria2 integration", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-aria2", "authors": ["@deblockt"], "category": "integration", "description": "Aria2 integration for home assistant", "domain": "aria2", "etag_repository": "W/\"f98e5b9840cc13350bd7c36d748e8ff37e217b31a7a1f3bbb930e32a592c136f\"", "last_updated": "2023-09-23T14:03:10Z", "stargazers_count": 3, "topics": ["aria2", "download-manager", "downloader"], "last_fetched": 1695553620.743117, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "548554162": {"repository_manifest": {"name": "Waste Management", "render_readme": true, "country": ["CA", "US", "PR"]}, "full_name": "dcmeglio/homeassistant-waste_management", "authors": ["@dcmeglio"], "category": "integration", "description": "Determines your next Waste Management (https://www.wm.com) pickup times for use in Home Assistant.", "domain": "waste_management", "etag_repository": "W/\"708fee5857c48f7739eedca98713499725c5e600561010cae53699288e0349c6\"", "last_updated": "2023-02-27T19:35:10Z", "stargazers_count": 5, "topics": ["garbage", "recycle", "waste-management"], "last_fetched": 1695553620.595976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541834155": {"repository_manifest": {"name": "PetSafe", "render_readme": true}, "full_name": "dcmeglio/homeassistant-petsafe", "authors": ["@dcmeglio"], "category": "integration", "description": "Integrate PetSafe Smartfeed feeders an Scoopfree litter boxes into Home Assistant.", "domain": "petsafe", "etag_repository": "W/\"7dbdc01d6b2d9d4ab015545944ce661275fd1cdfbb4ae40dca880536e67617c2\"", "last_updated": "2023-01-29T14:46:05Z", "stargazers_count": 17, "topics": ["cats", "dogs", "feeder", "litterbox", "petsafe"], "last_fetched": 1695553620.585477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490422137": {"repository_manifest": {"name": "IPCamLive", "homeassistant": "2022.5.3"}, "full_name": "ddanssaert/home-assistant-ipcamlive", "authors": ["@ddanssaert"], "category": "integration", "description": "IPCamLive integration for Home Assistant", "domain": "ipcamlive", "etag_repository": "W/\"53a52e6b91b3fb7726fcaacf673b8cef4904d9e3dc73a7bf60a84a7c9daf9ecd\"", "last_updated": "2023-05-11T12:47:38Z", "stargazers_count": 2, "topics": ["ipcamera", "ipcamlive"], "last_fetched": 1695553620.541798, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266557774": {"repository_manifest": {"name": "proscenic 790T vacuum", "homeassistant": "2021.7.4", "render_readme": true}, "full_name": "deblockt/hass-proscenic-790T-vacuum", "authors": ["@deblockt"], "category": "integration", "description": "proscenic 790T intergration for home assistant", "domain": "proscenic", "downloads": 61, "etag_repository": "W/\"2aae050f9b08a929cb9ff64a4bb2c4c7302d9a530201e9f6110a17d71075f205\"", "last_updated": "2023-09-23T14:34:25Z", "stargazers_count": 15, "topics": ["790t", "proscenic", "vacuum", "vacuum-cleaner"], "last_fetched": 1695553622.5673, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264655935": {"repository_manifest": {"name": "Entities Calendar", "homeassistant": "2022.5.0"}, "full_name": "gadgetchnnel/entities_calendar", "authors": ["@gadgetchnnel"], "category": "integration", "description": "A custom component for Home Assistant to allow regular entities to be used as a calendar", "domain": "entities_calendar", "etag_repository": "W/\"fe0b05eb74408f9deabd0a82f9b5dfee736e1c87ca7a55c9773976dff35d184b\"", "last_updated": "2023-05-29T14:52:27Z", "stargazers_count": 20, "topics": ["calendar", "entities-calendar"], "last_fetched": 1695553645.367897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498774862": {"repository_manifest": {"name": "Material 3 Dark & Light Theme C11: Purple", "filename": "m3-c11-purple.yaml", "render_readme": true}, "full_name": "AmoebeLabs/HA-Theme_M3-C11-Purple", "category": "theme", "description": "Material Design 3 / Material YOU theme for Home Assistant", "etag_repository": "W/\"523548bf73400df334b8afe82ae8dba4650a318a63908a9b804e84bf2009169a\"", "last_updated": "2022-06-15T07:58:53Z", "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1695553492.754662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "612652228": {"repository_manifest": {"name": "IMPC Energy", "render_readme": true, "zip_release": true, "filename": "impc_energy.zip"}, "full_name": "NiaoBlush/impc_energy", "authors": ["@NiaoBlush"], "category": "integration", "description": "\u901a\u8fc7\u5185\u8499\u53e4\u7535\u529b\u516c\u4f17\u53f7\u67e5\u8be2\u7535\u91cf\u7535\u8d39\u7684Home Assistant\u63d2\u4ef6", "domain": "impc_energy", "downloads": 7, "etag_repository": "W/\"8bed05e274933f5fef68a3dba174979dc4415e58822d0c311ea64f2428b233d4\"", "last_updated": "2023-04-27T09:26:46Z", "stargazers_count": 1, "topics": ["electricity-consumption"], "last_fetched": 1695554132.880238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319608056": {"repository_manifest": {"homeassistant": "2023.7.0b0", "name": "Bodymiscale", "render_readme": true}, "full_name": "dckiller51/bodymiscale", "authors": ["@dckiller51", "@edenhaus"], "category": "integration", "description": "Custom_components Body Metrics for Xiaomi Miscale 1 and 2 (esphome or BLE monitor for Homeassistant)", "domain": "bodymiscale", "etag_repository": "W/\"f734718fbb520804c1187131d764a9188f3834f1fa2d7347e1b258a9861a6445\"", "last_updated": "2023-09-19T11:33:50Z", "stargazers_count": 154, "topics": ["ble-monitor", "esphome", "miscale", "mitemp-bt", "xiaomi"], "last_fetched": 1695553620.700498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "317051290": {"repository_manifest": {"name": "Kan Program", "country": "IL", "render_readme": true}, "full_name": "eyalcha/kan_program", "authors": ["@eyalcha"], "category": "integration", "description": "Home assistant custom component to fetch kan program guide", "domain": "kan_program", "etag_repository": "W/\"a161c50a5988b0318834a59f8b9028a3816c80ef3b9da1570652b74e295840aa\"", "last_updated": "2022-07-14T17:31:08Z", "stargazers_count": 2, "last_fetched": 1695553638.191137, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "225248441": {"repository_manifest": {"name": "Mikrotik Router", "homeassistant": "2023.8.0", "zip_release": true, "filename": "mikrotik_router.zip"}, "full_name": "tomaae/homeassistant-mikrotik_router", "authors": ["@tomaae"], "category": "integration", "description": "Mikrotik router integration for Home Assistant", "domain": "mikrotik_router", "downloads": 1920, "etag_repository": "W/\"d4021b4ae85f22f39f06ab6355780b66643d75500b0db3ebdabd5c8ae8bf730e\"", "last_updated": "2023-09-18T07:53:34Z", "stargazers_count": 221, "topics": ["mikrotik"], "last_fetched": 1695554183.912553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137126619": {"repository_manifest": {"name": "Visonic Intruder Alarm - PowerMax and PowerMaster Series", "homeassistant": "2022.3.3"}, "full_name": "davesmeghead/visonic", "authors": ["@davesmeghead"], "category": "integration", "description": "Visonic Custom Component for integration with Home Assistant", "domain": "visonic", "etag_repository": "W/\"4f33e9c216ef7388453a88191ca1f1b53a73e5a6fed5dd2fdae175ce923138fc\"", "last_updated": "2023-09-15T22:13:06Z", "stargazers_count": 69, "topics": ["visonic"], "last_fetched": 1695553621.636055, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "594751789": {"repository_manifest": {"name": "Vaillant Plus", "hacs": "1.6.0", "homeassistant": "2022.11.3", "country": "CN"}, "full_name": "daxingplay/home-assistant-vaillant-plus", "authors": ["@daxingplay"], "category": "integration", "description": "Home Assistant custom component for controlling vSmart in Vaillant+ cn app.", "domain": "vaillant_plus", "etag_repository": "W/\"6eaace23bd05c261f397f6659abe16b5e867835d8805545f1b2a988f20c6b5bd\"", "last_updated": "2023-05-13T14:52:09Z", "stargazers_count": 1, "topics": ["vaillant", "vsmart"], "last_fetched": 1695553620.626652, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497924778": {"repository_manifest": {"name": "elkbledom", "render_readme": true}, "full_name": "dave-code-ruiz/elkbledom", "authors": ["@dave-code-ruiz"], "category": "integration", "description": "Home Assistant custom component for LED STRIP NAME ELK BLEDOM", "domain": "elkbledom", "etag_repository": "W/\"403c984abff425820cdaa5f9708537d949863afd6307cda1eb7fa8a3e285cf01\"", "last_updated": "2023-09-15T06:41:52Z", "stargazers_count": 39, "topics": ["hacs-custom", "led-controller", "ledstrips", "light"], "last_fetched": 1695553620.508683, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422954081": {"repository_manifest": {"filename": "deebot.zip", "homeassistant": "2023.8.0b0", "name": "Deebot 4 Home Assistant", "render_readme": true, "zip_release": true}, "full_name": "DeebotUniverse/Deebot-4-Home-Assistant", "authors": ["@DeebotUniverse", "@edenhaus"], "category": "integration", "description": "Home Assistant integration for deebot vacuums", "domain": "deebot", "downloads": 6601, "etag_repository": "W/\"05d474e2103d4215df57b5557d025a98efbf5b9cf96329f14ea442070c259901\"", "last_updated": "2023-09-19T02:19:41Z", "stargazers_count": 143, "topics": ["deebot", "ecovacs", "vacuum"], "last_fetched": 1695553622.941044, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222422187": {"repository_manifest": {"name": "iOS Dark Mode Theme", "render_readme": true}, "full_name": "basnijholt/lovelace-ios-dark-mode-theme", "category": "theme", "description": "\ud83c\udfe0\ud83e\udd16 Theme by @basnijholt based on iOS Dark Mode for Lovelace Home Assistant ", "etag_repository": "W/\"b97720fc3dde54441ec78a73e3336469e7439eaf0d682d4decf3748cafa436c5\"", "last_updated": "2022-11-03T15:53:32Z", "stargazers_count": 424, "topics": ["dark-mode", "darkmode", "ios"], "last_fetched": 1695553494.494781, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203736221": {"repository_manifest": {"name": "Uponor Uhome integration", "render_readme": true}, "full_name": "dave-code-ruiz/uhomeuponor", "authors": ["@almirdelkic", "@dave-code-ruiz", "@LordMike"], "category": "integration", "description": "Custom Component to connect Home Assistant with Uhome Uponor Smatrix App", "domain": "uhomeuponor", "etag_repository": "W/\"35c8d48c348ff2f8de864ecd3d9e50afa5e155fa398b5c2d247a716c40e0de3f\"", "last_updated": "2022-11-24T15:02:00Z", "stargazers_count": 17, "topics": ["gateway", "rest-api", "setpoint", "smatrix", "smatrixwaveplus", "thermostat", "uponor"], "last_fetched": 1695553620.399547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168744428": {"repository_manifest": {"name": "Light Entity Card", "render_readme": true, "filename": "dist/light-entity-card.js"}, "full_name": "ljmerza/light-entity-card", "category": "plugin", "description": "Control any light or switch entity", "downloads": 21376, "etag_repository": "W/\"1c9e3e5b3ba08c740985edfa2473c96937a07a4dbe0aa82e8dc2ead568866aa3\"", "last_updated": "2023-06-10T01:05:50Z", "stargazers_count": 194, "last_fetched": 1695553545.038665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534317237": {"repository_manifest": {"name": "QR-Code Generator", "render_readme": true}, "full_name": "DeerMaximum/QR-Code-Generator", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to create a camera that displays a custom QR-Code", "domain": "qr_generator", "etag_repository": "W/\"fb00248ba299b8053b569024c8513753066b4dc0c3688b84941407de960efc68\"", "last_updated": "2023-09-18T19:36:59Z", "stargazers_count": 20, "topics": ["qrcode-generator"], "last_fetched": 1695553622.703351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "541978646": {"repository_manifest": {"name": "Technische Alternative C.M.I.", "render_readme": true}, "full_name": "DeerMaximum/Technische-Alternative-CMI", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I", "domain": "ta_cmi", "etag_repository": "W/\"e794503830ae3215b66906e9cb6092b52581eb9a60caa9e22cfe794da94701b6\"", "last_updated": "2023-09-08T13:58:20Z", "stargazers_count": 18, "last_fetched": 1695553622.912889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163322610": {"repository_manifest": {"name": "Panasonic Comfort Cloud HA component", "homeassistant": "0.110.0"}, "full_name": "djbulsink/panasonic_ac", "authors": ["Djbulsink", "SeraphimSerapis"], "category": "integration", "description": "Panasonic Comfort Cloud HA component", "domain": "panasonic_ac", "etag_repository": "W/\"148228d0822760da99b6b8dc9b3075d200783c7f6b19293208e0872d1a632ef3\"", "last_updated": "2022-07-28T06:55:03Z", "stargazers_count": 30, "last_fetched": 1695553624.956522, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326033921": {"repository_manifest": {"name": "Toggle Control Button Row", "filename": "toggle-control-button-row.js"}, "full_name": "finity69x2/toggle-control-button-row", "category": "plugin", "description": "A one-button control row for any Home Assistant binary entity", "etag_repository": "W/\"3f90b0e6f9c0bf2c9a9c55e487899468f13bbfdcada38e7bbc1e8243c0c6f14c\"", "last_updated": "2023-05-11T00:29:43Z", "stargazers_count": 12, "topics": ["button", "toggle"], "last_fetched": 1695553530.500835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356725611": {"repository_manifest": {"name": "Wavin Sentio", "render_readme": true}, "full_name": "djerik/wavinsentio-ha", "authors": ["@djerik"], "category": "integration", "description": "Home Assistant component for monitoring and administration of Wavin Sentio underfloor heating system", "domain": "wavinsentio", "etag_repository": "W/\"deaa5af94d22c48e0c637fa677e66a8b41390f324008856df98c88312773d4db\"", "last_updated": "2023-06-25T21:40:58Z", "stargazers_count": 12, "topics": ["sentio", "wavin"], "last_fetched": 1695553625.014495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640516976": {"repository_manifest": {"name": "Energy Gauge Bundle Card", "render_readme": true, "filename": "energy-gauge-bundle-card.js"}, "full_name": "flixlix/energy-gauge-bundle-card", "category": "plugin", "description": "A collection of Gauge Cards for Home Assistant Energy Management", "downloads": 1696, "etag_repository": "W/\"bd719eb7820340661bfa11ebb3d813568d676cbcb1f9af68af4fba54586e65fd\"", "last_updated": "2023-08-11T09:09:03Z", "stargazers_count": 6, "topics": ["bundle", "card", "cards", "collection", "custom", "dashboard", "energy", "gauge", "panel"], "last_fetched": 1695553530.621143, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308690707": {"repository_manifest": {"name": "Google WiFi", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hagooglewifi", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant integration for Google Wifi systems.", "domain": "googlewifi", "etag_repository": "W/\"78600d4e7bffc5b6ef5f7316a18fc18b7ad43edaec9b33fb32790f13541b7f88\"", "last_updated": "2023-04-09T04:14:27Z", "stargazers_count": 66, "topics": ["google-wifi"], "last_fetched": 1695553625.403851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "639953950": {"repository_manifest": {"name": "Energy Period Selector Plus", "render_readme": true, "filename": "energy-period-selector-plus.js"}, "full_name": "flixlix/energy-period-selector-plus", "category": "plugin", "description": "An upgraded Energy Date Selection Card for Home Assistant, with added customizability, while maintaining the Energy Dashboard's original design.", "downloads": 3106, "etag_repository": "W/\"ecb7ead8fa2b339be821df533cc65b2d3f48d59f0e1ee2b1e68a860f6f1fa621\"", "last_updated": "2023-07-31T12:59:07Z", "stargazers_count": 21, "topics": ["automation", "dashboard", "date", "datepicker", "picker", "plus", "time"], "last_fetched": 1695553530.702765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302145522": {"repository_manifest": {"name": "Rocket Launch Live - Next 5 Launches", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/harocketlaunchlive", "authors": ["@djtimca"], "category": "integration", "description": "Home Assistant custom HACS integration to integrate the next 5 global rocket launches from https://rocketlaunch.live", "domain": "rocketlaunchlive", "etag_repository": "W/\"d4dc1db676f40bf9067ace840387fd6bf1008f136dfad60484b57b69f11eed85\"", "last_updated": "2023-04-21T21:16:25Z", "stargazers_count": 13, "topics": ["launch", "nasa", "rocket", "spacex", "ula"], "last_fetched": 1695553626.363882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "638230244": {"repository_manifest": {"name": "Energy Flow Card Plus", "render_readme": true, "filename": "energy-flow-card-plus.js"}, "full_name": "flixlix/energy-flow-card-plus", "category": "plugin", "description": "An upgraded Energy Distribution Card for Home Assistant, with added features like Individual Devices and refined UI enhancements, while maintaining the Energy Dashboard's original design.", "downloads": 3920, "etag_repository": "W/\"e7359ba17904635fb5694826f14b1b2d1d628217d101e4f1f7a7e24a35932623\"", "last_updated": "2023-08-11T12:04:22Z", "stargazers_count": 51, "topics": ["automation", "cards", "customization", "dashboard", "diy", "energy", "green", "renewable-energy", "renewables", "visualization"], "last_fetched": 1695553530.583766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "314593331": {"repository_manifest": {"name": "Satellite Tracker (N2YO)", "country": "CA", "homeassistant": "0.115.0"}, "full_name": "djtimca/hasatellitetracker", "authors": ["@djtimca"], "category": "integration", "description": "Using the N2YO API, this Home Assistant integration will provide visible satellite passes (general) and to add specific satellites for monitoring.", "domain": "satellitetracker", "etag_repository": "W/\"5fc95cc31af1ce48ab440117508a8f6dba6bf3653703272a9cc3b9bec60e05d1\"", "last_updated": "2022-06-02T04:56:57Z", "stargazers_count": 13, "topics": ["international-space-station", "iss", "satellite", "satellite-tracker", "starlink", "tracking-satellites", "visible-passes"], "last_fetched": 1695553627.011084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286860710": {"repository_manifest": {"name": "Cover Position Preset Row", "filename": "cover-position-preset-row.js"}, "full_name": "finity69x2/cover-position-preset-row", "category": "plugin", "description": "Plug-in for Home Assistant that provides an easy means to set 3 fixed positions for a programmable cover entity.", "etag_repository": "W/\"0ed0118dee9063d89c3d805f011453cf9e71b02673aa9911516bc72eb20e8b21\"", "last_updated": "2023-05-11T00:31:49Z", "stargazers_count": 18, "topics": ["cover", "lovelace-custom-card"], "last_fetched": 1695553528.781357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177469955": {"repository_manifest": {"name": "Mitsubishi Kumo Cloud", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "dlarrick/hass-kumo", "authors": ["@dlarrick"], "category": "integration", "description": "Home Assistant module interfacing with Mitsubishi mini-split units", "domain": "kumo", "etag_repository": "W/\"d6271052d7df514d4ee4afd6191ab770098e0fb7d24cdd132fb3306d18971738\"", "last_updated": "2023-09-03T13:02:31Z", "stargazers_count": 74, "topics": ["climate", "kumo", "kumocloud", "mini-split", "mitsubishi"], "last_fetched": 1695553627.26555, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191663150": {"repository_manifest": {}, "full_name": "finity69x2/fan-control-entity-row", "category": "plugin", "description": "Provides a means to show a compact graphical control row for 2 or 3 speed fans in Home Assistant", "etag_repository": "W/\"9f0fdf780ff609249aeb0e0db4c9bb37943d71f29f84c49d409283b05dc3ee5f\"", "last_updated": "2022-09-12T22:09:11Z", "stargazers_count": 63, "last_fetched": 1695553528.676483, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200073618": {"repository_manifest": {}, "full_name": "dlashua/templatebinarysensor", "authors": ["@dlashua"], "category": "integration", "description": "Add template binary_sensors from the UI.", "domain": "templatebinarysensor", "etag_repository": "W/\"cf9822862c9566f253605c411c8832b4044ff01378707ee2f0ef5e50b8b2c85d\"", "last_updated": "2021-11-11T12:35:12Z", "stargazers_count": 1, "last_fetched": 1695553626.794931, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350886220": {"repository_manifest": {"name": "Fan Mode Button Row", "filename": "fan-mode-button-row.js"}, "full_name": "finity69x2/fan-mode-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using preset modes for speeds", "etag_repository": "W/\"9b71f7d05eeac0d2bac934501deee789a6f6cef2b352772e5d1c738cd636ac40\"", "last_updated": "2023-05-11T00:28:37Z", "stargazers_count": 11, "topics": ["fan", "preset"], "last_fetched": 1695553529.108267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342208616": {"repository_manifest": {"name": "Resol KM1/KM2, DL2/DL3, VBus/LAN, VBus/USB", "zip_release": true, "filename": "deltasol.zip", "render_readme": true}, "full_name": "dm82m/hass-Deltasol-KM2", "authors": ["@dm82m"], "category": "integration", "description": "Custom component for retrieving sensor information from Resol KM1/KM2, DL2/DL3, VBus/LAN, VBus/USB", "domain": "deltasol", "downloads": 147, "etag_repository": "W/\"95e4d97de4161b1d4a6b301a5347ce69b36cb8a96ed7f624199e84ef8c3836f3\"", "last_updated": "2023-09-02T15:00:25Z", "stargazers_count": 18, "topics": ["deltasol", "km2"], "last_fetched": 1695553627.163321, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226862969": {"repository_manifest": {"name": "Light Brightness Preset Row", "filename": "light-brightness-preset-row.js"}, "full_name": "finity69x2/light-brightness-preset-row", "category": "plugin", "description": "Provides a means to program 3 preset brightness settings for dimmable lights in Home Assistant", "etag_repository": "W/\"e4a63c8f2c3e72883d93d623945c101ea58e8124da5782e5b940506ce3f9ac29\"", "last_updated": "2023-05-11T00:30:14Z", "stargazers_count": 28, "last_fetched": 1695553529.615017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "438167239": {"repository_manifest": {"name": "LedFx", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-ledfx", "authors": ["@dmamontov"], "category": "integration", "description": "LedFx for Home Assistant", "domain": "ledfx", "etag_repository": "W/\"68dd884cac456d6f2b7d19970caee5a3f69803d52bb6c45504cc062696bb91bb\"", "last_updated": "2023-07-15T00:58:01Z", "stargazers_count": 33, "topics": ["audio-processing", "led-strips", "ledfx", "music-visualizer"], "last_fetched": 1695553627.205945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "618081815": {"repository_manifest": {"name": "Power Flow Card Plus", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "flixlix/power-flow-card-plus", "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 7157, "etag_repository": "W/\"e8dd2d8a5f3addb775eb3e2a1c0b1e11b651dd5ea30ddb7b623d66a3aa258a89\"", "last_updated": "2023-09-14T00:16:36Z", "stargazers_count": 215, "topics": ["animation", "card", "cards", "custom", "energy", "flow", "plus", "power"], "last_fetched": 1695553530.912543, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346329169": {"repository_manifest": {"name": "MiWiFi", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-miwifi", "authors": ["@dmamontov"], "category": "integration", "description": "MiWiFi for Home Assistant", "domain": "miwifi", "etag_repository": "W/\"0acb6b9c3daef71278ea00167e392e137ab6541e7566201c9e7b3e705dbc09b0\"", "last_updated": "2023-03-13T21:46:43Z", "stargazers_count": 138, "topics": ["mi", "miwifi", "redmi", "xiaomi"], "last_fetched": 1695553627.335186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356655356": {"repository_manifest": {"name": "wienerlinien", "render_readme": true, "hacs": "0.19.0", "homeassistant": "2022.3.1", "country": "AT"}, "full_name": "tofuSCHNITZEL/home-assistant-wienerlinien", "authors": ["@tofuSCHNITZEL"], "category": "integration", "description": "A sensor that give you information about departures from a specified Wiener Linien stop.", "domain": "wienerlinien", "etag_repository": "W/\"24b8817d9124cf4fd6adf4d0340d175466df4ec847ed67a184bf685d1806d0a2\"", "last_updated": "2022-11-24T22:55:41Z", "stargazers_count": 17, "topics": ["wiener-linien"], "last_fetched": 1695554183.628536, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "345753205": {"repository_manifest": {"name": "Fan Percent Button Row", "filename": "fan-percent-button-row.js"}, "full_name": "finity69x2/fan-percent-button-row", "category": "plugin", "description": "Frontend plugin to control fans in Home Assistant using percent values for speeds", "etag_repository": "W/\"8ddf05314dee3b561caecfb4f54a547a9426303b57c090a758e613b409a38dd1\"", "last_updated": "2023-05-11T00:29:06Z", "stargazers_count": 27, "topics": ["assistant", "fan", "home", "percent", "speed"], "last_fetched": 1695553529.456808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523250759": {"repository_manifest": {"name": "Seafile", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "dmamontov/hass-seafile", "authors": ["@dmamontov"], "category": "integration", "description": "Seafile for Home Assistant", "domain": "seafile", "etag_repository": "W/\"145b5d5acbe539bd05e7dc6770f97b31457888a75c444ec15dc634dd07894c63\"", "last_updated": "2023-03-14T09:16:03Z", "stargazers_count": 6, "topics": ["cloud", "cloud-storage", "file-sync", "files", "seafile", "storage", "sync"], "last_fetched": 1695553627.260687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328671547": {"repository_manifest": {"name": "wattio", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "dmoranf/home-assistant-wattio", "authors": ["@dmoranf"], "category": "integration", "description": "Wattio Smart Home custom integration for Home Assistant", "domain": "wattio", "etag_repository": "W/\"c4bfc0f56af39c2b52e1d1d9a76e70a6f53c81982903b544425a9d201be5774c\"", "last_updated": "2022-07-21T18:31:02Z", "stargazers_count": 7, "topics": ["home-assistant-component", "wattio"], "last_fetched": 1695553627.417054, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "521964078": {"repository_manifest": {"name": "Rewe Discounts", "render_readme": true, "country": ["DE"]}, "full_name": "FaserF/ha-rewe", "authors": ["@faserf"], "category": "integration", "description": "Rewe Discounts Homeassistant Integration", "domain": "rewe", "etag_repository": "W/\"879bca4b32168333b43c72ce9ce1e60aa9ee789b17b3e49e10acb4170988a64c\"", "last_updated": "2023-09-22T19:05:20Z", "stargazers_count": 12, "last_fetched": 1695553638.588157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "466196192": {"repository_manifest": {"name": "Header Cards", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-header-cards", "category": "plugin", "description": "Header Cards", "etag_repository": "W/\"ce1324177b2fc2c2d9ea5245558250e55fb9a4e4bddc0340acc78d3d6ae00ffe\"", "last_updated": "2023-04-06T10:44:52Z", "stargazers_count": 33, "topics": ["cards", "header"], "last_fetched": 1695553532.549959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180032210": {"repository_manifest": {"name": "Thermal Comfort", "homeassistant": "2023.3.0", "render_readme": true, "filename": "thermal_comfort.zip"}, "full_name": "dolezsa/thermal_comfort", "authors": ["@dolezsa"], "category": "integration", "description": "Thermal Comfort sensor for HA (absolute humidity, heat index, dew point, thermal perception)", "domain": "thermal_comfort", "downloads": 206, "etag_repository": "W/\"0f6d600c054a5c1bd610651dd0a2b3fdbc7df3b06fb9ceaca5bc28dd8da6d85b\"", "last_updated": "2023-09-21T16:41:55Z", "stargazers_count": 390, "topics": ["absolute-humidity", "comfort-model", "comfort-zone", "dew-point", "dew-point-perception", "heat-index", "thermal-comfort", "thermal-perception", "thermal-stress"], "last_fetched": 1695553627.706866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "581264508": {"repository_manifest": {"name": "\u00d6kofen Pellematic Compact", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "dominikamann/oekofen-pellematic-compact", "authors": ["@dominikamann"], "category": "integration", "description": "A \u00d6kofen Pellematic Compact Integration based on JSON/TCP-Inteface for Home Assistant.", "domain": "oekofen_pellematic_compact", "etag_repository": "W/\"c814dbfd6ef1de662912bd43b1089cd2368434e2f64961f4916f380bcd114299\"", "last_updated": "2023-08-12T21:19:53Z", "stargazers_count": 15, "topics": ["oekofen", "oekofen-pellematic-compact"], "last_fetched": 1695553628.604542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229014136": {"repository_manifest": {"name": "MyJDownloader", "render_readme": true, "homeassistant": "2022.4.0b0"}, "full_name": "doudz/homeassistant-myjdownloader", "authors": ["@doudz", "@oribafi"], "category": "integration", "description": "myjdownloader integration for home assistant", "domain": "myjdownloader", "etag_repository": "W/\"3bb2bd4e60d446d0b73f0454dd60338b79a2e99b0b23392a4163e427692aa9c3\"", "last_updated": "2023-04-20T05:00:59Z", "stargazers_count": 25, "last_fetched": 1695553629.007035, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258852884": {"repository_manifest": {"name": "Helios EasyControls Modbus TCP/IP integration", "render_readme": true, "zip_release": true, "filename": "homeassistant-easycontrols.zip"}, "full_name": "laszlojakab/homeassistant-easycontrols", "authors": ["@laszlojakab"], "category": "integration", "description": "Helios EasyControls Modbus TCP/IP integration for Home Assistant", "domain": "easycontrols", "downloads": 226, "etag_repository": "W/\"ae2069f10a5ee8afc79845581fa981ada5bfef666c6f133336cafc0b4772d9f8\"", "last_updated": "2023-08-05T19:06:53Z", "stargazers_count": 14, "topics": ["easycontrols", "eazyctrl", "modbus"], "last_fetched": 1695554107.939162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316597224": {"repository_manifest": {"name": "Budova Smart Home", "country": "UA", "render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "dphae/bsh", "authors": ["@DarkPark"], "category": "integration", "description": "A Home Assistant Budova Smart Home integration", "domain": "bsh", "etag_repository": "W/\"c2d1b787a8afb1be669bd68dec3e15d295bc9c9e370f70ad127329eced6869c1\"", "last_updated": "2021-08-05T21:00:50Z", "stargazers_count": 3, "topics": ["budova"], "last_fetched": 1695553629.259767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480281490": {"repository_manifest": {"name": "Lektrico Charging Station"}, "full_name": "Lektrico/ha_lektrico", "authors": ["@mtarjoianu"], "category": "integration", "description": "Manage your Lektrico EV Charger", "domain": "lektrico_custom", "etag_repository": "W/\"03ac5d494eb6991e60af2bf515aa847819727d8cb030d676159ccb482fe03ee6\"", "last_updated": "2023-07-10T15:11:58Z", "stargazers_count": 7, "topics": ["lektrico"], "last_fetched": 1695554108.027337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485971293": {"repository_manifest": {"name": "Super Soco Custom", "hacs": "1.6.0", "homeassistant": "2022.3.0", "render_readme": true}, "full_name": "drakhart/ha-super-soco-custom", "authors": ["@Drakhart"], "category": "integration", "description": "Custom component for integrating your Super Soco or Vmoto Soco motorcycle into Home Assistant. It provides meaningful data like power status, battery percentage, location and a lot more.", "domain": "super_soco_custom", "etag_repository": "W/\"8f532032369fc412afe164aa7c3aa2baadcfbfe7008344b60cf9522f545cd8ec\"", "last_updated": "2023-08-30T19:35:18Z", "stargazers_count": 14, "topics": ["super-soco"], "last_fetched": 1695553629.572363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598381225": {"repository_manifest": {"name": "Fronius_Solarweb", "homeassistant": "2023.2.0", "render_readme": true, "zip_release": true, "filename": "solarweb.zip"}, "full_name": "drc38/Fronius_solarweb", "authors": ["@drc38"], "category": "integration", "description": "Home Assistant integration for cloud-based Fronius Solar.web api", "domain": "solarweb", "downloads": 374, "etag_repository": "W/\"16ab21cfeb116e28fb87b3da4abf6b1fab64edc39d3efffb2e4597a6fb9e3ac3\"", "last_updated": "2023-09-22T20:35:17Z", "stargazers_count": 1, "topics": ["fronius", "fronius-solar-api"], "last_fetched": 1695553629.35832, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362214884": {"repository_manifest": {"name": "Redfin", "homeassistant": "2021.6.0"}, "full_name": "dreed47/redfin", "authors": ["@dreed47"], "category": "integration", "description": "Redfin property estimate Sensor for Home Assistant", "domain": "redfin", "etag_repository": "W/\"eda6a946e3275da0ef7ec28d5a74d96cae13b137b56d11921ac4235e677de48a\"", "last_updated": "2023-08-19T01:57:33Z", "stargazers_count": 13, "topics": ["real-estate", "redfin"], "last_fetched": 1695553629.420757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "478745957": {"repository_manifest": {"name": "Ile de france Mobilite", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true, "country": ["FR"]}, "full_name": "droso-hass/idfm", "authors": ["@drosocode"], "category": "integration", "description": "Custom component for ile de france mobilit\u00e9s", "domain": "idfm", "etag_repository": "W/\"6edaafe7642dc14aaa712f4d2964f90591c52d3757eb0618fe045289dab8149a\"", "last_updated": "2023-08-13T22:49:12Z", "stargazers_count": 10, "topics": ["time", "transports"], "last_fetched": 1695553629.54782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "566598076": {"repository_manifest": {"name": "ikuai", "render_readme": true}, "full_name": "dscao/ikuai", "authors": ["@dscao"], "category": "integration", "description": "Home Assistant integration for iKuai Router", "domain": "ikuai", "etag_repository": "W/\"5f030055479fc561ff766813f3c1a21aa3b4c433334aa60c4490e516f5d73073\"", "last_updated": "2023-09-12T18:33:46Z", "stargazers_count": 27, "topics": ["homeassistant-custom-component", "ikuai"], "last_fetched": 1695553629.467234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "601894276": {"repository_manifest": {"name": "general_link", "render_readme": true, "country": "CN"}, "full_name": "leonardlcl/general_link", "authors": ["@leonardlcl"], "category": "integration", "description": "GeneralLink custom component for Home Assistant", "domain": "general_link", "etag_repository": "W/\"d55e755ce694beac37da22b373184497b59ed451a84c01045449b34e49d65673\"", "last_updated": "2023-09-11T07:31:42Z", "stargazers_count": 2, "topics": ["custom-integration", "general", "general-link", "generallink", "link"], "last_fetched": 1695554108.007626, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341931266": {"repository_manifest": {"name": "Simple Clock Card", "content_in_root": true, "render_readme": true, "filename": "simple-clock-card.js"}, "full_name": "fufar/simple-clock-card", "category": "plugin", "description": "Simple clock card for Home assistant lovelace", "etag_repository": "W/\"1d7ebd9f5d14ff778789c0d790eb84d1cf5b0884bde5f14223df814bc3205bae\"", "last_updated": "2023-08-28T11:48:44Z", "stargazers_count": 35, "topics": ["clock", "lovelace-custom-card"], "last_fetched": 1695553531.380141, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460392242": {"repository_manifest": {"name": "Svensk Postutdelning", "country": "SE", "homeassistant": "2022.03.0"}, "full_name": "DSorlov/swemail", "authors": ["@dsorlov"], "category": "integration", "description": "Swedish Post Delivery integration for Home Assistant", "domain": "swemail", "etag_repository": "W/\"7d8bc35b31dcba22bb7b0b20e5d2977ebb42e0bd84de3deea023f44b6e1368b8\"", "last_updated": "2023-06-12T09:48:08Z", "stargazers_count": 23, "topics": ["citymail", "postnord"], "last_fetched": 1695553629.620002, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "568186049": {"repository_manifest": {"name": "Aig\u00fces de Barcelona", "render_readme": true, "country": "ES", "homeassistant": "2021.11.0"}, "full_name": "duhow/hass-aigues-barcelona", "authors": ["@duhow"], "category": "integration", "description": "Custom component for Home Assistant to integrate data from Aigues de Barcelona", "domain": "aigues_barcelona", "etag_repository": "W/\"6f5a5fd3a578b0bd37db169a0c0c689e5626932602d7828137a8870cec95b7f3\"", "last_updated": "2023-03-06T14:38:34Z", "stargazers_count": 28, "topics": ["barcelona", "water-meter", "water-monitoring"], "last_fetched": 1695553629.835186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455174197": {"repository_manifest": {"name": "Watchman", "render_readme": true}, "full_name": "dummylabs/thewatchman", "authors": ["@dummylabs"], "category": "integration", "description": "Home Assistant custom integration to keep track of missing entities and services in your config files", "domain": "watchman", "etag_repository": "W/\"499e3eaf24270a19041018667d5dce5231d4bc43e6e5b096d498490c7d3b3f4b\"", "last_updated": "2023-08-05T21:02:10Z", "stargazers_count": 280, "topics": ["automation"], "last_fetched": 1695553630.817215, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "132661981": {"repository_manifest": {"name": "Elasticsearch integration", "render_readme": true, "homeassistant": "2022.4"}, "full_name": "legrego/homeassistant-elasticsearch", "authors": ["@legrego"], "category": "integration", "description": "Publish Home-Assistant events to Elasticsearch", "domain": "elasticsearch", "etag_repository": "W/\"c6d2dff93955b4cb207b5bcf0a75a3505f7b6ac33e666f0c36e662fb09ca64b8\"", "last_updated": "2023-09-15T13:57:50Z", "stargazers_count": 110, "topics": ["elasticsearch"], "last_fetched": 1695554107.987658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "346474804": {"repository_manifest": {"name": "Toyota Connected Services", "homeassistant": "2022.6.0", "zip_release": true, "filename": "toyota.zip"}, "full_name": "DurgNomis-drol/ha_toyota", "authors": ["@DurgNomis-drol"], "category": "integration", "description": "Toyota Connected Services integration for Home Assistant.", "domain": "toyota", "downloads": 1880, "etag_repository": "W/\"dc2fe343f30dda7f17ff0374ebddb8e3be762cf3a061946d08e46ca30ec18060\"", "last_updated": "2023-07-03T15:16:44Z", "stargazers_count": 89, "topics": ["car", "toyota", "vehicle"], "last_fetched": 1695553631.254029, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248954055": {"repository_manifest": {"name": "Stack In Card", "render_readme": true, "filename": "stack-in-card.js"}, "full_name": "custom-cards/stack-in-card", "category": "plugin", "description": "\ud83d\udee0 group multiple cards into one card without the borders", "downloads": 54843, "etag_repository": "W/\"f634a9a187b179f95a8dc3b3e2e969f4ec1cb374a2f89b325e1b0720b272ed44\"", "last_updated": "2023-08-26T05:32:40Z", "stargazers_count": 202, "last_fetched": 1695553520.561821, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441028036": {"repository_manifest": {"name": "Hilo", "hacs": "1.6.0", "country": "CA", "render_readme": true, "homeassistant": "2022.9.0"}, "full_name": "dvd-dev/hilo", "authors": ["@dvd-dev"], "category": "integration", "description": "Home Assistant Hilo Integration via HACS", "domain": "hilo", "etag_repository": "W/\"3d8bee220872a7882bdc1e024e5b25f88fda730d5336144c1153dda9a5d58c7c\"", "last_updated": "2023-09-18T08:07:12Z", "stargazers_count": 89, "topics": ["hilo", "home-automation-system", "hydro-quebec", "signalr-client"], "last_fetched": 1695553631.714199, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402799177": {"repository_manifest": {"name": "Blind Card", "filename": "hass-blind-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "tungmeister/hass-blind-card", "category": "plugin", "description": "Blind card for Home Assistant Lovelace UI", "etag_repository": "W/\"11d470f96828a592b64413e584f715e7adf108b0823716b25a0b4621b6725649\"", "last_updated": "2023-09-08T05:23:14Z", "stargazers_count": 26, "last_fetched": 1695553567.137771, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222687548": {"repository_manifest": {"name": "Dwains Dashboard", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "dwainscheeren/dwains-lovelace-dashboard", "authors": ["@dwainscheeren"], "category": "integration", "description": "An fully auto generating Home Assistant UI dashboard for desktop, tablet and mobile by Dwains for desktop, tablet, mobile", "domain": "dwains_dashboard", "etag_repository": "W/\"c1cca24ec9d10563d101e772a188bc839a99cae16fa98e077f9d235299458d8e\"", "last_updated": "2023-09-15T11:11:21Z", "stargazers_count": 1472, "topics": ["dashboard", "dwains-lovelace-dashboard", "home-assistant-dashboard"], "last_fetched": 1695553631.766802, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384704004": {"repository_manifest": {"name": "Trakt", "render_readme": true}, "full_name": "dylandoamaral/trakt-integration", "authors": ["@dylandoamaral"], "category": "integration", "description": "A Trakt integration for Home Assistant compatible with upcoming media card", "domain": "trakt_tv", "etag_repository": "W/\"44fb635978ed428a2fc9f716480018adde437103d480c0f0e18b0e199a246bf3\"", "last_updated": "2023-05-26T06:53:56Z", "stargazers_count": 23, "topics": ["custom", "movie", "show", "trakt", "upcoming-media-card"], "last_fetched": 1695553631.802992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231083679": {"repository_manifest": {"name": "Dark Teal"}, "full_name": "aFFekopp/dark_teal", "category": "theme", "description": "\ud83d\udc35 Dark Theme based on clear-theme-dark by @naofireblade", "etag_repository": "W/\"572109289b2c8256a77b47b2bcb5f6f9934b388159586eac3bf05f4900534575\"", "last_updated": "2022-03-15T09:06:42Z", "stargazers_count": 20, "topics": ["dark-theme", "home-assistant-theme"], "last_fetched": 1695553492.634573, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450898706": {"repository_manifest": {"name": "Only Lock Lock Row", "filename": "content.js", "render_readme": true}, "full_name": "frozenwizard/onlylocklock", "category": "plugin", "description": "Custom entity rows that prevent users from unlocking a lock, disarming a security system(alarm), opening a cover(garage door).", "etag_repository": "W/\"2553089a91c956cddb987ff31ea2d7dfe325c9bb3a41a87e1af971ec4eb655f6\"", "last_updated": "2023-05-21T19:31:15Z", "stargazers_count": 5, "topics": ["alarm", "cover", "frontend", "lock"], "last_fetched": 1695553531.032258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267076188": {"repository_manifest": {"name": "Gigaset Elements", "render_readme": "true", "homeassistant": "2022.5.0"}, "full_name": "dynasticorpheus/gigasetelements-ha", "authors": ["@dynasticorpheus"], "category": "integration", "description": "Gigaset Smart Home integration for Home Assistant", "domain": "gigasetelements", "etag_repository": "W/\"2a31cc749a1b165de5b468e595a433e82af02195c629b8d1a6055e2c5a71f774\"", "last_updated": "2023-04-17T09:45:37Z", "stargazers_count": 17, "topics": ["community", "gigaset", "gigasetelements", "python3"], "last_fetched": 1695553631.865925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "348464316": {"repository_manifest": {"name": "Magic Switchbot", "render_readme": true, "homeassistant": "2022.9.1"}, "full_name": "ec-blaster/magicswitchbot-homeassistant", "authors": ["@ec-blaster"], "category": "integration", "description": "Magic Switchbot integration component for Home Assistant", "domain": "magicswitchbot", "etag_repository": "W/\"eb19365be4c21a4f67390955457568c7438add10bd13ec3227673b290eb8a883\"", "last_updated": "2022-10-08T15:57:58Z", "stargazers_count": 15, "topics": ["magicswitchbot", "switches"], "last_fetched": 1695553631.664159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261277563": {"repository_manifest": {"name": "Open Source Routing Machine"}, "full_name": "edekeijzer/osrm_travel_time", "authors": ["@edekeijzer"], "category": "integration", "description": "OSRM travel time sensor for Home Assistant", "domain": "osrm_travel_time", "etag_repository": "W/\"9326d0bcb187c14cadd40fbfc0c3a3a21a8f18b31415660e3f8d5a0c2c598075\"", "last_updated": "2022-03-11T11:58:30Z", "stargazers_count": 7, "topics": ["osrm", "python3", "self-hosted"], "last_fetched": 1695553631.792503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "573737078": {"repository_manifest": {"name": "SAJ eSolar Air", "homeassistant": "2022.11.1", "render_readme": true, "country": ["ALL"]}, "full_name": "faanskit/ha-esolar", "authors": ["@faanskit"], "category": "integration", "description": "Custom Integration of SAJ eSOLAR", "domain": "saj_esolar_air", "etag_repository": "W/\"5b65320f75ac1f9f388ab54ad8ba06dd432963979644af83aef21dbff47c5509\"", "last_updated": "2023-03-22T12:51:26Z", "stargazers_count": 3, "topics": ["esolar", "esolar-air", "homeassistant-config", "homeassistant-custom-component", "saj", "saj-h1", "saj-inverters", "saj-r5", "solar"], "last_fetched": 1695553638.369486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292390011": {"repository_manifest": {"name": "Peloton", "render_readme": true, "homeassistant": "2023.1"}, "full_name": "edwork/homeassistant-peloton-sensor", "authors": ["@edwork"], "category": "integration", "description": "A platform which allows you to get current and past ride data from Peloton into HomeAssistant", "domain": "peloton", "downloads": 6, "etag_repository": "W/\"b0b6bf73149f249e188055e81afb896681dd4959900323e5c6909d91e71dbb82\"", "last_updated": "2023-06-14T17:59:57Z", "stargazers_count": 65, "topics": ["peloton", "peloton-api", "peloton-client"], "last_fetched": 1695553631.847746, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250345421": {"repository_manifest": {"name": "Folding@HomeControl", "homeassistant": "2022.2.3"}, "full_name": "eifinger/hass-foldingathomecontrol", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for FoldingAtHomeControl", "domain": "foldingathomecontrol", "etag_repository": "W/\"cc7e5ccd042b4dfbed2876cd20acf89188a41c86eaeb5a2e0aebe30e541aa5fa\"", "last_updated": "2023-09-04T17:53:22Z", "stargazers_count": 16, "topics": ["asyncio", "folding-at-home", "foldingathome", "python3"], "last_fetched": 1695553632.238271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403401396": {"repository_manifest": {"name": "HERE Destination Weather", "hacs": "1.6.0", "homeassistant": "2023.3.0"}, "full_name": "eifinger/hass-here-weather", "authors": ["@eifinger"], "category": "integration", "description": "Custom Home Assistant Integration for the HERE Destination Weather API", "domain": "here_weather", "etag_repository": "W/\"fa98537b57a203333f45f34a5e9f7da39815d064b92d5e0616ef724e0836c393\"", "last_updated": "2023-09-18T07:40:26Z", "stargazers_count": 6, "topics": ["here-maps-api", "herepy", "homeassistant-custom-component", "pyton"], "last_fetched": 1695553633.237651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358505160": {"repository_manifest": {"name": "Weenect", "hacs": "1.6.0", "homeassistant": "2023.3.0"}, "full_name": "eifinger/hass-weenect", "authors": ["@eifinger"], "category": "integration", "description": "Homeassistant integration for weenect", "domain": "weenect", "etag_repository": "W/\"8b563f3cbb7bc0b0fe7b60450624314a2430e639fb38cffe636c055633847127\"", "last_updated": "2023-09-18T06:32:10Z", "stargazers_count": 4, "topics": ["weenect"], "last_fetched": 1695553633.636211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497829589": {"repository_manifest": {"name": "FR24 card", "render_readme": true, "homeassistant": "2022.6.0"}, "full_name": "fratsloos/fr24_card", "category": "plugin", "description": "Lovelace card for showing Dump1090 data from FR24 in Home Assistant", "etag_repository": "W/\"14fbcb763c536553c0831625bf3cb3a5978e28a82e5e48112f3fda7c494d5d45\"", "last_updated": "2023-01-16T17:09:48Z", "stargazers_count": 27, "topics": ["ads-b", "flightradar24", "lovelace-card", "mode-s"], "last_fetched": 1695553530.81347, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202322117": {"repository_manifest": {"name": "open_route_service"}, "full_name": "eifinger/open_route_service", "authors": ["@eifinger"], "category": "integration", "description": "Custom Component for Homeassistant Providing Travel Time Information using openrouteservice.org", "domain": "open_route_service", "etag_repository": "W/\"e72c6230fba9fdfb42d096f2a2c3845cb442f6364fcff42b7ac2f064cc222fa9\"", "last_updated": "2022-12-24T16:44:40Z", "stargazers_count": 11, "topics": ["open-route-service", "python3"], "last_fetched": 1695553633.848932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229060565": {"repository_manifest": {"name": "Xiaomi Mijia Multifunctional MJYSH01YM", "render_readme": true, "homeassistant": "0.99.9"}, "full_name": "fineemb/Xiaomi-Smart-Multipurpose-Kettle", "authors": ["@fineemb"], "category": "integration", "description": "\u5c0f\u7c73\u517b\u751f\u58f6", "domain": "health_pot", "etag_repository": "W/\"aed0cb5300797d7a5a0ac4d80de8491305e6cb37e2b389592ab1d52ea5f0b08e\"", "last_updated": "2022-06-02T18:40:56Z", "stargazers_count": 6, "last_fetched": 1695553640.770296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334364176": {"repository_manifest": {"name": "WEBFLEET", "render_readme": true}, "full_name": "tom-winkler/ha-webfleet-integration", "authors": ["@tom-winkler"], "category": "integration", "description": "Homeassistant WEBFLEET integration to be installed via HACS.", "domain": "webfleet", "etag_repository": "W/\"47301cc648b9f6027c4d7a75689c6b5d300ae38de98960f31f43cbb770cb68c5\"", "last_updated": "2023-03-13T07:57:06Z", "last_fetched": 1695554183.492437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514391925": {"repository_manifest": {"name": "AppWash", "render_readme": true}, "full_name": "fapfaff/homeassistant-appwash", "authors": ["@fapfaff"], "category": "integration", "description": "AppWash integration for HomeAssistant", "domain": "appwash", "etag_repository": "W/\"821ee71825fd86e7eb1143a400a63c0f636d9f52ada64bf13861165928bcfbc0\"", "last_updated": "2022-07-21T16:30:20Z", "topics": ["dryer", "miele", "washing-machine"], "last_fetched": 1695553638.272987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263757123": {"repository_manifest": {"name": "NWS Alerts", "homeassistant": "0.95.4"}, "full_name": "finity69x2/nws_alerts", "authors": ["@finity69x2"], "category": "integration", "description": "An updated version of the nws_alerts custom integration for Home Assistant", "domain": "nws_alerts", "etag_repository": "W/\"e4e80bb015062542163911675ee45398e9d4ef02ea742ce9cf241ade993564a0\"", "last_updated": "2023-08-31T17:15:38Z", "stargazers_count": 56, "topics": ["alerts", "assistant", "home", "weather"], "last_fetched": 1695553640.573662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395770920": {"repository_manifest": {"name": "OpenEI", "homeassistant": "2021.8.0", "zip_release": true, "filename": "openei.zip"}, "full_name": "firstof9/ha-openei", "authors": ["@firstof9"], "category": "integration", "description": "OpenEI integration for Home Assistant", "domain": "openei", "downloads": 43, "etag_repository": "W/\"5901eea06dc4a652bdea86317db0fcc24c7677a9b8e204ee64c7ade93a58a1b0\"", "last_updated": "2023-09-21T14:15:13Z", "stargazers_count": 11, "topics": ["api", "energy", "rates"], "last_fetched": 1695553640.78619, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240906060": {"repository_manifest": {"name": "PHICOMM DC1 card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-dc1-card", "category": "plugin", "description": "\u6590\u8bafDC1\u6392\u63d2\u7684Lovelace\u5361\u7247", "etag_repository": "W/\"013500120024e49d6a090edb5fd6a6a2561500cf2ffe62aa370b7a0f4839daea\"", "last_updated": "2022-06-03T03:36:28Z", "stargazers_count": 20, "last_fetched": 1695553528.521273, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "285560672": {"repository_manifest": {"name": "Deutscher Wetterdienst", "homeassistant": "2022.07.1", "zip_release": true, "filename": "dwd_weather.zip"}, "full_name": "FL550/dwd_weather", "authors": ["@FL550"], "category": "integration", "description": "Deutscher Wetterdienst integration for Home-Assistant", "domain": "dwd_weather", "downloads": 5802, "etag_repository": "W/\"7004252c97e855573417d3931acbd17687c40fc8a2170c84fc9a8221fd0f0ce6\"", "last_updated": "2023-09-21T12:33:03Z", "stargazers_count": 108, "topics": ["deutscher-wetterdienst", "dwd", "dwd-weather", "weather", "weather-entity", "weather-forecast"], "last_fetched": 1695553640.763058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "276915021": {"repository_manifest": {"name": "Easee EV Charger", "homeassistant": "2023.4.0", "zip_release": true, "filename": "easee.zip"}, "full_name": "fondberg/easee_hass", "authors": ["@fondberg", "@tmjo", "@olalid", "@astrandb"], "category": "integration", "description": "Custom component for Easee EV charger", "domain": "easee", "downloads": 3503, "etag_repository": "W/\"280e6ba719753d371be6b36a20aec01456eff58a14927bbf8eab33249018a20d\"", "last_updated": "2023-09-22T11:40:28Z", "stargazers_count": 168, "topics": ["easee", "ev-charging"], "last_fetched": 1695553640.929886, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183212377": {"repository_manifest": {"name": "Spotcast", "homeassistant": "2022.3.0"}, "full_name": "fondberg/spotcast", "authors": ["@fondberg", "@fcusson"], "category": "integration", "description": "Home assistant custom component to start Spotify playback on an idle chromecast device as well as control spotify connect devices", "domain": "spotcast", "etag_repository": "W/\"fbff528fdab4a45cc807bde27f52f1014771a097b52697787e99eddb6a378cd4\"", "last_updated": "2023-09-16T15:41:35Z", "stargazers_count": 546, "last_fetched": 1695553641.291465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560614992": {"repository_manifest": {"name": "System Flow Card", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "flyrmyr/system-flow-card", "category": "plugin", "description": "A system flow card inspired by the official Energy Distribution card for Home Assistant", "etag_repository": "W/\"856d3f5bd60049a4a274adcac05debcc434ec70a25e9634dd3fca29a6a9a68ca\"", "last_updated": "2023-07-20T06:41:23Z", "stargazers_count": 24, "topics": ["dashboard", "lovelace-custom-card"], "last_fetched": 1695553530.596974, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545119372": {"repository_manifest": {"name": "Camect", "render_readme": true, "homeassistant": "2022.9"}, "full_name": "Fr3d/camect-ha", "authors": ["@Fr3d"], "category": "integration", "description": "Full Camect Hub integration for Home Assistant / HACS", "domain": "camect", "etag_repository": "W/\"03e613fbe2acd720e7a1ce831b1ec2bd13edfb77ea05aef7b52b5010f168a6f3\"", "last_updated": "2023-05-12T09:17:41Z", "stargazers_count": 5, "topics": ["camect", "home-assistant-integration"], "last_fetched": 1695553641.099148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214792276": {"repository_manifest": {"name": "Xiaomi Fan Lovelace Card", "render_readme": true}, "full_name": "fineemb/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card for HASS/Home Assistant.", "etag_repository": "W/\"e1105b16dcc1230617fc4cf4a653ffb9d71ca226a11f6c106094e079ec63f2bc\"", "last_updated": "2022-06-06T14:18:26Z", "stargazers_count": 41, "last_fetched": 1695553528.584337, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200665691": {"repository_manifest": {"homeassistant": "2023.6.0", "name": "ICS Calendar (iCalendar)"}, "full_name": "franc6/ics_calendar", "authors": ["@franc6"], "category": "integration", "description": "Provides an ICS (icalendar) platform for the Home Assistant calendar", "domain": "ics_calendar", "etag_repository": "W/\"27bef20749cd4ea83edcc8a3260937debfb9b69959edd9bc39bfe4338f607a3b\"", "last_updated": "2023-09-19T13:19:42Z", "stargazers_count": 87, "topics": ["calendar", "ics"], "last_fetched": 1695553642.403466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220685552": {"repository_manifest": {"name": "Popular Times", "render_readme": true}, "full_name": "freakshock88/hass-populartimes", "authors": ["@freakshock88"], "category": "integration", "description": "Custom component for Home Assistant which generates a sensor to show popularity for a google maps place.", "domain": "populartimes", "etag_repository": "W/\"9b402bb9996e28d28a494e7bcd6bea4962c1d451c6b1d1ffebc33a20a6ab680f\"", "last_updated": "2022-12-30T10:42:30Z", "stargazers_count": 27, "topics": ["google-maps", "google-places-api"], "last_fetched": 1695553642.394371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "620855349": {"repository_manifest": {"name": "Lightener", "filename": "lightener.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "fredck/lightener", "authors": ["@fredck"], "category": "integration", "description": "Magically control the state and brightness of lights in Home Assistant.", "domain": "lightener", "downloads": 2184, "etag_repository": "W/\"c2578119f4cb38698f79c8d960f5e29da9c1c295c4ec45c18bfd5257b6f00387\"", "last_updated": "2023-09-18T15:21:35Z", "stargazers_count": 60, "topics": ["brightness", "light"], "last_fetched": 1695553642.555703, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259784620": {"repository_manifest": {"name": "Gaode Map card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-cn-map-card", "category": "plugin", "description": "\u590d\u523b\u5b98\u65b9Lovelace\u5730\u56fe\u5361\u7247,\u57fa\u4e8e\u9ad8\u5fb7\u5730\u56fe", "etag_repository": "W/\"34372a474f9e9e3cf6e301028f49f49948cce63242ed8979f5ce41b27f5f3c8e\"", "last_updated": "2022-06-03T03:35:37Z", "stargazers_count": 47, "last_fetched": 1695553527.483826, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "605635573": {"repository_manifest": {"name": "Spook \ud83d\udc7b Not your homie", "render_readme": true, "homeassistant": "2023.8.0", "zip_release": true, "filename": "spook.zip"}, "full_name": "frenck/spook", "authors": ["@frenck"], "category": "integration", "description": "Spook \ud83d\udc7b Not your homie", "domain": "spook", "downloads": 685, "etag_repository": "W/\"1c53bfdbe37c94d1a4d0b15207e5dece33fbcd4f3a970c1ea52be49a56d5e3c8\"", "last_updated": "2023-09-23T10:53:23Z", "stargazers_count": 184, "topics": ["do-not-use", "home-assistant-component", "home-assistant-config", "home-assistant-configuration", "home-assistant-integration", "home-destruction", "homeassistant-homie", "homey", "homie", "passive-agressive", "powerful", "powertools", "random", "spooky", "toolbox"], "last_fetched": 1695553643.018152, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237887092": {"repository_manifest": {"name": "Climate thermostat card", "render_readme": true, "filename": "main.js"}, "full_name": "fineemb/lovelace-thermostat-card", "category": "plugin", "description": "Thermostat Lovelace card", "etag_repository": "W/\"2b50e4138a63df9f3b954b4b871ff57e65f59c0301d51ad7cdd291d4de9f17b4\"", "last_updated": "2023-04-14T11:01:13Z", "stargazers_count": 101, "last_fetched": 1695553528.681786, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169783299": {"repository_manifest": {}, "full_name": "ljmerza/github-card", "category": "plugin", "description": "Track your repo issues, starts, forks, and pull requests", "downloads": 903, "etag_repository": "W/\"ef53c68c0d2ed10b250bc62f6ae6f1b69f6612354f3d6c5adcdd1e5e6750bbf7\"", "last_updated": "2020-01-13T23:55:00Z", "stargazers_count": 10, "last_fetched": 1695553544.348305, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226707533": {"repository_manifest": {"name": "ltss", "render_readme": true}, "full_name": "freol35241/ltss", "authors": ["@freol35241"], "category": "integration", "description": "Long time state storage (LTSS) custom component for Home Assistant using Timescale DB", "domain": "ltss", "etag_repository": "W/\"b805dfd481185d0fae62d91e2ca8f5d15266a5a8e3c09749a42f15bb48dad8e5\"", "last_updated": "2023-09-13T18:20:36Z", "stargazers_count": 65, "topics": ["database", "ltss", "state-storage", "storage", "timescaledb"], "last_fetched": 1695553642.915958, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250552447": {"repository_manifest": {"name": "Binary Control Button Row", "filename": "binary-control-button-row.js"}, "full_name": "finity69x2/binary-control-button-row", "category": "plugin", "description": "Provides a customizable button row for binary entities in Home Assistant", "etag_repository": "W/\"5e1b511ed961f834ee61c19c086b386836e4bf9125981eb573dad652b89c8068\"", "last_updated": "2023-05-11T00:30:49Z", "stargazers_count": 20, "last_fetched": 1695553528.712384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291480917": {"repository_manifest": {"name": "Colorfulclouds Weather Card", "render_readme": true, "filename": "colorfulclouds-weather-card.js", "country": ["CN"]}, "full_name": "fineemb/lovelace-colorfulclouds-weather-card", "category": "plugin", "description": "\u8fd9\u662f\u4e00\u4e2a\u9002\u7528\u4e8e\u5f69\u4e91\u5929\u6c14\u96c6\u6210\u7684Lovelace\u5361\u7247", "etag_repository": "W/\"60b8f8edb27c03f6c5dc16899464d5cd82b0f0149c12891ca7fbe7b1ad04ad2e\"", "last_updated": "2022-06-02T18:43:02Z", "stargazers_count": 48, "topics": ["lovelace-custom-card", "weather"], "last_fetched": 1695553527.634064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "152294445": {"repository_manifest": {"name": "Remote Home-Assistant", "render_readme": true}, "full_name": "custom-components/remote_homeassistant", "authors": ["@lukas-hetzenecker", "@postlund"], "category": "integration", "description": "Links multiple home-assistant instances together", "domain": "remote_homeassistant", "etag_repository": "W/\"a85da0eb1a6fcf45d357c833d722f192a2a13495a9ee4a9dc5e2abec9603382d\"", "last_updated": "2023-09-09T08:08:21Z", "stargazers_count": 693, "last_fetched": 1695553609.174751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245239101": {"repository_manifest": {"name": "Lovelace Card Preloader", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-preloader", "category": "plugin", "description": "Allows preloading of Lovelace cards as a work around for changes in Home Assistant 0.107", "etag_repository": "W/\"b99df11224abe098aef5f21f5a3f75337f93967c90ea3320d86af60b42dda59d\"", "last_updated": "2023-03-04T06:21:16Z", "stargazers_count": 22, "last_fetched": 1695553531.553922, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174016256": {"repository_manifest": {"name": "Lovelace Home Feed Card", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-home-feed-card", "category": "plugin", "description": "A custom Lovelace card for displaying a combination of persistent notifications, calendar events, and entities in the style of a feed.", "etag_repository": "W/\"e3d1744c5aa567681972b16fca18e6ae4b86b4e592d2bf7b8770e0d957592088\"", "last_updated": "2023-06-13T18:03:12Z", "stargazers_count": 205, "last_fetched": 1695553532.799723, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182915754": {"repository_manifest": {"name": "Grocy custom component", "render_readme": true, "zip_release": true, "hide_default_branch": true, "homeassistant": "2021.12.0", "filename": "grocy.zip"}, "full_name": "custom-components/grocy", "authors": ["@SebRut", "@isabellaalstrom"], "category": "integration", "description": "Custom Grocy integration for Home Assistant", "domain": "grocy", "downloads": 2112, "etag_repository": "W/\"5a3bfb470f83a96b5ae6a28565d0495ced99d281f0011ab366e8786c1485bddd\"", "last_updated": "2023-08-17T13:22:13Z", "stargazers_count": 120, "topics": ["grocy"], "last_fetched": 1695553607.578331, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247134044": {"repository_manifest": {"name": "Multiline Text Input Card"}, "full_name": "faeibson/lovelace-multiline-text-input-card", "category": "plugin", "description": "A simple lovelace multiline text input card", "downloads": 1711, "etag_repository": "W/\"eb96eec410aceac691b7eebbd74be49fc4727f370e8d051f19de2db713704e69\"", "last_updated": "2020-10-15T00:16:17Z", "stargazers_count": 8, "topics": ["lovelace-card", "multiline", "text-input"], "last_fetched": 1695553526.776388, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307058107": {"repository_manifest": {"name": "Car card", "render_readme": true, "country": ["CN"]}, "full_name": "fineemb/lovelace-car-card", "category": "plugin", "description": "\u8f66\u8f86\u4eea\u8868\u76d8", "etag_repository": "W/\"0d07a858d3ff7be6061b5063058cc613aa6eef3c9fcc95a8abefe522fdfe81ad\"", "last_updated": "2022-06-02T18:44:43Z", "stargazers_count": 5, "topics": ["car", "lovelace-custom-card", "lynkco"], "last_fetched": 1695553527.160937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287409957": {"repository_manifest": {"name": "Cover Control Button Row", "filename": "cover-control-button-row.js"}, "full_name": "finity69x2/cover-control-button-row", "category": "plugin", "description": "button row for controlling open/close covers in Home Assistant", "etag_repository": "W/\"c0f98253f96f58cf0e9baf062c657377538797153c308c865c120ef16c4da33e\"", "last_updated": "2023-05-11T00:31:16Z", "stargazers_count": 11, "topics": ["cover"], "last_fetched": 1695553528.692421, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260597137": {"repository_manifest": {"name": "Air Purifier Card", "render_readme": true}, "full_name": "fineemb/lovelace-air-filter-card", "category": "plugin", "description": "\u7528\u4e8eLovelace\u7684\u5c0f\u7c73\u7a7a\u6c14\u51c0\u5316\u5668\u5361\u7247", "etag_repository": "W/\"0c9e2fdcb66688d2684ca4b9203d21eb40a407d4b51cbf7e59cc71f0bfbf8642\"", "last_updated": "2022-06-02T18:43:53Z", "stargazers_count": 13, "last_fetched": 1695553526.772766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574693804": {"repository_manifest": {"name": "Hypervolt Charger", "country": ["GB", "AU"]}, "full_name": "gndean/home-assistant-hypervolt-charger", "authors": ["@gndean"], "category": "integration", "description": "Home Assistant integration for Hypervolt EV charger", "domain": "hypervolt_charger", "etag_repository": "W/\"816e5879ed10812e02c95c614f54779694623b5583a6fc199c5e5f57219a7845\"", "last_updated": "2023-04-10T20:49:23Z", "stargazers_count": 32, "topics": ["ev-charger", "ev-charging", "hypervolt"], "last_fetched": 1695553650.067849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202203063": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass", "category": "theme", "description": "Synthwave inspired theme for Home Assistant", "etag_repository": "W/\"db6c8716c77edbc4c8ddbddad305b2b02b2ed0b17dc32a9ef7d3203a3cd7da70\"", "last_updated": "2022-06-13T03:57:15Z", "stargazers_count": 148, "topics": ["css", "home-assistant-theme", "javascript", "synthwave"], "last_fetched": 1695553494.483651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262140617": {"repository_manifest": {"name": "Read Your Meter", "country": "IL", "homeassistant": "0.106.0"}, "full_name": "eyalcha/read_your_meter", "authors": ["@eyalcha"], "category": "integration", "description": "Home Assistant sensor to read water meter", "domain": "read_your_meter", "etag_repository": "W/\"7becdbfc113d0308cbc96bb628ea97ad4698130b259ba1a953736f19da60e64c\"", "last_updated": "2022-07-25T19:36:44Z", "stargazers_count": 34, "last_fetched": 1695553638.427805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234118477": {"repository_manifest": {"name": "Afvalinfo", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "heyajohnny/afvalinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch waste collectors. The idea is to add more cities and features in the future.", "domain": "afvalinfo", "etag_repository": "W/\"f02d0d85925a9ab92527779efeedcd2a694db0e4f423a2a5c869e80a6427aace\"", "last_updated": "2023-08-19T19:38:47Z", "stargazers_count": 79, "last_fetched": 1695553659.145959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377012187": {"repository_manifest": {"name": "Weight Gurus", "render_readme": true}, "full_name": "jcgoette/weight_gurus_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Weight Gurus API endpoints.", "domain": "weight_gurus", "etag_repository": "W/\"edc3c1ed1b714b43996ab73ff462fde61252f647643ef66e59dc257641e33664\"", "last_updated": "2021-12-18T04:00:33Z", "stargazers_count": 3, "topics": ["health", "home-assistant-component", "weight"], "last_fetched": 1695553671.448881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452272431": {"repository_manifest": {"name": "bemfa", "render_readme": true, "country": "CN", "homeassistant": "2022.5.5"}, "full_name": "larry-wong/bemfa", "authors": ["@larry-wong"], "category": "integration", "description": "\u5c06 Home Assistant \u5b9e\u4f53\u540c\u6b65\u81f3\u5df4\u6cd5\u4e91\uff0c\u5e76\u4f7f\u7528\u5c0f\u7231\u540c\u5b66/\u5929\u732b\u7cbe\u7075/\u5c0f\u5ea6\u97f3\u7bb1\u63a7\u5236\u3002", "domain": "bemfa", "etag_repository": "W/\"4937a2ee42f79c2ad0d297395eb3ef5628f61af36da9a0770343c2f9fcb30846\"", "last_updated": "2023-04-29T12:55:00Z", "stargazers_count": 271, "topics": ["bemfa"], "last_fetched": 1695554107.471476, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139894340": {"repository_manifest": {"name": "Weatheralerts", "render_readme": true, "country": "US"}, "full_name": "custom-components/weatheralerts", "authors": ["@ludeeus", "@jlverhagen"], "category": "integration", "description": "A sensor that gives you weather alerts from alerts.weather.gov.", "domain": "weatheralerts", "etag_repository": "W/\"896e87efed45461449ca483889042cd2a81a3b8c08e7291f351acc63a5ea81b8\"", "last_updated": "2023-04-06T17:24:06Z", "stargazers_count": 105, "topics": ["weatheralerts"], "last_fetched": 1695553611.982867, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336054515": {"repository_manifest": {"name": "Open Charge Point Protocol (OCPP)", "homeassistant": "2022.7.0", "render_readme": true, "zip_release": true, "filename": "ocpp.zip"}, "full_name": "lbbrhzn/ocpp", "authors": ["@lbbrhzn"], "category": "integration", "description": "Home Assistant integration for electric vehicle chargers that support the Open Charge Point Protocol (OCPP).", "domain": "ocpp", "downloads": 1783, "etag_repository": "W/\"dc1c9799bdd6f8ca70d358438e5b6f893a9d5932de0351aad00443f017eee331\"", "last_updated": "2023-09-22T15:09:17Z", "stargazers_count": 144, "topics": ["ocpp"], "last_fetched": 1695554108.21218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162468030": {"repository_manifest": {"name": "Dark Theme Pack for Home Assistant", "render_readme": true, "filename": "dark_themes.yaml"}, "full_name": "awolkers/home-assistant-themes", "category": "theme", "description": "A collection of modern, clean but colorfull dark themes for the Home Assistant UI. Comes in six different colors (Blue / Green / Orange / Pink / Turqoise / Yellow).", "etag_repository": "W/\"89b02c7ee5b0a768824722db38c18bfdf3b1b7c06d6af3a327813c3e2f89f11f\"", "last_updated": "2022-11-04T12:54:46Z", "stargazers_count": 11, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "lovelace-theme"], "last_fetched": 1695553492.708665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499901994": {"repository_manifest": {"name": "Solarfocus eco manager-touch", "country": ["DE", "AT", "CH"], "homeassistant": "2023.1.2", "hacs": "1.29.1", "render_readme": true}, "full_name": "LavermanJJ/home-assistant-solarfocus", "authors": ["@lavermanjj"], "category": "integration", "description": "\ud83c\udfe1 Solarfocus eco manager touch integration for Home Assistant", "domain": "solarfocus", "etag_repository": "W/\"8f022301b4b174de4e684ac8d8a59d3577ffd58aeb2dfcb2cc29987faddc617d\"", "last_updated": "2023-09-19T18:42:50Z", "stargazers_count": 8, "topics": ["home-assistant-component", "solarfocus"], "last_fetched": 1695554108.004162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "495607253": {"repository_manifest": {"name": "Nordnet investments API sensors", "render_readme": true, "country": ["DK", "NO", "SE", "FI"]}, "full_name": "jippi/hass-nordnet", "authors": ["@jippi"], "category": "integration", "description": "Home Assistant + Nordnet API = awesome sensors with for your investments & holdings", "domain": "nordnet", "etag_repository": "W/\"8434c52f8b07b0f52e16c38eb089d9fd897ada99ce8c5444f92c15b1cfa762b1\"", "last_updated": "2022-05-29T09:42:20Z", "stargazers_count": 5, "topics": ["finance", "stock-market", "stocks"], "last_fetched": 1695553677.780022, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223541049": {"repository_manifest": {"name": "SamsungTV Tizen"}, "full_name": "jaruba/ha-samsungtv-tizen", "authors": ["@jaruba"], "category": "integration", "description": "\ud83d\udcfa HomeAssistant - For Samsung TVs 2016+, Includes SmartThings API and Channel List Support", "domain": "samsungtv_tizen", "etag_repository": "W/\"9d5f43e5529bcb9303880abd067dd331be6d137cd90186bb2abc8b13995bf210\"", "last_updated": "2022-12-31T20:09:24Z", "stargazers_count": 261, "last_fetched": 1695553669.068659, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146510412": {"repository_manifest": {"name": "ICY E-thermostaat", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true, "homeassistant": "0.96.0"}, "full_name": "custom-components/climate.e_thermostaat", "authors": ["@gerard33"], "category": "integration", "description": "E-Thermostaat (ICY) component for Home Assistant", "domain": "e_thermostaat", "downloads": 68, "etag_repository": "W/\"638a4e23f67dc2d0d972a06de1825da3c99b68978d89e8588f7fbe44e4dc9624\"", "last_updated": "2023-02-06T21:02:40Z", "stargazers_count": 3, "topics": ["e-thermostaat", "icy"], "last_fetched": 1695553606.437872, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "457458731": {"repository_manifest": {"name": "Material 3 Dark & Light Theme 07: DarkOliveGreen", "filename": "m3-07-darkolivegreen.yaml", "render_readme": "true"}, "full_name": "AmoebeLabs/HA-Theme_M3-07-DarkOliveGreen", "category": "theme", "description": "Material Design 3 based theme (dark olive green) for Home Assistant", "etag_repository": "W/\"4392ec8ce886788d15efd108564b366a577f38914bc1b06a6c021f21b9bbca50\"", "last_updated": "2022-06-15T07:56:39Z", "stargazers_count": 1, "topics": ["dark-mode", "dark-theme", "home-assistant-theme", "light-mode", "light-theme", "material-3"], "last_fetched": 1695553492.719443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195594888": {"repository_manifest": {"name": "Sinope GT125", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-gt125", "authors": ["@claudegel"], "category": "integration", "description": "Sinope custom component for Home Assistant to manage Sinop\u00e9 devices directly via the GT125 gateway", "domain": "sinope", "etag_repository": "W/\"0a66ffe0558a9c091ea0b0865f347f72b296de75143a568d0bcfec682b334198\"", "last_updated": "2023-04-02T21:18:15Z", "stargazers_count": 14, "topics": ["sinope"], "last_fetched": 1695553604.071083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456292486": {"repository_manifest": {"name": "Dabbler.dk reader for Echelon/NES smart power meter", "render_readme": true, "country": "DK"}, "full_name": "jnxxx/homeassistant-dabblerdk_powermeterreader", "authors": ["@jnxxx"], "category": "integration", "description": "Home Assistant integration for reading Echelon/NES smart power meter, by utilizing the Dabbler.dk MEP module ", "domain": "dabblerdk_powermeterreader", "downloads": 5, "etag_repository": "W/\"88e6aa1c68440cb2de1e0652d3d2e2e4105b8abd9cfad0c7ddaf3b5833e4c68f\"", "last_updated": "2023-03-19T14:54:23Z", "stargazers_count": 18, "topics": ["83331-3i", "dabbler-dk", "echelon", "energy", "nes", "powermeter"], "last_fetched": 1695554092.318731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401856574": {"repository_manifest": {"name": "Windcentrale", "zip_release": true, "filename": "windcentrale.zip", "homeassistant": "2022.8.0"}, "full_name": "jobvk/Home-Assistant-Windcentrale", "authors": ["@jobvk"], "category": "integration", "description": "Provides Home Assistant sensors for multiple wind turbines from the Windcentrale", "domain": "windcentrale", "downloads": 146, "etag_repository": "W/\"d8ac5f7f85e9eb72ffb76fa83902dce86cf8b53263c85feab40c767d6147aaed\"", "last_updated": "2023-09-24T10:12:30Z", "stargazers_count": 13, "topics": ["dutch", "wind-turbines", "windcentrale"], "last_fetched": 1695554092.437248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "230974064": {"repository_manifest": {"name": "Oxford Blue", "render_readme": true}, "full_name": "arsaboo/oxford_blue_theme", "category": "theme", "description": "Oxford blue theme for Home Assistant", "etag_repository": "W/\"ac2553ff20c0159800b18580f88ac09db629c7ba26f9f19248347e6509448d20\"", "last_updated": "2020-02-27T00:08:56Z", "stargazers_count": 5, "last_fetched": 1695553492.724853, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197960232": {"repository_manifest": {}, "full_name": "ljmerza/our-groceries-card", "category": "plugin", "description": "our groceries lovelace card", "etag_repository": "W/\"e587767b01c833441533f23dd71182f636761872df5cda4b91b807ba70339afe\"", "last_updated": "2023-03-21T20:01:43Z", "stargazers_count": 29, "last_fetched": 1695553544.57639, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209855666": {"repository_manifest": {"name": "UPS", "country": "US"}, "full_name": "custom-components/ups", "category": "integration", "description": "The ups platform allows one to track deliveries by the UPS", "domain": "ups", "etag_repository": "W/\"e475cec6441376dd7469b9593df76ddf164edd90e0948e1388c5fa7b240af7d2\"", "last_updated": "2021-05-19T10:28:06Z", "stargazers_count": 5, "last_fetched": 1695553611.783437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238802974": {"repository_manifest": {"name": "Roomba Vacuum Card", "render_readme": true}, "full_name": "jeremywillans/lovelace-roomba-vacuum-card", "category": "plugin", "description": "HA Lovelace Card for iRobot Roomba Vacuum Cleaner leveraging the rest980 Docker Image", "etag_repository": "W/\"20549102f5356e83460f681b019bdce12e7995e1f2eebd3776bf163ad2266051\"", "last_updated": "2023-04-06T18:55:12Z", "stargazers_count": 41, "topics": ["irobot", "irobot-roomba", "lovelace-custom-card", "vacuum"], "last_fetched": 1695553539.069989, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296320952": {"repository_manifest": {"name": "\u5c0f\u7c73\u4e91\u670d\u52a1", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/xiaomi-cloud", "authors": ["@fineemb"], "category": "integration", "description": "HASS\u7684\u5c0f\u7c73\u4e91\u670d\u52a1\u96c6\u6210", "domain": "xiaomi_cloud", "etag_repository": "W/\"31c8f5427c1a5d35b44d7f9639bd939d2b8c11e8f1fa5a58c10a317971252f5a\"", "last_updated": "2023-09-14T13:28:45Z", "stargazers_count": 38, "topics": ["cloud", "xiaomi"], "last_fetched": 1695553640.375617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542686924": {"repository_manifest": {"name": "ENTSO-e Transparency Platform", "render_readme": true}, "full_name": "JaccoR/hass-entso-e", "authors": ["@JaccoR"], "category": "integration", "description": "Integration for Home Assistant to fetch day ahead energy prices from European countries via ENTSO-e Transparency Platform", "domain": "entsoe", "etag_repository": "W/\"3234fe26708be1a855a6cc4154bdf273a40b019a02e4278fa9920e5b284ca801\"", "last_updated": "2023-01-16T13:39:58Z", "stargazers_count": 124, "topics": ["day-ahead", "day-ahead-auction", "day-ahead-market", "electricity-market", "electricity-prices", "energy", "energy-prices", "entso-e", "entsoe"], "last_fetched": 1695553668.766204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139892990": {"repository_manifest": {"name": "BrewDog", "render_readme": true}, "full_name": "custom-components/brewdog", "authors": ["@ludeeus"], "category": "integration", "description": "\ud83c\udf7b Display information about random beers from Brewdog as a sensor in Home Assistant, you can use this in a push notification next time you visit a bar.", "domain": "brewdog", "etag_repository": "W/\"f5c1afbde2810c0f09d05bd65168bf0d67e56300b181bba6776fc258a22ec4bc\"", "last_updated": "2022-03-11T08:08:33Z", "stargazers_count": 5, "topics": ["api", "brewdog", "punkapi"], "last_fetched": 1695553606.408059, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213950645": {"repository_manifest": {"name": "ElkoEP Lara", "render_readme": true}, "full_name": "exKAjFASH/media_player.elkoep_lara", "category": "integration", "description": "Support for interface with an ElkoEP Lara devices", "domain": "elkoep_lara", "etag_repository": "W/\"7b81a29a3d43fb37265713a89cab22097a430c23f056b43b4cc8107cc0b179c6\"", "last_updated": "2022-04-21T20:37:03Z", "last_fetched": 1695553637.904164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184333163": {"repository_manifest": {"name": "Lovelace Card Templater", "render_readme": true}, "full_name": "gadgetchnnel/lovelace-card-templater", "category": "plugin", "description": "Custom Lovelace card which allows Jinja2 templates to be applied to other cards", "etag_repository": "W/\"0bfbd80321c548c87f250e513e3b0fa128e8827dbc28bcec3d3d0ba246a93844\"", "last_updated": "2023-01-07T15:41:51Z", "stargazers_count": 106, "last_fetched": 1695553532.668376, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177169766": {"repository_manifest": {"name": "Wattbox", "homeassistant": "2022.3.0"}, "full_name": "eseglem/hass-wattbox", "authors": ["@eseglem"], "category": "integration", "description": "Home Assistant WattBox Component", "domain": "wattbox", "etag_repository": "W/\"fa36372d1946b492d864f3614c9a49904962e5ee82fd0877ff7ab215e4e90f3a\"", "last_updated": "2023-06-13T16:18:49Z", "stargazers_count": 9, "topics": ["battery", "ups", "wattbox"], "last_fetched": 1695553636.360477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237880993": {"repository_manifest": {"name": "Smartmi smart heater", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Smartmi-smart-heater", "authors": ["@fineemb"], "category": "integration", "description": "\u667a\u7c73\u667a\u80fd\u7535\u6696\u5668", "domain": "miheater", "etag_repository": "W/\"f9cabdbf9a0e977dc7051e7754081400de6eac0d25815e8bfeeafb563341f02c\"", "last_updated": "2022-12-20T03:16:37Z", "stargazers_count": 18, "last_fetched": 1695553640.170671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552532860": {"repository_manifest": {"name": "Seiverkot", "country": "FI", "render_readme": true}, "full_name": "evantaur/seiverkot-consumption", "authors": ["@evantaur"], "category": "integration", "description": "Add seiverkot consumption sensor to home assistant", "domain": "seiverkot", "etag_repository": "W/\"fe06d36e7d9354dc5669c5e1026cdc3d18eb488953899f29242f1d0f5392ba74\"", "last_updated": "2023-07-13T18:08:25Z", "stargazers_count": 2, "topics": ["energy-consumption", "energy-monitor", "seinajoen-energia", "seiverkot"], "last_fetched": 1695553636.479427, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "644033469": {"repository_manifest": {"name": "Weather.com", "render_readme": true}, "full_name": "jaydeethree/Home-Assistant-weatherdotcom", "authors": ["@jaydeethree"], "category": "integration", "description": "Home Assistant custom component sensor for Weather.com", "domain": "weatherdotcom", "etag_repository": "W/\"5e4aac0a209fb710e1c224339dc881da27261fdfe268b554e009c297e54a65d8\"", "last_updated": "2023-09-07T18:56:29Z", "stargazers_count": 15, "topics": ["hassio-integration", "weather", "weather-forecast"], "last_fetched": 1695553671.461616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290436986": {"repository_manifest": {"name": "\u5f69\u4e91\u5929\u6c14", "render_readme": true, "homeassistant": "0.99.9", "country": ["CN"]}, "full_name": "fineemb/Colorfulclouds-weather", "authors": ["@fineemb"], "category": "integration", "description": "\u7528\u4e8eHASS\u7684\u5f69\u4e91\u5929\u6c14\u7ec4\u4ef6", "domain": "colorfulclouds", "etag_repository": "W/\"528a8a5c10d3af179327e2370899c87a289ca8da73ebf6f6badd5cc9f5598e0c\"", "last_updated": "2023-05-19T01:22:07Z", "stargazers_count": 104, "topics": ["weather"], "last_fetched": 1695553639.888242, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159711605": {"repository_manifest": {"name": "Secondaryinfo Entity Row", "content_in_root": true, "filename": "secondaryinfo-entity-row.js", "render_readme": true, "homeassistant": "0.88"}, "full_name": "custom-cards/secondaryinfo-entity-row", "category": "plugin", "description": "Custom entity row for HomeAssistant, providing additional types of data to be displayed in the secondary info area of the Lovelace Entities card", "etag_repository": "W/\"92f2a2edb71b18c22df5903109f47874789735f146da48b73cb49527c6d3fe79\"", "last_updated": "2021-06-05T21:12:36Z", "stargazers_count": 155, "last_fetched": 1695553520.253322, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358585486": {"repository_manifest": {"name": "Multiscrape", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "danieldotnl/ha-multiscrape", "authors": ["@danieldotnl"], "category": "integration", "description": "Home Assistant custom component for scraping (html, xml or json) multiple values (from a single HTTP request) with a separate sensor/attribute for each value. Support for (login) form-submit functionality.", "domain": "multiscrape", "etag_repository": "W/\"82efbc85abd12228f1915cf61929d16e7bec5e7c0a5befaffcb8681eb7d7105d\"", "last_updated": "2023-09-18T14:27:55Z", "stargazers_count": 173, "topics": ["rest", "scrape", "scraper", "scraping"], "last_fetched": 1695553618.524707, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286186485": {"repository_manifest": {"name": "Scheduler component", "render_readme": true}, "full_name": "nielsfaber/scheduler-component", "authors": ["@nielsfaber"], "category": "integration", "description": "Custom component for HA that enables the creation of scheduler entities", "domain": "scheduler", "downloads": 187, "etag_repository": "W/\"126b1b4a4f8e1aa012aaef35b00fba44687aea6f6553950723b0e1c973d73ec9\"", "last_updated": "2023-09-19T19:05:32Z", "stargazers_count": 451, "topics": ["scheduler"], "last_fetched": 1695554134.974246, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "173955605": {"repository_manifest": {"name": "Spotify Lovelace Card", "render_readme": true, "filename": "spotify-card.js"}, "full_name": "custom-cards/spotify-card", "category": "plugin", "description": "Spotify playlist card for Home Assistant card", "etag_repository": "W/\"953224b272eecdf744ac9f1d58353eb0b7977b570e394faec2b4a11357813caa\"", "last_updated": "2023-05-29T10:51:50Z", "stargazers_count": 327, "last_fetched": 1695553520.637889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "451209586": {"repository_manifest": {"name": "Flagdays DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Flagdays_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "\ud83c\udde9\ud83c\uddf0 Official flagdays in Denmark with a lot of useful logic and attributes. It is possible to add your own anniversaries \ud83c\udf82 or special flags \ud83c\udff3\ufe0f\u200d\ud83c\udf08 \ud83c\udff4\u200d\u2620\ufe0f", "domain": "flagdays_dk", "etag_repository": "W/\"06a217d2333adfd8d9a9c3888aceaffcde2b88851375964b6e757476faf93ca0\"", "last_updated": "2023-02-07T15:39:45Z", "stargazers_count": 4, "topics": ["anniversaries", "denmark", "flagdays", "pride"], "last_fetched": 1695553666.943744, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242700009": {"repository_manifest": {"name": "Kostal Plenticore"}, "full_name": "ITTV-tools/homeassistant-kostalplenticore", "authors": ["@ITTV-Tools"], "category": "integration", "description": "Home Assistant Component for Kostal Plenticore ", "domain": "kostal_plenticore", "etag_repository": "W/\"c3e857e539c073902f781d6f763c0f4ff00c92416b9bc9b2df1871fea1c873fa\"", "last_updated": "2022-07-21T18:38:06Z", "stargazers_count": 14, "topics": ["component", "kostal", "plenticore"], "last_fetched": 1695553666.80149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517642950": {"repository_manifest": {"name": "Apex"}, "full_name": "itchannel/apex-ha", "authors": ["@itchannel"], "category": "integration", "description": "Local Neptune Apex HA Integration (Aquarium Controller)", "domain": "apex", "etag_repository": "W/\"c3453bae484d702b222214e154ec5dbb2e1b00c7768a17af84f69dd28c0651a6\"", "last_updated": "2023-08-04T11:26:42Z", "stargazers_count": 8, "topics": ["aquarium", "aquarium-controller"], "last_fetched": 1695553666.805778, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512169290": {"repository_manifest": {"name": "CoCT Loadshedding Interface", "homeassistant": "2022.7.1", "country": "ZA"}, "full_name": "tinuva/ha-coct-loadshedding", "authors": ["@tinuva"], "category": "integration", "description": "Fetches loadshedding data from City of Cape Town", "domain": "coct_loadshedding", "etag_repository": "W/\"f5e031fdfb9996cc32b32625a9cf34d7fc32453a95446cd996671d287b32021c\"", "last_updated": "2023-07-19T06:51:59Z", "stargazers_count": 20, "topics": ["cape", "cape-town", "capetown", "eskom", "loadshedding", "south-africa"], "last_fetched": 1695554183.621578, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625369698": {"repository_manifest": {"name": "FreeDS"}, "full_name": "IvanSanchez/homeassistant-freeds", "authors": ["@ivansanchez"], "category": "integration", "description": "FreeDS integration for Home Assistant (read-only clone of gitlab repo)", "domain": "freeds", "etag_repository": "W/\"22dc47d75c5a253562d7a5d138a2af659e9a2609e7d02c4f122c1266e93d95af\"", "last_updated": "2023-09-18T22:13:17Z", "stargazers_count": 6, "topics": ["freeds"], "last_fetched": 1695553666.762548, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479221839": {"repository_manifest": {"hacs": "1.6.0", "name": "Swatch", "homeassistant": "2021.12.0b2"}, "full_name": "NickM-27/swatch-hass-integration", "authors": ["@NickM-27"], "category": "integration", "description": "HomeAssistant Integration For Swatch: Color detection in images to capture presense of known objects.", "domain": "swatch", "etag_repository": "W/\"b8d33426368debb56e09f937c1fa935beb2b4759386a4822a91dfee4bf30b72f\"", "last_updated": "2023-05-13T12:52:31Z", "stargazers_count": 10, "topics": ["ai", "camera", "home-assistant-integration", "object-detection", "opencv"], "last_fetched": 1695554134.184218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178838527": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true, "homeassistant": "0.114.1"}, "full_name": "filipvh/hass-nhc2", "authors": ["@filipvh"], "category": "integration", "description": "Niko Home Control II Home Assistant Integration", "domain": "nhc2", "etag_repository": "W/\"0c3ef761ba46c018c27bf509eae01f7affec4d0e2db853b26488ca8beacefcde\"", "last_updated": "2023-01-08T16:29:48Z", "stargazers_count": 37, "topics": ["coco", "domotica", "nhc", "nhc2", "niko", "niko-home-control"], "last_fetched": 1695553638.992005, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316396217": {"repository_manifest": {"name": "Mjpeg Timelapse", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "evilmarty/mjpeg-timelapse", "authors": ["@evilmarty"], "category": "integration", "description": "Mjpeg Timelapse integration for Home Assistant", "domain": "mjpeg_timelapse", "etag_repository": "W/\"a3623c6c99f9d5619ab6303b12a5e51ee93736436bbd6cbd45061c30b8cb947b\"", "last_updated": "2023-05-20T10:05:33Z", "stargazers_count": 21, "topics": ["camera"], "last_fetched": 1695553637.706753, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "147764937": {"repository_manifest": {"name": "surveillance-card", "content_in_root": true, "render_readme": true}, "full_name": "custom-cards/surveillance-card", "category": "plugin", "description": "A custom component for displaying camera feeds in the style of a surveillance system.", "etag_repository": "W/\"f29aa92f5da8ca6a04eb80169577d075df50f7ba55c32ff54f8a8e7e7b91ec26\"", "last_updated": "2023-05-15T22:13:17Z", "stargazers_count": 214, "topics": ["camera", "motion", "security"], "last_fetched": 1695553520.541188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "327779379": {"repository_manifest": {"name": "Optus"}, "full_name": "itchannel/optus-ha", "authors": ["@itchannel"], "category": "integration", "description": "Optus Mobile Home Assistant Integration", "domain": "optus", "etag_repository": "W/\"4e6d068e4fa3e9134f82bf940880610bcc468c94a973fabb06d24f47a0e1708a\"", "last_updated": "2021-06-13T00:40:48Z", "stargazers_count": 3, "topics": ["assistant", "mobile", "optus"], "last_fetched": 1695553666.716281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164367214": {"repository_manifest": {"name": "Roku Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/roku-card", "category": "plugin", "description": "\ud83d\udcfa Roku Remote Card", "downloads": 7891, "etag_repository": "W/\"466844c222efea474deb47d241fbf2e00fea05a2c8c8c5f53bf408d6358d9fb8\"", "last_updated": "2023-04-30T04:51:39Z", "stargazers_count": 102, "topics": ["roku"], "last_fetched": 1695553536.338344, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585050790": {"repository_manifest": {"name": "tdarr"}, "full_name": "itchannel/tdarr_ha", "authors": ["@itchannel"], "category": "integration", "description": "Tdarr Home Assistant Integration", "domain": "tdarr", "etag_repository": "W/\"722ccba1e98a66de5b90fc82847d51927eb67dfd291930255686597f96971656\"", "last_updated": "2023-07-27T04:19:12Z", "stargazers_count": 7, "topics": ["assistant", "home", "tdarr", "transcoding"], "last_fetched": 1695553666.783574, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290281267": {"repository_manifest": {"name": "Fullscreen Card", "render_readme": true}, "full_name": "KTibow/fullscreen-card", "category": "plugin", "description": "Make your Home Assistant browser fullscreen with one tap.", "downloads": 1714, "etag_repository": "W/\"cdac43c402542f48f8f0b6882c46a7aefba589c5ebdb815ef716fc42f283cfc9\"", "last_updated": "2023-05-18T14:00:38Z", "stargazers_count": 34, "topics": ["card", "fullscreen", "hacktoberfest2020"], "last_fetched": 1695553543.876392, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215633404": {"repository_manifest": {"name": "Restriction Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/restriction-card", "category": "plugin", "description": "\ud83d\udd12 Apply restrictions to Lovelace cards", "downloads": 5650, "etag_repository": "W/\"1450aa1f9846ee9cca276e4985c21ff244145869cd7b49e330d70acbc6a9aa75\"", "last_updated": "2023-07-06T19:12:35Z", "stargazers_count": 210, "topics": ["security"], "last_fetched": 1695553535.760667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364769821": {"repository_manifest": {"name": "Harmony Remote Card", "render_readme": true, "filename": "dist/harmony-remote-card.js"}, "full_name": "ljmerza/harmony-remote-card", "category": "plugin", "description": "Harmony Hub Remote Control Card for Home Assistant", "downloads": 1149, "etag_repository": "W/\"5285b227810daf3a0baef197a8d208b50aad37e332ecb3133b3eea3f178a08b6\"", "last_updated": "2023-08-29T20:33:08Z", "stargazers_count": 10, "topics": ["harmony", "remote"], "last_fetched": 1695553544.885292, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577406": {"repository_manifest": {"name": "Config Editor", "render_readme": "true"}, "full_name": "htmltiger/config-editor", "authors": ["@htmltiger"], "category": "integration", "description": "Home Assistant Configuration Editor Helper", "domain": "config_editor", "etag_repository": "W/\"5097e486cc156f631901bd1892769abb069358196b61679598c4252c129f7cc5\"", "last_updated": "2023-02-27T01:32:43Z", "stargazers_count": 20, "topics": ["homeassistant-config"], "last_fetched": 1695553661.122115, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534083455": {"repository_manifest": {"name": "Deutsche Bahn", "render_readme": true, "country": ["DE"]}, "full_name": "FaserF/ha-deutschebahn", "authors": ["@faserf"], "category": "integration", "description": "Unofficial HA DB Integration, due to removal as of Home Assistant 2022.11", "domain": "deutschebahn", "etag_repository": "W/\"44703be8c303a12a373314a20319e67123e46086f419b127d57e98eabfdfe41c\"", "last_updated": "2023-09-22T20:16:55Z", "stargazers_count": 24, "last_fetched": 1695553638.512934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "168570875": {"repository_manifest": {}, "full_name": "ljmerza/fitbit-card", "category": "plugin", "description": "fitbit-card for lovelace", "downloads": 2270, "etag_repository": "W/\"4a397421b41e8723909fd8abeec245e8a1cf804bb51dd8d5909cdb892e787686\"", "last_updated": "2020-07-10T20:55:32Z", "stargazers_count": 25, "last_fetched": 1695553543.822756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179347477": {"repository_manifest": {"name": "Circadian Lighting"}, "full_name": "claytonjn/hass-circadian_lighting", "authors": ["@claytonjn"], "category": "integration", "description": "Circadian Lighting custom component for Home Assistant", "domain": "circadian_lighting", "etag_repository": "W/\"0dc2d2146e690b43be561bc1d48c0c3b26452f758dfec4fd0421434a57936da3\"", "last_updated": "2023-08-29T10:24:42Z", "stargazers_count": 692, "topics": ["circadian", "circadian-rhythms", "lighting", "sleep", "wellness"], "last_fetched": 1695553604.217606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092629": {"repository_manifest": {"name": "tvh_rec", "country": "NO"}, "full_name": "kodi1/tvh_rec", "authors": ["@kodi1"], "category": "integration", "description": "tvheadend recorder sensor - lovelace upcoming media card", "domain": "tvh_rec", "etag_repository": "W/\"bfccbeeb9ab790a35116a0b8b5e100cab7c4831ccbfc9e12ff23656530f1f2f5\"", "last_updated": "2022-01-09T10:38:49Z", "stargazers_count": 3, "topics": ["recordings", "tvheadend"], "last_fetched": 1695554101.219608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232077394": {"repository_manifest": {"name": "Chargeamps", "render_readme": true}, "full_name": "kirei/hass-chargeamps", "authors": ["@kirei"], "category": "integration", "description": "Home Assistant Component for Chargeamps", "domain": "chargeamps", "etag_repository": "W/\"278eb28b62a51f6595f061c16e5b1b4deb0b4f50be65cc75a57733d3ef05dce3\"", "last_updated": "2023-08-05T19:11:30Z", "stargazers_count": 21, "topics": ["chargeamps"], "last_fetched": 1695554099.282511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234983286": {"repository_manifest": {"name": "Govee BLE HCI monitor sensor integration"}, "full_name": "Home-Is-Where-You-Hang-Your-Hack/sensor.goveetemp_bt_hci", "authors": ["@thrilleratplay"], "category": "integration", "description": "Govee Temperature/Humidity BLE Home Assistant Component", "domain": "govee_ble_hci", "etag_repository": "W/\"afd2e8aede43ebe145cd86426d71d8471f38603859358c1f72c23b1bc7878b50\"", "last_updated": "2023-01-07T20:46:55Z", "stargazers_count": 154, "topics": ["ble", "govee", "h5051", "h5072", "h5074", "h5075", "h5101", "h5102", "h5177", "h5179", "home-assistant-component"], "last_fetched": 1695553659.171286, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603218187": {"repository_manifest": {"name": "MyLight Systems", "render_readme": true, "homeassistant": "2022.2.0"}, "full_name": "acesyde/hassio_mylight_integration", "authors": ["@acesyde"], "category": "integration", "description": "MyLight Systems integration - Home Assistant", "domain": "mylight_systems", "etag_repository": "W/\"49f0a89f49e8709750f02c6630665b799b206328f4a524f927f7b9b4d4f287b1\"", "last_updated": "2023-09-01T06:44:07Z", "stargazers_count": 3, "topics": ["mylight"], "last_fetched": 1695553571.68579, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198460710": {"repository_manifest": {"name": "Date Countdown"}, "full_name": "point-4ward/ps-date-countdown", "category": "python_script", "description": "A python script for Homeassistant that counts down the days to birthdays, anniversaries etc", "etag_repository": "W/\"05b131a5942e5a347824f121991a0d45adf6ededecffe894506985e71b12ba02\"", "last_updated": "2021-05-15T02:00:07Z", "stargazers_count": 21, "last_fetched": 1695553508.148929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202546107": {"repository_manifest": {}, "full_name": "bbbenji/synthwave-hass-extras", "category": "plugin", "description": "Extras for the synthwave inspired theme for Home Assistant", "etag_repository": "W/\"99e908db71d7dbca1d223f75f4bbdea44a1b98b35087d3b77177778ad29053b9\"", "last_updated": "2020-10-30T00:24:02Z", "stargazers_count": 13, "last_fetched": 1695553512.673833, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484538222": {"repository_manifest": {"name": "Power Flow Card", "render_readme": true, "homeassistant": "2021.8.0"}, "full_name": "ulic75/power-flow-card", "category": "plugin", "description": "A power distribution card inspired by the official Energy Distribution card for Home Assistant", "downloads": 12424, "etag_repository": "W/\"b90f4386edca6d03ed7843ec575ab6f5322779ece21ce161d348a67f9e0c389f\"", "last_updated": "2023-08-03T05:13:49Z", "stargazers_count": 134, "topics": ["dashboard"], "last_fetched": 1695553567.255052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201292040": {"repository_manifest": {"name": "Zigbee2mqtt Networkmap Card", "render_readme": true}, "full_name": "azuwis/zigbee2mqtt-networkmap", "category": "plugin", "description": "Home Assistant Custom Card to show Zigbee2mqtt network map", "downloads": 5138, "etag_repository": "W/\"1d177108ea8bbc43936c559022154d7c6b9265f2d3d4e5e1c4ac99b40f61f25f\"", "last_updated": "2023-07-20T05:58:52Z", "stargazers_count": 172, "topics": ["zigbee2mqtt"], "last_fetched": 1695553512.688338, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159025199": {"repository_manifest": {}, "full_name": "kalanda/homeassistant-aemet-sensor", "authors": ["@kalanda"], "category": "integration", "description": "AEMET integration for Home Assistant", "domain": "aemet", "etag_repository": "W/\"89aca8cac69565758fbc5ca301ba118d3eb3c3cbfcc3d2b068277fc871af84f1\"", "last_updated": "2022-06-03T06:00:18Z", "stargazers_count": 21, "topics": ["aemet"], "last_fetched": 1695554096.836729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437278224": {"repository_manifest": {"name": "Dell Printer", "render_readme": true}, "full_name": "kongo09/hass-dell-printer", "authors": ["@kongo09"], "category": "integration", "description": "Support DELL printers in Home Assistant", "domain": "dell_printer", "etag_repository": "W/\"d8d936bcb9e9e3d8b4639ddf25411b000cf8ac2bed642d46d9a2ec5bdd60cb0a\"", "last_updated": "2022-06-26T17:26:42Z", "stargazers_count": 6, "topics": ["dell", "printer"], "last_fetched": 1695554103.383201, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233089370": {"repository_manifest": {"name": "esp_wd", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/esp_wd", "authors": ["@kodi1"], "category": "integration", "description": "easyesp status sensor", "domain": "esp_wd", "etag_repository": "W/\"d60f64fdd00c54a3d91e73c8f31350d8a713453fdf333d013c123f09ff7e579a\"", "last_updated": "2022-02-23T01:23:48Z", "stargazers_count": 2, "topics": ["esp-easy"], "last_fetched": 1695554101.220913, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233092112": {"repository_manifest": {"name": "songpal_m", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/songpal_m", "authors": ["@kodi1"], "category": "integration", "description": "songpal - volume down workaround", "domain": "songpal_m", "etag_repository": "W/\"6b6536864c8026f83edf728e92538884c8c25093029a698150a5a065bf408140\"", "last_updated": "2021-03-28T10:15:20Z", "stargazers_count": 1, "topics": ["songpal"], "last_fetched": 1695554101.150709, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279680951": {"repository_manifest": {"name": "Jablotron 100", "country": ["CS", "DA", "DE", "EN", "IT", "NB", "NL", "SK"], "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "kukulich/home-assistant-jablotron100", "authors": ["@kukulich"], "category": "integration", "description": "Home Assistant custom component for JABLOTRON 100+ alarm system", "domain": "jablotron100", "etag_repository": "W/\"a30a282a01399f7a8dcac1d00961b8a8aab07c5cd9e1e178162a8cf785840926\"", "last_updated": "2023-09-24T08:04:59Z", "stargazers_count": 55, "topics": ["alarm", "jablotron"], "last_fetched": 1695554105.779967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "645730299": {"repository_manifest": {"name": "LeoNTP", "render_readme": true}, "full_name": "CumpsD/home-assistant-leo-ntp", "authors": ["@CumpsD"], "category": "integration", "description": "Home Assistant integration for LeoNTP 1200", "domain": "leo_ntp", "etag_repository": "W/\"0e13bf1c71c9ef2eb6846dde64c49e3404a2b33ea59bde3acad5f9c8e68581df\"", "last_updated": "2023-09-18T12:53:15Z", "stargazers_count": 2, "topics": ["leo-ntp", "ntp", "timeserver"], "last_fetched": 1695553605.440403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207292725": {"repository_manifest": {"name": "Flexible Horseshoe Card for Lovelace", "content_in_root": true, "filename": "flex-horseshoe-card.js"}, "full_name": "AmoebeLabs/flex-horseshoe-card", "category": "plugin", "description": "Flexible Horseshoe card for Home Assistant Lovelace UI. A card with a flexible layout, a horseshoe-like donut graph, multiple entities or attributes, graphics and animations!", "etag_repository": "W/\"92925f9ee2f01aaa65464b6c0f44e3e1a37569aa6dffee33da81b3c5ce97a30e\"", "last_updated": "2023-05-09T16:13:21Z", "stargazers_count": 183, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553510.936893, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446609758": {"repository_manifest": {"name": "Nicehash Excavator API", "render_readme": true, "homeassistant": "2021.12.1"}, "full_name": "MesserschmittX/ha-nicehash-excavator-monitor", "authors": ["@MesserschmittX"], "category": "integration", "description": "Home Assistant integration for Nicehash Excavator miner API", "domain": "nicehash_excavator", "etag_repository": "W/\"885465705273fce51de85e9dac95d043eb4f7ef71b7ac3d35392f4f5b097b6bb\"", "last_updated": "2022-05-15T07:11:45Z", "stargazers_count": 4, "topics": ["excavator", "mining", "nicehash"], "last_fetched": 1695554121.856755, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316807165": {"repository_manifest": {"name": "Miele integration"}, "full_name": "HomeAssistant-Mods/home-assistant-miele", "authors": ["@kloknibor", "@docbobo"], "category": "integration", "description": "Miele integration for Home assistant", "domain": "miele", "etag_repository": "W/\"8ad9a29701d9a1b1ebe13c8bcccda23b71a2079fb15c7be9667919e76fcb15f7\"", "last_updated": "2023-09-06T10:20:58Z", "stargazers_count": 118, "topics": ["miele"], "last_fetched": 1695553659.023103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335750566": {"repository_manifest": {"name": "Brandstofprijzen", "render_readme": true, "country": ["NL"]}, "full_name": "metbril/home-assistant-brandstofprijzen", "authors": ["@metbril"], "category": "integration", "description": "Home Assistant component for fuel prices from United Consumers", "domain": "brandstofprijzen", "etag_repository": "W/\"f3699dd55e197228d1600f05edb67d6b8a587b4d6a22ff728d7aa9be6189362e\"", "last_updated": "2023-09-04T14:37:50Z", "stargazers_count": 5, "last_fetched": 1695554121.858194, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "602776380": {"repository_manifest": {"name": "Balance Neto", "render_readme": true, "homeassistant": "2023.1.0", "country": "ES"}, "full_name": "MiguelAngelLV/balance_neto", "authors": ["@miguelangellv"], "category": "integration", "description": "Componente para Home Assistant que calcula el Balance Neto Horario para instalaciones fotovolt\u00e1icas.", "domain": "balance_neto", "etag_repository": "W/\"04c7ebe727848ac6140226cfbdbfd585a59d79eb307573c7b931752c945ba38e\"", "last_updated": "2023-09-21T10:53:06Z", "stargazers_count": 17, "topics": ["fotovoltaica"], "last_fetched": 1695554122.983064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410667735": {"repository_manifest": {"name": "Reaper DAW", "homeassistant": "2021.9.0", "zip_release": true, "filename": "reaper.zip", "render_readme": true}, "full_name": "kubawolanin/ha-reaper", "authors": ["@kubawolanin"], "category": "integration", "description": "Reaper DAW custom integration for Home Assistant", "domain": "reaper", "downloads": 211, "etag_repository": "W/\"1a1503464272994a2bfceb94ab194d9dacfb9b6efeb23457f0e5f0249f30cc00\"", "last_updated": "2021-11-12T16:36:27Z", "stargazers_count": 15, "topics": ["daw", "digital-audio-workstation", "reaper"], "last_fetched": 1695554105.533881, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242635439": {"repository_manifest": {"name": "Disk Space", "render_readme": true}, "full_name": "kuchel77/diskspace", "authors": ["@kuchel77"], "category": "integration", "description": "Disk space for a path. For use with Home Assistant", "domain": "diskspace", "etag_repository": "W/\"3a77fc3091ef1d22432af6fa2fd820d36822e89ab998bd353d5f08af376b0562\"", "last_updated": "2021-04-18T05:13:59Z", "stargazers_count": 9, "topics": ["assistant", "disk", "home", "space"], "last_fetched": 1695554105.764106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295627573": {"repository_manifest": {"name": "Fortnite Stats", "hacs": "0.24.0", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "michaellunzer/Home-Assistant-Custom-Component-Fortnite", "authors": ["@michaellunzer", "@clyra"], "category": "integration", "description": "This is a Home-Assistant custom component that pulls Fortnite stats using the python API library from the site fortnitetracker.com", "domain": "fortnite", "downloads": 18, "etag_repository": "W/\"345d9f4d3a2d4151818edac4fbe1b8b6f6de90878806eb633fb65f311dc2ae98\"", "last_updated": "2021-11-03T06:00:38Z", "stargazers_count": 4, "topics": ["fortnite", "fortnite-api", "fortnite-stats"], "last_fetched": 1695554121.992533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582589896": {"repository_manifest": {"name": "Versatile Thermostat", "render_readme": true, "homeassistant": "2023.7.3"}, "full_name": "jmcollin78/versatile_thermostat", "authors": ["@jmcollin78"], "category": "integration", "description": "A full featured Thermostat for Home Assistant: presets, window, motion, presence and overpowering management", "domain": "versatile_thermostat", "etag_repository": "W/\"8f951569ec9a1badff3cbd780f16e89c333af603dc8c25cea7d376f038b6a81a\"", "last_updated": "2023-09-24T02:58:48Z", "stargazers_count": 72, "topics": ["hacs-custom", "thermostat"], "last_fetched": 1695554092.599656, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214786112": {"repository_manifest": {"name": "Swiss Army Knife custom card", "render_readme": true}, "full_name": "AmoebeLabs/swiss-army-knife-card", "category": "plugin", "description": "The versatile custom Swiss Army Knife card for Home Assistant allows you to create your unique visualization using several graphical tools, styling options and animations.", "etag_repository": "W/\"8298a484d3f74032878140174f2867b8573af8910d697ceff609ad6da6162370\"", "last_updated": "2023-09-02T13:29:17Z", "stargazers_count": 178, "topics": ["home-assistant-custom-card", "lovelace-card", "lovelace-custom-card", "material-3", "svg"], "last_fetched": 1695553512.202135, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420701401": {"repository_manifest": {"name": "Water heater CLAGE DSX Touch", "render_readme": true, "country": ["DE"], "homeassistant": "2021.11.0"}, "full_name": "klacol/homeassistant-clage_homeserver", "authors": ["@klacol"], "category": "integration", "description": "Home Assistant integration for the water heater CLAGE DSX Touch connected through a Clage Homeserver", "domain": "clage_homeserver", "etag_repository": "W/\"d9cde36b7ffd9aed8558d254f5301435710fc6e5e9ef7537f426129bc7ca157d\"", "last_updated": "2023-06-19T04:43:36Z", "stargazers_count": 1, "topics": ["clage", "waterheater"], "last_fetched": 1695554100.891419, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "305188358": {"repository_manifest": {"name": "Heatmiser Wifi", "render_readme": true}, "full_name": "midstar/heatmiser_wifi_ha", "authors": ["@midstar"], "category": "integration", "description": "Heatmiser Wifi Home Assistant Component", "domain": "heatmiser_wifi", "etag_repository": "W/\"8a2581fed05af6b52aeb64cc83aea7a3a22cf598f59be5a73c823e7348589390\"", "last_updated": "2022-05-12T14:24:49Z", "stargazers_count": 3, "topics": ["climate", "heatmiser", "homeassisant", "thermostat", "wifi"], "last_fetched": 1695554121.94097, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192664631": {"repository_manifest": {"name": "Bosch Indego Mower", "country": ["AT", "BY", "BE", "HR", "CZ", "DK", "EE", "FI", "FR", "DE", "HU", "IT", "KZ", "LV", "LT", "NL", "NO", "PL", "PT", "RU", "SK", "SI", "ES", "SE", "CH", "GB", "SA", "AE"], "homeassistant": "0.110.0"}, "full_name": "jm-73/Indego", "authors": ["@jm-73", "@eavanvalkenburg", "@sander1988"], "category": "integration", "description": "Home Assistant Custom Component for Bosch Indego Lawn Mower", "domain": "indego", "etag_repository": "W/\"6b5d9d97651defc2e5076bdf0b05c796567ec7dfdccb542545b71d915afed152\"", "last_updated": "2023-09-24T08:41:35Z", "stargazers_count": 66, "topics": ["bosch-mower", "indego", "iot"], "last_fetched": 1695554092.411157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408429126": {"repository_manifest": {"name": "MQTT DiscoveryStream", "render_readme": true}, "full_name": "koying/mqtt_discoverystream_ha", "authors": ["@koying"], "category": "integration", "description": "Extension of HA mqtt_statestream integration with discovery config publishing", "domain": "mqtt_discoverystream", "etag_repository": "W/\"0f7f3a5b158da84bf79651190443d2a3b13f7c7d0d77010b07347c9529145321\"", "last_updated": "2023-07-22T07:08:14Z", "stargazers_count": 6, "topics": ["mqtt"], "last_fetched": 1695554103.377116, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441920613": {"repository_manifest": {"name": "Thermia Heat Pump", "render_readme": true}, "full_name": "klejejs/ha-thermia-heat-pump-integration", "authors": ["@klejejs"], "category": "integration", "description": "Thermia Heat Pump Integration for Home Assistant", "domain": "thermia", "etag_repository": "W/\"294080fdfec2fec7a5e0007dfaee1739689b8d3fe729d7deb78240b969c310eb\"", "last_updated": "2023-08-21T12:27:29Z", "stargazers_count": 21, "topics": ["heat-pump", "thermia"], "last_fetched": 1695554101.216006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "591270696": {"repository_manifest": {"name": "windrose-card", "render_readme": true, "filename": "windrose-card.js"}, "full_name": "aukedejong/lovelace-windrose-card", "category": "plugin", "description": "Home Assistant Lovelace Windrose Card", "downloads": 2302, "etag_repository": "W/\"0992df3ffea765e814878ec8bfa7d91cd022acbd39f1abcaf5769c325712a48e\"", "last_updated": "2023-07-17T18:12:35Z", "stargazers_count": 36, "topics": ["weather-dashboard", "windrose"], "last_fetched": 1695553512.800363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "253019926": {"repository_manifest": {"name": "mini humidifier", "filename": "mini-humidifier-bundle.js"}, "full_name": "artem-sedykh/mini-humidifier", "category": "plugin", "description": "Minimalistic humidifier card for Home Assistant Lovelace UI", "downloads": 2445, "etag_repository": "W/\"e871863cf367f346b37cda3a6df6e0dca92baebc8c375e71e1d878d5fb2c77e3\"", "last_updated": "2023-09-06T14:11:42Z", "stargazers_count": 144, "topics": ["automation", "custom", "humidifier"], "last_fetched": 1695553512.570499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207018200": {"repository_manifest": {"name": "Garbage Collection Card", "filename": "garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/garbage-collection-card", "category": "plugin", "description": "Custom Lovelace card for Garbage Collection custom component", "downloads": 7495, "etag_repository": "W/\"07a69a2160a9e910e19cdbb0160438863833dd2fe4446165f478e552876c8fe3\"", "last_updated": "2023-05-07T18:31:32Z", "stargazers_count": 108, "topics": ["garbage-collection", "lovelace-custom-card", "ui-lovelace"], "last_fetched": 1695553510.772101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "364208180": {"repository_manifest": {"name": "Jellyfin", "render_readme": true}, "full_name": "koying/jellyfin_ha", "authors": ["@koying"], "category": "integration", "description": "Jellyfin integration for Home Assistant", "domain": "jellyfin", "etag_repository": "W/\"159a87bac68e91c8c5dc2b641e4ec0d7c3af213194506701189e1eec852377ce\"", "last_updated": "2022-10-22T14:54:07Z", "stargazers_count": 79, "topics": ["jellyfin"], "last_fetched": 1695554103.492964, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233079250": {"repository_manifest": {"name": "darksky_m", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/darksky_m", "authors": ["@kodi1"], "category": "integration", "description": "darksky - clouds cover and alerts", "domain": "darksky_m", "etag_repository": "W/\"412d8d1b1f0cf9de05f2da97e97b4f8bc7c00c5ca234b9474e26d995cb7e5a4d\"", "last_updated": "2021-03-28T10:12:47Z", "topics": ["darksky"], "last_fetched": 1695554101.168577, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139664351": {"repository_manifest": {"name": "Alexa Media Player", "zip_release": true, "filename": "alexa_media.zip", "homeassistant": "2022.11.0b0"}, "full_name": "custom-components/alexa_media_player", "authors": ["@alandtse", "@keatontaylor"], "category": "integration", "description": "This is a custom component to allow control of Amazon Alexa devices in Home Assistant using the unofficial Alexa API.", "domain": "alexa_media", "downloads": 4987, "etag_repository": "W/\"b1c9a406bc827523bb94ab71664ca90184c6218989e1c87c396d730ff396d46c\"", "last_updated": "2023-09-22T08:16:05Z", "stargazers_count": 1158, "topics": ["alexa"], "last_fetched": 1695553605.705047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378213601": {"repository_manifest": {"name": "Argoclima", "homeassistant": "2022.7.0"}, "full_name": "nyffchanium/argoclima-integration", "authors": ["@nyffchanium"], "category": "integration", "description": "Home Assistant integration for Argoclima (Argo) climate control devices", "domain": "argoclima", "etag_repository": "W/\"ecc4ac77d20df66d283675ddd4b55a5f5f0af07845c64fbfa896894981016da2\"", "last_updated": "2023-06-11T10:46:28Z", "stargazers_count": 14, "topics": ["argo", "argoclima", "climate-control"], "last_fetched": 1695554135.10421, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269474857": {"repository_manifest": {"name": "Tab Redirect Card", "render_readme": true}, "full_name": "ben8p/lovelace-tab-redirect-card", "category": "plugin", "description": "Custom lovelace card to use in\u00a0Home assistant allowing you to redirect a user to certain view based on entity states.", "etag_repository": "W/\"da6ed1dee5b3ae3965b276697362d30a7f670d178f93e7dc3f6f1618aa4556ff\"", "last_updated": "2023-04-29T05:41:43Z", "stargazers_count": 14, "topics": ["lovelace-custom-card"], "last_fetched": 1695553514.019154, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422931599": {"repository_manifest": {"name": "Better Thermostat", "render_readme": true, "homeassistant": "2022.8.0", "hide_default_branch": true}, "full_name": "KartoffelToby/better_thermostat", "authors": ["@kartoffeltoby"], "category": "integration", "description": "This custom component for Home Assistant will add crucial features to your climate-controlling TRV (Thermostatic Radiator Valves) to save you the work of creating automations to make it smart. It combines a room-temperature sensor, window/door sensors, weather forecasts, or an ambient temperature probe to decide when it should call for heat and automatically calibrate your TRVs to fix the imprecise measurements taken in the radiator's vicinity.", "domain": "better_thermostat", "etag_repository": "W/\"9a203b03b67656effc7d1ab388ce4bec133cd088ca76c27bb327b3a061c16566\"", "last_updated": "2023-09-23T07:43:46Z", "stargazers_count": 466, "topics": ["climate", "energy-efficiency", "moes", "sea801", "sea802", "spzb0001", "thermostat", "ts0601", "tuya", "zigbee", "zigbee2mqtt"], "last_fetched": 1695554099.040992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341500126": {"repository_manifest": {"name": "Meross LAN", "render_readme": true, "country": ["IT", "GB", "US", "JP", "ES", "FR", "DE"], "homeassistant": "2023.1.0", "persistent_directory": "traces", "hacs": "1.6.0"}, "full_name": "krahabb/meross_lan", "authors": ["@krahabb"], "category": "integration", "description": "Home Assistant integration for Meross devices", "domain": "meross_lan", "etag_repository": "W/\"b62fc7301bbe676c1253c67aa0b50ad44d4875135fac85a16949f28aadfbbf53\"", "last_updated": "2023-08-14T19:06:34Z", "stargazers_count": 273, "topics": ["meross", "meross-devices", "meross-homeassistant", "meross-lan"], "last_fetched": 1695554105.791608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303857065": {"repository_manifest": {"name": "Battery Entity Row", "filename": "battery-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-battery-entity-row", "category": "plugin", "description": "Show battery states or attributes with dynamic icon on entity rows in Home Assistant's Lovelace UI", "downloads": 12616, "etag_repository": "W/\"c396b4cd62a48332abf586d316ad3ea9b018e75caa15e7ebfafc72dc878fea80\"", "last_updated": "2021-03-12T15:50:43Z", "stargazers_count": 59, "topics": ["attribute", "battery", "card", "entity", "entity-rows", "state"], "last_fetched": 1695553514.208454, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "226567922": {"repository_manifest": {"name": "Red slate theme", "render_readme": "True"}, "full_name": "Poeschl/slate_red", "category": "theme", "description": "My red\"isch\" home assistant theme.", "etag_repository": "W/\"2e386858265ee5eedd867d7b6eec6829709b7212ccba95f8cc0a575fce58e653\"", "last_updated": "2022-04-20T19:04:35Z", "stargazers_count": 1, "topics": ["material-design", "red"], "last_fetched": 1695553504.589344, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295523408": {"repository_manifest": {"name": "Salus iT600", "render_readme": true}, "full_name": "jvitkauskas/homeassistant_salus", "authors": ["@jvitkauskas"], "category": "integration", "description": "Home Assistant integration with Salus devices", "domain": "salus", "etag_repository": "W/\"f42e2da9807b1800f0ef307d92c893bfdaffc42c725654f3df44e4e1e5ededa5\"", "last_updated": "2022-11-09T00:09:03Z", "stargazers_count": 43, "last_fetched": 1695554097.000144, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246406566": {"repository_manifest": {"name": "UpdateClimate", "render_readme": true, "homeassistant": "0.47.0"}, "full_name": "Santobert/HA-UpdateClimate", "category": "python_script", "description": "Python script to update climate devices", "etag_repository": "W/\"e3de65d80cdcbeee1257c86cf55ae5289facb2420e9a5e988bc5c2b6cd767a18\"", "last_updated": "2021-03-30T17:22:29Z", "stargazers_count": 7, "topics": ["climate", "hvac", "preset", "scheduler"], "last_fetched": 1695553508.161011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312080478": {"repository_manifest": {"name": "govee", "hacs": "0.2.2", "homeassistant": "2021.4.5"}, "full_name": "LaggAt/hacs-govee", "authors": ["@LaggAt"], "category": "integration", "description": "A HACS repository for Govee light integration", "domain": "govee", "etag_repository": "W/\"28ae471796d296ffdb62212c79b32ac326551e64a5204efef1ad4fb219976c97\"", "last_updated": "2023-06-26T17:21:29Z", "stargazers_count": 197, "topics": ["devcontainer", "govee", "light"], "last_fetched": 1695554106.092588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246410785": {"repository_manifest": {"name": "ICS", "render_readme": true}, "full_name": "KoljaWindeler/ics", "authors": ["@KoljaWindeler"], "category": "integration", "description": "Integration that displays the next event of an ics link (support reoccuring events)", "domain": "ics", "etag_repository": "W/\"7eac6d8638539a7bb28dbd19c91fb97be3d65c2149f3044e04e41d413d504c54\"", "last_updated": "2022-02-10T18:31:39Z", "stargazers_count": 51, "topics": ["appointments", "filtering", "ics", "reoccuring-events"], "last_fetched": 1695554101.461658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "349455097": {"repository_manifest": {"name": "Ubee Router", "render_readme": true}, "full_name": "KevinHaendel/ha-ubee", "authors": ["@mzdrale", "@kevinhaendel"], "category": "integration", "description": "This platform integrates Ubee Routers into Home Assistant.", "domain": "ubee", "etag_repository": "W/\"b5658a9f842e659e7300361ef0c3aaedc613adbb821868f2fd60266fd04d252c\"", "last_updated": "2022-05-28T17:44:54Z", "stargazers_count": 1, "topics": ["ubee"], "last_fetched": 1695554098.8903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384434522": {"repository_manifest": {"name": "Hass Hue Icons", "render_readme": true}, "full_name": "arallsopp/hass-hue-icons", "category": "plugin", "description": "Additional vector icons for home assistant to model Philips Hue bulbs and fixtures. ", "downloads": 11393, "etag_repository": "W/\"9605a60d9b23f3dc3cb0342bce4766386b472a01943eaa67918807931e2fba7f\"", "last_updated": "2023-03-05T00:33:44Z", "stargazers_count": 229, "topics": ["custom-icons", "hue", "hue-lights", "icons", "iconset", "philips-hue", "svg"], "last_fetched": 1695553512.38864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "375838748": {"repository_manifest": {"name": "Selve NG"}, "full_name": "Kannix2005/homeassistant-selve", "authors": ["@Kannix2005"], "category": "integration", "description": "Home Assistant Custom component to manage Selve devices", "domain": "selve", "etag_repository": "W/\"b1a16539758da4681806b6174f0a86b6cc965a6dc9aefe52cf39bb9004efd348\"", "last_updated": "2023-08-09T08:57:42Z", "stargazers_count": 10, "topics": ["selve"], "last_fetched": 1695554099.121797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325635211": {"repository_manifest": {"name": "dobiss", "hacs": "1.6.0", "homeassistant": "2012.12.0"}, "full_name": "kesteraernoudt/dobiss", "authors": ["@kesteraernoudt"], "category": "integration", "description": "Custom Home Assistant Integration for the Dobiss NXT platform", "domain": "dobiss", "etag_repository": "W/\"bce893d2d46b12bdb8fcfe2a3d60c9c0de46b18233f18cc257d3e5d276e7fff6\"", "last_updated": "2023-09-18T19:07:40Z", "stargazers_count": 4, "last_fetched": 1695554099.042761, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "175020245": {"repository_manifest": {}, "full_name": "JurajNyiri/HomeAssistant-Tavos", "authors": ["@JurajNyiri"], "category": "integration", "description": "Sensor which gathers water outage information from Tavos (Slovakia) website", "domain": "tavos_water_outage", "etag_repository": "W/\"113075c2d7df74716b69585e5bd023f9b93ca4c0a16a0398211191e04f89f051\"", "last_updated": "2022-06-16T17:05:17Z", "last_fetched": 1695554096.714969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "184658908": {"repository_manifest": {"name": "GitHub Entity Row", "filename": "github-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-github-entity-row", "category": "plugin", "description": "GitHub repository sensor data on entity rows in Home Assistant's Lovelace UI", "downloads": 444, "etag_repository": "W/\"8d81347de39509f0688002e9972dfe8b10898cf62ee71636de8a0f75e090c780\"", "last_updated": "2022-02-15T17:55:32Z", "stargazers_count": 22, "topics": ["card", "entity", "entity-rows", "github"], "last_fetched": 1695553514.344996, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214365813": {"repository_manifest": {"name": "StarLine Card", "homeassistant": "0.103.0"}, "full_name": "Anonym-tsk/lovelace-starline-card", "category": "plugin", "description": "StarLine lovelace card for Home Assistant", "etag_repository": "W/\"51029305ae634a79d85fc0116387cf492b99564ac685df836047538c40d78727\"", "last_updated": "2022-10-11T15:30:23Z", "stargazers_count": 22, "last_fetched": 1695553512.182365, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321140869": {"repository_manifest": {"name": "Auto Reload", "render_readme": true}, "full_name": "ben8p/lovelace-auto-reload-card", "category": "plugin", "description": "Custom home assitant lovelace for UI auto reload", "etag_repository": "W/\"5fa0e82004cf614927f8b96ade84dfe3fc2f7b8e67049ebf9b272f40b3389537\"", "last_updated": "2023-05-24T20:46:18Z", "stargazers_count": 29, "topics": ["lovelace-card"], "last_fetched": 1695553512.795824, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264499592": {"repository_manifest": {"name": "Cryptoinfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "heyajohnny/cryptoinfo", "authors": ["@heyajohnny"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo", "etag_repository": "W/\"174a9aa4b49a558ca531dcfed802d3e0eaa816e1e02b12f6a4aae6a864e0a099\"", "last_updated": "2023-05-06T21:09:25Z", "stargazers_count": 38, "last_fetched": 1695553658.996372, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401145616": {"repository_manifest": {"name": "myenergi", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-myenergi", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant integration for MyEnergi devices", "domain": "myenergi", "etag_repository": "W/\"b2f9b7bb1f669fd8408c0b1978f8520e885fb66234b9cccfa02bf92dafacb5fa\"", "last_updated": "2023-09-22T08:53:32Z", "stargazers_count": 100, "topics": ["ev-charging", "green-energy", "myenergi"], "last_fetched": 1695553602.86722, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268163975": {"repository_manifest": {"name": "mini climate card", "filename": "mini-climate-card-bundle.js"}, "full_name": "artem-sedykh/mini-climate-card", "category": "plugin", "description": "Minimalistic climate card for Home Assistant Lovelace UI", "downloads": 8420, "etag_repository": "W/\"3b56bf7f48c53be4ceef9ca82dfcbca281b8133adfb634f4571f839ad2bd9a71\"", "last_updated": "2023-07-19T08:01:46Z", "stargazers_count": 228, "topics": ["automation", "climate", "climate-entity", "custom", "hacktoberfest2021"], "last_fetched": 1695553512.699987, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448355900": {"repository_manifest": {"name": "Vastayan Bond", "render_readme": true}, "full_name": "SnakeFist007/ha_vastayan_bond", "category": "theme", "description": "\ud83c\udfa8 Home Assistant Theme inspired by the color schemes of Xayah & Rakan!", "etag_repository": "W/\"6339da9539e631dfd516a39dadc0743df027e0a672f0088a4bb7a2217edef5d3\"", "last_updated": "2023-02-28T15:06:25Z", "stargazers_count": 2, "topics": ["bond", "rakan", "vastayan", "xayah"], "last_fetched": 1695553505.996417, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328957716": {"repository_manifest": {"name": "Time Elapsed Card", "render_readme": true, "filename": "elapsed-time-card.js"}, "full_name": "Kirbo/ha-lovelace-elapsed-time-card", "category": "plugin", "description": "Home Assistant Lovelace Custom Card to calculate time elapsed/left", "downloads": 1750, "etag_repository": "W/\"df0a82f68a57b06414e04e93a496c076044eac1a3cb031d38ce51e475ee8bafe\"", "last_updated": "2021-06-03T08:58:27Z", "stargazers_count": 25, "topics": ["lovelace-custom-card"], "last_fetched": 1695553542.860966, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200081161": {"repository_manifest": {"name": "BKK Stop Information Card", "content_in_root": "true", "filename": "bkk-stop-card.js", "render_readme": "true", "country": ["HU"]}, "full_name": "amaximus/bkk-stop-card", "category": "plugin", "description": "Custom Lovelace card for Budapest Public Transportation custom component", "downloads": 284, "etag_repository": "W/\"2a3595c34438f3fd21b5ce336ecc4ce2178a9cf41bb02d71e79f2645c7483a5e\"", "last_updated": "2022-12-28T19:13:42Z", "stargazers_count": 7, "topics": ["bkk", "budapest", "lovelace-custom-card", "transportation"], "last_fetched": 1695553510.106519, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556306418": {"repository_manifest": {"name": "Daily Schedule Card", "filename": "daily-schedule-card.js", "render_readme": true}, "full_name": "amitfin/lovelace-daily-schedule-card", "category": "plugin", "description": "Home Assistant Custom Card for Daily Schedule Integration", "etag_repository": "W/\"7281e008a78a902685b00614b51a1d73ca13e9e8398f96112cf5bbddd99e8ace\"", "last_updated": "2023-06-21T18:13:39Z", "stargazers_count": 6, "topics": ["lovelace-custom-card"], "last_fetched": 1695553510.644871, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257102434": {"repository_manifest": {"name": "FKF Budapest Garbage Collection Card", "filename": "fkf-garbage-collection-card.js", "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection-card", "category": "plugin", "description": "FKF Budapest Garbage Collection Card for Home Assistant/Lovelace", "downloads": 493, "etag_repository": "W/\"95e3dbdd55926619431cd897ecefb1eb3c87d2ad12b6358b40fa62b306f25430\"", "last_updated": "2022-09-16T08:09:59Z", "stargazers_count": 9, "topics": ["budapest", "lovelace-custom-card"], "last_fetched": 1695553510.220293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341707887": {"repository_manifest": {"name": "Pollen Information Card for Hungary ", "filename": "pollen-hu-card.js", "render_readme": "true"}, "full_name": "amaximus/pollen-hu-card", "category": "plugin", "description": "Home Assistant custom Lovelace card for pollen information in Hungary", "downloads": 841, "etag_repository": "W/\"ba3f15665c6e5f5372d0a04e95ec2f0254da35a020b8e3623f6327274e251db9\"", "last_updated": "2023-04-20T09:35:25Z", "stargazers_count": 11, "topics": ["hungary", "lovelace-custom-card"], "last_fetched": 1695553510.353965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197058358": {"repository_manifest": {}, "full_name": "jxlarrea/ha-emfitqs", "authors": ["@jxlarrea"], "category": "integration", "description": "Emfit QS Sleep Tracker Component for Home Assistant", "domain": "emfitqs", "etag_repository": "W/\"a66fce2564ab8e0dc8859cddbd4817490b079c0951b698c2a9f76c4cbe518956\"", "last_updated": "2022-03-06T21:31:42Z", "stargazers_count": 17, "topics": ["emfit", "emfitqs", "presence", "presence-detection", "sleep-tracker"], "last_fetched": 1695554096.713731, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485281791": {"repository_manifest": {"name": "HASS.Agent MediaPlayer", "homeassistant": "2022.5", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-MediaPlayer", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent MediaPlayer integrations. Adds TTS and the ability to control local media to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_mediaplayer", "etag_repository": "W/\"c2ed7f53f6c8182408dda5a1d136849323704d7b1e0e9ee9c93be33681777bae\"", "last_updated": "2022-11-17T13:28:30Z", "stargazers_count": 15, "last_fetched": 1695554105.543798, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315044466": {"repository_manifest": {"name": "Transmission Card", "filename": "transmission-card.js", "render_readme": "true"}, "full_name": "amaximus/transmission-card", "category": "plugin", "description": "Custom Transmission card for Home Assistant/Lovelace", "downloads": 819, "etag_repository": "W/\"74ed7eccd9fe4d368dae38d994c74a1078d7c569357f748327a98a9cfbb25b9d\"", "last_updated": "2023-09-10T05:41:42Z", "stargazers_count": 30, "topics": ["lovelace-card", "lovelace-custom-card", "transmission"], "last_fetched": 1695553510.994459, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180651910": {"repository_manifest": {}, "full_name": "custom-components/zaptec", "authors": ["hellowlol"], "category": "integration", "description": "zaptec charger custom component for home assistant", "domain": "zaptec", "etag_repository": "W/\"ef1f9ae299df8a51e09adc3fe3e26790782e030f1eb78fd9d69e98a04a521ab0\"", "last_updated": "2023-09-22T21:08:16Z", "stargazers_count": 29, "topics": ["api", "zaptec"], "last_fetched": 1695553611.830317, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223993584": {"repository_manifest": {"name": "Passive BLE monitor integration", "homeassistant": "2023.1.0"}, "full_name": "custom-components/ble_monitor", "authors": ["@Ernst79", "@Magalex2x14", "@Thrilleratplay"], "category": "integration", "description": "BLE monitor for passive BLE sensors", "domain": "ble_monitor", "etag_repository": "W/\"0db577d69cff73b5f3329b5c4ae1a27cdc685dca3045be921819af558bc50fc4\"", "last_updated": "2023-09-24T07:46:07Z", "stargazers_count": 1665, "topics": ["atc", "govee", "inkbird", "kegtron", "mibeacon", "mijia", "mitemp-bt", "qingping", "scales", "thermoplus", "thermopro", "thermplus", "xiaomi", "xiaomi-sensors"], "last_fetched": 1695553606.435819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254253124": {"repository_manifest": {"name": "Noonlight - Alarm Monitoring", "render_readme": true, "country": "US", "homeassistant": "0.96"}, "full_name": "konnected-io/noonlight-hass", "authors": ["@heythisisnate", "@snicker"], "category": "integration", "description": "HomeAssistant integration for Noonlight", "domain": "noonlight", "etag_repository": "W/\"a855df3f115ade5521cd53014d05466bcd96d01db849dd2e00cb2faf6653973a\"", "last_updated": "2022-10-16T17:36:02Z", "stargazers_count": 29, "topics": ["alarm", "monitoring", "noonlight", "security"], "last_fetched": 1695554103.3449, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "461802716": {"repository_manifest": {"name": "Skolmat Integration", "country": ["SE"], "render_readme": true}, "full_name": "Kaptensanders/skolmat", "authors": ["@kaptensanders"], "category": "integration", "description": "Skolmat Home Assistant custom component for the food menu in Swedish schools", "domain": "skolmat", "etag_repository": "W/\"f63e0dce479866ad146a9de20c1155f2651834cbdaa8d16954ea5e83d096ebb3\"", "last_updated": "2023-09-09T20:40:20Z", "stargazers_count": 9, "topics": ["food", "food-menu", "school", "skola"], "last_fetched": 1695554098.841049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340926904": {"repository_manifest": {"name": "Novafos", "render_readme": true, "country": "DK", "homeassistant": "2022.8"}, "full_name": "kpoppel/homeassistant-novafos", "authors": ["@kpoppel"], "category": "integration", "description": "Homeassistant wrapper around the Novafos KMD water metering data warehouse.", "domain": "novafos", "etag_repository": "W/\"34ad9c5f57f7711ebf9fc648f96e274f509240f9db2fb0b966fe9dcec63900fe\"", "last_updated": "2023-05-03T22:55:31Z", "stargazers_count": 7, "topics": ["water"], "last_fetched": 1695554105.249437, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387055527": {"repository_manifest": {"name": "Waves"}, "full_name": "tgcowell/waves", "category": "theme", "description": "This is a blend of 2 themes found within the Home Assistant community. Inspired mostly by Noctis, I've adjust colours slightly and have also opted to pull some features from Caule Theme packs to build my own 'ultimate' theme. I will continue to update overtime and do my best to credit those whom I have 'referenced' ", "etag_repository": "W/\"ef70c1ed44f88bb6aa040e36bbe7e02ae819b366142160b339ba785efc83525d\"", "last_updated": "2023-03-26T08:21:03Z", "stargazers_count": 62, "last_fetched": 1695553506.204946, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "503045365": {"repository_manifest": {"name": "Senertec Energy System", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Kleinrotti/hass-senertec", "authors": ["@Kleinrotti"], "category": "integration", "description": "Home Assistant custom component integration for Senertec energy units.", "domain": "senertec", "downloads": 2, "etag_repository": "W/\"6338efb4be0510c00116372f86cc2b155e144f2c2465935d29307d7ac554da33\"", "last_updated": "2023-05-25T16:27:07Z", "topics": ["senertec"], "last_fetched": 1695554100.962821, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286554328": {"repository_manifest": {"name": "Kaco", "render_readme": true}, "full_name": "KoljaWindeler/kaco", "authors": ["@KoljaWindeler"], "category": "integration", "description": "custom integration for kaco solar inverter", "domain": "kaco", "etag_repository": "W/\"bf620904253d4a0d716fe6484ffebfe7221d53caaeb7dfbd75f9cd4df0717414\"", "last_updated": "2023-02-03T11:49:57Z", "stargazers_count": 8, "topics": ["inverter", "solar-energy"], "last_fetched": 1695554102.981078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "315447202": {"repository_manifest": {"name": "ytube_music_player", "render_readme": true}, "full_name": "KoljaWindeler/ytube_music_player", "authors": ["@KoljaWindeler"], "category": "integration", "description": "YouTube music player for homeassistant", "domain": "ytube_music_player", "etag_repository": "W/\"c4f80fda816e96e731dbcfb83cd5f28ea77c32f51a9f1730f8d4d98baca159b7\"", "last_updated": "2023-08-27T10:30:13Z", "stargazers_count": 247, "topics": ["youtube"], "last_fetched": 1695554103.442761, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "477001098": {"repository_manifest": {"name": "Philips AirPurifier (with CoAP)", "render_readme": true, "homeassistant": "2021.11.0b0"}, "full_name": "kongo09/philips-airpurifier-coap", "authors": ["@kongo09"], "category": "integration", "description": "\ud83d\udca8 Philips AirPurifier custom component for Home Assistant. Supports local CoAP protocol.", "domain": "philips_airpurifier_coap", "etag_repository": "W/\"3ad96fb3bc07c0e6559fb1a7014f6f732af28698ccf6704460181526cc880c1e\"", "last_updated": "2023-08-17T15:48:13Z", "stargazers_count": 98, "topics": ["air-purifier", "philips"], "last_fetched": 1695554103.56251, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "382905556": {"repository_manifest": {"name": "Cover Time Based Synced", "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "kotborealis/home-assistant-custom-components-cover-time-based-synced", "authors": ["@kotborealis"], "category": "integration", "description": "\u231b Time-based cover. Install it via HACS.", "domain": "cover_time_based_synced", "etag_repository": "W/\"c6f6d1be8309182566feea7b86ace27a204dfea83bafc215e5c064fd63b05fe0\"", "last_updated": "2023-04-18T13:20:55Z", "stargazers_count": 12, "topics": ["cover", "roller-shutters", "service", "shutter", "trigger"], "last_fetched": 1695554103.40972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154417419": {"repository_manifest": {}, "full_name": "nstrelow/ha_philips_android_tv", "category": "integration", "description": "Home Assistant custom component for the newer (2016+) Philips Android TVs", "domain": "philips_android_tv", "etag_repository": "W/\"b6d60cc86fc3962e545a6c06c1474b3cc6e134b1c469ac20203ff9b3a5e29b17\"", "last_updated": "2021-07-22T15:04:24Z", "stargazers_count": 108, "topics": ["philips-tv", "tv"], "last_fetched": 1695554134.716539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "566085483": {"repository_manifest": {"name": "jokes", "hacs": "0.0.1", "homeassistant": "2022.11.1"}, "full_name": "LaggAt/ha-jokes", "authors": ["@LaggAt"], "category": "integration", "description": "Home Assistant Sensor providing a random joke every minute.", "domain": "jokes", "etag_repository": "W/\"9056af9550d7c0548ef77adb16232c76631d6518a9c24fce8ec60411842c227e\"", "last_updated": "2023-03-13T18:19:14Z", "stargazers_count": 10, "topics": ["devcontainer", "fun", "jokes"], "last_fetched": 1695554105.625041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "562404203": {"repository_manifest": {"name": "RecycleApp", "render_readme": true, "country": "BE"}, "full_name": "olibos/HomeAssistant-RecycleApp", "authors": ["@olibos"], "category": "integration", "description": "Integrate RecycleApp into your Home Assistant.", "domain": "recycle_app", "etag_repository": "W/\"9bfe7b49af5284dac272802b1121a9e0ab4861f59f438dfa168375470d82b2b3\"", "last_updated": "2023-09-21T12:23:07Z", "stargazers_count": 12, "topics": ["fostplus", "recycle"], "last_fetched": 1695554136.397152, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523485043": {"repository_manifest": {"name": "HIQ-Home", "hacs": "1.32.1", "filename": "hiq.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "killer0071234/ha-hiq", "authors": ["@killer0071234"], "category": "integration", "description": "HIQ-Home Integration for Home Assistant HACS Store", "domain": "hiq", "downloads": 16, "etag_repository": "W/\"bd50a2adced27f286ef9ece034605c81ece1860d50c3502643a029f4f66bd147\"", "last_updated": "2023-09-18T17:30:30Z", "topics": ["blind", "cybro", "cybrotech", "hiq", "hiq-home", "homeassistant-custom-component", "robotina"], "last_fetched": 1695554099.115269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552426092": {"repository_manifest": {"name": "HeishaMon", "render_readme": true, "homeassistant": "2023.2"}, "full_name": "kamaradclimber/heishamon-homeassistant", "authors": ["@kamaradclimber"], "category": "integration", "description": "An integration for heatpumps handled by heishamon", "domain": "aquarea", "etag_repository": "W/\"54bd231bb71ed89ede9a6e7585fe325eed7793a1bc3edbe15b11fee3c9101281\"", "last_updated": "2023-09-17T08:27:21Z", "stargazers_count": 15, "topics": ["heatpump", "heishamon", "mqtt"], "last_fetched": 1695554099.067721, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "171854441": {"repository_manifest": {"name": "youtube", "zip_release": true, "filename": "youtube.zip", "homeassistant": "2021.4.0"}, "full_name": "custom-components/youtube", "authors": ["@pinkywafer"], "category": "integration", "description": "A platform which give you info about the newest video on a channel", "domain": "youtube", "downloads": 2389, "etag_repository": "W/\"00ebeb58ad74ed03f916c6e8919bca2af43b44e4d756bf3c7449a17df1d125b2\"", "last_updated": "2023-09-06T16:03:08Z", "stargazers_count": 45, "topics": ["youtube"], "last_fetched": 1695553611.955658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "471000066": {"repository_manifest": {"name": "Peaqev ev-Charging", "homeassistant": "2022.10.5", "country": ["SE", "BE", "NO"], "zip_release": true, "filename": "peaqev.zip", "render_readme": true}, "full_name": "elden1337/hass-peaq", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help ev-chargers stay below peak hourly energy levels.", "domain": "peaqev", "downloads": 40, "etag_repository": "W/\"cf433860aaccbc873054e30b2c51c1a6ddca296ec4a689442956354c6fced32a\"", "last_updated": "2023-09-23T20:28:13Z", "stargazers_count": 40, "topics": ["chargeamps", "easee", "effektavgift", "effekttariff", "ev-charging", "garo", "peak-shaving", "smart-pricing", "zaptec"], "last_fetched": 1695553635.630319, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "333849286": {"repository_manifest": {"name": "Eforsyning", "render_readme": true, "country": "DK", "homeassistant": "2022.12"}, "full_name": "kpoppel/homeassistant-eforsyning", "authors": ["@kpoppel"], "category": "integration", "description": "Home Assistant module enabling retrieval of regional heating data from eForsyning.", "domain": "eforsyning", "etag_repository": "W/\"b1101fedd4ceff9e6ea2986ca35c9ac7960a17dd4643971e4a571a50a3d1e83c\"", "last_updated": "2023-04-25T22:39:29Z", "stargazers_count": 25, "topics": ["energy", "heating"], "last_fetched": 1695554103.893764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398781181": {"repository_manifest": {"name": "Candy Simply-Fi", "render_readme": true}, "full_name": "ofalvai/home-assistant-candy", "authors": ["@ofalvai"], "category": "integration", "description": "Unofficial Candy/Haier appliance integration for Home Assistant ", "domain": "candy", "etag_repository": "W/\"4b428145c2aeb7fb92f5a2baf0bf3e14f9f430a779ff49d43251e510a5cc5a47\"", "last_updated": "2023-09-14T23:30:56Z", "stargazers_count": 95, "topics": ["candy", "haier", "home-assistant-component", "home-assistant-integration"], "last_fetched": 1695554135.200598, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334284822": {"repository_manifest": {"name": "AWS Codepipeline"}, "full_name": "ohheyrj/home-assistant-aws-codepipeline", "authors": ["@rj175"], "category": "integration", "description": "An integration to monitor and execute AWS Codepipeline projects within Home Assistant.", "domain": "aws_codepipeline", "etag_repository": "W/\"ea655eb4815bb0da8a7eaa9f6eb3f9e053ff6aec98c5ce738c8ae6fefb8df202\"", "last_updated": "2021-01-30T22:52:54Z", "stargazers_count": 1, "topics": ["aws", "ci", "cloud", "codepipeline"], "last_fetched": 1695554135.648956, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567001290": {"repository_manifest": {"name": "EnergyScore", "render_readme": true}, "full_name": "knudsvik/EnergyScore", "authors": ["@knudsvik"], "category": "integration", "description": "Custom Integration for Home Assistant to score how energy is utilized based on price point", "domain": "energyscore", "etag_repository": "W/\"4e6a0f7a4f4c55f9ab8c3de2f19dcf46e2a21fdd395ace5b653b008ad6799a89\"", "last_updated": "2023-04-28T21:46:06Z", "stargazers_count": 27, "topics": ["energy"], "last_fetched": 1695554101.179339, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586345918": {"repository_manifest": {"name": "Binance Integration for Home Assistant", "render_readme": true}, "full_name": "Kartax/home-assistant-binance", "authors": ["@Kartax"], "category": "integration", "description": "A Home Assistant Integration for the cryptocurrency trading platform Binance.", "domain": "binance", "etag_repository": "W/\"c9e59124162d7b1f4be29c0cc208e360ecb3915901802977675d9e55c5114ebc\"", "last_updated": "2023-06-14T10:57:21Z", "stargazers_count": 5, "topics": ["binance", "bitcoin", "crypto", "cryptocurrency", "dogecoin", "ethereum", "home-assistant-integration", "ripp"], "last_fetched": 1695554098.82072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "646875198": {"repository_manifest": {"name": "Chime TTS", "filename": "chime_tts.zip", "hide_default_branch": true, "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "nimroddolev/chime_tts", "authors": ["@nimroddolev"], "category": "integration", "description": "A custom Home Assistant integration to play an audio file before and/or after text-to-speech (TTS) messages", "domain": "chime_tts", "downloads": 434, "etag_repository": "W/\"078a549401d0ad435288a8d306d7b35f559202adcbfd69e2d9484ede2ce0a8d5\"", "last_updated": "2023-09-22T13:10:57Z", "stargazers_count": 10, "last_fetched": 1695554134.961017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233090507": {"repository_manifest": {"name": "meteoalarm", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/meteoalarm", "authors": ["@kodi1"], "category": "integration", "description": "meteoalarm sensor", "domain": "meteoalarm_m", "etag_repository": "W/\"f020803e2ca9c35d30b8c5a883ee5fcc412bb43b954402cc98b1f5bfb7814490\"", "last_updated": "2021-12-31T18:00:45Z", "stargazers_count": 5, "topics": ["meteoalarm"], "last_fetched": 1695554101.124091, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431440766": {"repository_manifest": {"name": "HASS.Agent Notifier", "homeassistant": "2021.4", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Notifier", "authors": ["@LAB02-Admin"], "category": "integration", "description": "HASS.Agent Notifier integration. Adds notifications to HASS.Agent - a Windows based client for Home Assistant.", "domain": "hass_agent_notifier", "etag_repository": "W/\"7fa172b5d85451e2940b20f59b4af139ad346ec197f3490f583a7bf63b64aa3a\"", "last_updated": "2022-11-17T13:29:03Z", "stargazers_count": 65, "topics": ["notifications"], "last_fetched": 1695554105.67782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283243425": {"repository_manifest": {"name": "SoX", "render_readme": true}, "full_name": "definitio/ha-sox", "authors": ["@definitio"], "category": "integration", "description": "A Home Assistant integration to turn your vacuum into an audio player.", "domain": "sox", "etag_repository": "W/\"e7740d87cfd9448d32a1135aa64ec88b47079310007617392554162cb8ca079f\"", "last_updated": "2023-06-18T18:23:24Z", "stargazers_count": 19, "topics": ["audio-player", "roborock", "robot-vacuum", "vacuum", "xiaomi"], "last_fetched": 1695553622.882323, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271886611": {"repository_manifest": {"name": "Plant Picture Card", "render_readme": true, "filename": "PlantPictureCard.js"}, "full_name": "badguy99/PlantPictureCard", "category": "plugin", "description": "Like a picture glance card, but for plant data", "etag_repository": "W/\"b433924dd87314f257ca7341eea2ff31b22dd5d93c6108e3ea4c2461893a3648\"", "last_updated": "2022-07-07T21:55:54Z", "stargazers_count": 12, "topics": ["image", "lovelace-card", "plants"], "last_fetched": 1695553512.671827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356827073": {"repository_manifest": {"name": "OpenRGB", "render_readme": true}, "full_name": "koying/openrgb_ha", "authors": ["@bahorn", "@koying"], "category": "integration", "description": "OpenRGB integration for Home Assistant", "domain": "openrgb", "etag_repository": "W/\"84ad8ae6f62d20ae448ae3bd69ad39a92076dfdb6278632d6fff82779d573d55\"", "last_updated": "2023-03-19T08:28:10Z", "stargazers_count": 81, "topics": ["light", "openrgb"], "last_fetched": 1695554103.364937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "536765576": {"repository_manifest": {"name": "My EcoWatt by RTE", "render_readme": true, "country": "fr", "homeassistant": "2022.11"}, "full_name": "kamaradclimber/rte-ecowatt", "authors": ["@kamaradclimber"], "category": "integration", "description": "A home assistant component for ecowatt api exposed by french company RTE", "domain": "rte_ecowatt", "etag_repository": "W/\"39c32a0c213d29da0eab240c4f4ad662916eb5d5291c528285884fc942f1418e\"", "last_updated": "2023-09-12T18:55:26Z", "stargazers_count": 58, "topics": ["electricity", "rte"], "last_fetched": 1695554098.912791, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373750934": {"repository_manifest": {"name": "Taipower Bimonthly Energy Cost", "render_readme": true, "homeassistant": "2022.12.0", "country": ["TW"]}, "full_name": "cnstudio/Taipower-Bimonthly-Energy-Cost-homeassistant", "authors": ["@cnstudio", "@tsunglung"], "category": "integration", "description": "Calculate Taipower (Taiwan Power Company) bi-monthly bill amount from kWh sensor on Home Assistant.", "domain": "taipower_bimonthly_cost", "etag_repository": "W/\"db68f64319e92954ffab1014670aaa61963efeef34df92370dadae4216a8f5c1\"", "last_updated": "2023-04-03T15:12:59Z", "stargazers_count": 52, "topics": ["bill", "bimonthly", "power", "taipower"], "last_fetched": 1695553604.89125, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335019855": {"repository_manifest": {"name": "LinakDesk Card", "render_readme": true, "filename": "linak-desk-card.js"}, "full_name": "IhorSyerkov/linak-desk-card", "category": "plugin", "description": "Home Assistant Lovelace Card for controlling desks based on linak bluetooth controller.", "downloads": 539, "etag_repository": "W/\"12033e452046c24604c2fbf81c9d8ad517788311406ca1f053d288709c6e5932\"", "last_updated": "2023-01-04T13:39:59Z", "stargazers_count": 53, "topics": ["linak-desk-card"], "last_fetched": 1695553536.648484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319820836": {"repository_manifest": {"name": "Coway IoCare", "render_readme": true, "country": "US", "homeassistant": "2022.11.0b0", "zip_release": true, "filename": "coway.zip"}, "full_name": "RobertD502/home-assistant-iocare", "authors": ["@RobertD502"], "category": "integration", "description": "Home Assistant custom component for monitoring and controlling Coway Airmega Purifiers", "domain": "coway", "downloads": 227, "etag_repository": "W/\"cfdfeaf3ae5323fd884ce9ded226cf55154797c775173e878a10eba06685b2d7\"", "last_updated": "2023-08-30T22:33:30Z", "stargazers_count": 30, "topics": ["coway", "coway-iocare", "home-assistant-component", "iocare"], "last_fetched": 1695554152.900793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588612": {"repository_manifest": {"name": "iMPK sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "impk.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-iMPK", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API retrieved by decompilation of iMPK application to provide a list of MPK Wroc\u0142aw news available in original app.", "domain": "impk", "downloads": 127, "etag_repository": "W/\"c6108db10869e513deb335d1bddc2b0e814d51f425ce80013057a51e4496bd72\"", "last_updated": "2023-07-07T02:53:39Z", "stargazers_count": 13, "topics": ["public-transport", "wroclaw"], "last_fetched": 1695554144.253869, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582143144": {"repository_manifest": {"name": "OJ Microline Thermostat", "country": "NL", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "robbinjanssen/home-assistant-ojmicroline-thermostat", "authors": ["@robbinjanssen"], "category": "integration", "description": "Home Assistant integration for an OJ Microline Wifi Thermostat", "domain": "ojmicroline_thermostat", "etag_repository": "W/\"21fa9fcedf27622d5411a0db55887fefe536d59c10bd3c44ff8ede0f798e13d0\"", "last_updated": "2023-09-22T13:35:32Z", "stargazers_count": 7, "topics": ["climate", "oj-electronics", "oj-microline", "owd5", "thermostat"], "last_fetched": 1695554152.389234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188106531": {"repository_manifest": {"name": "Mail and Packages", "homeassistant": "2022.4.0", "zip_release": true, "filename": "mail_and_packages.zip"}, "full_name": "moralmunky/Home-Assistant-Mail-And-Packages", "authors": ["@moralmunky", "@firstof9"], "category": "integration", "description": "Home Assistant integration providing day of package counts and USPS informed delivery images.", "domain": "mail_and_packages", "downloads": 1710, "etag_repository": "W/\"685a030e0dcf94422decf3d778a9cfd53f2a3c3e2bee4ab230cadc32a1d7d5fa\"", "last_updated": "2023-09-18T17:32:25Z", "stargazers_count": 468, "topics": ["home-assistant-config", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695554125.610912, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232813686": {"repository_manifest": {"name": "SkyQ", "zip_release": true, "homeassistant": "2023.8.0", "filename": "skyq.zip", "render_readme": true}, "full_name": "RogerSelwyn/Home_Assistant_SkyQ_MediaPlayer", "authors": ["@rogerselwyn"], "category": "integration", "description": "Home Assistant SkyQ Media player component", "domain": "skyq", "downloads": 1951, "etag_repository": "W/\"17c0690b152c0f0711f5f080248d89770b4d2afb2a2f027ad1e7727b862331db\"", "last_updated": "2023-08-30T10:24:26Z", "stargazers_count": 85, "topics": ["homeassistant-custom-component", "sky", "skyq"], "last_fetched": 1695554154.861414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "481715988": {"repository_manifest": {"name": "Kia Connected Services", "country": "NL"}, "full_name": "PimDoos/kia_connect", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant Custom Component: MijnKia Connected Services", "domain": "kia_connect", "etag_repository": "W/\"b88106e3b44747fdc48f446c998a6a51c5638c1b7c8561b3418f7617ae8790b2\"", "last_updated": "2023-03-19T16:05:13Z", "stargazers_count": 8, "topics": ["api-wrapper", "connected-vehicle", "home-assistant-custom-component", "kia"], "last_fetched": 1695554142.451484, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323923603": {"repository_manifest": {"name": "Tapo Controller", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.3.1"}, "full_name": "petretiandrea/home-assistant-tapo-p100", "authors": ["@petretiandrea"], "category": "integration", "description": "A custom integration to control Tapo devices from home assistant.", "domain": "tapo", "etag_repository": "W/\"3fe5ee7fa2ed5f504be2cbc6aafb45efe254718086dfbc36ea4506178bf3115d\"", "last_updated": "2023-09-23T15:52:32Z", "stargazers_count": 491, "topics": ["energy", "l510", "l530", "l900", "monitoring", "p100", "p105", "p110", "smart-plug", "tapo", "tapo-device", "tapo-light-bulb"], "last_fetched": 1695554141.364842, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239366330": {"repository_manifest": {"name": "SenseME", "homeassistant": "2021.3.0"}, "full_name": "mikelawrence/senseme-hacs", "authors": ["@mikelawrence"], "category": "integration", "description": "Haiku with SenseME fan integration for Home Assistant", "domain": "senseme", "etag_repository": "W/\"cf43cb92082bed53e19e5a192e4bcb3ff19798524c6ed972d72a1f06a0c807b6\"", "last_updated": "2021-12-28T02:15:41Z", "stargazers_count": 22, "topics": ["bigassfans", "fan", "haiku", "senseme"], "last_fetched": 1695554123.344614, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360408082": {"repository_manifest": {"name": "Flair", "render_readme": true, "country": "US", "homeassistant": "2022.11.0b0", "zip_release": true, "filename": "flair.zip"}, "full_name": "RobertD502/home-assistant-flair", "authors": ["@RobertD502"], "category": "integration", "description": "Custom component for Home Assistant Core for Flair pucks, vents, rooms, structures, and minisplits ", "domain": "flair", "downloads": 61, "etag_repository": "W/\"33f19bd29599af7f211b370cacba4f99ce0416421094e4d9d0e927d72bb9d4c6\"", "last_updated": "2023-09-23T03:10:06Z", "stargazers_count": 78, "topics": ["flair", "flair-hvac", "flair-puck", "flair-vent", "flair-vents"], "last_fetched": 1695554152.896062, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371469": {"repository_manifest": {"name": "Antistorm sensor", "country": ["PL"], "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Antistorm", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get storm warnings from https://antistorm.eu.", "domain": "antistorm", "downloads": 407, "etag_repository": "W/\"0d781a84ee5c6b688a9a94d3bb82cafb1c8df5be23fa93b27790a8df58a250e9\"", "last_updated": "2023-07-07T02:48:35Z", "stargazers_count": 11, "topics": ["weather"], "last_fetched": 1695554143.535751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584473299": {"repository_manifest": {"name": "Jablotron Cloud", "render_readme": true, "homeassistant": "2022.9.0"}, "full_name": "Pigotka/ha-cc-jablotron-cloud", "authors": ["@pigotka"], "category": "integration", "description": "HACS custom component for jablotron cloud integration", "domain": "jablotron_cloud", "etag_repository": "W/\"487a748c0865e5c1dae7724200df168f2d5bd0d0fe44146e30bd3f6f727bb5cc\"", "last_updated": "2023-09-18T12:09:46Z", "stargazers_count": 6, "last_fetched": 1695554141.395045, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231015759": {"repository_manifest": {"name": "Xiaomi Smartmi Fan Card", "render_readme": true, "filename": "xiaomi-fan-card.js"}, "full_name": "ikaruswill/lovelace-fan-xiaomi", "category": "plugin", "description": "Xiaomi Smartmi Fan Lovelace card with CSS fan animation", "downloads": 2332, "etag_repository": "W/\"e103260558ea1ec482ba04fc61448cf6c76871e87bc67f3d7d82ba35368916ac\"", "last_updated": "2023-07-10T08:28:43Z", "stargazers_count": 64, "topics": ["xiaomi", "xiaomi-fan"], "last_fetched": 1695553537.038309, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199549304": {"repository_manifest": {"name": "Google Keep", "render_readme": true, "zip_release": true, "filename": "google_keep.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Google-Keep", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses gkeepapi library to download a list of notes from https://keep.google.com/.", "domain": "google_keep", "downloads": 4501, "etag_repository": "W/\"8294b9cc5a5fba46879a42f6ba546a7e97939820c49b12ac69c943f059c918b1\"", "last_updated": "2023-07-07T02:53:41Z", "stargazers_count": 61, "topics": ["notes"], "last_fetched": 1695554143.929391, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356053801": {"repository_manifest": {"name": "IMA Protect Alarm"}, "full_name": "pcourbin/imaprotect", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for IMA Protect Alarm", "domain": "imaprotect", "etag_repository": "W/\"358060c365fbd61276f485f4e57c31d15cf2a42afee78916fe5a15f4987be9f7\"", "last_updated": "2023-05-24T05:58:03Z", "stargazers_count": 1, "topics": ["alarm"], "last_fetched": 1695554139.223767, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "384910725": {"repository_manifest": {"name": "XMR Pool Statistics", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrpool_stat", "authors": ["@hwmland"], "category": "integration", "description": "XMR Pool Statistics integration for Home Assistant", "domain": "xmrpool_stat", "etag_repository": "W/\"0f5ec31213c0ed8e5f7cc84531015ecdedc1ac7f63a57ee80d37f6e5a6d4e097\"", "last_updated": "2023-07-04T16:36:08Z", "stargazers_count": 4, "topics": ["cryptocurrency", "home-assistant-integration", "monero", "xmr"], "last_fetched": 1695553661.237379, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371566": {"repository_manifest": {"name": "Burze.dzis.net sensor", "render_readme": true, "zip_release": true, "filename": "antistorm.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Burze.dzis.net", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This integration uses official API to get weather warnings for Poland and storm warnings for Europe from https://burze.dzis.net.", "domain": "burze_dzis_net", "downloads": 1406, "etag_repository": "W/\"151f70b8b31bbdf89a14ad565f0a761b24c543ed29624b06369d065b0ce7a810\"", "last_updated": "2023-07-27T17:36:31Z", "stargazers_count": 33, "topics": ["hazard", "lightning", "radiation", "storm", "warnings", "weather"], "last_fetched": 1695554143.552118, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371652": {"repository_manifest": {"name": "Looko2 sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "looko2.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Looko2", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get air quality data from https://looko2.com.", "domain": "looko2", "downloads": 161, "etag_repository": "W/\"48978653611acef187288b6bd3ce272a6e0babc6d7e123464ef12b88f480eb55\"", "last_updated": "2023-07-07T02:53:44Z", "stargazers_count": 5, "topics": ["air-quality", "weather"], "last_fetched": 1695554144.597171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181124811": {"repository_manifest": {"name": "Radial Menu Element", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/radial-menu", "category": "plugin", "description": "\u2b55 Radial Menu Element", "downloads": 1139, "etag_repository": "W/\"dddc7e1c4a73fd31d078b5221c7a397ec37301419385c99e7386deefddbbb767\"", "last_updated": "2023-01-20T00:58:16Z", "stargazers_count": 61, "last_fetched": 1695553535.510017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "469351480": {"repository_manifest": {"name": "De dietrich C230 ECO gas boiler", "render_readme": true, "zip_release": true, "filename": "de_dietrich_c230_ha.zip", "homeassistant": "2023.05.1", "hacs": "1.28.0"}, "full_name": "IgnacioHR/de-dietrich-c230-ha", "authors": ["@IgnacioHR"], "category": "integration", "description": "De Dietrich C-230 boiler to Home Assistant integration", "domain": "diematic_3_c230_eco", "downloads": 22, "etag_repository": "W/\"c925d16e65757ae193d93b216de933d6d6104c68b30f83dee7d56db171dd3fc8\"", "last_updated": "2023-07-01T09:35:27Z", "stargazers_count": 3, "topics": ["boiler", "dedietrich"], "last_fetched": 1695553663.220516, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "135166048": {"repository_manifest": {}, "full_name": "robmarkcole/HASS-Machinebox-Classificationbox", "authors": ["@robmarkcole"], "category": "integration", "description": "Home-Assistant image classification using Machinebox.io", "domain": "classificationbox", "etag_repository": "W/\"7a41c5da3de9356b6758c250746e8f2e4f5c3841a4bbbae2eed1a936aca8c080\"", "last_updated": "2022-07-05T04:19:34Z", "stargazers_count": 20, "topics": ["computer-vision", "deep-neural-networks", "machinebox"], "last_fetched": 1695554154.143461, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347985393": {"repository_manifest": {"name": "Emulated color temp light", "render_readme": true}, "full_name": "Mr-Groch/HA-Emulated-Color-Temp-Light", "authors": ["@Mr-Groch"], "category": "integration", "description": "Emulate SUPPORT_COLOR_TEMP for color lights that doesn't support color temp (like some Ikea Tradfri bulbs) - Home Assistant component", "domain": "emulated_color_temp", "etag_repository": "W/\"90b4ad8e4841b1ebac4129715964e16d90b358d2c9beb27c4aec4c77d23dda7e\"", "last_updated": "2022-08-18T21:25:51Z", "stargazers_count": 6, "topics": ["color-lights", "color-temperature", "ct", "ikea-tradfri-bulbs", "light"], "last_fetched": 1695554125.813845, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196605143": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-PhilipsAndroid2014", "authors": ["@SirGilbot", "@robhofmann"], "category": "integration", "description": "Custom component for Philips TV's running Android which are built between 2014 and 2016. Written in Python3 for Home Assistant.", "domain": "philips_2014", "etag_repository": "W/\"cbeb48a7b5202193b80f7c33b2700f41179830e86254fffa687034bfec35f4d6\"", "last_updated": "2021-05-09T12:39:18Z", "stargazers_count": 2, "last_fetched": 1695554152.938247, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325329098": {"repository_manifest": {"homeassistant": "2023.4.0", "name": "Sleep As Android", "render_readme": true, "zip_release": true, "filename": "sleep_as_android.zip"}, "full_name": "IATkachenko/HA-SleepAsAndroid", "authors": ["@IATkachenko"], "category": "integration", "description": "Sleep As Android integration for Home Assistant", "domain": "sleep_as_android", "downloads": 1302, "etag_repository": "W/\"333316cfac0186acb2016fd2b351b6cc3b425b998428a58a2d3580536d6b6037\"", "last_updated": "2023-08-26T16:02:41Z", "stargazers_count": 114, "topics": ["mqtt", "sleep-analysis", "sleep-as-android", "sleep-tracker"], "last_fetched": 1695553661.510416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525954717": {"repository_manifest": {"name": "HomeWhiz", "render_readme": true, "hacs": "1.6.0", "homeassistant": "0.118.0"}, "full_name": "rowysock/home-assistant-HomeWhiz", "authors": ["@rowysock", "@TechHummel"], "category": "integration", "description": "Home Assistant custom component for devices that can connect to HomeWhiz mobile app (Beko, Grundig, Arcelik)", "domain": "homewhiz", "etag_repository": "W/\"8a1d9d0d19266d7dc62354ef4f62a4170af5cc9906e15568de9f457deb68d6c0\"", "last_updated": "2023-08-08T20:06:26Z", "stargazers_count": 48, "topics": ["homewhiz"], "last_fetched": 1695554155.637662, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179788256": {"repository_manifest": {"name": "Text Divider Row", "render_readme": true}, "full_name": "iantrich/text-divider-row", "category": "plugin", "description": "\ud83d\uddc2 Text Divider Row", "downloads": 10110, "etag_repository": "W/\"33eb30177a9a4688233730edce4758c0abf4176abfd30a27ab5194de36d8fd52\"", "last_updated": "2023-04-30T20:13:33Z", "stargazers_count": 81, "last_fetched": 1695553536.540448, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207881337": {"repository_manifest": {"name": "Anniversaries", "zip_release": true, "filename": "anniversaries.zip", "homeassistant": "0.109.0"}, "full_name": "pinkywafer/Anniversaries", "authors": ["@pinkywafer"], "category": "integration", "description": "Anniversary Countdown Sensor for Home Assistant", "domain": "anniversaries", "downloads": 5416, "etag_repository": "W/\"ead48a24ca7c09b7a6d3171664f7e0215e859b08af66bc170379a094b16fb92e\"", "last_updated": "2023-09-04T22:24:54Z", "stargazers_count": 134, "topics": ["anniversaries"], "last_fetched": 1695554143.719469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447878635": {"repository_manifest": {"name": "Yandex weather", "country": "RU", "zip_release": true, "filename": "yandex_weather.zip", "homeassistant": "2022.12.0"}, "full_name": "IATkachenko/HA-YandexWeather", "authors": ["@IATkachenko"], "category": "integration", "description": "Yandex weather intergration for Home Assistant", "domain": "yandex_weather", "downloads": 2832, "etag_repository": "W/\"b066be08faa48c2827811b30554f3f690e1c1d28f1455a6e2f9091951d5119c1\"", "last_updated": "2023-08-13T09:45:00Z", "stargazers_count": 134, "topics": ["weather", "yandex-weather"], "last_fetched": 1695553661.409283, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271398374": {"repository_manifest": {"name": "Saver", "render_readme": true, "zip_release": true, "filename": "saver.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Saver", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom component allows you to save current state of any entity and use its data later to restore it.", "domain": "saver", "downloads": 1127, "etag_repository": "W/\"b3579f47d1f09d8520a4ab108c06d2673e549874a99429f0b1d38411302d099d\"", "last_updated": "2023-07-07T02:54:44Z", "stargazers_count": 50, "topics": ["automation", "helper", "save", "script", "variable"], "last_fetched": 1695554145.728353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356385629": {"repository_manifest": {"name": "Kia Uvo / Hyundai Bluelink", "render_readme": true, "homeassistant": "2022.12"}, "full_name": "Hyundai-Kia-Connect/kia_uvo", "authors": ["@fuatakgun"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo) and Hyundai Bluelink. The integration supports the EU, Canada and the USA.", "domain": "kia_uvo", "etag_repository": "W/\"b41231d2da7f2641b2b256492dc46e508b95df7bc647d90ea1a5999d8ca65a5f\"", "last_updated": "2023-09-10T08:14:16Z", "stargazers_count": 277, "topics": ["bluelink", "car", "hyundai", "kia", "uvo"], "last_fetched": 1695553661.48501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927503": {"repository_manifest": {"name": "Spa Client", "render_readme": true}, "full_name": "plmilord/Hass.io-custom-component-spaclient", "authors": ["@plmilord"], "category": "integration", "description": "Home Assistant integration - Spa Client", "domain": "spaclient", "etag_repository": "W/\"6e6c7059b0153e14d8304ab6676e19a62a7af5ee6e09a70a82cbe6d61a9345d3\"", "last_updated": "2023-06-14T02:00:22Z", "stargazers_count": 46, "topics": ["balboa", "bwa", "spaclient"], "last_fetched": 1695554146.094527, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251039581": {"repository_manifest": {"name": "Ginlong Solis PV portal integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/solis-sensor", "authors": ["@hultenvp"], "category": "integration", "description": "HomeAssistant integration for the SolisCloud PV Monitoring portal via SolisCloud API", "domain": "solis", "etag_repository": "W/\"fbf5867fb3b5bb2b06ee1f5be73961b45512017e0778585ea0c642931dc65065\"", "last_updated": "2023-08-30T12:57:40Z", "stargazers_count": 145, "topics": ["solarman", "solis", "soliscloud"], "last_fetched": 1695553661.392623, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323155307": {"repository_manifest": {"name": "Duepi Evo", "render_readme": true}, "full_name": "aceindy/Duepi_EVO", "authors": ["@aceindy"], "category": "integration", "description": "Control Duepi_evo based pellet stoves with Home Assistant over wifi using ESPLink", "domain": "duepi_evo", "etag_repository": "W/\"4717e12a7fb5a97b6a4152dbdbb1f427a1c5514083cdcd2bc0c709e97a9b4fe9\"", "last_updated": "2023-08-26T10:27:49Z", "stargazers_count": 14, "topics": ["heating-systems"], "last_fetched": 1695553571.536299, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "387116237": {"repository_manifest": {"name": "XMRIG integration", "render_readme": true}, "full_name": "hwmland/homeassistant-xmrig", "authors": ["@hwmland"], "category": "integration", "description": "XMRIG integration for homeassistant", "domain": "xmrig", "etag_repository": "W/\"bd8f321751a84864734f732146122ebd05304c215027f3879d03ffb562207b82\"", "last_updated": "2022-04-26T18:13:19Z", "stargazers_count": 3, "topics": ["cryptocurrency", "monero-mining", "xmrig"], "last_fetched": 1695553661.125491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560848165": {"repository_manifest": {"name": "Compound definition for Home Assistant integration for Homey", "render_readme": true}, "full_name": "RonnyWinkler/homeassistant.homey", "authors": ["@RonnyWinkler"], "category": "integration", "description": "Homey compound device component", "domain": "homey", "etag_repository": "W/\"e6bcfdd17b6d45fc5f8db4d095a81c0252faf88871e6c03ed77ce49abf7f77c5\"", "last_updated": "2023-06-08T14:25:19Z", "stargazers_count": 3, "topics": ["compound", "homey"], "last_fetched": 1695554155.060258, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267583249": {"repository_manifest": {"name": "Omnik Solar integration", "homeassistant": "2021.9"}, "full_name": "hultenvp/home_assistant_omnik_solar", "authors": ["@hultenvp"], "category": "integration", "description": "Home Assistant Omnik Solar sensor component", "domain": "omnik", "etag_repository": "W/\"dcb5201dac875cdd500827c846d602dcd9f4860a8ce338bc6760f9372baa223c\"", "last_updated": "2022-01-29T20:42:45Z", "stargazers_count": 6, "topics": ["home-assistant-component", "omnik", "solar"], "last_fetched": 1695553661.159751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332911333": {"repository_manifest": {"name": "Irrigation Unlimited", "homeassistant": "2022.1.0"}, "full_name": "rgc99/irrigation_unlimited", "authors": ["@rgc99"], "category": "integration", "description": "\u2652Irrigation controller for Home Assistant", "domain": "irrigation_unlimited", "etag_repository": "W/\"abe60eee840b7e327dda6ae142e54e7e3c9fd1160781d0c0201dc6839da4fd73\"", "last_updated": "2023-09-24T06:59:37Z", "stargazers_count": 236, "topics": ["garden-automation", "irrigation", "irrigation-control-system", "irrigation-controller", "sprinkler-controller", "water", "watering-controller", "watering-system"], "last_fetched": 1695554153.276969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544947025": {"repository_manifest": {"name": "Chargecloud.de", "render_readme": true}, "full_name": "functionpointer/home-assistant-chargecloud-integration", "authors": ["@functionpointer"], "category": "integration", "description": "Fetches real-time status of public ev chargers from chargecloud.de", "domain": "chargecloud", "etag_repository": "W/\"fd5a6682140363d351699dbe01f38e84c6990c277795ce77a9ddd92e71d29bfe\"", "last_updated": "2023-09-05T12:47:14Z", "stargazers_count": 3, "topics": ["electric-vehicle-charging-station", "electric-vehicles"], "last_fetched": 1695553645.348763, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448323715": {"repository_manifest": {"name": "Nest Protect", "homeassistant": "2023.1.7", "render_readme": "true"}, "full_name": "iMicknl/ha-nest-protect", "authors": ["@imicknl"], "category": "integration", "description": "Nest Protect integration for Home Assistant. This will allow you to integrate your smoke, heat, co and occupancy status real-time in HA.", "domain": "nest_protect", "etag_repository": "W/\"84a21845df0af1d1c78f5225d63f85b4ba3fdb561edff04ad829c9c36fd285e8\"", "last_updated": "2023-09-05T08:59:33Z", "stargazers_count": 243, "topics": ["google", "nest", "nest-protect"], "last_fetched": 1695553663.399557, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442225646": {"repository_manifest": {"name": "London TfL", "country": "GB", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "morosanmihail/HA-LondonTfL", "authors": ["@morosanmihail"], "category": "integration", "description": "Simple sensor for Home Assistant to retrieve departures from Transport for London stations.", "domain": "london_tfl", "etag_repository": "W/\"45d80cc12476f430f06bf1fe074e2d6ed0c5ff3d6767a51db73c879077d4008f\"", "last_updated": "2023-07-03T21:56:44Z", "stargazers_count": 14, "topics": ["london", "tfl", "transport"], "last_fetched": 1695554125.560325, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269316095": {"repository_manifest": {"name": "Overkiz (by Somfy) - Custom component", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "iMicknl/ha-tahoma", "authors": ["@imicknl", "@vlebourl", "@tetienne"], "category": "integration", "description": "Custom component for Home Assistant to interact with smart devices via Somfy TaHoma or other OverKiz based API's.", "domain": "tahoma", "etag_repository": "W/\"f49f350dcc277f815a4e5d274d9ec415f822d7c7628c6c7471e8bf6a662376ce\"", "last_updated": "2023-09-11T11:40:17Z", "stargazers_count": 142, "topics": ["cozytouch", "hi-kumo", "nexity", "overkiz", "rexel", "somfy", "tahoma"], "last_fetched": 1695553663.513843, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196057008": {"repository_manifest": {"name": "Attributes extractor", "homeassistant": "2023.6.0"}, "full_name": "pilotak/homeassistant-attributes", "authors": ["@pilotak"], "category": "integration", "description": "Breaks out specified attribute from other entities to a sensor", "domain": "attributes", "etag_repository": "W/\"7f3cd333500959c464f5f7b0455a9df43b45fedb6e7468133776993927131dde\"", "last_updated": "2023-06-08T18:08:10Z", "stargazers_count": 80, "topics": ["attributes", "breakout"], "last_fetched": 1695554141.396547, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "211393677": {"repository_manifest": {"name": "Qubino Wire Pilot", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "piitaya/home-assistant-qubino-wire-pilot", "authors": ["@piitaya"], "category": "integration", "description": "Home Assistant Component for Qubino Wire Pilot", "domain": "qubino_wire_pilot", "etag_repository": "W/\"ab8d82ed7cac4aeb9100cef029a1027c389cd93c47b89f36bc0e307125e21129\"", "last_updated": "2023-01-25T18:46:59Z", "stargazers_count": 15, "topics": ["climate", "qubino", "qubino-wire-pilot", "thermostat"], "last_fetched": 1695554141.439191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534848317": {"repository_manifest": {"name": "Redback Technologies", "homeassistant": "2022.11.0", "render_readme": true}, "full_name": "juicejuice/homeassistant_redback", "authors": ["@juicejuice"], "category": "integration", "description": "Home Assistant integration for inverter and battery systems from Redback Technologies", "domain": "redback", "etag_repository": "W/\"62635964ac7e9bb5ff0850e4b3348bcb40503ea1ecacdcbf82a3869f2181a500\"", "last_updated": "2023-07-11T02:41:56Z", "stargazers_count": 5, "topics": ["inverter", "redback-technologies"], "last_fetched": 1695554096.612592, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196055705": {"repository_manifest": {"name": "Clientraw weather parser", "homeassistant": "2022.11"}, "full_name": "pilotak/homeassistant-clientraw", "authors": ["@pilotak"], "category": "integration", "description": "Clientraw weather parser (clientraw.txt) for HomeAssistant", "domain": "clientraw", "etag_repository": "W/\"50448fd2bcc0ba7f6bd428fa8e1d39ca564ac371f54ac4f0f5a0e5f26abe25ae\"", "last_updated": "2023-06-26T16:23:04Z", "stargazers_count": 13, "topics": ["clientraw", "davis", "weather"], "last_fetched": 1695554141.739891, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "369774988": {"repository_manifest": {"name": "openweathermaphistory", "filename": "openweathermaphistory.zip", "render_readme": true, "zip_release": true}, "full_name": "petergridge/openweathermaphistory", "authors": ["@petergridge", "@tsbernar"], "category": "integration", "description": "A home assistant sensor that uses the OpenWeatherMap API to get forecast, current obs and history data", "domain": "openweathermaphistory", "downloads": 1947, "etag_repository": "W/\"1acb9e191b96e82d6221df170c8f18d59a2f94a75f57c849a6e5bbb407ced558\"", "last_updated": "2023-09-06T12:09:55Z", "stargazers_count": 41, "topics": ["irrigation", "weather"], "last_fetched": 1695554141.036438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603119944": {"repository_manifest": {"name": "Tarifa 2.0 TD", "render_readme": true, "homeassistant": "2023.1.0", "country": "ES"}, "full_name": "MiguelAngelLV/tarifa_20td", "authors": ["@miguelangellv"], "category": "integration", "description": "Componente para Home Assisant para usuarios con tarifa 2.0 TD", "domain": "tarifa_20td", "etag_repository": "W/\"b03d8218821e667e7100b258f873d1041ff01f63e0ee3498b817dc66b4034c8d\"", "last_updated": "2023-09-13T10:21:24Z", "stargazers_count": 9, "topics": ["energy-monitor", "tarifa"], "last_fetched": 1695554123.104288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362145464": {"repository_manifest": {"name": "Multizone Controller", "render_readme": true}, "full_name": "Petro31/ha-integration-multizone-controller", "authors": ["@Petro31"], "category": "integration", "description": "Integration that creates a multi-zone volume controller for media_players in Home Assistant", "domain": "multizone_controller", "etag_repository": "W/\"c8b23efb485a8a148042f7c07923ef6c6d9e949b3e9a62026ac01cf6838886f0\"", "last_updated": "2023-07-08T11:11:56Z", "stargazers_count": 13, "topics": ["media-players", "multizone-controller", "volume-increment", "zone-volume"], "last_fetched": 1695554141.688825, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "584257648": {"repository_manifest": {"name": "TCL TV Remote", "render_readme": true, "zip_release": true, "filename": "tclremote.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-TCL-Remote", "authors": ["@popeen"], "category": "integration", "description": "This custom component will give you two new services for controlling TCL Smart TVs (Non android version). Tested on my S69 series TV. I have seen some reports about it working on other brands as well, mainly Thomson", "domain": "tcl_tv_remote", "downloads": 709, "etag_repository": "W/\"71791aae616c6bfa704640bb65f9dbeafac2e1cb64b160f90b67ddc9e03130d1\"", "last_updated": "2023-09-23T10:39:23Z", "stargazers_count": 7, "last_fetched": 1695554146.854253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179808576": {"repository_manifest": {"name": "BHA Icon Pack"}, "full_name": "hulkhaugen/hass-bha-icons", "category": "plugin", "description": "Additional icons for Home Assistant to accompany the MDI icons", "etag_repository": "W/\"74bbc8b0ab432eea4dfb04969c6407e54e350ccf5c30d7851a5dac951ecc75f6\"", "last_updated": "2023-09-18T07:02:59Z", "stargazers_count": 149, "topics": ["icons", "iconset"], "last_fetched": 1695553534.612354, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "528618549": {"repository_manifest": {"name": "Molad Sensor", "render_readme": true}, "full_name": "chaimchaikin/molad-ha", "authors": ["@chaimchaikin"], "category": "integration", "description": "Molad Sensor for HACS", "domain": "molad", "etag_repository": "W/\"1296bb44b69c13efb84ba49b0f7eb139b97059dcb99763f275b4ee9f650bf1ec\"", "last_updated": "2023-05-21T22:51:27Z", "topics": ["hebrew-calendar", "jewish", "jewish-calendar", "molad"], "last_fetched": 1695553601.720793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403243434": {"repository_manifest": {"name": "Vaillant vSMART", "homeassistant": "2022.11"}, "full_name": "MislavMandaric/home-assistant-vaillant-vsmart", "authors": ["@MislavMandaric"], "category": "integration", "description": "Home Assistant custom component for Vaillant vSMART.", "domain": "vaillant_vsmart", "etag_repository": "W/\"43d6b642b4c38c84c1cc2867383f90a2d0d862cbf328cd2780782253a1bead0d\"", "last_updated": "2023-03-06T17:06:33Z", "stargazers_count": 47, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1695554123.381191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279538782": {"repository_manifest": {"name": "Ecodevices RT2"}, "full_name": "pcourbin/ecodevices_rt2", "authors": ["@pcourbin"], "category": "integration", "description": "Home Assistant custom component for GCE Ecodevices RT2", "domain": "ecodevices_rt2", "etag_repository": "W/\"81689fcc14b499f3aec4113051ead14c91a4caf2e78be4d2142a8fd2c12d68be\"", "last_updated": "2023-09-13T09:04:47Z", "stargazers_count": 3, "last_fetched": 1695554139.292368, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236123258": {"repository_manifest": {"name": "Camect Integration", "country": "US", "homeassistant": "0.99.9", "render_readme": true}, "full_name": "pfunkmallone/HACS-camect-integration", "authors": ["@camect"], "category": "integration", "description": "A HACS integration for the Camect smart home surveillance system", "domain": "camect", "etag_repository": "W/\"52bcb4504d556534fb53b1919377e435934e42320f5eaf3d2ae8e1376fad3cdd\"", "last_updated": "2022-10-11T01:36:19Z", "stargazers_count": 4, "topics": ["camect"], "last_fetched": 1695554141.42676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "529926820": {"repository_manifest": {"homeassistant": "2023.2.0", "name": "lelight", "render_readme": true}, "full_name": "v1ack/lelight", "authors": ["@v1ack"], "category": "integration", "description": "LeLight integration for Home Assistant", "domain": "lelight", "etag_repository": "W/\"ba43310b0bad14204baa16b95a9e94e71b342aa2e9b9810c0ce1a5a3139df0dd\"", "last_updated": "2023-03-08T09:39:00Z", "stargazers_count": 3, "topics": ["ble", "iot", "lelight"], "last_fetched": 1695554190.340919, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209996125": {"repository_manifest": {"name": "Remote PicoTTS", "render_readme": true, "homeassistant": "0.36"}, "full_name": "Poeschl/Remote-PicoTTS", "authors": ["@Poeschl"], "category": "integration", "description": "A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,", "domain": "picotts_remote", "etag_repository": "W/\"87b766a147cb3884896538b61e7e17c8ee35d007843aa156066fb392a9b2b518\"", "last_updated": "2022-06-03T14:25:15Z", "stargazers_count": 11, "topics": ["component", "picotts-addon", "remote-picotts"], "last_fetched": 1695554146.010896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484708274": {"repository_manifest": {"name": "AsusRouter", "homeassistant": "2023.2.0"}, "full_name": "Vaskivskyi/ha-asusrouter", "authors": ["@vaskivskyi"], "category": "integration", "description": "Monitor and control your AsusWRT-powered router from Home Assistant", "domain": "asusrouter", "etag_repository": "W/\"25e602354900c4b3b13da88df23adc926f403c8622bbc203ea2ab7fd63fa77bc\"", "last_updated": "2023-09-18T20:35:51Z", "stargazers_count": 123, "topics": ["asus", "asuswrt", "asuswrt-merlin", "router"], "last_fetched": 1695554192.523479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "348835574": {"repository_manifest": {"name": "Motala Vatten & Avfall - Garbage collection sensor", "render_readme": true, "zip_release": true, "country": "SE", "filename": "motalavattenavfall.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-MotalaVattenAvfall", "authors": ["@popeen"], "category": "integration", "description": "A sensor for getting collection date for garbage and sludge from Motala Vatten & Avfall.", "domain": "motalavattenavfall", "downloads": 60, "etag_repository": "W/\"9acffcb0a1bc81feacd28e9f48193b20bff404223f9606cc1979960d96f91231\"", "last_updated": "2023-09-23T10:39:35Z", "stargazers_count": 3, "topics": ["garbage-collection", "motala"], "last_fetched": 1695554146.433402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "433577603": {"repository_manifest": {"name": "Config Editor Card", "filename": "config-editor-card.js", "render_readme": true}, "full_name": "htmltiger/config-editor-card", "category": "plugin", "description": "Home Assistant Configuration Files Editor for Lovelace", "etag_repository": "W/\"dff617a8059d119ceaa743609c4e0274cf722fb4cec8c024952dbdbf27f5f34e\"", "last_updated": "2023-06-29T02:35:40Z", "stargazers_count": 40, "topics": ["homeassistant-addons", "homeassistant-config", "homeassistant-configuration", "yaml"], "last_fetched": 1695553534.688617, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238568340": {"repository_manifest": {"name": "Freebox Player"}, "full_name": "Pouzor/freebox_player", "authors": ["@Pouzor"], "category": "integration", "description": "Custom Component for Home Assistant, enable to remote Freebox Player", "domain": "freebox_player", "etag_repository": "W/\"0ebcd95b1adfacda92cba6d3821cb0d8bf726152414bd7ff4d816411f4750217\"", "last_updated": "2021-05-12T23:52:40Z", "stargazers_count": 14, "topics": ["freebox"], "last_fetched": 1695554147.871393, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281956859": {"repository_manifest": {"name": "D-Link HNAP", "homeassistant": "0.109.0", "render_readme": true}, "full_name": "postlund/dlink_hnap", "authors": ["@postlund"], "category": "integration", "description": "Experimental integration to Home Assistant supporting D-Link devices", "domain": "dlink_hnap", "etag_repository": "W/\"c6d27c599e36313520652275046486724519f4dcf356735d10d3580a2254da49\"", "last_updated": "2022-05-28T09:18:28Z", "stargazers_count": 38, "topics": ["custom-integration", "dlink"], "last_fetched": 1695554147.778909, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193371922": {"repository_manifest": {"name": "Tauron AMIplus", "render_readme": true, "zip_release": true, "filename": "tauron_amiplus.zip", "country": "PL", "homeassistant": "2022.12.0"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Tauron-AMIplus", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get energy usage and generation data from https://elicznik.tauron-dystrybucja.pl.", "domain": "tauron_amiplus", "downloads": 1507, "etag_repository": "W/\"5edc471d51c75e84c16e833330efd58f87d27852d8d2e772fd768ffa2be173b9\"", "last_updated": "2023-06-04T23:31:31Z", "stargazers_count": 104, "topics": ["amiplus", "elicznik", "energy-monitor", "tauron"], "last_fetched": 1695554145.941915, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269113518": {"repository_manifest": {"name": "xcomfort", "homeassistant": "2021.12.0b0"}, "full_name": "plamish/xcomfort", "authors": ["@plamish"], "category": "integration", "description": "Eaton xComfort SHC integration for Home Assistant", "domain": "xcomfort", "etag_repository": "W/\"7f1680f5c09c3c7b7b207deb906a6ccfedce93ad538f3536b8b37cd8e2546db0\"", "last_updated": "2023-04-02T08:43:45Z", "stargazers_count": 11, "topics": ["eaton", "xcomfort"], "last_fetched": 1695554145.984816, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199888538": {"repository_manifest": {"name": "Stadtreinigung Hamburg", "country": "DE", "homeassistant": "0.109.0", "zip_release": true, "filename": "stadtreinigung_hamburg.zip"}, "full_name": "custom-components/sensor.stadtreinigung_hamburg", "authors": ["@vigonotion"], "category": "integration", "description": "Stadtreinigung Hamburg - get garbage collection dates in Hamburg - custom component for Home Assistant", "domain": "stadtreinigung_hamburg", "downloads": 166, "etag_repository": "W/\"c68e933a4dc84a2a10f45338f0b25d5028c2a680508ca6db3bacd878691959ed\"", "last_updated": "2023-05-21T10:19:20Z", "stargazers_count": 20, "last_fetched": 1695553611.045089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520791578": {"repository_manifest": {"name": "SolarEdge Optimizers Data"}, "full_name": "ProudElm/solaredgeoptimizers", "authors": ["@proudelm"], "category": "integration", "description": "Intergration to get optimizers information from the SolarEdge portal", "domain": "solaredgeoptimizers", "etag_repository": "W/\"d441e112bafef1ebeabab4a9038d76d27248f6c7d6373fbc7977bd74171ba752\"", "last_updated": "2023-04-24T13:32:07Z", "stargazers_count": 33, "topics": ["optimizers", "solaredge-api"], "last_fetched": 1695554148.162751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289550686": {"repository_manifest": {"name": "Zoom", "render_readme": true, "homeassistant": "2021.5.0b0", "zip_release": true, "filename": "zoom.zip"}, "full_name": "raman325/ha-zoom-automation", "authors": ["@raman325"], "category": "integration", "description": "Custom Home Assistant component for Zoom. Tracks when you are connected to a Zoom call by default but may allow you to track more.", "domain": "zoom", "downloads": 698, "etag_repository": "W/\"aa1c4f24055b804c08699231877922448be673aebbe7d8234d2604f52ceb8f4a\"", "last_updated": "2023-09-19T05:21:51Z", "stargazers_count": 59, "topics": ["automation", "ha", "webhook-event", "zoom"], "last_fetched": 1695554150.30333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "219035415": {"repository_manifest": {"name": "GeoRide integration", "render_readme": true, "country": ["FR"], "homeassistant": "2023.2.0"}, "full_name": "ptimatth/GeorideHA", "authors": ["ptimatth"], "category": "integration", "description": "GeoRide integration for Home Assistant", "domain": "georide", "etag_repository": "W/\"d14ef7a0827458fd659460109c2e934d9e5b7099da6bef17edbce9d428e6331e\"", "last_updated": "2023-05-24T11:05:14Z", "stargazers_count": 16, "last_fetched": 1695554148.246916, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236611771": {"repository_manifest": {"name": "TDAmeritrade", "country": "US", "homeassistant": "2022.6.1"}, "full_name": "prairiesnpr/hass-tdameritrade", "authors": ["@PrairieSnpr"], "category": "integration", "description": "TDAmeritrade component for Home Assistant", "domain": "tdameritrade", "etag_repository": "W/\"412ee4143e8aaa5a142e2e96d2b09bb505d43b1be020aec4fe85a967fddc13f3\"", "last_updated": "2022-07-07T02:15:03Z", "stargazers_count": 7, "topics": ["tdameritrade"], "last_fetched": 1695554147.999528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583896361": {"repository_manifest": {"name": "ESA NASK Air Quality Sensor", "render_readme": true, "country": ["PL"]}, "full_name": "Mr-Groch/HA-ESA-NASK-Air-Quality", "authors": ["@Mr-Groch"], "category": "integration", "description": "Home Assistant component for scrapping data from ESA NASK stations", "domain": "esa_nask", "etag_repository": "W/\"db8b4907bc8f6ee0add74937940e0da6ee140ac3b186803c017a464b8183d78d\"", "last_updated": "2023-04-11T13:49:57Z", "stargazers_count": 2, "topics": ["air-quality", "esa", "nask"], "last_fetched": 1695554126.089202, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585689945": {"repository_manifest": {"name": "Temperatur.nu", "render_readme": true, "zip_release": true, "country": "SE", "filename": "temperaturnu.zip"}, "full_name": "popeen/Home-Assistant-Custom-Component-Temperatur-Nu", "authors": ["@popeen"], "category": "integration", "description": "A sensor for temperatur.nu and a service for reporting your current temperature", "domain": "temperatur_nu", "downloads": 314, "etag_repository": "W/\"f3f511ed45339136d218f98fa080d9cabefc34fbbf9803fd696e1c824aeaafbb\"", "last_updated": "2023-09-23T10:39:47Z", "stargazers_count": 2, "topics": ["temperature"], "last_fetched": 1695554147.789008, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268118148": {"repository_manifest": {"name": "Gardena Smart System", "render_readme": true, "homeassistant": "2021.7.0"}, "full_name": "py-smart-gardena/hass-gardena-smart-system", "authors": ["@py-smart-gardena"], "category": "integration", "description": "Home Assistant custom component integration for Gardena Smart System", "domain": "gardena_smart_system", "etag_repository": "W/\"cc466f2ed376a7567713025293105c516e96e721e5e8210b11a0322ea3856bb5\"", "last_updated": "2023-09-15T10:25:19Z", "stargazers_count": 152, "topics": ["gardena", "gardena-api", "gardena-smart-system"], "last_fetched": 1695554148.427774, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224073673": {"repository_manifest": {"name": "Calendarific", "zip_release": true, "filename": "calendarific.zip", "homeassistant": "2021.12.0"}, "full_name": "pinkywafer/Calendarific", "authors": ["@pinkywafer"], "category": "integration", "description": "Calendarific holiday sensor for Home Assistant ", "domain": "calendarific", "downloads": 1196, "etag_repository": "W/\"08d56a535d4e19ceb79ca40d588b4becab1f1b9e16aad9be9884f8ee360e153f\"", "last_updated": "2023-09-04T21:07:16Z", "stargazers_count": 15, "topics": ["api-client", "calendarific", "holidays"], "last_fetched": 1695554143.600093, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "182113743": {"repository_manifest": {}, "full_name": "gadgetchnnel/lovelace-text-input-row", "category": "plugin", "description": "A custom Lovelace text input row for use in entities cards", "etag_repository": "W/\"70ec2d74d86b0056ae89ef41386974ddf9a35ed3cb423c96d244f9b5733c3a64\"", "last_updated": "2023-05-17T15:03:09Z", "stargazers_count": 32, "last_fetched": 1695553532.330384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "117426840": {"repository_manifest": {"name": "Volkswagen We Connect", "homeassistant": "2021.12.0b1", "hide_default_branch": true, "zip_release": true, "filename": "volkswagencarnet.zip"}, "full_name": "robinostlund/homeassistant-volkswagencarnet", "authors": ["@robinostlund"], "category": "integration", "description": "Volkswagen Carnet Component for home assistant", "domain": "volkswagencarnet", "downloads": 2324, "etag_repository": "W/\"ca0e47565b0fe238b38a046c4e421cb51ef332220e0ebbf32c10aea3765b05e1\"", "last_updated": "2023-09-05T09:23:15Z", "stargazers_count": 233, "topics": ["volkswagen-carnet"], "last_fetched": 1695554153.643058, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264415552": {"repository_manifest": {"name": "Hive Custom Component", "render_readme": true}, "full_name": "Pyhass/Hive-Custom-Component", "authors": ["@KJonline"], "category": "integration", "description": "A custom version of the home assistant hive component", "domain": "hive", "etag_repository": "W/\"c249c2b71567d66f65a29f7808154e1dcd77fa47ac89186a5081a5b7564a7fb3\"", "last_updated": "2022-10-03T11:45:59Z", "stargazers_count": 31, "topics": ["hive"], "last_fetched": 1695554148.780336, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352399227": {"repository_manifest": {"name": "KNX User Forum Icon Set", "render_readme": true, "homeassistant": "2021.10"}, "full_name": "mampfes/ha-knx-uf-iconset", "category": "plugin", "description": "Icon set from KNX User Forum for Home Assistant. The icon set contains more than 900 icons for home automation.", "etag_repository": "W/\"57aa74cedad089ab7aa30de4b5ccac74c076f32ae5495a6214a6a9959390f5b3\"", "last_updated": "2021-12-15T18:26:29Z", "stargazers_count": 6, "topics": ["icons", "iconset"], "last_fetched": 1695553546.947539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143340728": {"repository_manifest": {"name": "ATAG One", "country": "NL"}, "full_name": "herikw/home-assistant-custom-components", "authors": ["@herikw"], "category": "integration", "description": "Atag One Custom components for Home-Assistant", "domain": "atagone", "etag_repository": "W/\"b91ac16aea909bf444d72376ad08097b5d0e109695eafb1a31219ebfddfa58e1\"", "last_updated": "2023-03-06T20:40:08Z", "stargazers_count": 11, "topics": ["atag", "thermostat"], "last_fetched": 1695553658.933171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260264517": {"repository_manifest": {"name": "ClimaCell Weather Provider"}, "full_name": "r-renato/ha-climacell-weather", "authors": ["@r-renato"], "category": "integration", "description": "Climacell weather provider integration is a custom component for Home Assistant. The climacell platform uses the Climacell API as a source for meteorological data for your location.", "domain": "climacell", "etag_repository": "W/\"178be98bc5ffe26c6be71207f48c8671f96e02b06de66b4e9e8bb28e4749ac71\"", "last_updated": "2023-06-14T20:17:22Z", "stargazers_count": 46, "topics": ["climacell", "weather"], "last_fetched": 1695554148.950544, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325755578": {"repository_manifest": {"name": "MercedesME 2020", "homeassistant": "2022.11.0"}, "full_name": "ReneNulschDE/mbapi2020", "authors": ["@ReneNulschDE"], "category": "integration", "description": "Custom Component to integrate MercedesME devices into Home-Assistant", "domain": "mbapi2020", "etag_repository": "W/\"4a0977b6d64671f090d7aeaf02f06e4ee5fe1269dd0bb1ac4c1a01c62c04e52a\"", "last_updated": "2023-08-31T11:36:09Z", "stargazers_count": 96, "topics": ["car", "home-assistant-component", "lock", "switch"], "last_fetched": 1695554151.188864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365332200": {"repository_manifest": {"name": "PiJuice UPS Hat", "render_readme": true, "country": ["US", "FR", "ES", "DE"]}, "full_name": "Racailloux/home-assistant-pijuice", "authors": ["@Racailloux"], "category": "integration", "description": "Home Assistant integration to support PiJuice UPS Hat and retrieve values to sensors.", "domain": "pijuice", "etag_repository": "W/\"39c5e216bb51d62050c49f9cef7da9ad79c6e58e2e010766b052184333fcddae\"", "last_updated": "2023-05-08T06:27:23Z", "stargazers_count": 12, "topics": ["battery", "hat", "integrations", "pijuice", "raspberry-pi", "sensors", "ups", "voltage"], "last_fetched": 1695554149.927608, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "615769161": {"repository_manifest": {"name": "v2c_trydan", "render_readme": true}, "full_name": "Rain1971/V2C_trydant", "authors": ["@Rain1971"], "category": "integration", "description": "Electric car charger for v2c trydan in home asssitant via HACS", "domain": "v2c_trydan", "downloads": 4, "etag_repository": "W/\"6ef09ce31931d8de879cc9c966b4478bf180552c8bddf5e8bf8cffa0d9c963f5\"", "last_updated": "2023-07-23T18:22:41Z", "stargazers_count": 16, "topics": ["v2c"], "last_fetched": 1695554149.965078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197983504": {"repository_manifest": {}, "full_name": "rdehuyss/homeassistant-custom_components-denkovi", "authors": ["@rdehuyss"], "category": "integration", "description": "Support for Denkovi IOT Relay modules in HomeAssistant", "domain": "denkovi", "etag_repository": "W/\"a538abd45d0172d5518e273e4fc591df4fefdb39cf55aeb993d0192031a361d1\"", "last_updated": "2022-01-04T15:00:15Z", "stargazers_count": 5, "topics": ["denkovi"], "last_fetched": 1695554150.124991, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "316421110": {"repository_manifest": {"name": "La Marzocco"}, "full_name": "rccoleman/lamarzocco", "authors": ["@rccoleman"], "category": "integration", "description": "Interact with your La Marzocco espresso machine", "domain": "lamarzocco", "etag_repository": "W/\"202ab80a73c1b24ce98cc2b1c40a91657a54b0de50e3f471a0c6f24d542f5233\"", "last_updated": "2023-08-17T19:28:41Z", "stargazers_count": 56, "topics": ["home-assistant-component", "la-marzocco", "lamarzocco"], "last_fetched": 1695554150.508534, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "596085141": {"repository_manifest": {"name": "octopus-energy-rates-card", "render_readme": true}, "full_name": "lozzd/octopus-energy-rates-card", "category": "plugin", "description": "This lovelace card for Home Assistant displays the Octopus Energy rate prices per each 30 minute slot", "etag_repository": "W/\"6d13b8578494d44509391c69ddb5e2a755e694252baea9b256eb5c9bb8ff4657\"", "last_updated": "2023-09-08T12:44:35Z", "stargazers_count": 26, "topics": ["electricity", "energy", "octopus", "octopus-energy", "octopus-energy-agile", "octopusenergy", "rates"], "last_fetched": 1695553545.101511, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582608844": {"repository_manifest": {"name": "Emu M-Bus Center", "hacs": "1.6.0", "homeassistant": "0.7.4", "render_readme": true}, "full_name": "redlukas/emu_mbus_center", "authors": ["@redlukas"], "category": "integration", "description": "Reads Values from a Emu M-Bus Center and exposes them to Home Assistant", "domain": "emu_m_bus_center", "etag_repository": "W/\"e01d2c666f8e52ff99b01c1f61a50c4db735d1a2d909ac9fc8954501ad4c5c16\"", "last_updated": "2023-09-18T01:40:39Z", "stargazers_count": 1, "topics": ["m-bus", "rest-client"], "last_fetched": 1695554150.567531, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542621509": {"repository_manifest": {"name": "Imou Life", "hacs": "1.6.0", "render_readme": true}, "full_name": "user2684/imou_life", "authors": ["@user2684"], "category": "integration", "description": "Home Assistant custom component for controlling Imou devices", "domain": "imou_life", "downloads": 58, "etag_repository": "W/\"0d42e51b2cf27df39022fe5ef152b659c41862f0091a62bf9be2e50a5b03c278\"", "last_updated": "2023-02-19T21:50:48Z", "stargazers_count": 69, "topics": ["camera", "imou", "imou-life", "motion-detection", "webcam"], "last_fetched": 1695554190.569171, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248462859": {"repository_manifest": {"homeassistant": "2022.12.0", "name": "Alarm.com", "render_readme": true}, "full_name": "pyalarmdotcom/alarmdotcom", "authors": ["@uvjustin", "@elahd"], "category": "integration", "description": "Custom component to allow Home Assistant to interface with Alarm.com", "domain": "alarmdotcom", "etag_repository": "W/\"1dcf438fbef887dbfa51409cfc6aff2a052d17aad4fd6c0024f31dd0926d7ec6\"", "last_updated": "2023-09-19T08:03:18Z", "stargazers_count": 101, "topics": ["alarm"], "last_fetched": 1695554148.549358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232269564": {"repository_manifest": {"name": "Konke", "country": "CN"}, "full_name": "5high/konke", "authors": ["@jedmeng"], "category": "integration", "description": "\u63a7\u5ba2\u5c0fK \u63a5\u5165Home Assistant\uff0c\u652f\u6301\u6700\u65b0\u7248\u672cHA \u76ee\u524d\u6700\u65b0\u7248\u672c\uff080.103\uff09\uff0c\u76f8\u4fe1\u672a\u6765\u7684\u7248\u672c\u4e5f\u53ef\u4ee5\u652f\u6301\u3002", "domain": "konke", "etag_repository": "W/\"b8a428045e2efb0527e805a53c71b0ffcd1286f2eb11ca77d43242eb0e4ac3e5\"", "last_updated": "2022-02-08T07:44:52Z", "stargazers_count": 20, "last_fetched": 1695553571.070239, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "241427839": {"repository_manifest": {"name": "Omnik Inverter Solar Sensor (No Cloud)", "country": "NL", "homeassistant": "2023.2.0"}, "full_name": "robbinjanssen/home-assistant-omnik-inverter", "authors": ["@robbinjanssen", "@klaasnicolaas"], "category": "integration", "description": "Read the current, daily and total Wh from your Omnik Inverter via local network (no cloud!)", "domain": "omnik_inverter", "etag_repository": "W/\"d93807607afdd10aeaa5a6180c045e4ceec4bdf2aa1710e8b8d7f071891a1b78\"", "last_updated": "2023-09-22T13:35:37Z", "stargazers_count": 49, "topics": ["python3"], "last_fetched": 1695554152.685765, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203036108": {"repository_manifest": {"name": "Valetudo Map Card", "filename": "valetudo-map-card.js", "render_readme": true}, "full_name": "Hypfer/lovelace-valetudo-map-card", "category": "plugin", "description": "Display the map from a valetudo-enabled robot in a home assistant dashboard card.", "etag_repository": "W/\"6fc0bad7a4eff39fa9b92c2bed15dbb3ddbf45de7d5f983125f500b92bd491bf\"", "last_updated": "2023-07-12T09:20:08Z", "stargazers_count": 210, "topics": ["valetudo"], "last_fetched": 1695553534.739191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524376939": {"repository_manifest": {"name": "One Smart Control", "country": "NL"}, "full_name": "PimDoos/onesmartcontrolha", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assisttant integration for One Smart Control server", "domain": "onesmartcontrol", "etag_repository": "W/\"ecc8fd923b2ff6f27eeb86b3f244a51ae13b65bf1653f1e6dc1058604ef8147a\"", "last_updated": "2023-08-04T19:53:35Z", "stargazers_count": 3, "topics": ["home-assistant-custom-component", "one-smart-control", "socket"], "last_fetched": 1695554143.487056, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "446955395": {"repository_manifest": {"name": "TV touchpad remote card", "content_in_root": true, "render_readme": true, "filename": "touchpad-card.js"}, "full_name": "iablon/HomeAssistant-Touchpad-Card", "category": "plugin", "description": "A card that simplifies TV interaction from HomeAssistant", "etag_repository": "W/\"fb520b68f87f7249ce5ce686b348de4cedf7bfe5144f6d7533424dbabc5049b0\"", "last_updated": "2023-09-14T13:59:21Z", "stargazers_count": 13, "topics": ["remote", "tizen", "touchpad", "touchpad-remote", "trackpad", "tv-remote"], "last_fetched": 1695553534.73819, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160022220": {"repository_manifest": {"name": "Amazon Rekognition"}, "full_name": "robmarkcole/HASS-amazon-rekognition", "authors": ["@robmarkcole"], "category": "integration", "description": "Home Assistant Object detection with Amazon Rekognition", "domain": "amazon_rekognition", "etag_repository": "W/\"8fce546ba803694f2137b7b8403a2745a55b8d0c70d4f46fcd9d5585fa607bdc\"", "last_updated": "2022-11-22T07:55:06Z", "stargazers_count": 84, "topics": ["rekognition"], "last_fetched": 1695554154.520654, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "304967918": {"repository_manifest": {"name": "Number Box", "filename": "numberbox-card.js", "render_readme": true}, "full_name": "htmltiger/numberbox-card", "category": "plugin", "description": "Replace input_number sliders with plus and minus buttons", "etag_repository": "W/\"ff24186e25dd741760438acf2ff8368d5c888b879066ee771b9e1f1f2881bb0c\"", "last_updated": "2023-07-25T20:04:56Z", "stargazers_count": 82, "topics": ["input", "lovelace-card", "lovelace-cards", "lovelace-custom-card", "number", "numberbox-card", "slider"], "last_fetched": 1695553534.8733, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236945951": {"repository_manifest": {}, "full_name": "lukevink/lovelace-buien-rain-card", "category": "plugin", "description": "Graph of Buienradars rain forecast ", "downloads": 3599, "etag_repository": "W/\"ec9fe52dd3c52fd0ae6f714b8b77bc0cf6b75cefd8e01e840ed1f4612595f25a\"", "last_updated": "2022-11-09T07:37:14Z", "stargazers_count": 49, "topics": ["buienradar", "chartjs", "forecast", "graph"], "last_fetched": 1695553545.217769, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459336824": {"repository_manifest": {"name": "hass-lacrosseview", "country": "US", "render_readme": true}, "full_name": "regulad/hass-lacrosseview", "authors": ["@regulad"], "category": "integration", "description": "La Crosse view for Home Assistant", "domain": "lacrosseview", "etag_repository": "W/\"b70f8d5d48010bf4f7dbcb83e799ce4b552b888df4ff04f74202661d5af8fa9a\"", "last_updated": "2023-05-13T19:16:21Z", "stargazers_count": 5, "topics": ["home-assistant-config", "lacrosseview"], "last_fetched": 1695554150.662571, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "492996183": {"repository_manifest": {"name": "Hue-Like Light Card", "render_readme": true, "filename": "hue-like-light-card.js"}, "full_name": "Gh61/lovelace-hue-like-light-card", "category": "plugin", "description": "This card provides a Hue-like way to control your lights in Home Assistant.", "downloads": 2564, "etag_repository": "W/\"b4b27b4a5613dcf587fa8966f95814d49af0bbf3be3ed22efeb7978db9843ffd\"", "last_updated": "2023-09-22T14:59:18Z", "stargazers_count": 40, "topics": ["hue", "hue-lights-control", "light", "lovelace-card", "rgb-lights"], "last_fetched": 1695553532.900039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "600178779": {"repository_manifest": {"name": "Sessy", "country": "NL", "homeassistant": "2023.6.0"}, "full_name": "PimDoos/ha-sessy", "authors": ["@PimDoos"], "category": "integration", "description": "Home Assistant integration for Sessy (Smart Energy Storage SYstem)", "domain": "sessy", "etag_repository": "W/\"fa5aa5101d193dacda614db550827c80903119a9edb523e1063a1ab4b1f9a8fb\"", "last_updated": "2023-09-18T08:22:14Z", "stargazers_count": 14, "topics": ["energy-storage-systems", "homeassistant-custom-component", "sessy"], "last_fetched": 1695554142.083096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "335713085": {"repository_manifest": {"name": "Todoist Card", "content_in_root": true, "filename": "todoist-card.js", "render_readme": true}, "full_name": "grinstantin/todoist-card", "category": "plugin", "description": "Todoist card for Home Assistant Lovelace UI.", "etag_repository": "W/\"2cefe7777ad49be8a269b701dbfccc882c9e24aed4f6f1258255fd751d0d5dd6\"", "last_updated": "2023-08-16T14:42:07Z", "stargazers_count": 56, "topics": ["todoist"], "last_fetched": 1695553533.043929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "347143701": {"repository_manifest": {"name": "Channels DVR Recently Recorded"}, "full_name": "rccoleman/channels_dvr_recently_recorded", "authors": ["@rccoleman"], "category": "integration", "description": "\u25b6\ufe0f Channels DVR component to feed Upcoming Media Card.", "domain": "channels_dvr_recently_recorded", "etag_repository": "W/\"cfb479e3046c6f7471cf157bca54a640e883b0c98dbf501118ad3c1d5086667d\"", "last_updated": "2023-09-02T17:10:23Z", "stargazers_count": 12, "topics": ["channels-dvr", "homeassista"], "last_fetched": 1695554150.247209, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160042309": {"repository_manifest": {"name": "Power wheel card"}, "full_name": "gurbyz/power-wheel-card", "category": "plugin", "description": "An intuitive way to represent the power and energy that your home is consuming or producing. (A custom card for the Lovelace UI of Home Assistant.)", "etag_repository": "W/\"0e3fb728989df2f77f20e69cd919527e0b0a558bae7d3be5b3814454e2c3fc02\"", "last_updated": "2022-06-06T07:43:11Z", "stargazers_count": 148, "topics": ["energy", "solar-panels"], "last_fetched": 1695553533.455019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257634153": {"repository_manifest": {"name": "FXMarketAPI Integration"}, "full_name": "rob196/home-assistant-fxmarketapi", "authors": ["@rob196"], "category": "integration", "description": "This is a custom component to integrate into FXMarketAPI (https://fxmarketapi.com) to get the live mid-rates in Home Assistant.", "domain": "fxmarketapi", "etag_repository": "W/\"f9bf7fea1c670b33b28360987a5de0334ed1108d039c54184302f01114091801\"", "last_updated": "2021-06-01T16:32:25Z", "stargazers_count": 2, "last_fetched": 1695554152.187462, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679530": {"repository_manifest": {"name": "HASL Traffic Status Card", "filename": "hasl-traffic-status-card.js", "homeassistant": "0.92"}, "full_name": "hasl-sensor/lovelace-hasl-traffic-status-card", "category": "plugin", "description": "Lovelace Traffic Status Card for the HASL Platform", "etag_repository": "W/\"d409284f25f11a7d16962db7c9b0637930cd734b19d6be68667151b11bdb2e1f\"", "last_updated": "2020-03-04T12:20:16Z", "stargazers_count": 4, "topics": ["hasl", "sl", "stockholms-lokaltrafik", "traffic-status"], "last_fetched": 1695553534.223416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597517839": {"repository_manifest": {"name": "Orange \"Internet On the move\" Renault Home Assistant Integration", "homeassistant": "2023.1.6", "render_readme": true, "country": ["fr"]}, "full_name": "rexave/hass-orange-internet-on-the-move", "authors": ["@rexave"], "category": "integration", "description": "Home Assistant integration for Orange Intenet on the move", "domain": "orange_internet_on_the_move", "etag_repository": "W/\"e20a04d1bde0ba2d1bace079202a4802418e25d4f46aed44d036d8f3cab7ae97\"", "last_updated": "2023-05-06T16:49:32Z", "last_fetched": 1695554151.066851, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512922944": {"repository_manifest": {"name": "Czech Energy Spot Prices", "render_readme": true, "country": "CZ"}, "full_name": "rnovacek/homeassistant_cz_energy_spot_prices", "authors": ["@rnovacek"], "category": "integration", "description": "Home Assistant integration that provides current Czech electricity spot prices based on OTE.", "domain": "cz_energy_spot_prices", "etag_repository": "W/\"49383d55562ab734e1a799642a67338006421319a304cbe5ef0388515cb341eb\"", "last_updated": "2023-09-12T09:10:19Z", "stargazers_count": 50, "topics": ["electricity", "energy", "gas", "spot"], "last_fetched": 1695554152.160934, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172177543": {"repository_manifest": {"name": "Config Template Card", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "iantrich/config-template-card", "category": "plugin", "description": "\ud83d\udcdd Templatable Lovelace Configurations", "downloads": 44555, "etag_repository": "W/\"83df72f330918d42baeaa245407e36529b201a83cadb6997eb99eb86a641d2ba\"", "last_updated": "2023-04-30T12:39:08Z", "stargazers_count": 351, "last_fetched": 1695553535.037052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504880554": {"repository_manifest": {"name": "CyclePay for ESD/Hercules Laundry Rooms", "render_readme": true}, "full_name": "elahd/ha-cyclepay", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant Integration for ESD/Hercules CyclePay Laundry Rooms", "domain": "cyclepay", "etag_repository": "W/\"aafccdb81a7fcd40095ea1d2a36d2b8018b0ff44a3d12d5666cb8d84e01b08fe\"", "last_updated": "2023-09-18T18:35:01Z", "stargazers_count": 2, "topics": ["laundry"], "last_fetched": 1695553634.028676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220679143": {"repository_manifest": {"name": "HASL Departure Card", "filename": "hasl-departure-card.js", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/lovelace-hasl-departure-card", "category": "plugin", "description": "Lovelace Departure Card for the HASL Platform", "etag_repository": "W/\"1de9deaf505841a07e1391ece30640db5d0810fdc2ddaa6f5839efb3cc6af08b\"", "last_updated": "2023-06-12T13:18:32Z", "stargazers_count": 9, "topics": ["departures", "hasl", "sl", "stockholms-lokaltrafik"], "last_fetched": 1695553533.561109, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "330645002": {"repository_manifest": {"name": "Danfoss Ally", "render_readme": true, "homeassistant": "2022.1.0", "zip_release": true, "filename": "danfoss_ally.zip"}, "full_name": "MTrab/danfoss_ally", "authors": ["@MTrab"], "category": "integration", "description": "Danfoss Ally intragration for Home Assistant", "domain": "danfoss_ally", "downloads": 511, "etag_repository": "W/\"ba96eaadc18e9ac4e35dcca3462df60185a87ab02985b9d649eea962b2a5fff9\"", "last_updated": "2023-07-28T18:07:25Z", "stargazers_count": 24, "topics": ["climate", "homeassistant-custom-component", "thermostat"], "last_fetched": 1695554127.85959, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "299753146": {"repository_manifest": {"name": "Xiaomi Cloud Map Extractor", "render_readme": true, "zip_release": true, "filename": "xiaomi_cloud_map_extractor.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Xiaomi-Cloud-Map-Extractor", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This custom integration provides a way to present a live view of a map for Xiaomi (Roborock/Viomi/Roidmi/Dreame) vacuums without a need for rooting.", "domain": "xiaomi_cloud_map_extractor", "downloads": 17589, "etag_repository": "W/\"16f37b50f21446970fd190c6e0672cb5aed22802ef2254029575355cfdb4a2b9\"", "last_updated": "2023-09-23T08:38:26Z", "stargazers_count": 992, "topics": ["cloud", "dreame", "map", "roborock", "robot", "roidmi", "vacuum", "vacuum-map", "viomi", "xiaomi", "xiaomi-smart-home", "xiaomi-vacuum"], "last_fetched": 1695554145.898362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560307075": {"repository_manifest": {"name": "Aula", "country": "DK", "render_readme": true, "homeassistant": "2022.9.0", "zip_release": true, "filename": "aula.zip"}, "full_name": "scaarup/aula", "authors": ["@scaarup"], "category": "integration", "description": "Fetches information from Aula about your children ", "domain": "aula", "downloads": 688, "etag_repository": "W/\"35764d5fedc931635aef0e5d68304cb090a5db67e4626686e6d776c1a596b529\"", "last_updated": "2023-09-04T06:08:23Z", "stargazers_count": 32, "last_fetched": 1695554162.114486, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257005990": {"repository_manifest": {"name": "LG WebOS Remote Control", "content_in_root": true, "filename": "lg-remote-control.js", "render_readme": true}, "full_name": "madmicio/LG-WebOS-Remote-Control", "category": "plugin", "description": "Remote Control for LG TV WebOS", "etag_repository": "W/\"ec35db26893633207d97fbc8fa8b24727231a4f89ef6fa23076d65ea108086e9\"", "last_updated": "2023-07-06T08:41:00Z", "stargazers_count": 311, "last_fetched": 1695553545.867681, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "360213486": {"repository_manifest": {"name": "yi-hack Home Assistant integration", "render_readme": true}, "full_name": "roleoroleo/yi-hack_ha_integration", "authors": ["@roleoroleo"], "category": "integration", "description": "Home Assistant custom integration for Yi cameras: yi-hack-MStar, yi-hack-Allwinner, yi-hack-Allwinner-v2, yi-hack-v5 and sonoff-hack", "domain": "yi_hack", "etag_repository": "W/\"ad2f61be89364da423c45dc17b62e47351c406f44dbcace24eeb0be36405855e\"", "last_updated": "2023-08-26T13:43:10Z", "stargazers_count": 164, "topics": ["camera", "custom", "firmware", "hack", "rtsp", "yi"], "last_fetched": 1695554154.901157, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "344446335": {"repository_manifest": {"name": "Office 365 Integration", "zip_release": true, "filename": "o365.zip", "homeassistant": "2022.5.0", "persistent_directory": ".O365-token-cache", "render_readme": true}, "full_name": "RogerSelwyn/O365-HomeAssistant", "authors": ["@RogerSelwyn"], "category": "integration", "description": "Office 365 integration for Home Assistant", "domain": "o365", "downloads": 1928, "etag_repository": "W/\"c459a7b040e79e4ec7e8b6c24117921bba4e350c1480c3da54f12fb47f2c58b9\"", "last_updated": "2023-09-12T11:10:44Z", "stargazers_count": 99, "topics": ["homeassistant-custom-component", "microsoft", "o365"], "last_fetched": 1695554155.133409, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "172733314": {"repository_manifest": {"name": "HACS", "zip_release": true, "hide_default_branch": true, "homeassistant": "2022.11.0", "hacs": "0.19.0", "filename": "hacs.zip"}, "full_name": "hacs/integration", "authors": ["@ludeeus"], "category": "integration", "description": "HACS gives you a powerful UI to handle downloads of all your custom needs.", "domain": "hacs", "downloads": 426150, "etag_repository": "W/\"7e5734a84bb19a42cb49d5908a86146ce8100986b1f4eff9055ef6df8f404720\"", "last_updated": "2023-09-22T09:09:21Z", "stargazers_count": 3907, "topics": ["community", "package-manager"], "config_flow": true, "default_branch": "main", "installed": false, "last_commit": "53eaf9f", "last_version": "1.32.1", "manifest_name": "HACS", "open_issues": 11, "published_tags": ["1.32.1", "1.32.0", "1.31.0", "1.30.1", "1.30.0"], "releases": true, "version_installed": null, "last_fetched": 1695554184.340513, "first_install": true, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null}, "140618233": {"repository_manifest": {}, "full_name": "RobHofmann/HomeAssistant-GreeClimateComponent", "authors": ["@robhofmann"], "category": "integration", "description": "Custom Gree climate component written in Python3 for Home Assistant. Controls AC's supporting the Gree protocol.", "domain": "gree", "etag_repository": "W/\"210f59899676971e18b4bdf692fee9b2b7940402a4d847f50263edaa19c8339b\"", "last_updated": "2023-07-30T13:27:22Z", "stargazers_count": 223, "last_fetched": 1695554152.669814, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509260172": {"repository_manifest": {"name": "Curtain Card", "render_readme": true, "filename": "curtain-card.js"}, "full_name": "georgezhao2010/lovelace-curtain-card", "category": "plugin", "description": "Curtain card for Home Assistant Lovelace UI, to control your motor of cover entities.", "etag_repository": "W/\"a6fd895119dc7fa53b382448e5180204b3f4c28504766214357e197eb7e44d6d\"", "last_updated": "2023-08-17T10:44:47Z", "stargazers_count": 9, "topics": ["cover", "curtain", "frontend", "lovelave"], "last_fetched": 1695553532.731159, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "213346369": {"repository_manifest": {"name": "ECHONETLite Platform", "render_readme": true, "homeassistant": "2021.9.2"}, "full_name": "scottyphillips/echonetlite_homeassistant", "authors": ["@scottyphillips", "@nao-pon"], "category": "integration", "description": "A Home Assistant custom component for use with ECHONET enabled devices. ", "domain": "echonetlite", "etag_repository": "W/\"a3d9e4d8b69b8cb2bb7f3a8df75ec1098394eb5a88ff6daa5d3576847b6e1b56\"", "last_updated": "2023-09-23T12:38:36Z", "stargazers_count": 88, "topics": ["echonet-lite"], "last_fetched": 1695554162.27471, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193588464": {"repository_manifest": {"name": "Rozk\u0142adzik sensor", "country": "PL", "render_readme": true, "zip_release": true, "filename": "rozkladzik.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Rozkladzik", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses unofficial API to get data from https://www.rozkladzik.pl and provide information about departures for chosen stop.", "domain": "rozkladzik", "downloads": 294, "etag_repository": "W/\"b21a32275497d8ee58958f9a61823870a673cb6a127fae44e41d3a257a47dc33\"", "last_updated": "2023-09-18T16:14:28Z", "stargazers_count": 9, "topics": ["public-transport"], "last_fetched": 1695554145.623579, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261262884": {"repository_manifest": {"name": "Time Picker Card", "render_readme": true, "filename": "time-picker-card.js"}, "full_name": "GeorgeSG/lovelace-time-picker-card", "category": "plugin", "description": "\ud83d\udd70\ufe0f Time Picker Card for Home Assistant's Lovelace UI", "downloads": 7265, "etag_repository": "W/\"07651bd3366a2a26ca1434a4e9349a63fa1f588f8bd52c8e64bfb0b41f6e82fa\"", "last_updated": "2023-07-18T22:02:59Z", "stargazers_count": 188, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553532.752285, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294609880": {"repository_manifest": {"name": "BOM Radar Card", "render_readme": true, "filename": "bom-radar-card.js"}, "full_name": "Makin-Things/bom-radar-card", "category": "plugin", "description": "A rain radar card using the new tiled images from the Australian BOM", "downloads": 3047, "etag_repository": "W/\"5b812d8468f57071c200321092f601313985ef809161fe0466dafc80bc3453e4\"", "last_updated": "2023-04-29T21:26:23Z", "stargazers_count": 83, "topics": ["bom", "frontend", "meteorology", "radar", "weather"], "last_fetched": 1695553546.93752, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589430688": {"repository_manifest": {"name": "GNE PV Monitoring", "render_readme": true, "zip_release": true, "filename": "gne_pv_monitoring.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-GNE-PV-Monitoring", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This sensor uses official API to get data from GNE", "domain": "gne_pv_monitoring", "downloads": 79, "etag_repository": "W/\"bea75252352cbdcee5ce60e1802d2fa52727eda42534605c26d4c8cce760b4e5\"", "last_updated": "2023-07-07T02:53:36Z", "stargazers_count": 2, "topics": ["gne", "photovoltaic"], "last_fetched": 1695554143.840749, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "166045890": {"repository_manifest": {}, "full_name": "pippyn/Home-Assistant-Sensor-Afvalbeheer", "authors": ["@pippyn"], "category": "integration", "description": "Provides Home Assistant sensors for multiple Dutch and Belgium waste collectors", "domain": "afvalbeheer", "etag_repository": "W/\"43df03e323cb0307e771f1349e101a40096ff99cf3cb820290a045bf5cc25eef\"", "last_updated": "2023-08-22T09:30:03Z", "stargazers_count": 218, "topics": ["belgium", "dutch", "hassio-integration", "waste-collectors"], "last_fetched": 1695554145.734253, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637172632": {"repository_manifest": {"name": "Peaqnext sensors", "homeassistant": "2022.10.5", "render_readme": true, "zip_release": true, "filename": "peaqnext.zip"}, "full_name": "elden1337/hass-peaqnext", "authors": ["@elden1337"], "category": "integration", "description": "Utility sensors to help find the next best usage of your appliances", "domain": "peaqnext", "downloads": 70, "etag_repository": "W/\"4ddf051429f17f3af3a1e2f4107eaf772ae9e4cddf8278d0ede8580cfbc125cc\"", "last_updated": "2023-09-19T19:23:49Z", "stargazers_count": 6, "topics": ["energidataservice", "nordpool"], "last_fetched": 1695553636.066588, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424574671": {"repository_manifest": {"name": "SP110E RGB LED BLE Controller Integration", "homeassistant": "2021.11.0", "render_readme": true}, "full_name": "roslovets/SP110E-HASS", "authors": ["@roslovets"], "category": "integration", "description": "Control SP110E RGB LED BLE Controller from Home Assistant", "domain": "sp110e", "etag_repository": "W/\"c718e684a6b84ba0a1ef90be77cd6223b4e907f2b3488309efa65b781d91a3a3\"", "last_updated": "2022-09-04T12:58:32Z", "stargazers_count": 9, "topics": ["ble", "rgb", "sp110e"], "last_fetched": 1695554155.080976, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "338782385": {"repository_manifest": {"name": "Compal WiFi", "country": "CH", "zip_release": true, "filename": "compal_wifi.zip", "render_readme": true}, "full_name": "frimtec/hass-compal-wifi", "authors": ["@frimtec"], "category": "integration", "description": "Home Assistant component to switch WiFi on/off for Compal CH7465LG modem.", "domain": "compal_wifi", "downloads": 107, "etag_repository": "W/\"a99876f630767087eada954178ee596a0107b8b4fda6819606ca2650f8603bb2\"", "last_updated": "2023-09-04T16:30:08Z", "stargazers_count": 2, "topics": ["ch7465lg", "compal", "compal-wifi-switch", "switch", "wifi", "wlan"], "last_fetched": 1695553645.448692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366911690": {"repository_manifest": {"name": "Dahua", "hacs": "1.6.0", "homeassistant": "2021.7.0", "render_readme": true}, "full_name": "rroller/dahua", "authors": ["@rroller"], "category": "integration", "description": "Dahua Camera and Doorbell Home Assistant Integration", "domain": "dahua", "etag_repository": "W/\"f6a0f329880b324b09eb0f32af95dceab0fbe64b035222f354ed7a3e71ae5a10\"", "last_updated": "2023-09-09T15:23:27Z", "stargazers_count": 283, "topics": ["amcrest", "camera", "dahua", "doorbell", "ipcam", "lorex"], "last_fetched": 1695554156.003114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "622713177": {"repository_manifest": {"name": "GivTCP Power Flow Card", "render_readme": true, "filename": "givtcp-power-flow-card.js"}, "full_name": "VeniVidiVici/givtcp-power-flow-card", "category": "plugin", "description": "A power distribution card for Home Assistant specifically for GivTCP users", "downloads": 1552, "etag_repository": "W/\"7e012f85471ba2b567b8f18eaea504fb85f3ce6c51f2d85440c573faa1075d8b\"", "last_updated": "2023-09-18T08:26:39Z", "stargazers_count": 3, "topics": ["givenergy", "givtcp"], "last_fetched": 1695553567.539384, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379781545": {"repository_manifest": {"name": "Netgear WAX", "hacs": "1.6.0", "homeassistant": "2021.4.0", "render_readme": true}, "full_name": "rroller/netgear", "authors": ["@rroller"], "category": "integration", "description": "Netgear Home Assistant Integration", "domain": "netgear_wax", "etag_repository": "W/\"5e3948494eff579d7fb6cd3e7cda58e7fa0ae0c69364c4b54ccc78511a2f839c\"", "last_updated": "2023-09-16T21:18:31Z", "stargazers_count": 12, "topics": ["netgear", "wax", "wax-610", "wax-620", "wi-fi"], "last_fetched": 1695554156.244381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311913208": {"repository_manifest": {"name": "Gecko", "hacs": "0.24.0", "homeassistant": "2023.1.1"}, "full_name": "gazoodle/gecko-home-assistant", "authors": ["@gazoodle"], "category": "integration", "description": "Home Assistant integration for spas equipped with Gecko Alliance in.touch2 modules", "domain": "gecko", "etag_repository": "W/\"9a8151e313698e8efb9097d8b2bedc68e71068990fba0bfef1daf253f874bc8b\"", "last_updated": "2023-02-06T20:19:08Z", "stargazers_count": 45, "topics": ["gecko", "home-assistant-integration", "hot-tub", "intouch2", "jacuzzi", "spa"], "last_fetched": 1695553645.407224, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249381778": {"repository_manifest": {"name": "Local Tuya", "homeassistant": "0.116.0"}, "full_name": "rospogrigio/localtuya", "authors": ["@rospogrigio", "@postlund"], "category": "integration", "description": "local handling for Tuya devices", "domain": "localtuya", "etag_repository": "W/\"afbcfbdb3aac49eb93317d83d4178d2eff51c039c50e934b5028e77efa430208\"", "last_updated": "2023-09-22T20:28:50Z", "stargazers_count": 2096, "topics": ["localtuya", "tuya", "tuya-api"], "last_fetched": 1695554155.414089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544105569": {"repository_manifest": {"name": "BenQ projector", "homeassistant": "2022.11.0"}, "full_name": "rrooggiieerr/homeassistant-benqprojector", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for BenQ projectors over the serial interface.", "domain": "benqprojector", "etag_repository": "W/\"9624f900ecf65d6923b226a81f48e49bd8eff4e3c54787c62fd5be63573b1acf\"", "last_updated": "2023-05-12T10:18:57Z", "stargazers_count": 10, "topics": ["benq", "projector", "projector-control"], "last_fetched": 1695554156.678921, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373370853": {"repository_manifest": {"name": "Helium Blockchain", "render_readme": true}, "full_name": "rsnodgrass/hass-helium", "authors": ["@rsnodgrass"], "category": "integration", "description": "Helium blockchain sensors for Home Assistant", "domain": "helium", "etag_repository": "W/\"521843cb05df306579b0c845aa4827eeb2635d07acf87a8334fb8cc0ec70b030\"", "last_updated": "2023-04-11T15:56:11Z", "stargazers_count": 36, "topics": ["helium", "helium-blockchain", "lorawan", "lorawan-network"], "last_fetched": 1695554157.26307, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534750752": {"repository_manifest": {"name": "XY Screens projector screens and projector lifts"}, "full_name": "rrooggiieerr/homeassistant-xyscreens", "authors": ["@rrooggiieerr"], "category": "integration", "description": "Home Assistant integration for XY Screens projector screens and projector lifts over the RS-485 interface", "domain": "xyscreens", "etag_repository": "W/\"923ebe844772874f8b5ffe56fc1bf4dbe011b9903f9631038948b7c33bf6584b\"", "last_updated": "2023-08-24T19:50:48Z", "topics": ["projector-sceen", "xy-screens"], "last_fetched": 1695554157.119538, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454670742": {"repository_manifest": {"name": "AstroWeather Card", "render_readme": true, "filename": "astroweather-card.js"}, "full_name": "mawinkler/astroweather-card", "category": "plugin", "description": "Lovalace Card for the AstroWeather Integration", "etag_repository": "W/\"a24708c8e4a66b209fb70fa45ceca65104419e76a8a9310d50ecb019e3853987\"", "last_updated": "2023-09-24T08:48:37Z", "stargazers_count": 13, "topics": ["7timer", "astronomy", "forecast", "lovelace-card"], "last_fetched": 1695553549.270102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228299254": {"repository_manifest": {"name": "LUNOS Heat Recovery Ventilation", "render_readme": true}, "full_name": "rsnodgrass/hass-lunos", "authors": ["@rsnodgrass"], "category": "integration", "description": "LUNOS HRV Ventilation Fan Control for Home Assistant", "domain": "lunos", "etag_repository": "W/\"df2c25985562c143d4290682f99027f6145c5cc18eba1fd9ad75747f965cf111\"", "last_updated": "2023-04-22T05:12:08Z", "stargazers_count": 20, "topics": ["hrv", "hvac", "lunos", "smart-home-solutions", "ventilation"], "last_fetched": 1695554157.242445, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640244449": {"repository_manifest": {"name": "Pool Monitor Card", "content_in_root": true, "filename": "pool_monitor_card.js", "render_readme": true}, "full_name": "wilsto/pool-monitor-card", "category": "plugin", "description": "The \"Pool Monitor Card\" is a home assistant plugin that display information of 1 to 12 pre-defined sensors of your swimming pool : temperature, pH, ORP levels and TDS but also if you need them : salinity, CYA, calcium, phosphate, alkalinity, filter pressure , free chlorine, total chlorine", "etag_repository": "W/\"bdd1b8ee697e41b0f1e1791929936f33472042cb82f4f7d4490d2b32aab89dff\"", "last_updated": "2023-09-10T08:39:05Z", "stargazers_count": 25, "topics": ["lovelace-custom-card", "monitor", "pool"], "last_fetched": 1695553569.395443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200927325": {"repository_manifest": {"name": "Pool Math (Trouble Free Pool)", "render_readme": true}, "full_name": "rsnodgrass/hass-poolmath", "authors": ["@rsnodgrass"], "category": "integration", "description": "Pool Math for Home Assistant", "domain": "poolmath", "etag_repository": "W/\"90322a0d0649d00ffd1cfa58d8446427e0ea15616e249c58b895cd895cb27f2b\"", "last_updated": "2023-04-22T05:17:51Z", "stargazers_count": 23, "topics": ["pool", "swimming-pool"], "last_fetched": 1695554157.35857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "640556013": {"repository_manifest": {"name": "Energy Entity row", "render_readme": true, "filename": "energy-entity-row.js"}, "full_name": "zeronounours/lovelace-energy-entity-row", "category": "plugin", "description": "Lovelace HA entity row to integrate with energy-date-selection", "downloads": 1775, "etag_repository": "W/\"40f5b91ec15b0122a7750a18a7b4c09d30e37913b7d7bfbe966e0434aacd19b2\"", "last_updated": "2023-05-16T06:26:50Z", "topics": ["energy-consumption", "lovelace-entity-row"], "last_fetched": 1695553569.407408, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "149443194": {"repository_manifest": {"name": "ADT Pulse", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "rsnodgrass/hass-adtpulse", "category": "integration", "description": "ADT Pulse sensor for Home Assistant", "domain": "adtpulse", "etag_repository": "W/\"11009d264f843c83b30bd171f1717246138c5797501d44ae2f0b70eb75eeecab\"", "last_updated": "2023-05-20T09:28:43Z", "stargazers_count": 12, "topics": ["adt-pulse"], "last_fetched": 1695554157.161351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286270157": {"repository_manifest": {"name": "Scheduler Card", "render_readme": true, "filename": "scheduler-card.js"}, "full_name": "nielsfaber/scheduler-card", "category": "plugin", "description": "HA Lovelace card for control of scheduler entities", "downloads": 7109, "etag_repository": "W/\"38631ef2f80fbd8a9d548186ae9e5087564470a5274ebb3c225c489fd7017661\"", "last_updated": "2023-09-18T04:19:44Z", "stargazers_count": 671, "topics": ["assistant", "automation", "card", "home", "schedule", "scheduler", "sunrise", "sunset", "week", "weekly"], "last_fetched": 1695553552.033664, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "205416078": {"repository_manifest": {"name": "SensorPush", "render_readme": true}, "full_name": "rsnodgrass/hass-sensorpush", "authors": ["@rsnodgrass"], "category": "integration", "description": "SensorPush integration for Home Assistant", "domain": "sensorpush", "etag_repository": "W/\"9d72587b28694fe6ee7309416b5fe19883a10c5ee78cea324681bbf910ac2073\"", "last_updated": "2022-11-16T07:33:19Z", "stargazers_count": 29, "topics": ["iot"], "last_fetched": 1695554157.611259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373857882": {"repository_manifest": {"name": "Entities Button Group", "render_readme": true}, "full_name": "wassy92x/lovelace-entities-btn-group", "category": "plugin", "description": "A custom card for Home Assistant to group multiple buttons", "downloads": 2089, "etag_repository": "W/\"8a7d7ab27e4b9c7e46a181ec9a4d56ba1d02e3f6fd086dc82e2cb447b8f3bb93\"", "last_updated": "2023-05-22T20:47:26Z", "stargazers_count": 8, "topics": ["lovelace-card"], "last_fetched": 1695553569.232019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "279861920": {"repository_manifest": {"name": "Reverso TTS / tts", "render_readme": true}, "full_name": "rt400/ReversoTTS-HA", "authors": ["@yuval_mejahez"], "category": "integration", "description": "ReversoTTS component for HomeAssistant", "domain": "reversotts", "etag_repository": "W/\"cfc43e1496eadc2274440923dacc2a578596adf483272a91b1c952dc59eb6f4f\"", "last_updated": "2021-05-23T17:14:46Z", "stargazers_count": 37, "topics": ["reversotts", "tts"], "last_fetched": 1695554158.32553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "505459170": {"repository_manifest": {"name": "TV Remote Card (with touchpad and haptic feedback)", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "usernein/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card (with touchpad and haptic feedback)", "downloads": 9298, "etag_repository": "W/\"5548359d9fa8a5a9ae72f27a277ba1c2c6eb069143f3c35d04ebfedb7e6cbb83\"", "last_updated": "2023-05-19T10:50:30Z", "stargazers_count": 74, "topics": ["automation", "card", "remote", "tv"], "last_fetched": 1695553567.256466, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235385658": {"repository_manifest": {"name": "Xantech/Dayton Audio/Sonance Multi-Zone Amp", "render_readme": true}, "full_name": "rsnodgrass/hass-xantech", "authors": [""], "category": "integration", "description": "Xantech Multi-Zone Matrix Audio for Home Assistant", "domain": "xantech", "etag_repository": "W/\"6c1631addc22a5415cc966d743e1946c7d828c20f146bd9291764d4f8c98af69\"", "last_updated": "2023-04-22T05:23:41Z", "stargazers_count": 16, "topics": ["audiophile", "xantech"], "last_fetched": 1695554157.827982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373832981": {"repository_manifest": {"name": "Digital Clock", "render_readme": true}, "full_name": "wassy92x/lovelace-digital-clock", "category": "plugin", "description": "A custom digital clock card for Home Assistant", "downloads": 16018, "etag_repository": "W/\"0a957fa467f1ae7d7baaf963f7426271ceb6c409585501cfd7dc6d4473258405\"", "last_updated": "2023-05-22T20:45:26Z", "stargazers_count": 50, "topics": ["lovelace-card"], "last_fetched": 1695553569.187803, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "153006394": {"repository_manifest": {}, "full_name": "rt400/School-Vacation", "authors": ["@yuval_mejahez"], "category": "integration", "description": null, "domain": "school_holidays", "etag_repository": "W/\"4482d19e1a7362d5ed28ee5a6c238c58819c9a27ef744c38f28e632388363a3e\"", "last_updated": "2023-09-17T18:09:41Z", "stargazers_count": 7, "last_fetched": 1695554158.609302, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497322919": {"repository_manifest": {"name": "Upcoming Media Card", "render_readme": true}, "full_name": "NemesisRE/upcoming-media-card", "category": "plugin", "description": "\ud83d\udcfa A card to display upcoming episodes and movies from services like: Plex, Kodi, Radarr, Sonarr, and Trakt.", "downloads": 7779, "etag_repository": "W/\"15f53e9e6371679343e9c31d20ce641b897f990bf5a9242e0d15b580f2ff605e\"", "last_updated": "2022-05-31T15:30:28Z", "stargazers_count": 20, "topics": ["customization"], "last_fetched": 1695553550.906177, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283542587": {"repository_manifest": {"name": "Lovelace Clock Card", "render_readme": true}, "full_name": "Villhellm/lovelace-clock-card", "category": "plugin", "description": "Basic analog clock for Lovelace", "etag_repository": "W/\"0c75a043ebd2b18903e5ca52b37600ef8b2d50b94f608e286a8715db2ed74589\"", "last_updated": "2020-11-24T17:31:42Z", "stargazers_count": 44, "topics": ["analog", "clock"], "last_fetched": 1695553567.318005, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "242528119": {"repository_manifest": {"name": "RuuviTag Sensor", "render_readme": true}, "full_name": "ruuvi-friends/ruuvi-hass.io", "authors": ["@smaisidoro"], "category": "integration", "description": "Ruuvi tag BLE sensor for Home Assistant.", "domain": "ruuvi", "etag_repository": "W/\"2a4b8954e48fe577fecdece0b88ca6e103883f231fe0097cbe330cac78149d6c\"", "last_updated": "2022-01-25T13:23:39Z", "stargazers_count": 43, "topics": ["ruuvi-ble-devices", "ruuvitag", "ruuvitag-sensor"], "last_fetched": 1695554159.311124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257123327": {"repository_manifest": {"name": "LG WebOS channel pad", "filename": "card-channel-pad.js", "render_readme": true}, "full_name": "madmicio/channel-pad", "category": "plugin", "description": "channel pad for LG TV Remote control", "etag_repository": "W/\"d1200fb40eb709e3e9b1590db1f61b53a688f5f45aae8a5b05e6aacb9d7b3746\"", "last_updated": "2020-05-28T19:17:53Z", "stargazers_count": 19, "topics": ["channel-pad", "lg", "tv-remote"], "last_fetched": 1695553545.661905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259904390": {"repository_manifest": {"name": "Jumbo Card", "filename": "jumbo-card.js"}, "full_name": "Voxxie/lovelace-jumbo-card", "category": "plugin", "description": "A custom lovelace card for the custom Jumbo component.", "downloads": 5675, "etag_repository": "W/\"43ba8cb9e26df434296cbee4ba1d4e7aed4b2b6d8086b8997357cfcab8b7029e\"", "last_updated": "2020-05-04T10:11:59Z", "stargazers_count": 2, "topics": ["jumbo", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553569.034804, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "295123287": {"repository_manifest": {"name": "Jewish Sabbaths Holidays / sensor", "render_readme": true}, "full_name": "rt400/Jewish-Sabbaths-Holidays", "authors": ["@yuval_mejahez"], "category": "integration", "description": "Jewish Shabbat Yomtov and Holidays times and event", "domain": "hebcal", "etag_repository": "W/\"39979a888b3b517bbde6f319b5f6bca4e571716db65863c1d30e6e031b05a57a\"", "last_updated": "2023-09-13T08:09:52Z", "stargazers_count": 13, "topics": ["holidays", "jewish", "shabbat"], "last_fetched": 1695554158.195381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246549747": {"repository_manifest": {"name": "Atomic Calendar Revive", "filename": "atomic-calendar-revive.js", "country": ["GB"]}, "full_name": "totaldebug/atomic-calendar-revive", "category": "plugin", "description": "An advanced calendar card for Home Assistant Lovelace.", "downloads": 5709, "etag_repository": "W/\"c8e230da29d7f5d2aeb9079cdf9fef4e74967e51fb9b43172ed8e1a493e79d36\"", "last_updated": "2023-09-24T08:16:18Z", "stargazers_count": 302, "topics": ["calendar", "card", "javascript", "module"], "last_fetched": 1695553567.876244, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531686897": {"repository_manifest": {"name": "dolphin", "render_readme": true}, "full_name": "0xAlon/dolphin", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for Dolphin Boiler - Smart Water Heating Control", "domain": "dolphin", "etag_repository": "W/\"216963c4a1c033d195c7bdfd1eec72d025cf93a15537f980272d2d99340f9202\"", "last_updated": "2023-01-09T11:11:30Z", "stargazers_count": 5, "last_fetched": 1695553569.708813, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603834302": {"repository_manifest": {"name": "ldata", "render_readme": true, "homeassistant": "2021.12.4"}, "full_name": "rwoldberg/ldata-ha", "authors": ["@rwoldberg"], "category": "integration", "description": "Home Assistant Integration for Levition LDATA", "domain": "ldata", "etag_repository": "W/\"61b9fd1462f3339e7f86fc3ac37b50a11e06a309dd481f3f9d24fb671761b5f7\"", "last_updated": "2023-09-01T22:52:16Z", "stargazers_count": 14, "topics": ["ldata", "leviton"], "last_fetched": 1695554159.361094, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "452251255": {"repository_manifest": {"name": "Browser Control Card", "content_in_root": true, "filename": "browser-control-card.js", "render_readme": "true"}, "full_name": "mathoudebine/homeassistant-browser-control-card", "category": "plugin", "description": "Control your browser from a Home Assistant lovelace card: full screen, disable screen lock, zoom, reload page...", "downloads": 3574, "etag_repository": "W/\"ee2a885133c5c748388ca7cd02c53abe70146c32ae4e57bf8b3aa3ee4a504808\"", "last_updated": "2022-04-15T16:22:59Z", "stargazers_count": 8, "topics": ["browser", "browser-control", "card", "fullscreen", "lock", "refresh", "reload", "sleep", "wake-on-lan", "zoom"], "last_fetched": 1695553548.972501, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526379993": {"repository_manifest": {"name": "tami4edge", "render_readme": true}, "full_name": "0xAlon/tami4edge", "authors": ["@0xAlon"], "category": "integration", "description": "Home Assistant Integration for tami4edge", "domain": "tami4edge", "etag_repository": "W/\"5c2c93059013aa10ace5e418a0b60af9fdea34927d381f588b94d120b0cc132e\"", "last_updated": "2023-07-06T22:11:28Z", "stargazers_count": 9, "last_fetched": 1695553570.026497, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235915302": {"repository_manifest": {"name": "Marta / Breeze Card", "render_readme": true}, "full_name": "ryanmac8/Home-Assistant-Marta", "category": "integration", "description": "Custom Home Assistant sensor for the Marta/Breeze Card.", "domain": "marta", "etag_repository": "W/\"eb69eaf83dc6c8e4c17dcd62708070004fb6d073e272335252292c1a5330bf9a\"", "last_updated": "2021-05-13T14:56:54Z", "stargazers_count": 3, "topics": ["breeze-card", "marta"], "last_fetched": 1695554159.495108, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488931467": {"repository_manifest": {"name": "BVG (Berlin Public Transport)", "hacs": "1.6.0", "country": ["DE"], "homeassistant": "0.118.0"}, "full_name": "ryanbateman/bvg-sensor", "authors": ["@ryanbateman"], "category": "integration", "description": "A HomeAssistant / HACS integration of Berlin Public Transport (BVG) ", "domain": "bvg_berlin_public_transport", "etag_repository": "W/\"a6e447d6f2969fcbc19e421ba5b99c9009f1f5fde06f53b33d8203bf54b26bf7\"", "last_updated": "2023-06-04T15:02:47Z", "stargazers_count": 15, "topics": ["berlin", "bvg", "public-transport"], "last_fetched": 1695554159.425941, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "329411371": {"repository_manifest": {"name": "HA Dashboard", "render_readme": true}, "full_name": "wassy92x/lovelace-ha-dashboard", "category": "plugin", "description": "A custom dashboard for Home Assistant with sidebar", "downloads": 2975, "etag_repository": "W/\"4c458c24032dbb6ecd889fcf91af69596eb18949e4c5b6cd1bccd2639c023d22\"", "last_updated": "2023-04-27T09:59:32Z", "stargazers_count": 22, "last_fetched": 1695553569.214102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463623003": {"repository_manifest": {"name": "Rainforest EMU-2", "homeassistant": "2021.8.0", "render_readme": true}, "full_name": "ryanwinter/hass-rainforest-emu-2", "authors": ["@ryanwinter"], "category": "integration", "description": "Intergration for the Rainforest EMU-2 energy monitor", "domain": "rainforest_emu_2", "etag_repository": "W/\"4f3e678ee6fcc45747a29553489b5732534fc2eead2247bb40f97e77a1940257\"", "last_updated": "2023-07-03T22:39:24Z", "stargazers_count": 23, "topics": ["energy"], "last_fetched": 1695554159.852932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "321773656": {"repository_manifest": {"name": "themable-grid", "render_readme": true}, "full_name": "nervetattoo/themable-grid", "category": "plugin", "description": "\ud83c\udc39 Lovelace responsive grid card that can be tweaked in your theme definition.", "downloads": 2141, "etag_repository": "W/\"f0e9eef0e1f1b61e495afefa1c540c7ac8b73e990c40f4e1934226ade4da9fc6\"", "last_updated": "2022-12-21T10:40:03Z", "stargazers_count": 26, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553551.29688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "124688531": {"repository_manifest": {"name": "UPnP Availability", "render_readme": true}, "full_name": "rytilahti/homeassistant-upnp-availability", "authors": ["@rytilahti"], "category": "integration", "description": "UPnP Availability sensor for Home Assistant", "domain": "upnp_availability", "etag_repository": "W/\"acffd9cf3f76afa967e379cf389cb48df2b45bbef147edb3ad297e722f3d7827\"", "last_updated": "2023-09-16T17:33:13Z", "stargazers_count": 17, "topics": ["ssdp", "upnp"], "last_fetched": 1695554159.901625, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501725479": {"repository_manifest": {"name": "Home Assistant Swipe Navigation", "render_readme": true, "filename": "swipe-navigation.js"}, "full_name": "zanna-37/hass-swipe-navigation", "category": "plugin", "description": "\u2194\ufe0f Swipe through Home Assistant Dashboard views on mobile.", "downloads": 2782, "etag_repository": "W/\"e1e8406697ae04940b16fea6852f818ed127b1f83cde72558def96bcc4fd2624\"", "last_updated": "2023-09-21T18:36:03Z", "stargazers_count": 156, "topics": ["navigation", "swipe"], "last_fetched": 1695553569.520695, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "313759590": {"repository_manifest": {"name": "Mint Mobile", "render_readme": true}, "full_name": "ryanmac8/HA-Mint-Mobile", "authors": ["@ryanmac8"], "category": "integration", "description": "Mint Mobile Integration for Data Usage Monitoring", "domain": "mintmobile", "etag_repository": "W/\"753e77be5a64f403c59d4b56b069d1c13b65f267b83eff73b00028108e794945\"", "last_updated": "2023-09-19T20:15:06Z", "stargazers_count": 7, "topics": ["automation"], "last_fetched": 1695554159.496073, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195308808": {"repository_manifest": {}, "full_name": "safepay/sensor.fronius", "authors": ["@safepay"], "category": "integration", "description": "A Fronius Sensor for Home Assistant", "domain": "fronius_inverter", "etag_repository": "W/\"203cbee34e383767211db72555eaf745081fa41deb97df7ad9f84a59935a1fce\"", "last_updated": "2023-03-05T11:39:25Z", "stargazers_count": 71, "last_fetched": 1695554160.311149, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474183846": {"repository_manifest": {"name": "HA-Mila", "render_readme": true}, "full_name": "sanghviharshit/ha-mila", "authors": ["@sanghviharshit", "@simbaja"], "category": "integration", "description": "\ud83c\udfe1 \ud83d\udca8 Home Assistant custom component for Mila Air Purifier (Unofficial)", "domain": "mila", "etag_repository": "W/\"4e9f35eb1268671af5b6d1f83b8ebaa154d426f2807b89be34dc7f387edfc1de\"", "last_updated": "2023-09-11T16:16:05Z", "stargazers_count": 31, "topics": ["air-purifier", "air-quality", "air-quality-sensor", "mila"], "last_fetched": 1695554161.364402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332589148": {"repository_manifest": {"name": "Big Slider Card", "render_readme": true, "filename": "big-slider-card.js"}, "full_name": "nicufarmache/lovelace-big-slider-card", "category": "plugin", "description": "A card with a big slider for light entities in Home Assistant", "downloads": 1615, "etag_repository": "W/\"b184371b635630d549c3a95eba7a48b5c4b0d687c207e1fcd5d320540068baff\"", "last_updated": "2023-09-15T16:42:45Z", "stargazers_count": 28, "topics": ["big-slider", "card", "light", "lovelace-card", "lovelace-custom-card", "lovelace-slider", "slider", "slider-card"], "last_fetched": 1695553551.506692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194971711": {"repository_manifest": {}, "full_name": "safepay/sensor.willyweather", "authors": ["@safepay"], "category": "integration", "description": "A WillyWeather Australian Bureau of Meteorology (BoM) integration for Home Assistant", "domain": "willyweather", "etag_repository": "W/\"52f59d6d54fc0f37a720b854bb9fc5aa4a56cad9e655e67fa72f79eac4da3661\"", "last_updated": "2022-08-12T23:15:46Z", "stargazers_count": 13, "last_fetched": 1695554160.331424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "540873855": {"repository_manifest": {"name": "VPD Chart card", "render_readme": true, "filename": "vpdchart-card.js"}, "full_name": "vpdchart/vpdchart-card", "category": "plugin", "description": "A VPD chart card for Home Assistant", "etag_repository": "W/\"dcadc6601861b62c4f382ccd56331e84713823ab79969f01a98c25a43c38141e\"", "last_updated": "2023-05-16T09:22:26Z", "stargazers_count": 13, "topics": ["vpd", "vpdchart"], "last_fetched": 1695553570.105126, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454942078": {"repository_manifest": {"name": "Tenda AC23 Router Device Tracker", "render_readme": true}, "full_name": "sakowicz/home-assistant-tenda-tracker", "authors": ["@sakowicz"], "category": "integration", "description": "Track your devices via Tenda AC23 router using Home Assistant's device tracker", "domain": "tenda_tracker", "etag_repository": "W/\"441343593d825fbdd6fde4df720e6169aa6cdde46db0b4022e2d5c0a97fc5225\"", "last_updated": "2022-06-01T06:10:25Z", "stargazers_count": 4, "topics": ["device-tracker", "home", "tenda", "tenda-ac23", "tracker"], "last_fetched": 1695554160.727226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "526408682": {"repository_manifest": {"name": "Team Tracker Card", "filename": "ha-teamtracker-card.js", "render_readme": true, "homeassistant": "0.95.4", "country": ["US"]}, "full_name": "vasqued2/ha-teamtracker-card", "category": "plugin", "description": "A Home Assistant frontend custom card that will display real-time updates for teams tracked with the ha-teamtracker integration. Has custom in-game layouts for football, baseball, basketball, hockey, soccer, golf, tennis, racing, and mma.", "etag_repository": "W/\"f5b0f756aa1fe7fd91b586421015fbbd76c5cc89ac9c34ebc63f309a3a3bdf6e\"", "last_updated": "2023-07-16T22:09:57Z", "stargazers_count": 39, "topics": ["baseball", "basketball", "football", "golf", "hockey", "mma", "racing", "scoreboard", "soccer", "sports", "teamtracker", "tennis", "volleyball"], "last_fetched": 1695553567.373651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "595397764": {"repository_manifest": {"name": "Custom Templates", "render_readme": true, "zip_release": true, "filename": "custom_templates.zip"}, "full_name": "PiotrMachowski/Home-Assistant-custom-components-Custom-Templates", "authors": ["@PiotrMachowski"], "category": "integration", "description": "This integration adds possibility to use new functions in Home Assistant Jinja2 templating engine.", "domain": "custom_templates", "downloads": 1088, "etag_repository": "W/\"9856573dac74869637f807ee5c73bb879027667159f1963ca26f0c1ad8defdb1\"", "last_updated": "2023-07-11T15:48:31Z", "stargazers_count": 17, "topics": ["jinja2", "jinja2-templates"], "last_fetched": 1695554143.577012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224374747": {"repository_manifest": {"name": "Phicomm DC1", "country": "CN"}, "full_name": "5high/phicomm-dc1-homeassistant", "category": "integration", "description": "\u6590\u8bafDC1\u63d2\u6392\u63a5\u5165Home Assistant\u63d2\u4ef6\uff0c\u672c\u63d2\u4ef6\u539f\u4f5c\u8005NETYJ\uff0c\u6b64\u5904\u4ec5\u4e3aHACS\u5b89\u88c5\u65b9\u4fbf\u4e4b\u7528\u3002", "domain": "phicomm_dc1", "etag_repository": "W/\"17a424f16c02fb0fc26fadb95bad5a4b49fa70d8ca082d8d1086c9a490cb0c0c\"", "last_updated": "2021-06-04T14:08:17Z", "stargazers_count": 13, "last_fetched": 1695553571.256712, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "627734223": {"repository_manifest": {"name": "Monarch", "country": ["US"], "render_readme": true}, "full_name": "sanghviharshit/ha-monarchmoney", "authors": ["@sanghviharshit"], "category": "integration", "description": "\ud83d\udcb0\ud83d\udcb2\ud83c\udfe0\ud83d\udcb3\ud83c\udfe6 Integration for Monarch in Home Assistant", "domain": "monarchmoney", "etag_repository": "W/\"99bfa47560c7526ae969a327daaf60fc8f30910b0b0687d1bbf1429f0c557b1d\"", "last_updated": "2023-07-10T23:30:52Z", "stargazers_count": 3, "topics": ["finance", "monarch", "monarchmoney", "money"], "last_fetched": 1695554161.424696, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "424346523": {"repository_manifest": {"name": "Centrometal Boiler System", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "9a4gl/hass-centrometal-boiler", "authors": ["@9a4gl"], "category": "integration", "description": "Home Assistant custom component integration for Centrometal Boiler System", "domain": "centrometal_boiler", "etag_repository": "W/\"dc04ae75992f4973f9eeec542f0096cdeca8d0006bb25402330590aaca3ee23f\"", "last_updated": "2023-09-11T12:33:23Z", "stargazers_count": 2, "topics": ["centrometal", "peltec"], "last_fetched": 1695553571.636982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "417400028": {"repository_manifest": {"name": "Smart thermostat (PID)", "render_readme": true, "homeassistant": "0.104.2"}, "full_name": "ScratMan/HASmartThermostat", "authors": ["@ScratMan"], "category": "integration", "description": "Smart Thermostat with PID controller for HomeAssistant", "domain": "smart_thermostat", "etag_repository": "W/\"0bbea89d81424b5c4b31ec7a4e5d854c860c35aaf9fab63d97fd0851ab091998\"", "last_updated": "2023-09-23T22:48:27Z", "stargazers_count": 242, "topics": ["air-conditioner", "heater", "heater-control", "heater-controller", "heating", "heating-control", "heating-controller", "pid-controller", "smart-thermostat", "thermostat"], "last_fetched": 1695554162.557049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402333014": {"repository_manifest": {"name": "openWB MQTT", "render_readme": true}, "full_name": "a529987659852/openwbmqtt", "authors": ["@a529987659852"], "category": "integration", "description": "Custom component for home assistant supporting openWB wallbox", "domain": "openwbmqtt", "etag_repository": "W/\"31d581334e7b8a90782ee3bb86183f48f770dd39c73569aaec5e1369842e2b4c\"", "last_updated": "2023-05-01T07:59:04Z", "stargazers_count": 26, "topics": ["mqtt"], "last_fetched": 1695553571.52866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "303827752": {"repository_manifest": {"homeassistant": "2023.1.0", "name": "TryFi Dog Monitor", "render_readme": true}, "full_name": "sbabcock23/hass-tryfi", "authors": ["@sbabcock23"], "category": "integration", "description": "Home Assistant integration for TryFi Dog Collar GPS monitoring.", "domain": "tryfi", "etag_repository": "W/\"3861e844a3a611c9bd12722e96cf66773b9d0db23ef3b7a76beef63473c0bd38\"", "last_updated": "2023-04-12T22:01:49Z", "stargazers_count": 48, "topics": ["dog", "dog-collar", "gps", "iot", "tryfi"], "last_fetched": 1695554161.688479, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234514524": {"repository_manifest": {"name": "Sonos Alarm"}, "full_name": "AaronDavidSchneider/SonosAlarm", "category": "integration", "description": "HomeAssistant custom component to control your SONOS Alarm", "domain": "sonos_alarm", "etag_repository": "W/\"d6ed794ec19d329ca42d8e73d07faf1535e6fe249e0b8fcef0af9c6acd2e20ef\"", "last_updated": "2021-05-25T16:33:27Z", "stargazers_count": 22, "last_fetched": 1695553572.268017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585145942": {"repository_manifest": {"name": "iRTrans", "hacs": "1.6.0", "homeassistant": "0.118.0", "render_readme": true, "zip_release": true, "filename": "irtrans.zip"}, "full_name": "schwarzenbergf/irtrans", "authors": ["@schwarzenbergf"], "category": "integration", "description": "Integration for IRTrans Ethernet devices (LAN DB)", "domain": "irtrans", "downloads": 120, "etag_repository": "W/\"8ac8093920badba0fc6b6c306f0f1f6e33c878c6a3b888920ff063edaad4f2a9\"", "last_updated": "2023-09-18T01:31:56Z", "stargazers_count": 1, "topics": ["infrared-blaster", "infrared-control"], "last_fetched": 1695554161.599525, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577620239": {"repository_manifest": {"name": "Cleanmate", "homeassistant": "2022.12.0"}, "full_name": "albinmedoc/ha-cleanmate", "authors": ["@albinmedoc"], "category": "integration", "description": "Let Home Assistant take controll over your Cleanmate vacuum", "domain": "cleanmate", "etag_repository": "W/\"7a0da805aff001f97e26fcece9d578f27b6e679270bd413a68ae5f2faa072aa4\"", "last_updated": "2023-03-06T22:56:36Z", "stargazers_count": 1, "topics": ["cleanmate", "custom-integration"], "last_fetched": 1695553574.156042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228579545": {"repository_manifest": {"name": "Orbit BHyve", "homeassistant": "2021.12.4", "render_readme": true}, "full_name": "sebr/bhyve-home-assistant", "authors": ["@sebr"], "category": "integration", "description": "Orbit BHyve custom component for Home Assistant", "domain": "bhyve", "etag_repository": "W/\"6307d30c743bef9603c43ad49593076afdf67661b415903e4ed70de5755070ec\"", "last_updated": "2023-09-05T15:56:49Z", "stargazers_count": 218, "topics": ["bhyve", "home-assistant-component", "irrigation", "orbit", "orbit-bhyve"], "last_fetched": 1695554163.091407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "512213802": {"repository_manifest": {"homeassistant": "2022.6.0", "name": "Cecotec Conga 5290", "render_readme": true}, "full_name": "alemuro/ha-cecotec-conga", "authors": ["@alemuro"], "category": "integration", "description": "Cecotec Conga - Custom Component for Home Assistant", "domain": "cecotec_conga", "etag_repository": "W/\"01082d9cd268fb49e1e3c54a7000876df198524a447972dcce148e0445750210\"", "last_updated": "2023-07-01T09:09:09Z", "stargazers_count": 4, "topics": ["automation", "cecotec", "conga"], "last_fetched": 1695553574.349414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227452940": {"repository_manifest": {"name": "Wyze"}, "full_name": "SecKatie/ha-wyzeapi", "authors": ["@SecKatie"], "category": "integration", "description": "Home Assistant Integration for Wyze devices.", "domain": "wyzeapi", "etag_repository": "W/\"8be480919a0573a2e615d0c70be3b4573be6b08f793c135443ff1e98cd820975\"", "last_updated": "2023-08-22T03:43:43Z", "stargazers_count": 626, "topics": ["bulb", "switch", "wyze", "wyze-bulbs", "wyze-switchs"], "last_fetched": 1695554163.750706, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366713850": {"repository_manifest": {"name": "Pirate Weather", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "alexander0042/pirate-weather-ha", "authors": ["@alexander0042"], "category": "integration", "description": "Replacement for the default Dark Sky Home Assistant integration using Pirate Weather ", "domain": "pirateweather", "etag_repository": "W/\"0f1aeb95d11f4c9b6193e92edcc6df9e722b4f1e8a76f225bb2d6078759582c8\"", "last_updated": "2023-07-15T01:18:55Z", "stargazers_count": 281, "topics": ["darksky-api", "weather-api"], "last_fetched": 1695553574.485308, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "530452578": {"repository_manifest": {"name": "FlashForge Adventurer 3", "render_readme": true, "homeassistant": "2022.6", "hacs": "1.26"}, "full_name": "modrzew/hass-flashforge-adventurer-3", "authors": ["@modrzew"], "category": "integration", "description": "Home Assistant integration providing support for the FlashForge Adventurer 3 3D printer.", "domain": "flashforge_adventurer_3", "etag_repository": "W/\"7a773592e32f4e0fd649ab9f83e8c61dc17ef7a07aa83e730d64ea22c09e981a\"", "last_updated": "2023-05-22T22:25:50Z", "stargazers_count": 13, "topics": ["flashforge", "flashforge-adventurer"], "last_fetched": 1695554124.287977, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "651597909": {"repository_manifest": {"name": "pfSense gateways monitoring", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "sdrapha/home-assistant-custom-components-pfsense-gateways", "authors": ["@sdrapha"], "category": "integration", "description": "Monitor and react on your pfSense gateway's status with Home Assistant.", "domain": "pfsense_gateways", "etag_repository": "W/\"71a97a888092dfa153103cf0c47414d7fe056b1f184d0b5e3d309d94f4775afd\"", "last_updated": "2023-06-09T17:48:04Z", "stargazers_count": 1, "topics": ["hassio-integration", "pfsense"], "last_fetched": 1695554162.417692, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "374314958": {"repository_manifest": {"name": "ABB Power-One PVI SunSpec", "render_readme": true, "homeassistant": "2023.9.2"}, "full_name": "alexdelprete/ha-abb-powerone-pvi-sunspec", "authors": ["@alexdelprete"], "category": "integration", "description": "HA Custom Component to integrate data from ABB/Power-One/FIMER PV Inverters that support SunSpec Modbus (Sunspec M1, M101, M103, M160), natively or through the VSN300 wifi logger card.", "domain": "abb_powerone_pvi_sunspec", "etag_repository": "W/\"1bb83360707cc4f3b5703defd03b594a1ce7ef6c6977629d9d5e59e176c730c0\"", "last_updated": "2023-09-18T12:44:41Z", "stargazers_count": 21, "topics": ["abb", "fimer", "home-assistant-component", "inverter", "modbus", "modbus-tcp", "power-one", "sunspec"], "last_fetched": 1695553575.715601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "478078274": {"repository_manifest": {"name": "SST Cloud integration", "homeassistant": "2021.5.0", "country": "RU"}, "full_name": "sergeylysov/sst_cloud", "authors": ["@sergeylysov"], "category": "integration", "description": "Unofficial SST Cloud integration for Home Assistant", "domain": "sst_cloud", "etag_repository": "W/\"23567d9853231b0fc09f5d7fbbf06ea3aefa7c6fafde8006f36252fad362dd83\"", "last_updated": "2023-09-07T14:38:22Z", "stargazers_count": 27, "topics": ["iot", "neptun", "sst"], "last_fetched": 1695554163.942497, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577071460": {"repository_manifest": {"name": "pH meter", "content_in_root": true, "filename": "ph_meter.js", "render_readme": true}, "full_name": "madmicio/ph-meter-temperature", "category": "plugin", "description": "Ph meter, temperature, tds, ec cl & salinity for fish tank and swimming pool", "etag_repository": "W/\"d70cea0b51e4ef314330b088903f0fe1e770bf1255654ba9385fb325ea571c96\"", "last_updated": "2023-04-14T11:33:19Z", "stargazers_count": 10, "topics": ["ph-meter"], "last_fetched": 1695553546.233458, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222118751": {"repository_manifest": {"name": "Sonoff LAN", "render_readme": true}, "full_name": "AlexxIT/SonoffLAN", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Sonoff Devices with eWeLink (original) firmware over LAN and/or Cloud from Home Assistant", "domain": "sonoff", "etag_repository": "W/\"0c4d6887473ee6c5ae03933ec9b3541789d44ed3db99814f84a29fe319adf85b\"", "last_updated": "2023-09-08T08:48:55Z", "stargazers_count": 2215, "topics": ["ewelink", "sonoff"], "last_fetched": 1695553575.847076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220482107": {"repository_manifest": {"name": "HP Printers Integration", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-hpprinter", "authors": ["@elad-bar"], "category": "integration", "description": "HP Printer Integration", "domain": "hpprinter", "etag_repository": "W/\"20f596bc3bc01a950bb5461ee86144ff50b3b4006bed7f3d1ab5e278b16e2690\"", "last_updated": "2023-06-25T08:54:29Z", "stargazers_count": 74, "topics": ["hp", "hp-printer"], "last_fetched": 1695553633.97416, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356778495": {"repository_manifest": {"name": "WebRTC Camera", "render_readme": true}, "full_name": "AlexxIT/WebRTC", "authors": ["@AlexxIT"], "category": "integration", "description": "Home Assistant custom component for viewing almost any camera stream in real time using WebRTC and other technologies.", "domain": "webrtc", "etag_repository": "W/\"75b14a387e86a1853f036fcec7e83e01d85bd8f2210203d3e8e17b9fa9fa23d2\"", "last_updated": "2023-08-24T18:01:25Z", "stargazers_count": 998, "topics": ["ip-camera", "mediasource-extensions", "rtsp", "webrtc"], "last_fetched": 1695553576.098333, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "639503073": {"repository_manifest": {"name": "Atmo France", "country": "fr", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "sebcaps/atmofrance", "authors": ["@sebcaps"], "category": "integration", "description": "About Home assistant component to get air quality for french cities", "domain": "atmofrance", "etag_repository": "W/\"22026cdc14a9e9746b3bf0f82d9747ee73ecca721a1b923f487877e75909b15a\"", "last_updated": "2023-06-03T10:43:41Z", "stargazers_count": 3, "topics": ["pollution-levels"], "last_fetched": 1695554162.524725, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "268722568": {"repository_manifest": {"name": "Media player template", "homeassistant": "0.116", "render_readme": true}, "full_name": "Sennevds/media_player.template", "authors": ["@Sennevds"], "category": "integration", "description": "Template media_player for Home Assistant", "domain": "media_player_template", "etag_repository": "W/\"5c243234a239c8411b794a20d93d913bc69c17d1bd0ba195f448acf1c89f6eac\"", "last_updated": "2023-07-24T13:53:41Z", "stargazers_count": 93, "last_fetched": 1695554163.899601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291484700": {"repository_manifest": {"name": "Xiaomi Gateway 3", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "AlexxIT/XiaomiGateway3", "authors": ["@AlexxIT"], "category": "integration", "description": "Control Zigbee, BLE and Mesh devices from Home Assistant with Xiaomi Gateway 3 on original firmware", "domain": "xiaomi_gateway3", "etag_repository": "W/\"1fb1e20a5cacb9b7c03d4520f2a2b97cb7630789a1c1a0ac0d9cd1514f905f35\"", "last_updated": "2023-09-22T08:04:49Z", "stargazers_count": 2046, "topics": ["aqara", "ble", "mesh", "mihome", "xiaomi", "zha", "zigbee", "zigbee2mqtt"], "last_fetched": 1695553576.097272, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "509121113": {"repository_manifest": {"content_in_root": true, "homeassistant": "0.70.0", "name": "seven", "render_readme": true}, "full_name": "seven-io/home-assistant", "authors": ["@matthiez"], "category": "integration", "description": "HACS supporting Home Assistant integration for seven", "domain": "seven", "etag_repository": "W/\"fc9e725447b4fcbeb060d2eee8230a75966d70dec7232a4daabcf03f67515b7d\"", "last_updated": "2023-08-04T04:34:47Z", "stargazers_count": 1, "topics": ["hassio-integration", "home-assistant-integration", "sms", "tts"], "last_fetched": 1695554164.45649, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236572107": {"repository_manifest": {"name": "Yandex.Station", "render_readme": true, "country": "RU"}, "full_name": "AlexxIT/YandexStation", "authors": ["@AlexxIT"], "category": "integration", "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u042f\u043d\u0434\u0435\u043a\u0441.\u0421\u0442\u0430\u043d\u0446\u0438\u0435\u0439 \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0430\u043c\u0438 \u0441 \u0410\u043b\u0438\u0441\u043e\u0439 \u0438\u0437 Home Assistant", "domain": "yandex_station", "etag_repository": "W/\"397e463c0106164f3ed1ddd5d7710edfbc9bc5352b4c48ebdf4af88b0cc4e92c\"", "last_updated": "2023-09-23T09:09:38Z", "stargazers_count": 1006, "topics": ["tts", "yandex-station"], "last_fetched": 1695553576.539432, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570006201": {"repository_manifest": {"name": "Victron GX modbus TCP", "render_readme": true, "homeassistant": "2023.9.1", "hacs": "1.28.4"}, "full_name": "sfstar/hass-victron", "authors": ["@sfstar"], "category": "integration", "description": "Integration for Home Assistant to fetch data from the victron gx device via modbusTCP", "domain": "victron", "etag_repository": "W/\"99bc5c6555a2517d530ba10a35143746deea672d424eb85471eafd11936d4204\"", "last_updated": "2023-09-09T19:23:26Z", "stargazers_count": 96, "topics": ["energy", "modbus-tcp", "victron", "victronenergy"], "last_fetched": 1695554164.688577, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272432260": {"repository_manifest": {"name": "Floureon Thermostat", "homeassistant": "0.110.0", "render_readme": true}, "full_name": "algirdasc/hass-floureon", "authors": ["@algirdasc"], "category": "integration", "description": "Floureon (Broadlink based) thermostat integration for Home Assistant", "domain": "floureon", "etag_repository": "W/\"137ee2640de36a3b4ceb24a7e6493379af6bb2fe978e20ec35ad6590e160256f\"", "last_updated": "2023-06-22T10:57:56Z", "stargazers_count": 27, "topics": ["broadlink", "floureon", "thermostat"], "last_fetched": 1695553576.213075, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "248046910": {"repository_manifest": {"name": "SamsungTV Encrypted", "homeassistant": "2022.3.1"}, "full_name": "sermayoral/ha-samsungtv-encrypted", "authors": ["@sermayoral"], "category": "integration", "description": "Samsung TV Encrypted Models (H & J Series) custom component for Home Assistant", "domain": "samsungtv_encrypted", "etag_repository": "W/\"c8d83e95e8260d6d1f618178082e98033e566d19a48e0ee02ed019e24098211a\"", "last_updated": "2022-03-15T01:36:17Z", "stargazers_count": 34, "topics": ["iot", "samsungtv"], "last_fetched": 1695554163.994773, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "204049047": {"repository_manifest": {"name": "OpenMensa Lovelace Card", "content_in_root": true}, "full_name": "Mofeywalker/openmensa-lovelace-card", "category": "plugin", "description": "A Home-Assistant Lovelace card which displays information from the openmensa-sensor.", "etag_repository": "W/\"45f13e98ccc23f87df93585f1a05afd343546c6663fc31b6cd547254da6f7d8d\"", "last_updated": "2023-06-14T10:31:04Z", "stargazers_count": 2, "last_fetched": 1695553549.834675, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392188182": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422 \u041f\u043b\u044e\u0441", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-energosbyt-plus", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f \u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0422.\u041f\u043b\u044e\u0441 \u0434\u043b\u044f Home Assistant", "domain": "energosbyt_plus", "etag_repository": "W/\"f8c980d63c9dc83e406841bdacdf32bb29505c1c0f3c3cd3477413e35bb07e1c\"", "last_updated": "2023-07-08T12:41:56Z", "stargazers_count": 10, "topics": ["energosbyt", "energosbyt-plus"], "last_fetched": 1695553576.284884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531349329": {"repository_manifest": {"name": "MyDolphin Plus", "homeassistant": "2021.12.0"}, "full_name": "sh00t2kill/dolphin-robot", "authors": ["@sh00t2kill", "@lordlala", "@elad-bar"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled Maytronics Dolphin pool cleaner robots", "domain": "mydolphin_plus", "etag_repository": "W/\"47c9200030fe65d2ce856f5e44adeb2d3db7072986de4ba111682e2bdef24443\"", "last_updated": "2023-08-31T06:04:08Z", "stargazers_count": 25, "topics": ["dolphin", "maytronics", "robot"], "last_fetched": 1695554164.843973, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215825339": {"repository_manifest": {"name": "Hekr Component", "filename": false, "country": false, "homeassistant": "2022.3.0", "persistent_directory": false}, "full_name": "alryaz/hass-hekr-component", "authors": ["@alryaz"], "category": "integration", "description": "Hekr integration using python-hekr", "domain": "hekr", "etag_repository": "W/\"4bff7aeffa652a8f884053f89221ea88894bf6cb5175b7123d4b105a085b52a3\"", "last_updated": "2023-09-11T00:00:57Z", "stargazers_count": 33, "topics": ["consumption", "hekr", "wisen-application"], "last_fetched": 1695553576.435167, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "525588589": {"repository_manifest": {"name": "Aquarea Smart Cloud", "render_readme": true}, "full_name": "cjaliaga/home-assistant-aquarea", "authors": ["@cjaliaga"], "category": "integration", "description": "Home Assistant integration for Panasonic Aquarea devices connected to Aquarea Smart Cloud", "domain": "aquarea", "etag_repository": "W/\"18792d11d685b4ab83cd8018a545855db309986793dc59ec8b6bef46c57fc882\"", "last_updated": "2023-02-14T13:18:21Z", "stargazers_count": 38, "topics": ["aquarea", "panasonic", "panasonic-comfort-cloud", "panasonic-smart-cloud"], "last_fetched": 1695553602.547473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "596993645": {"repository_manifest": {"name": "Personio", "render_readme": true}, "full_name": "Sese-Schneider/ha-personio", "authors": ["@Sese-Schneider"], "category": "integration", "description": "Integration with the Personio API for Home Assistant.", "domain": "personio", "etag_repository": "W/\"cfea3976a7b0cf4d7f297feb9f7a948c3ae1eb33ec7d73048355f012b11ea8b9\"", "last_updated": "2023-07-31T09:19:53Z", "stargazers_count": 4, "topics": ["hacs-custom", "personio", "personio-api"], "last_fetched": 1695554164.23537, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "377060365": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e (\u042d\u043d\u0435\u0440\u0433\u043e\u0441\u0431\u044b\u0442)", "render_readme": true, "country": "ru", "homeassistant": "2021.12.0"}, "full_name": "alryaz/hass-lkcomu-interrao", "authors": ["@alryaz"], "category": "integration", "description": "\u0418\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u044f Home Assistant \u0441 \u041b\u041a \"\u0418\u043d\u0442\u0435\u0440 \u0420\u0410\u041e\"", "domain": "lkcomu_interrao", "etag_repository": "W/\"83aeb6561f93a7d1ad06bb7f81e83ac391214c3a024e43fc3c07d714cbdfaafc\"", "last_updated": "2022-05-17T20:58:09Z", "stargazers_count": 31, "topics": ["altaienergosbyt", "bashelektrosbyt", "energosbyt", "esbvolga", "mosenergosbyt", "sevesk", "tambovenergosbyt", "tomskenergosbyt"], "last_fetched": 1695553576.626255, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "565137157": {"repository_manifest": {"name": "eDIN+ integration for Home Assistant", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2023.2"}, "full_name": "sftgunner/edinplus-integration", "authors": ["@sftgunner"], "category": "integration", "description": "eDIN+ Home Assistant Integration", "domain": "edinplus", "etag_repository": "W/\"8021c0b9bbe84149739c04444269a4dfebef9c85e65d3db5e53dcef14a77e4c2\"", "last_updated": "2023-08-23T15:37:43Z", "stargazers_count": 5, "topics": ["edin-plus", "home-assistant-custom-component", "home-assistant-integration", "mode-lighting"], "last_fetched": 1695554165.760945, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "355159299": {"repository_manifest": {"name": "Moscow PGU (\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 \u041c\u043e\u0441\u043a\u0432\u044b)", "render_readme": true, "country": "ru", "homeassistant": "2021.2.0"}, "full_name": "alryaz/hass-moscow-pgu", "authors": ["@alryaz"], "category": "integration", "description": "Moscow PGU services for HomeAssistant", "domain": "moscow_pgu", "etag_repository": "W/\"82b803b9ac248e15ef062774b5984e7813f451d3b471f7f74ec29826a5b66104\"", "last_updated": "2021-11-10T06:44:41Z", "stargazers_count": 14, "topics": ["gosuslugi"], "last_fetched": 1695553576.770992, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362513331": {"repository_manifest": {"name": "Technicolor", "render_readme": true}, "full_name": "shaiu/technicolor", "authors": ["@shaiu"], "category": "integration", "description": "This is an integration for HomeAssistant. It's a Device Tracker component for the Technicolor Gateway.", "domain": "technicolor", "etag_repository": "W/\"4228405f47fcb5ca73860b6db05de27a4d9a0ac7a55ba6df0a580a3715b25ba9\"", "last_updated": "2023-05-28T09:30:46Z", "stargazers_count": 5, "last_fetched": 1695554166.048366, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292720530": {"repository_manifest": {"name": "Pandora Car Alarm System", "render_readme": true, "homeassistant": "2023.9.0", "country": ["BY", "IT", "KZ", "RU", "UA"]}, "full_name": "alryaz/hass-pandora-cas", "authors": ["@alryaz"], "category": "integration", "description": "\ud83d\ude97 Home Assistant component for Pandora Car Alarm System / \u0410\u0432\u0442\u043e\u0441\u0438\u0433\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u0438 \u0442\u0435\u043b\u0435\u043c\u0435\u0442\u0440\u0438\u044f Pandora", "domain": "pandora_cas", "downloads": 1, "etag_repository": "W/\"20d50b94f4cd447df77854ed7e6167a35589f1ef24023890bcff6cce6400bef3\"", "last_updated": "2023-09-14T06:08:32Z", "stargazers_count": 25, "topics": ["car-system", "pandora-alarm", "vehicle-tracking"], "last_fetched": 1695553578.216854, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "573233876": {"repository_manifest": {"name": "Switch Manager", "render_readme": true, "homeassistant": "2022.11.4"}, "full_name": "Sian-Lee-SA/Home-Assistant-Switch-Manager", "authors": ["@Sian-Lee-SA"], "category": "integration", "description": "Switch manager is a centralised component to handle button pushes for your wireless switches. This includes anything passed through the event bus. The component relies on switch blueprints which is easily made to allow GUI configuration of your switches and their button pushes. This helps remove clutter from the automations.", "domain": "switch_manager", "etag_repository": "W/\"610c4a7d586a9d5e76c5c6c693d3ce2352c6f8f65d6a087cc73a5827d550523b\"", "last_updated": "2023-09-16T14:07:04Z", "stargazers_count": 118, "topics": ["component", "script", "switch-manager"], "last_fetched": 1695554166.934427, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407205510": {"repository_manifest": {"name": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d / PIK Intercom", "render_readme": true, "country": "RU", "homeassistant": "2023.6.0"}, "full_name": "alryaz/hass-pik-intercom", "authors": ["@alryaz"], "category": "integration", "description": "\u041f\u0418\u041a \u0414\u043e\u043c\u043e\u0444\u043e\u043d \u0434\u043b\u044f Home Assistant", "domain": "pik_intercom", "downloads": 3, "etag_repository": "W/\"7213c188be94ae5794d9546ff9cb4d69cb9d5501aacb4cba42a84f0246d7e027\"", "last_updated": "2023-09-12T07:14:48Z", "stargazers_count": 40, "topics": ["intercom", "pik-group"], "last_fetched": 1695553578.114018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272094506": {"repository_manifest": {"name": "Blitzortung.org Lightning Detector", "homeassistant": "2022.10.0"}, "full_name": "mrk-its/homeassistant-blitzortung", "authors": ["@mrk-its"], "category": "integration", "description": "Custom Component for fetching lightning data from blitzortung.org", "domain": "blitzortung", "etag_repository": "W/\"e497fb56320366da7b72a1895f454c730c69d55731fec0bf178ef0a978aa2e4e\"", "last_updated": "2023-07-13T14:39:40Z", "stargazers_count": 133, "topics": ["blitzortung", "lightning-network"], "last_fetched": 1695554126.121469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "531891521": {"repository_manifest": {"name": "Revogi Petoneer Water Fountain", "render_readme": true}, "full_name": "sh00t2kill/petoneer_custom_component", "authors": ["@sh00t2kill"], "category": "integration", "description": "A custom Home Assistant Component for WiFI enabled pet water fountains by petoneer", "domain": "revogi", "etag_repository": "W/\"348f72c28eaa2692260676497995091448f989ef435f2265bc2ca27d2be403cf\"", "last_updated": "2023-07-25T02:15:59Z", "topics": ["petoneer", "revogi"], "last_fetched": 1695554165.282949, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "378010382": {"repository_manifest": {"name": "\u041b\u0438\u0447\u043d\u044b\u0439 \u043a\u0430\u0431\u0438\u043d\u0435\u0442 \u0422\u041d\u0421 \u042d\u043d\u0435\u0440\u0433\u043e", "render_readme": true, "country": "ru", "homeassistant": "2022.3.0"}, "full_name": "alryaz/hass-tns-energo", "authors": ["@alryaz"], "category": "integration", "description": "TNS Energo Integration", "domain": "tns_energo", "etag_repository": "W/\"e1bb217464c0776ce73d6b50dfc88ec21f89f33140bd6254cb4a159a9d57e961\"", "last_updated": "2023-06-19T07:51:16Z", "stargazers_count": 11, "topics": ["moscow", "tns-energo"], "last_fetched": 1695553578.277729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "354515979": {"repository_manifest": {"name": "Philips Ambilight+Hue Switch", "render_readme": true}, "full_name": "Mr-Groch/ambihue", "authors": ["@jomwells", "@Mr-Groch"], "category": "integration", "description": "ON/OFF Abilight+Hue (Switch) component for Philips Ambilight TV's", "domain": "philips_ambilight_hue", "etag_repository": "W/\"e360dbb559dd61616964b851dd6bb5ac3a3a0352fe83347bdadaceb1dc7ee82c\"", "last_updated": "2023-03-12T21:32:05Z", "stargazers_count": 11, "topics": ["ambilight", "philips-hue"], "last_fetched": 1695554125.73465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351604227": {"repository_manifest": {"name": "Brandrisk ute", "render_readme": true, "country": "se"}, "full_name": "Sha-Darim/brandriskute", "authors": ["@Sha-Darim"], "category": "integration", "description": "The custom compontnet will get fire risks and fire prohibition from the Brandrisk Ute API for the supplied position.", "domain": "brandriskute", "etag_repository": "W/\"72850c8a419e461b1544413c56313358e1e8e19cc4d07def353d510b66159336\"", "last_updated": "2022-06-05T20:43:41Z", "stargazers_count": 4, "topics": ["fire-risks", "risks", "sensors"], "last_fetched": 1695554165.837357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "275672933": {"repository_manifest": {"name": "Select list Card", "render_readme": true, "filename": "select-list-card.js"}, "full_name": "mattieha/select-list-card", "category": "plugin", "description": "Select List Card displays an input_select entity as a list in lovelace", "downloads": 9705, "etag_repository": "W/\"b6a82d59a850848100a502b5926cb78d6cc47609921694e6f67e1f232a09c0a4\"", "last_updated": "2023-01-12T03:12:53Z", "stargazers_count": 56, "topics": ["lovelace-custom-card"], "last_fetched": 1695553548.99113, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "642225418": {"repository_manifest": {"name": "Turkov Ventilation Systems", "country": ["RU", "BY"], "homeassistant": "2023.5.0", "render_readme": true}, "full_name": "alryaz/hass-turkov", "authors": ["@alryaz"], "category": "integration", "description": "Turkov integration for Home Assistant", "domain": "turkov", "etag_repository": "W/\"0473890dadde3f032d272b9bf5028d17a97d1c32c1b8d2a19d5c44e60e209b2a\"", "last_updated": "2023-09-18T16:23:38Z", "stargazers_count": 1, "topics": ["hvac-control", "turkov", "ventilation"], "last_fetched": 1695553578.457899, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "552555459": {"repository_manifest": {"name": "LG Horizon", "country": ["NL", "BE", "CH", "GB", "AT"], "render_readme": true, "homeassistant": "2021.5.0"}, "full_name": "Sholofly/lghorizon", "authors": ["@Sholofly"], "category": "integration", "description": "Custom integration to control LG Horizon settop boxes for Ziggo(NL), Magenta(AT), UPC(CH), Virgin(GB, IE), Telenet(BE)", "domain": "lghorizon", "etag_repository": "W/\"8cda145bb8a5f27d390eeaed3d36fdb119f9f7bd09a687d6f7c915befd360d87\"", "last_updated": "2023-09-04T18:43:31Z", "stargazers_count": 40, "topics": ["arris", "humax", "lg-horizon", "magenta", "sunrise", "telenet", "virgin", "ziggo"], "last_fetched": 1695554166.63901, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "395991055": {"repository_manifest": {"name": "Anniversary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/anniversary", "authors": ["@amaximus"], "category": "integration", "description": "Anniversary integration for Home Assistant", "domain": "anniversary", "downloads": 7, "etag_repository": "W/\"fd0519356bff217fee0a1c49a84a69e2cc9b4c0b259aded0fad5f9f4014945df\"", "last_updated": "2023-06-08T08:20:08Z", "stargazers_count": 12, "last_fetched": 1695553578.420124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555675718": {"repository_manifest": {"name": "Mastertherm", "hacs": "1.32.1", "homeassistant": "2023.6.1", "country": "GB", "hide_default_branch": true}, "full_name": "sHedC/homeassistant-mastertherm", "authors": ["@shedc"], "category": "integration", "description": "Home Assistant Mastertherm Component, to communicate and control heat pumps from Mastertherm", "domain": "mastertherm", "etag_repository": "W/\"2e4bc859d6e77ee3b97688568252984995bf58f54824286fdbfb92cbb5b38a7c\"", "last_updated": "2023-09-18T14:17:04Z", "stargazers_count": 3, "topics": ["heatpump", "mastertherm", "python3"], "last_fetched": 1695554166.393481, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "125756318": {"repository_manifest": {"name": "BKK Stop Information", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/bkk_stop", "authors": ["@amaximus"], "category": "integration", "description": "HomeAssistant custom component for Budapest public transportation", "domain": "bkk_stop", "downloads": 5, "etag_repository": "W/\"bf6c7e954f7cd0298dd71e615156b1ed91006cd833a27d63bbcfb4cc89ae021d\"", "last_updated": "2023-07-10T12:04:48Z", "stargazers_count": 20, "topics": ["bkk", "budapest", "transportation"], "last_fetched": 1695553578.605882, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220678749": {"repository_manifest": {"name": "cfr sensor", "country": ["IT"], "homeassistant": "2021.12.0"}, "full_name": "shogunxam/Home-Assistant-custom-components-cfr-toscana", "authors": ["@shogunxam"], "category": "integration", "description": "HA Integration for Centro Funzionale Regione Toscana", "domain": "cfr", "etag_repository": "W/\"611ac81e48a72e8f45de0e43b7ba6f561aaaacbca9dbcb765119fd64e54141ce\"", "last_updated": "2023-03-03T09:27:23Z", "stargazers_count": 3, "last_fetched": 1695554166.164046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462430932": {"repository_manifest": {"name": "Fire Protection Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fire_protection_hu", "authors": ["@amaximus"], "category": "integration", "description": "Fire protection integration for Home Assistant with data provided by N\u00c9BIH", "domain": "fire_protection_hu", "downloads": 5, "etag_repository": "W/\"bc7af671c8298b5438c40a8e75ae3dcf584181fe6da95cca6ff0a2e1143c03f7\"", "last_updated": "2023-06-08T08:44:24Z", "stargazers_count": 2, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.649864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290193894": {"repository_manifest": {"name": "Rollease Acmeda Automate Pulse Hub v2", "render_readme": true}, "full_name": "sillyfrog/Automate-Pulse-v2", "authors": ["@sillyfrog"], "category": "integration", "description": "Rollease Acmeda Automate Pulse Hub v2 integration for Home Assistant", "domain": "automate", "etag_repository": "W/\"e8041a5cb263651458413e051915626c8bb0bffb4eacda8610dca75a5dcac96d\"", "last_updated": "2023-02-10T20:57:35Z", "stargazers_count": 28, "last_fetched": 1695554167.076793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "257104502": {"repository_manifest": {"name": "FKF Budapest Garbage Collection", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/fkf-garbage-collection", "authors": ["@amaximus"], "category": "integration", "description": "FKF Budapest Garbage Collection custom component for Home Assistant", "domain": "fkf_garbage_collection", "downloads": 5, "etag_repository": "W/\"db2f4da8444957406ef3ec1613b878798bbc9980a5ee3212ceb222c1b9b7d45f\"", "last_updated": "2023-07-10T11:12:08Z", "stargazers_count": 20, "topics": ["budapest"], "last_fetched": 1695553578.945764, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "600885053": {"repository_manifest": {"name": "MyVaillant", "render_readme": true}, "full_name": "signalkraft/mypyllant-component", "authors": ["@signalkraft"], "category": "integration", "description": "Home Assistant component that interfacts with the myVAILLANT API, to control Vaillant devices such as aroTHERM heatpumps and ecoTEC boilers.", "domain": "mypyllant", "etag_repository": "W/\"c19f4d04f89d91467c027c6cf48eb08646a3d6623addb30f3caa6c9b12969306\"", "last_updated": "2023-09-17T15:08:15Z", "stargazers_count": 37, "topics": ["home-assistant-component", "vaillant"], "last_fetched": 1695554167.024742, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "372058588": {"repository_manifest": {"name": "MET Alerts Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/met_alerts_hu", "authors": ["@amaximus"], "category": "integration", "description": "Meteo alerts for Hungary", "domain": "met_alerts_hu", "downloads": 5, "etag_repository": "W/\"bc12ddabdeb195fd94a46a1dd318d5d83ae3bf6d886d1f74010ff2fb1504b7b8\"", "last_updated": "2023-06-25T12:21:34Z", "stargazers_count": 12, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.830464, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311594993": {"repository_manifest": {"name": "Presence Simulation", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "slashback100/presence_simulation", "authors": ["@slashback100"], "category": "integration", "description": "Home Assistant Presence Simulation", "domain": "presence_simulation", "etag_repository": "W/\"7e4bd8f1312d4f0842446aebb0f51bb82a8ae3f93df7da4427f459bab4b37d95\"", "last_updated": "2023-09-01T07:38:04Z", "stargazers_count": 292, "topics": ["historic", "presence", "presence-simulation", "simulation"], "last_fetched": 1695554168.378642, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342026799": {"repository_manifest": {"name": "Pollen Information Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/pollen_hu", "authors": ["@amaximus"], "category": "integration", "description": "Home Assistant custom component for Pollen Information in Hungary", "domain": "pollen_hu", "downloads": 4, "etag_repository": "W/\"a8ead7cb1847009c460fdd8eb49d5f752ccd456c2080ac376a6663da08c04595\"", "last_updated": "2023-09-05T11:47:47Z", "stargazers_count": 9, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553578.956643, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "632007442": {"repository_manifest": {"name": "Home Assisant Eetlijst", "country": ["NL"], "render_readme": true}, "full_name": "Slalamander/Home-Assistant-Eetlijst", "authors": ["@Slalamander"], "category": "integration", "description": "A custom integration to get your Eetlijst info into Home Assistant", "domain": "eetlijst", "etag_repository": "W/\"2d09651ece84aec427b0c4def67c385366c4fa86e6940fbf3fc603973aec2f61\"", "last_updated": "2023-09-05T18:08:55Z", "stargazers_count": 1, "topics": ["eetlijst"], "last_fetched": 1695554168.008414, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "198066338": {"repository_manifest": {"name": "Rejseplanen Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors", "etag_repository": "W/\"25aec0ca1894d30bc740877e04187e1250a3f4e9f8aa1856f2e4cdd850be2914\"", "last_updated": "2023-01-04T06:49:56Z", "stargazers_count": 5, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-card", "rejseplanen-sensors"], "last_fetched": 1695553522.493627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "468093553": {"repository_manifest": {"name": "Radioactivity Hungary", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/radioactivity_hu", "authors": ["@amaximus"], "category": "integration", "description": "Radioactivity data for Hungary", "domain": "radioactivity_hu", "downloads": 5, "etag_repository": "W/\"3787d0abf8de2e9c0ae4133eb5780bca40ae2aa787ea3d823fb0f8d33c509e89\"", "last_updated": "2023-06-08T08:48:13Z", "stargazers_count": 5, "topics": ["homeassistant-custom-component", "hungary"], "last_fetched": 1695553580.51585, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "511504216": {"repository_manifest": {"name": "Scinan Saswell Thermostat", "render_readme": true}, "full_name": "Skarbo/hass-scinan-thermostat", "authors": ["@skarbo"], "category": "integration", "description": "Home Assistant integration for Scinan Thermostats", "domain": "scinan_thermostat", "etag_repository": "W/\"9158cf930bb3203e5eb8fbce03051273d2d2565904d0475d9ae1f5bdf128e174\"", "last_updated": "2023-08-20T22:06:43Z", "stargazers_count": 4, "topics": ["saswell", "scinan", "thermostat"], "last_fetched": 1695554167.392478, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "420504770": {"repository_manifest": {"name": "Water Quality FVM", "country": ["HU"], "render_readme": "true"}, "full_name": "amaximus/water_quality_fvm", "authors": ["@amaximus"], "category": "integration", "description": "Water quality integration for Home Assistant with data provided by Budapest FVM", "domain": "water_quality_fvm", "downloads": 5, "etag_repository": "W/\"4c502788110ffa30793d0c99f46b472e17d98db3f356d61af1094acbde23ff25\"", "last_updated": "2023-06-08T08:51:14Z", "stargazers_count": 3, "topics": ["budapest", "homeassistant-custom-component", "hungary"], "last_fetched": 1695553580.325342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312896602": {"repository_manifest": {"name": "Skoda Connect", "homeassistant": "2023.3.0", "hide_default_branch": true, "filename": "skodaconnect.zip"}, "full_name": "skodaconnect/homeassistant-skodaconnect", "authors": ["@lendy007", "@Farfar", "@WebSpider"], "category": "integration", "description": "Skoda Connect - A home assistant plugin to add integration with your car", "domain": "skodaconnect", "etag_repository": "W/\"48ea1ac0a7fffe176b1b726379111320b8a9d3012684e5b638925430fadc14d3\"", "last_updated": "2023-09-21T09:05:58Z", "stargazers_count": 164, "topics": ["skoda-connect"], "last_fetched": 1695554168.228124, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523291160": {"repository_manifest": {"name": "Daily Schedule", "filename": "daily_schedule.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "amitfin/daily_schedule", "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Daily Schedule Custom Component", "domain": "daily_schedule", "downloads": 1642, "etag_repository": "W/\"527330c9feabe8d3f5f5ea3c0b67de54f28602b9cd7f4d08f41ab7936f0f43a3\"", "last_updated": "2023-09-18T05:49:19Z", "stargazers_count": 12, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.48198, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267433712": {"repository_manifest": {"name": "PRE Distribuce CZ", "country": "CZ", "homeassistant": "2022.5.6"}, "full_name": "slesinger/HomeAssistant-PREdistribuce", "authors": ["@slesinger"], "category": "integration", "description": "Home Assistant integration to display info about energy plan", "domain": "predistribuce", "etag_repository": "W/\"88891cff17e0d20f66de85621192a39960a10cede8779f6eb1bc58efa5b4387a\"", "last_updated": "2023-05-13T15:18:37Z", "stargazers_count": 8, "topics": ["energy", "power"], "last_fetched": 1695554168.474327, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "612717689": {"repository_manifest": {"name": "Retry", "filename": "retry.zip", "hide_default_branch": true, "homeassistant": "2023.8.0", "render_readme": true, "zip_release": true}, "full_name": "amitfin/retry", "authors": ["@amitfin"], "category": "integration", "description": "Home Assistant Integration with Retry Service", "domain": "retry", "downloads": 499, "etag_repository": "W/\"49ca56e83c0fb3c824db025dcb3c0cbcfc9e6a67845a148965655ebe9d71b866\"", "last_updated": "2023-09-18T05:49:00Z", "stargazers_count": 17, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.656011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209955487": {"repository_manifest": {"name": "BMR", "render_readme": true, "country": "CZ", "homeassistant": "0.110.0"}, "full_name": "slesinger/HomeAssistant-BMR", "authors": ["@slesinger"], "category": "integration", "description": "Control BMR heating regulation system from Home Assistant", "domain": "bmr_hc64", "etag_repository": "W/\"58aca03c4b4c78223c84406768647dc379a4fbf532265351fb40d0758a41c940\"", "last_updated": "2021-05-25T19:26:44Z", "stargazers_count": 3, "last_fetched": 1695554168.211203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527414830": {"repository_manifest": {"name": "Eight Sleep Climate", "hacs": "1.0.0", "homeassistant": "0.118.0", "render_readme": true}, "full_name": "amosyuen/ha-eight-sleep-climate", "authors": ["@amosyuen"], "category": "integration", "description": "Climate entity for controlling eight sleep bed", "domain": "eight_sleep_climate", "etag_repository": "W/\"a8cf93fe519e40278c985389d34a4658ea9d8df7affdf2b256b5cc14466440b0\"", "last_updated": "2023-09-18T17:40:57Z", "stargazers_count": 3, "topics": ["eight-sleep", "thermostat"], "last_fetched": 1695553580.548794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556352757": {"repository_manifest": {"name": "Geo Home Smart Meter Integration", "render_readme": true}, "full_name": "mmillmor/geo_home", "authors": ["@mmillmor"], "category": "integration", "description": "Geo Home smart meter integration for Home Assistant", "domain": "geo_home", "etag_repository": "W/\"0fddd9e6398eaea408075d19ceb02f5a50801215ab7dbe9b7af25c4b165201de\"", "last_updated": "2023-08-05T18:53:33Z", "stargazers_count": 13, "topics": ["home-assistant-integration", "smart-meter"], "last_fetched": 1695554123.916133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199718799": {"repository_manifest": {"name": "Escea Fires"}, "full_name": "snikch/climate.escea", "authors": ["@snikch"], "category": "integration", "description": "\ud83c\udfe1Home Assistant Custom Component for Escea Fires \ud83d\udd25", "domain": "escea", "etag_repository": "W/\"dbdb149d880c7b1ed3b6029d4438bdf496ceb4c260344a99ce0d8aebd6d27770\"", "last_updated": "2022-05-29T11:37:06Z", "stargazers_count": 9, "topics": ["climate", "fireplace"], "last_fetched": 1695554169.175606, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "548811638": {"repository_manifest": {"name": "Epson Projector Link", "hacs": "1.6.0", "homeassistant": "2023.4.0", "render_readme": true}, "full_name": "amosyuen/ha-epson-projector-link", "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant Epson Projector Link", "domain": "epson_projector_link", "etag_repository": "W/\"a46bd3bc3469f683780b7cac1037e4651c1806ad603fe3529028d22713e78bc6\"", "last_updated": "2023-09-18T15:11:33Z", "stargazers_count": 5, "topics": ["epson-projector"], "last_fetched": 1695553580.746621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203244705": {"repository_manifest": {"name": "OpenMensa Sensor"}, "full_name": "Mofeywalker/openmensa-hass-component", "category": "integration", "description": "A platform sensor which tells you which meals are served in your canteen.", "domain": "openmensa", "etag_repository": "W/\"0373a349c59653dee2076df2d70ed8b446dcd265d6b3011e91909cafd7aead58\"", "last_updated": "2021-09-04T08:04:28Z", "stargazers_count": 3, "last_fetched": 1695554123.998627, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "210966517": {"repository_manifest": {"name": "Zwift Sensors", "homeassistant": "2023.4"}, "full_name": "snicker/zwift_hass", "authors": ["@snicker"], "category": "integration", "description": "Zwift Sensor Integration for HomeAssistant", "domain": "zwift", "etag_repository": "W/\"89650f613c0acb4caf80a6714857d1fa7383f53ca1a48f36f6d40e1dfd154c98\"", "last_updated": "2023-09-17T15:01:07Z", "stargazers_count": 33, "last_fetched": 1695554169.25595, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "590806135": {"repository_manifest": {"name": "Home Assistant Registry", "hacs": "1.6.0", "homeassistant": "2023.1.0", "render_readme": true}, "full_name": "amosyuen/ha-registry", "authors": ["@amosyuen"], "category": "integration", "description": "Adds services for home assistant registry operations", "domain": "ha_registry", "etag_repository": "W/\"524dc9c10378afaaf0f6041dfa6a4342344f6cbb900082aa1a8d7234c55b8be1\"", "last_updated": "2023-09-18T15:23:11Z", "stargazers_count": 8, "topics": ["homeassistant-custom-component"], "last_fetched": 1695553580.752849, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178101579": {"repository_manifest": {}, "full_name": "custom-components/sensor.airthings_wave", "authors": ["@MartyTremblay", "@sverrham"], "category": "integration", "description": "hassio support for Airthings Wave BLE environmental radon sensor.", "domain": "airthings_wave", "etag_repository": "W/\"730770bce562dbfa4efa3fc8c9eee43f6e41a30939137521e89820d9c309f64a\"", "last_updated": "2023-07-14T22:00:07Z", "stargazers_count": 98, "topics": ["airthings-wave", "bluetooth-low-energy", "btle", "environmental", "radon"], "last_fetched": 1695553609.468694, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "291317330": {"repository_manifest": {"name": "Electric Vehicle Charge Control", "country": "SK", "homeassistant": "2022.12.0"}, "full_name": "mletenay/home-assistant-ev-charge-control", "authors": ["@mletenay"], "category": "integration", "description": "Home Assistant custom component for Electric Vehicle Charge Control devices by Phoenix Contact ", "domain": "phoenix_contact", "etag_repository": "W/\"dceca815e0535c7f8af33ce749ed412e83254df9d63ea2ba2f16a793ec03cc27\"", "last_updated": "2023-01-25T21:40:24Z", "stargazers_count": 1, "topics": ["charging-stations", "electric-vehicles", "evse"], "last_fetched": 1695554123.659697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442001863": {"repository_manifest": {"name": "TP-Link Deco", "hacs": "1.6.0", "homeassistant": "2023.6.0", "render_readme": true}, "full_name": "amosyuen/ha-tplink-deco", "authors": ["@amosyuen"], "category": "integration", "description": "Home Assistant TP-Link Deco Custom Component", "domain": "tplink_deco", "etag_repository": "W/\"4485b4c6f7f064bf23622fef54cecc23f264d8724c10574a681333dfe28aae21\"", "last_updated": "2023-09-18T11:34:59Z", "stargazers_count": 115, "topics": ["router", "tp-link"], "last_fetched": 1695553581.214105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "246417951": {"repository_manifest": {"name": "Whatpulse Sensor", "render_readme": true}, "full_name": "SLG/home-assistant-whatpulse", "authors": ["@SLG"], "category": "integration", "description": "This component retrieves the statistics from Whatpulse", "domain": "whatpulse", "etag_repository": "W/\"17c1e21bc626522b8169679756a052a3afa2a20c10ef48c09a0480b75daa3535\"", "last_updated": "2021-06-03T17:59:28Z", "stargazers_count": 1, "topics": ["whatpulse"], "last_fetched": 1695554168.691038, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199332790": {"repository_manifest": {"name": "Variable", "render_readme": true, "homeassistant": "2021.5.1"}, "full_name": "snarky-snark/home-assistant-variables", "authors": ["@snarky-snark"], "category": "integration", "description": "A custom Home Assistant component for declaring and setting generic variable entities dynamically.", "domain": "var", "etag_repository": "W/\"ccea733b70dc3a2efc6f0bcee8ab7bc32bcc2aea3c66739e0ec4fb27516883a4\"", "last_updated": "2023-06-08T14:29:25Z", "stargazers_count": 225, "last_fetched": 1695554169.212997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169460975": {"repository_manifest": {}, "full_name": "akasma74/Hass-Custom-Alarm", "authors": ["@akasma74"], "category": "integration", "description": "It is a fork of \"Yet another take on a home assistant custom alarm\" that will exist until its author is back to our Earth", "domain": "bwalarm", "etag_repository": "W/\"649e1454d1bebb7bab1cfc1332128ebcc85acda8adfedf9cacd1a93215c48bdc\"", "last_updated": "2023-06-12T10:41:28Z", "stargazers_count": 79, "last_fetched": 1695553573.705989, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "514029149": {"repository_manifest": {"name": "Sodexo Dla Ciebie", "hacs": "1.0.0", "homeassistant": "2022.7.5", "render_readme": true, "country": "PL"}, "full_name": "anarion80/sodexo_dla_ciebie", "authors": ["@anarion80"], "category": "integration", "description": "Sodexo Dla Ciebie - Home Assistant Custom Component for Sodexo cards in Poland", "domain": "sodexo_dla_ciebie", "etag_repository": "W/\"2e2fdd0b36b384d5d8201009b272b55a6e643b3ab4712ba0265ce0f188780713\"", "last_updated": "2022-08-15T17:35:07Z", "topics": ["sodexo"], "last_fetched": 1695553581.103885, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "453143227": {"repository_manifest": {"name": "Juwel Helialux Smart Controller", "country": "GB", "render_readme": true}, "full_name": "MrSleeps/Juwel-HeliaLux-Home-Assistant-Custom-Component", "authors": ["@mrsleeps"], "category": "integration", "description": "A custom component for Home Assistant to monitor your Juwel HeliaLux light states", "domain": "juwel_helialux", "etag_repository": "W/\"291aabaf1d6c1e992b677813409c4f7d89142e83d5a708fd48d01fb8ece9dffd\"", "last_updated": "2022-11-24T15:37:37Z", "stargazers_count": 7, "topics": ["aquarium", "home-assistant-component", "lightning"], "last_fetched": 1695554126.158624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190378093": {"repository_manifest": {"name": "Visonic/Bentel/Tyco Alarm System"}, "full_name": "And3rsL/VisonicAlarm-for-Hassio", "authors": ["@And3rsL"], "category": "integration", "description": "Visonic/Bentel/Tyco Alarm System integrtation for Home Assistant", "domain": "visonicalarm", "etag_repository": "W/\"2bdfaff4c390165c9eb5417be38450314c50fe207688a5e86ad3a13e0628c358\"", "last_updated": "2023-07-13T11:02:26Z", "stargazers_count": 18, "topics": ["alarm", "alarm-control-panel", "bentel", "tycomonitor", "visonic"], "last_fetched": 1695553581.124848, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261849832": {"repository_manifest": {"name": "Garo Wallbox"}, "full_name": "sockless-coding/garo_wallbox", "authors": ["sockless-coding"], "category": "integration", "description": "Garo wallbox - Home Assistant Component ", "domain": "garo_wallbox", "etag_repository": "W/\"cb8cffbb3ffe82876afaf57107caf1cff28e965782a0648474e950069a59aa58\"", "last_updated": "2023-07-14T19:15:53Z", "stargazers_count": 16, "last_fetched": 1695554169.630831, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260410453": {"repository_manifest": {"name": "Panasonic Comfort Cloud"}, "full_name": "sockless-coding/panasonic_cc", "authors": ["@sockless-coding"], "category": "integration", "description": "Panasonic Comfort Cloud - Home Assistant Component", "domain": "panasonic_cc", "etag_repository": "W/\"764dc3c5344f62f5319164e0e5c341398aabc322d53dd3a4baafcac3f686b88c\"", "last_updated": "2023-09-15T08:00:19Z", "stargazers_count": 74, "last_fetched": 1695554170.345629, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197920457": {"repository_manifest": {}, "full_name": "andersonshatch/midea-ac-py", "authors": ["@andersonshatch"], "category": "integration", "description": "This is a library to allow communicating to a Midea appliance via the Midea cloud.", "domain": "midea", "etag_repository": "W/\"6ffd2ee1c99486256e4b4addb9f37fe80b16d30fdb569e2d18b8ea3de304e27b\"", "last_updated": "2023-03-09T19:28:42Z", "stargazers_count": 78, "topics": ["midea"], "last_fetched": 1695553582.220658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289251122": {"repository_manifest": {"name": "GoodWe Inverter (experimental)", "country": "SK", "homeassistant": "2023.3.0"}, "full_name": "mletenay/home-assistant-goodwe-inverter", "authors": ["@mletenay", "@starkillerOG", "@fizcris"], "category": "integration", "description": "Experimental version of Home Assistant integration for Goodwe solar inverters", "domain": "goodwe", "etag_repository": "W/\"c3415fadf9715c835b4ba2a59f50dece9c859a974b32ffc32cabdbe8fa41868d\"", "last_updated": "2023-04-11T22:10:03Z", "stargazers_count": 107, "topics": ["goodwe", "pv-systems"], "last_fetched": 1695554124.026719, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "606857916": {"repository_manifest": {"name": "Deye Dehumidifier", "render_readme": true, "homeassistant": "2023.4.0"}, "full_name": "stackia/ha-deye-dehumidifier", "authors": ["@stackia"], "category": "integration", "description": "Control Deye (\u5fb7\u4e1a) Dehumidifier devices from Home Assistant", "domain": "deye_dehumidifier", "etag_repository": "W/\"494ad3f11ac6364ee7f57546e73a8da6f3c117368316ddfe2549ea1a8dcba8b0\"", "last_updated": "2023-09-12T07:43:18Z", "stargazers_count": 21, "topics": ["deye", "home-assistant-component"], "last_fetched": 1695554171.710677, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "603596768": {"repository_manifest": {"name": "Haier hOn", "homeassistant": "2023.2.0", "zip_release": true, "filename": "haier_hon.zip"}, "full_name": "Andre0512/hon", "authors": ["@Andre0512"], "category": "integration", "description": "Home Assistant integration for Haier hOn: support for Haier/Candy/Hoover home appliances like washing machines and air conditioners in 19 languages.", "domain": "hon", "downloads": 2616, "etag_repository": "W/\"5b7241f963cba1faad077e0cb47942d51e8745f02dc2dac9d93f22f0de6222f2\"", "last_updated": "2023-07-27T17:26:01Z", "stargazers_count": 64, "topics": ["candy", "haier", "haier-hon", "home-assistant-integration", "hoover"], "last_fetched": 1695553582.950428, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "560282866": {"repository_manifest": {"name": "Universal Lighting Controllers", "hide_default_branch": true, "hacs": "1.6.0", "homeassistant": "2023.2"}, "full_name": "monty68/uniled", "authors": ["@monty68"], "category": "integration", "description": "Universal Light Controller Integration for Home Assistant", "domain": "uniled", "etag_repository": "W/\"d7243b96358879736142cb4bb9adf6cefcdfa321e33e75d6bf37a9328e02f397\"", "last_updated": "2023-04-07T10:52:34Z", "stargazers_count": 31, "topics": ["controller", "light", "sp107e", "sp110e", "sp601e", "sp6117e", "sp611e", "sp620e"], "last_fetched": 1695554124.13049, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427773030": {"repository_manifest": {"name": "TuneBlade", "render_readme": true}, "full_name": "spycle/tuneblade", "authors": ["@spycle"], "category": "integration", "description": "Home Assistant custom integration for controlling AirPlay devices connected to a TuneBlade server", "domain": "tuneblade", "etag_repository": "W/\"65c12a363fa7e291dd7912541d4212e61f6bfe8ffe3d15143a2c0fd43a05eb2a\"", "last_updated": "2022-01-15T20:39:21Z", "stargazers_count": 1, "topics": ["tuneblade"], "last_fetched": 1695554170.530877, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "233093604": {"repository_manifest": {"name": "kodi1/tracker_merge", "render_readme": "true", "country": "NO"}, "full_name": "kodi1/tracker_merge", "category": "python_script", "description": "merge master/slave device trackers", "etag_repository": "W/\"a4d72c0c99a0aa8eed8bbcbeec82156a9ee5f96b2a5a6ef0515d04583d65b016\"", "last_updated": "2021-04-21T19:05:19Z", "stargazers_count": 4, "topics": ["tracking"], "last_fetched": 1695553508.010651, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501618674": {"repository_manifest": {"name": "BleBox shutterBox with tilt", "hacs": "1.6.0", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "andrzejchm/blebox_shutterbox_tilt", "authors": ["@andrzejchm"], "category": "integration", "description": "HACS integration for BleBox shutterBox that adds tilt support", "domain": "blebox_shutterbox_tilt", "etag_repository": "W/\"2b02380be79c81c6119f4f15f6d068a2dd1d23a1018dc0259910b29b244f4658\"", "last_updated": "2023-09-18T01:45:46Z", "stargazers_count": 6, "last_fetched": 1695553582.678009, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255662264": {"repository_manifest": {"name": "Landroid Cloud", "homeassistant": "2022.10.1", "zip_release": true, "filename": "landroid_cloud.zip"}, "full_name": "MTrab/landroid_cloud", "authors": ["@MTrab"], "category": "integration", "description": "Landroid Cloud component for Home Assistant", "domain": "landroid_cloud", "downloads": 3465, "etag_repository": "W/\"ebeda5ca0e8c45f43ebed7ad6e31ee7cba7e1ab40a225315658ddee96aaa0c11\"", "last_updated": "2023-09-18T16:23:26Z", "stargazers_count": 213, "topics": ["homeassistant-custom-component", "kress", "landroid", "landxcape", "mower-robot", "worx"], "last_fetched": 1695554128.15203, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325097827": {"repository_manifest": {"name": "MegaD", "country": "RU", "persistent_directory": "userfiles", "render_readme": true}, "full_name": "andvikt/mega_hacs", "authors": ["@andvikt"], "category": "integration", "description": "MegaD HomeAssistant integration", "domain": "mega", "etag_repository": "W/\"1617c2bc6147ca1e870d091eb8fc32de003e03193969d16ea8095db4a78717a5\"", "last_updated": "2023-08-21T05:56:49Z", "stargazers_count": 117, "topics": ["custom-integration", "megad"], "last_fetched": 1695553582.91226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "445609628": {"repository_manifest": {"name": "PID Controller", "zip_release": true, "homeassistant": "2021.9", "render_readme": true, "persistent_directory": "codes", "filename": "pid_controller.zip"}, "full_name": "soloam/ha-pid-controller", "authors": ["@Soloam"], "category": "integration", "description": "PID Controller to Home Assistant", "domain": "pid_controller", "downloads": 1199, "etag_repository": "W/\"4aee961f9ea3496a4d7c59b49296c28665d39f257086256a1cf70641a6393998\"", "last_updated": "2022-11-09T00:39:55Z", "stargazers_count": 66, "topics": ["pid", "thermostat"], "last_fetched": 1695554170.417642, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "365567023": {"repository_manifest": {"name": "Nuvo multi-zone amplifier (serial)", "render_readme": true, "country": "EN", "homeassistant": "2023.5.0", "zip_release": true, "filename": "nuvo_serial.zip"}, "full_name": "sprocket-9/hacs-nuvo-serial", "authors": ["@sprocket-9"], "category": "integration", "description": "Custom component to control a Nuvo Grand Concerto/Essentia G multi-zone amplifier via serial connection", "domain": "nuvo_serial", "downloads": 37, "etag_repository": "W/\"7f49689bdfef2ac21420796f496a70c18bae6a69a8fb2b3c44fd3517ca703abd\"", "last_updated": "2023-08-31T16:27:58Z", "stargazers_count": 5, "topics": ["home-assistant-component", "home-assistant-integration"], "last_fetched": 1695554170.513658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "426814988": {"repository_manifest": {"name": "Schedule State", "render_readme": true}, "full_name": "aneeshd/schedule_state", "authors": ["@aneeshd"], "category": "integration", "description": "Home Assistant (HA) sensor that returns a string based on a defined schedule, enabling further automations", "domain": "schedule_state", "etag_repository": "W/\"333852cd02fc9bd71cae9341ddf093b971a813e07c3cc0c2301875597aaa599e\"", "last_updated": "2023-09-22T15:07:36Z", "stargazers_count": 30, "topics": ["automation", "scheduler", "timetable"], "last_fetched": 1695553582.730676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427902632": {"repository_manifest": {"name": "Solarman Integration"}, "full_name": "StephanJoubert/home_assistant_solarman", "authors": ["@StephanJoubert"], "category": "integration", "description": "Home Assistant component for Solarman collectors used with a variety of inverters. ", "domain": "solarman", "etag_repository": "W/\"bd19a9e472af51d5c67a190e6f7d65aae99ce3d64fead4d3328f56e41a5824de\"", "last_updated": "2023-09-20T05:24:37Z", "stargazers_count": 381, "topics": ["deye", "energy", "inverter", "sofar", "sol-ark", "solar", "solarman", "solis", "sunsynk"], "last_fetched": 1695554171.505768, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201497401": {"repository_manifest": {"name": "Xiaomi IR Climate"}, "full_name": "Anonym-tsk/homeassistant-climate-xiaomi-remote", "authors": ["@anonym-tsk"], "category": "integration", "description": "Xiaomi IR Climate Component", "domain": "xiaomi_remote", "etag_repository": "W/\"81b010401c83771359cffe69045a0838facf9592908a851c25a803ed5f768583\"", "last_updated": "2022-10-11T15:33:07Z", "stargazers_count": 30, "topics": ["climate", "xiaomi"], "last_fetched": 1695553582.812386, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527278013": {"repository_manifest": {"name": "L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "country": "DE", "render_readme": true}, "full_name": "stephan192/hochwasserportal", "authors": ["@stephan192"], "category": "integration", "description": "Home Assistant integration for L\u00e4nder\u00fcbergreifendes Hochwasser Portal", "domain": "hochwasserportal", "etag_repository": "W/\"25279b43b96cea680cea78ec3781ea500f7280ffc5245947268a8cb51aecda8a\"", "last_updated": "2023-09-11T09:52:54Z", "stargazers_count": 12, "topics": ["hochwasserportal"], "last_fetched": 1695554170.954441, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "564355840": {"repository_manifest": {"name": "Shopping List with Grocy", "render_readme": true}, "full_name": "Anrolosia/Shopping-List-with-Grocy", "authors": ["@Anrolosia"], "category": "integration", "description": "A Shopping list integration with Grocy for Home Assistant", "domain": "shopping_list_with_grocy", "etag_repository": "W/\"4b8dcd45b9847d83574d1777ec8c7841d215a83ee1eb271a57f9f5b4d36bcc1e\"", "last_updated": "2023-09-22T11:42:18Z", "stargazers_count": 28, "topics": ["custom", "grocy"], "last_fetched": 1695553583.149491, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "289579468": {"repository_manifest": {"name": "Eskom Loadshedding Interface"}, "full_name": "swartjean/ha-eskom-loadshedding", "authors": ["@swartjean"], "category": "integration", "description": "Fetches loadshedding data from Eskom", "domain": "eskom_loadshedding", "etag_repository": "W/\"a28ead81516ca7a3a1de4e8d8f99184e8f02d28a5a0f543bc57d229a4770ed9e\"", "last_updated": "2022-11-27T12:13:05Z", "stargazers_count": 67, "topics": ["eskom", "eskomsepush", "esp", "loadshedding", "south-africa"], "last_fetched": 1695554172.460162, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "458491675": {"repository_manifest": {"name": "Nicehash Excavator Monitor Card", "filename": "nicehash-excavator-monitor-card.js", "render_readme": true}, "full_name": "MesserschmittX/lovelace-nicehash-excavator-monitor-card", "category": "plugin", "description": "Home Assistant UI Card for Nicehash Excavator Monitor integration", "etag_repository": "W/\"154b596637c786400d3ff9b4dee7debcb72c86cc6917039d937a2993f1e81b1d\"", "last_updated": "2022-05-15T07:59:36Z", "topics": ["excavator", "mining", "nicehash"], "last_fetched": 1695553549.671164, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "293488791": {"repository_manifest": {"name": "Uonet+ Vulcan", "country": "PL", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "Antoni-Czaplicki/vulcan-for-hassio", "authors": ["@Antoni-Czaplicki"], "category": "integration", "description": "Vulcan inegration for home assistamt", "domain": "vulcan", "etag_repository": "W/\"419dcd10020bacfcc2ddfaca18a83485d93ad4e7806a1926abeeb26157ee8e4d\"", "last_updated": "2023-04-17T14:37:37Z", "stargazers_count": 24, "topics": ["timetable", "vulcan"], "last_fetched": 1695553583.455863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "408074547": {"repository_manifest": {"name": "Acer Air Monitor", "filename": "acer_air_monitor.zip", "hacs": "1.6.0", "homeassistant": "2023.3.0", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "sugoi-wada/acer-air-monitor-2018", "authors": ["@sugoi-wada"], "category": "integration", "description": "Acer air monitor for Home Assistant", "domain": "acer_air_monitor", "etag_repository": "W/\"6766bdbf90db8b5799e49ac017c0de2a4d4e2d9c70f5cd93628bc202601df51f\"", "last_updated": "2023-09-24T09:24:17Z", "last_fetched": 1695554171.889325, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454440949": {"repository_manifest": {"name": "Room Card", "filename": "room-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/room-card", "category": "plugin", "description": "Show multiple entity states, attributes and icons in a single card in Home Assistant's Lovelace UI", "etag_repository": "W/\"0c69ec5f2dfd4723cfca36fc4634c41db2990f6de8e55b5dc63bc151dd1f65f7\"", "last_updated": "2023-09-01T10:19:43Z", "stargazers_count": 139, "topics": ["attribute", "card", "entities", "format", "homeassistant-frontend", "lovelace-custom-card", "room"], "last_fetched": 1695553547.254601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256928191": {"repository_manifest": {"name": "GCE Eco-Devices", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ecodevices", "authors": ["@Aohzan"], "category": "integration", "description": "Home Assistant custom component for GCE Eco-Devices", "domain": "ecodevices", "etag_repository": "W/\"fae00aca4720920295d1b167a53dbfce5709ef3655b621378974bcdc767b5e73\"", "last_updated": "2023-08-25T12:52:33Z", "stargazers_count": 11, "topics": ["domotique", "eco-devices", "ecodevices", "gce-electronics"], "last_fetched": 1695553583.470638, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583379046": {"repository_manifest": {"name": "Mold Risk Index", "homeassistant": "2022.8"}, "full_name": "Strixx76/mold_risk_index", "authors": ["@Strixx76"], "category": "integration", "description": "Calculate the level of risk of mold growth in a crawl space.", "domain": "mold_risk_index", "etag_repository": "W/\"ae32c6b1f07bcce03ef63a39a479d7ee83de76e5c3ed23257317c7dd5578fc66\"", "last_updated": "2023-07-14T07:37:39Z", "stargazers_count": 21, "topics": ["python3"], "last_fetched": 1695554171.412714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "580152298": {"repository_manifest": {"name": "Polar", "render_readme": true}, "full_name": "Aohzan/hass-polar", "authors": ["@Aohzan"], "category": "integration", "description": "Polar integration for Home Assistant", "domain": "polar", "etag_repository": "W/\"712a2a4638a70ff98f85697a39c68307e33f4b5a5c227e6af1686adf0c5a24ee\"", "last_updated": "2023-08-08T18:15:38Z", "stargazers_count": 10, "topics": ["home-assistant-integration", "polar", "polar-accesslink", "polar-electro"], "last_fetched": 1695553583.40671, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "177978011": {"repository_manifest": {"name": "ShellyForHass (Shelly integration)", "hide_default_branch": true, "zip_release": true, "filename": "shelly4hass.zip", "homeassistant": "0.104.0"}, "full_name": "StyraHem/ShellyForHASS", "authors": ["@hakana", "@StyraHem"], "category": "integration", "description": "Shelly smart home platform for Home Assistant", "domain": "shelly", "downloads": 13626, "etag_repository": "W/\"d95ac6b042dd66759f0836edd78879df62182b8e2bd479200d38cbaa0ca106e8\"", "last_updated": "2023-04-19T14:07:48Z", "stargazers_count": 594, "last_fetched": 1695554171.6697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "482473793": {"repository_manifest": {"name": "Prix Carburant", "country": "FR", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "Aohzan/hass-prixcarburant", "authors": ["@Aohzan"], "category": "integration", "description": "R\u00e9cup\u00e9ration des prix des stations en France", "domain": "prix_carburant", "etag_repository": "W/\"0d3de4278b20760c63e0f2eb7c3043de854d6806cac1623dbe1bcaab4305705d\"", "last_updated": "2023-06-16T13:49:27Z", "stargazers_count": 16, "topics": ["carburant", "gas", "price"], "last_fetched": 1695553584.430256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "294037465": {"repository_manifest": {"name": "Dual Smart Thermostat", "render_readme": true, "hide_default_branch": true, "homeassistant": "2023.3.0", "filename": "ha-dual-smart-thermostat.zip"}, "full_name": "swingerman/ha-dual-smart-thermostat", "authors": ["@swingerman"], "category": "integration", "description": "The `dual_smart_thermostat` is an enhaced verion of generic thermostat implemented in Home Assistant. It uses several sensors and dedicated switches connected to a heater and air conditioning under the hood.", "domain": "dual_smart_thermostat", "etag_repository": "W/\"51455f284a03b1af3c6c7842b22452bf8ff2041094801807dc06335b9ac46cc2\"", "last_updated": "2023-08-11T21:04:45Z", "stargazers_count": 67, "topics": ["thermostat"], "last_fetched": 1695554172.857701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158654878": {"repository_manifest": {"name": "Simple Thermostat", "homeassistant": "0.84.0", "render_readme": true}, "full_name": "nervetattoo/simple-thermostat", "category": "plugin", "description": "A different take on the thermostat card for Home Assistant \u2668\ufe0f", "downloads": 50908, "etag_repository": "W/\"79e9c9299f56e2a391b13b65f963b441fe296a98db8157afefff4d719afec8b2\"", "last_updated": "2023-03-04T03:44:35Z", "stargazers_count": 672, "topics": ["polymer-3"], "last_fetched": 1695553551.559326, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255258767": {"repository_manifest": {"name": "GCE IPX800 V4", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V4 integration for Home-Assistant", "domain": "ipx800v4", "etag_repository": "W/\"ea0edfe2fc2dc6517ce734a3897738b088b05f002e27b46c38525fae81e046d9\"", "last_updated": "2023-08-25T12:52:13Z", "stargazers_count": 17, "topics": ["domotique", "gce-electronics", "ipx800"], "last_fetched": 1695553584.985581, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292616002": {"repository_manifest": {"name": "Seedboxes.cc"}, "full_name": "swartjean/ha-seedboxes-cc", "authors": ["@swartjean"], "category": "integration", "description": "Home Assistant - Seedboxes.cc Integration", "domain": "seedboxes_cc", "etag_repository": "W/\"2fab8c1c549ffadaedabf4a9615072f8251f5add05aa178b9f73f0dbc0cda2ca\"", "last_updated": "2021-04-05T10:15:21Z", "stargazers_count": 2, "topics": ["monitoring", "seedbox", "torrents"], "last_fetched": 1695554172.546261, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432522624": {"repository_manifest": {"name": "GCE IPX800 V5", "country": "FR", "render_readme": true}, "full_name": "Aohzan/ipx800v5", "authors": ["@Aohzan"], "category": "integration", "description": "IPX800 V5 integration for Home-Assistant", "domain": "ipx800v5", "etag_repository": "W/\"273292fac804e89094a1b927a2b333f2de3939c9110cbf2a15c5a6847a93857f\"", "last_updated": "2023-08-25T12:51:54Z", "stargazers_count": 7, "topics": ["domotique", "gce-electronics", "home-assistant-integration", "ipx800", "ipx800-v5", "ipx800v5"], "last_fetched": 1695553584.936979, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121934877": {"repository_manifest": {"name": "Xiaomi Mi and Aqara Air Conditioning Companion Integration", "render_readme": true}, "full_name": "syssi/xiaomi_airconditioningcompanion", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi and Aqara Air Conditioning Companion integration for Home Assistant", "domain": "xiaomi_miio_airconditioningcompanion", "etag_repository": "W/\"c73d049448ec1eb579f0b09d8f818076922729943dfdde35e865311dc7d9fac1\"", "last_updated": "2023-06-13T07:55:43Z", "stargazers_count": 385, "topics": ["acpartner", "airconditioning", "aqara", "infrared", "xiaomi"], "last_fetched": 1695554173.685809, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188572845": {"repository_manifest": {"name": "Rotel Remote Card", "content_in_root": true}, "full_name": "marrobHD/rotel-card", "category": "plugin", "description": "\ud83d\udd0a Rotel Remote Card", "etag_repository": "W/\"aebe78b13cd915f9345a02ae97036c6a9a16e111754e901e8ee48e4989ffc3fa\"", "last_updated": "2022-05-25T19:39:13Z", "stargazers_count": 5, "topics": ["home-assistant-rotel-card", "lovelace-card"], "last_fetched": 1695553547.958453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "593780777": {"repository_manifest": {"name": "52PI UPS Integration", "render_readme": true}, "full_name": "archef2000/homeassistant-upsplus", "authors": ["@Archef2000"], "category": "integration", "description": "Home Assistant integration for the 52PI UPS", "domain": "upsplus", "etag_repository": "W/\"1dcd8f25fc6d92bda857624cd0548fa0d63b131302b5ae80e370916a13a130d4\"", "last_updated": "2023-09-05T22:28:02Z", "stargazers_count": 6, "topics": ["52pi", "custom-integration", "upsplus"], "last_fetched": 1695553584.907769, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "100234318": {"repository_manifest": {"name": "Xiaomi Philips Lights Integration", "render_readme": true}, "full_name": "syssi/philipslight", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Philips Lights integration for Home Assistant", "domain": "xiaomi_miio_philipslight", "etag_repository": "W/\"9883968399b99594a4cf2a1ef8a53dadebfe00d3060e56544de5e690f442a142\"", "last_updated": "2023-06-13T08:09:38Z", "stargazers_count": 66, "topics": ["light", "miio", "miio-protocol", "xiaomi", "xiaomi-philips-lights"], "last_fetched": 1695554173.594759, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443529332": {"repository_manifest": {"name": "Bobcat Miner 300", "render_readme": true}, "full_name": "ardevd/ha-bobcatminer", "authors": ["@ardevd"], "category": "integration", "description": "Home Assistant integration for the Bobcat Helium Miner", "domain": "bobcatminer", "etag_repository": "W/\"b0ccb119cf8fcd52a4a5377b5207a54077e3fd947e11e1994a566f365dde6f31\"", "last_updated": "2023-01-09T12:17:31Z", "stargazers_count": 10, "topics": ["bobcatminer", "cryptocurrency", "helium", "mining"], "last_fetched": 1695553585.087901, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "460108030": {"repository_manifest": {"name": "go-eCharger integration for Home Assistant using the MQTT API", "render_readme": true, "homeassistant": "2022.12.0"}, "full_name": "syssi/homeassistant-goecharger-mqtt", "authors": ["@syssi"], "category": "integration", "description": "go-eCharger integration for Home Assistant using the MQTT API", "domain": "goecharger_mqtt", "etag_repository": "W/\"21a7c9863aac5ea02d928bf1ee90efa044fe56a60aa814e9e579bb511d034c9c\"", "last_updated": "2023-05-21T08:15:10Z", "stargazers_count": 43, "topics": ["go-echarger", "goe-charger"], "last_fetched": 1695554172.822922, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "556789449": {"repository_manifest": {"name": "WhatsPie", "homeassistant": "2022.6.0", "render_readme": true}, "full_name": "arifwn/homeassistant-whatspie-integration", "authors": ["@arifwn"], "category": "integration", "description": "Send HomeAssistant Notifications to WhatsApp using WhatsPie", "domain": "whatspie", "etag_repository": "W/\"0572b1b038d06abe72ba82e1385f34cc28dd56bc1451e029199948f1d72c8582\"", "last_updated": "2022-11-22T10:23:37Z", "stargazers_count": 2, "topics": ["whatsapp", "whatspie"], "last_fetched": 1695553584.986837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164489685": {"repository_manifest": {"name": "Nextbike Integration", "render_readme": true}, "full_name": "syssi/nextbike", "authors": ["@syssi"], "category": "integration", "description": "Nextbike integration for Home Assistant", "domain": "nextbike", "etag_repository": "W/\"1cb41415cf1fa586b09ca57b447ba54b2e66b22b4dbd1cf2b7b256d499c4f623\"", "last_updated": "2023-03-08T13:10:42Z", "stargazers_count": 12, "topics": ["free-floating", "nextbike"], "last_fetched": 1695554173.028748, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186347733": {"repository_manifest": {"name": "Audi connect", "homeassistant": "0.110.0"}, "full_name": "arjenvrh/audi_connect_ha", "authors": ["@arjenvrh"], "category": "integration", "description": "Adds an audi connect integration to home assistant", "domain": "audiconnect", "etag_repository": "W/\"a8a1ab8cfe2177635ab3c8cf6dee02f90d25bfc324f2d3f6a254cd097b7c4f8d\"", "last_updated": "2023-09-13T05:13:26Z", "stargazers_count": 157, "topics": ["audi", "audi-connect", "sensors"], "last_fetched": 1695553585.237039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "134057086": {"repository_manifest": {"name": "Xiaomi Mi Electric Rice Cooker Integration", "render_readme": true}, "full_name": "syssi/xiaomi_cooker", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Electric Rice Cooker integration for Home Assistant", "domain": "xiaomi_miio_cooker", "etag_repository": "W/\"003aba2f6195ab69ae14097e9fe9c694bfa44192e80b634a10c7a18daea2abd5\"", "last_updated": "2023-06-08T05:04:34Z", "stargazers_count": 127, "topics": ["miio", "miio-protocol", "rice-cooker", "xiaomi", "xiaomi-cooker"], "last_fetched": 1695554173.943207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "160728801": {"repository_manifest": {}, "full_name": "asantaga/lightwaverf_HA_EnergySensor", "authors": ["@asantaga"], "category": "integration", "description": "Home Assistant Sensor for the LightwaveRF energy monitor", "domain": "lightwaverf_energy", "etag_repository": "W/\"80ddd8ca96917338c551bb8938030144d0f0426318fc1f7f9ced48b076139eb2\"", "last_updated": "2023-05-16T11:21:38Z", "stargazers_count": 5, "topics": ["electricity", "energysensor", "lightwaverf"], "last_fetched": 1695553585.321116, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "101482973": {"repository_manifest": {"name": "Xiaomi Mi Air Purifier, Air Humidifier, Air Fresh and Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_airpurifier", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Air Purifier and Xiaomi Mi Air Humidifier integration for Home Assistant", "domain": "xiaomi_miio_airpurifier", "etag_repository": "W/\"ec634ba1d304d86d411df5f456f09a6d0c60b9f288ae10813137b87ed144fe76\"", "last_updated": "2023-07-14T09:25:27Z", "stargazers_count": 416, "topics": ["airfresh", "airhumidifier", "airpurifier", "fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1695554174.048504, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572297252": {"repository_manifest": {"name": "IrrigationProgram Custom Card", "render_readme": true, "filename": "irrigation-card.js"}, "full_name": "petergridge/Irrigation-Card", "category": "plugin", "description": "Companion card for Irrigation-V5", "downloads": 1336, "etag_repository": "W/\"601e14df633f30e6db40f7575d27a170bc151f8105954e888c4b951e0e64db94\"", "last_updated": "2023-06-08T23:29:42Z", "stargazers_count": 14, "topics": ["irrigation", "irrigation-v5"], "last_fetched": 1695553553.056972, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "159080189": {"repository_manifest": {"name": "Drayton Wiser Integration for Home Assistant", "homeassistant": "2023.02", "render_readme": true, "zip_release": true, "filename": "wiser.zip"}, "full_name": "asantaga/wiserHomeAssistantPlatform", "authors": ["@asantaga", "@msp1974"], "category": "integration", "description": "Platform and related climate/sensors to support the Drayton Wiser Home Heating System", "domain": "wiser", "downloads": 962, "etag_repository": "W/\"2e7c7a68f5972ed122f9886f7b28e958c272afc75e09a0d3d7ec7bc8aacec262\"", "last_updated": "2023-09-23T17:21:21Z", "stargazers_count": 182, "topics": ["drayton", "heating", "wiser"], "last_fetched": 1695553585.923087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598336481": {"repository_manifest": {"name": "Israel Meteorological Service / sensor", "render_readme": true, "country": "IL"}, "full_name": "t0mer/ims-custom-component", "authors": ["@t0mer"], "category": "integration", "description": "The Israel Meteorological Service (IMS) integration component for home assistant", "domain": "ims", "etag_repository": "W/\"96ff083e42cb9c31f9f958a6e5560bf5ebd7a209a1151ee412a0902b584fb80a\"", "last_updated": "2023-09-10T09:01:07Z", "stargazers_count": 26, "topics": ["ims", "israel-meteorological-service", "python3"], "last_fetched": 1695554175.165797, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455846088": {"repository_manifest": {"name": "Sankey Chart Card", "render_readme": true, "filename": "ha-sankey-chart.js"}, "full_name": "MindFreeze/ha-sankey-chart", "category": "plugin", "description": "A Home Assistant lovelace card to display a sankey chart. For example for power consumption", "downloads": 1770, "etag_repository": "W/\"b12bb323a50ab547801c9951b7783582d168f0f036bc2abced21179bfadc7f4f\"", "last_updated": "2023-09-20T13:32:27Z", "stargazers_count": 224, "topics": ["energy-consumption", "lovelace-card"], "last_fetched": 1695553550.068128, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245694520": {"repository_manifest": {"name": "Helios ventilation", "render_readme": true}, "full_name": "asev/homeassistant-helios", "authors": ["@asev"], "category": "integration", "description": "Custom component for Home Assistant to connect Helios ventilation system.", "domain": "helios", "etag_repository": "W/\"198505addc9e5c710860f8fa26dcc1cee5a1d13ba6e9d326dc148ff1e95c8012\"", "last_updated": "2022-11-07T22:03:36Z", "stargazers_count": 9, "topics": ["helios", "ventilation"], "last_fetched": 1695553585.597678, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "97201395": {"repository_manifest": {"name": "Xiaomi Mi Smart WiFi Socket Integration", "render_readme": true}, "full_name": "syssi/xiaomiplug", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart WiFi Socket integration for Home Assistant", "domain": "xiaomi_miio_plug", "etag_repository": "W/\"27b66b15a57450d994d65a8c489f2f32739c0e48f6121b365ca55389271cad47\"", "last_updated": "2023-06-13T08:10:57Z", "stargazers_count": 104, "topics": ["miio", "miio-device", "miio-protocol", "switch", "xiaomi"], "last_fetched": 1695554174.721599, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "252926906": {"repository_manifest": {"name": "Uponor Smatrix Pulse", "render_readme": true}, "full_name": "asev/homeassistant-uponor", "authors": ["@asev"], "category": "integration", "description": "Uponor Smatrix Pulse heating/cooling system integration for Home Assistant.", "domain": "uponor", "etag_repository": "W/\"57d99b112516cecc010c4c97863aebac53173f224e7d4677881b03553e007c10\"", "last_updated": "2022-02-09T12:50:09Z", "stargazers_count": 31, "topics": ["heating-control", "smatrix", "uponor", "uponor-smatrix-pulse"], "last_fetched": 1695553586.659977, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129049262": {"repository_manifest": {"name": "Xiaomi Mi Smart Pedestal Fan Integration", "render_readme": true, "homeassistant": "2022.8.0"}, "full_name": "syssi/xiaomi_fan", "authors": ["@syssi"], "category": "integration", "description": "Xiaomi Mi Smart Fan integration for Home Assistant", "domain": "xiaomi_miio_fan", "etag_repository": "W/\"932c15fa3bf715e3bfa379c585936573dd0691c3940d9493108b54c0b266982f\"", "last_updated": "2023-09-20T12:15:40Z", "stargazers_count": 364, "topics": ["fan", "miio", "miio-protocol", "miot", "xiaomi"], "last_fetched": 1695554174.261621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391372854": {"repository_manifest": {"name": "Alarmo Card", "render_readme": true, "filename": "alarmo-card.js"}, "full_name": "nielsfaber/alarmo-card", "category": "plugin", "description": "Home Assistant card for controlling the Alarmo component", "downloads": 13053, "etag_repository": "W/\"0118c9583208c8165b0abfed8f7519f2553ed3b4af132a21ed55ae706d4c4d6c\"", "last_updated": "2023-09-02T04:00:35Z", "stargazers_count": 70, "topics": ["alarm", "alarmo", "assistant", "card", "home", "security"], "last_fetched": 1695553551.71554, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439944813": {"repository_manifest": {"name": "Miele", "filename": "miele.zip", "homeassistant": "2023.8.0", "render_readme": true, "zip_release": true}, "full_name": "astrandb/miele", "authors": ["@astrandb"], "category": "integration", "description": "A modern integration for Miele devices in Home Assistant", "domain": "miele", "downloads": 2349, "etag_repository": "W/\"0186a989b148c86883ee2649d702dfceb750b58dfa17e6e145756b836a38c87f\"", "last_updated": "2023-09-23T14:46:18Z", "stargazers_count": 112, "topics": ["miele"], "last_fetched": 1695553587.389756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "129353521": {"repository_manifest": {"name": "Xiaomi MiIO Raw", "render_readme": true}, "full_name": "syssi/xiaomi_raw", "authors": ["@syssi"], "category": "integration", "description": "Custom component for Home Assistant to faciliate the reverse engeneering of Xiaomi MiIO devices", "domain": "xiaomi_miio_raw", "etag_repository": "W/\"a2354ded90ede8ce228de21aed7d590d84aaa2b45b2dfcb9cee742ad2d3d7052\"", "last_updated": "2023-07-11T18:39:57Z", "stargazers_count": 98, "topics": ["miio", "miio-device", "miio-protocol", "monitoring"], "last_fetched": 1695554174.633687, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "232299868": {"repository_manifest": {"name": "Sentio", "render_readme": true, "homeassistant": "2023.4.0", "zip_release": true, "filename": "sentio.zip"}, "full_name": "astrandb/sentio", "authors": ["@astrandb"], "category": "integration", "description": "Custom component for Sentiotec sauna controller", "domain": "sentio", "downloads": 36, "etag_repository": "W/\"af41f3c5ea9a2971552e20fb73121df8cb482d985fd75a67bba49b26dcf943bc\"", "last_updated": "2023-04-03T21:30:29Z", "stargazers_count": 3, "topics": ["sentio", "sentiotec"], "last_fetched": 1695553587.239192, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625923963": {"repository_manifest": {"name": "SOMweb (for Sommer garage doors)", "filename": "somweb.zip", "hide_default_branch": true, "render_readme": true, "zip_release": true}, "full_name": "taarskog/home-assistant-component-somweb", "authors": ["@taarskog"], "category": "integration", "description": "Custom component for Home Assistant to manage garage doors and gates by Sommer", "domain": "somweb", "downloads": 139, "etag_repository": "W/\"c1f27e5a88a69af12d82545108f0869f5a898d5c91fdfb3c1548e3d6892cc801\"", "last_updated": "2023-09-11T04:20:56Z", "stargazers_count": 2, "topics": ["cover", "garage-door-opener", "home-assistant-custom-component", "home-assistant-integration", "sommer", "somweb"], "last_fetched": 1695554175.17667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "555221653": {"repository_manifest": {"name": "ViVa Coastal Weather", "filename": "viva.zip", "homeassistant": "2023.7.0", "render_readme": true, "zip_release": true}, "full_name": "astrandb/viva", "authors": ["@astrandb"], "category": "integration", "description": "A modern Home Assistant integration for ViVa weather service from Swedish Sj\u00f6fartsverket", "domain": "viva", "downloads": 123, "etag_repository": "W/\"8fa3ea32c559e5f907ab1897dd9b25dbdfc1ebe0a94c0b1d59a0f446a7339d3c\"", "last_updated": "2023-09-18T17:59:48Z", "stargazers_count": 3, "topics": ["sealevel", "sjofartsverket", "viva"], "last_fetched": 1695553587.157452, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "601113362": {"repository_manifest": {"name": "MaNish whatsapp custom notification / notify", "render_readme": true, "country": "IL"}, "full_name": "t0mer/manish-custom-notifier", "authors": ["@t0mer"], "category": "integration", "description": "manish custom notifier allows you to send whatsapp notification using Whatsapp Cloud API", "domain": "manish", "etag_repository": "W/\"7bcb17879c5f96250d54841161a53e6256c8ffef56faac089034790779a0060d\"", "last_updated": "2023-03-12T19:46:54Z", "stargazers_count": 18, "topics": ["homeassistant-custom-component", "notifications", "python3", "whatsapp", "whatsapp-api"], "last_fetched": 1695554174.964156, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "647324399": {"repository_manifest": {"name": "Additional CA", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "Athozs/hass-additional-ca", "authors": ["@Athozs"], "category": "integration", "description": "Add custom Certificate Authority to Home Assistant.", "domain": "additional_ca", "downloads": 49, "etag_repository": "W/\"a1bb64da5349aac43e4568f24a292d0f246c44074b66480ca1ad81448ddcf676\"", "last_updated": "2023-09-09T17:21:04Z", "stargazers_count": 6, "topics": ["certificate", "certificate-authority", "home-assistant-integration", "homeassistant-custom-component"], "last_fetched": 1695553587.111329, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307974458": {"repository_manifest": {"name": "ResRobot", "country": "SE", "homeassistant": "2023.5.2"}, "full_name": "TekniskSupport/home-assistant-resrobot", "authors": ["@iesus"], "category": "integration", "description": "Get departure times for swedish public transportation", "domain": "resrobot", "etag_repository": "W/\"33f4ad993a7781633e7afcb99a1033917a991a2dc4349c4d376ec6cf8f6922dc\"", "last_updated": "2023-05-07T05:53:35Z", "stargazers_count": 12, "topics": ["bus", "ferry", "iesus", "public", "sweden", "train", "tram", "transportation"], "last_fetched": 1695554176.296632, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "624779425": {"repository_manifest": {"name": "ZCS Azzurro", "homeassistant": "2023.5.0", "zip_release": true, "filename": "zcsazzurro.zip", "render_readme": true}, "full_name": "aturri/ha-zcsazzurro", "authors": ["@aturri"], "category": "integration", "description": "A modern integration for ZCS Azzurro devices in Home Assistant", "domain": "zcsazzurro", "downloads": 406, "etag_repository": "W/\"337b34bba2d0aacce91b12bd19e53e955a3fc7b2359a3e856fb7a66f4383cc05\"", "last_updated": "2023-08-19T07:38:14Z", "stargazers_count": 8, "topics": ["zcs", "zcsazzurro"], "last_fetched": 1695553587.20918, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181743867": {"repository_manifest": {"name": "Brematic", "homeassistant": "2021.10.0", "render_readme": true}, "full_name": "tefinger/hass-brematic", "authors": ["@tefinger"], "category": "integration", "description": "Custom component for Home Assistant to support Brematic devices", "domain": "brematic", "etag_repository": "W/\"d44aa27f8cc82bd500ea033412d3ac2aca9d5e4edc75ec250d94eb6baf18a2a2\"", "last_updated": "2022-03-30T09:51:05Z", "stargazers_count": 10, "topics": ["433mhz", "brematic", "brennenstuhl", "gateway", "intertechno"], "last_fetched": 1695554176.064811, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223739645": {"repository_manifest": {"name": "Climate IP"}, "full_name": "atxbyea/samsungrac", "authors": ["@SebuZet"], "category": "integration", "description": "Home Assistant Climate Device for controlling (not only) Samsung AC", "domain": "climate_ip", "etag_repository": "W/\"5313cde419d2fd386647720638217d102afabf40d8ac4f2e52b3bef553f7949a\"", "last_updated": "2023-08-29T09:01:43Z", "stargazers_count": 44, "topics": ["airconditioning", "hacktoberfest2021", "samsung"], "last_fetched": 1695553587.477456, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442181774": {"repository_manifest": {"name": "Daikin Altherma", "render_readme": true}, "full_name": "tadasdanielius/daikin_altherma", "authors": ["@tadasdanielius"], "category": "integration", "description": "Daikin Altherma custom component for home assistant", "domain": "daikin_altherma", "etag_repository": "W/\"c4ebdc85d9f6389b670b062626d74388ccc3f19220844cbbaa69cad48a8daa6c\"", "last_updated": "2023-07-21T18:53:47Z", "stargazers_count": 47, "topics": ["altherma", "brp069a61", "brp069a62", "daikin", "daikin-altherma", "homeassistant-custom-component"], "last_fetched": 1695554175.875974, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256899380": {"repository_manifest": {"name": "Project Three Zero (7-11 Fuel Lock Monitor)", "render_readme": true}, "full_name": "atymic/project_three_zero_ha", "authors": ["@atymic"], "category": "integration", "description": "Project Three Zero Home Assistant Integration", "domain": "project_zero_three", "etag_repository": "W/\"8fe4a7122f493cdd479425f5a6f364acefdc3fb241b1d0575405171553264413\"", "last_updated": "2022-01-27T00:39:52Z", "stargazers_count": 3, "topics": ["fuel"], "last_fetched": 1695553587.429358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544426802": {"repository_manifest": {"name": "Dreame Vacuum", "homeassistant": "2022.8.0", "zip_release": true, "filename": "dreame_vacuum.zip"}, "full_name": "Tasshack/dreame-vacuum", "authors": ["@tasshack"], "category": "integration", "description": "Home Assistant integration for Dreame robot vacuums with map support", "domain": "dreame_vacuum", "downloads": 4435, "etag_repository": "W/\"447845ac43aa5a3821ccbdfaa04662b1db8913a26f4c992ac638de3b7e04ff5d\"", "last_updated": "2023-09-19T18:25:09Z", "stargazers_count": 328, "topics": ["automation", "cloud", "dreame", "dreametech", "map", "mi-home", "miio", "robot", "vacuum", "vacuum-map", "valetudo", "xiaomi"], "last_fetched": 1695554176.104042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "341046872": {"repository_manifest": {"name": "BlueAir Integration"}, "full_name": "aijayadams/hass-blueair", "authors": ["@aijayadams"], "category": "integration", "description": "BlueAir sensor integration for HomeAssistant", "domain": "blueair", "etag_repository": "W/\"b26efd5e3ecda450d1ab37d1d634a090b13cfc4c1c284154d3d69e4474d4aaa6\"", "last_updated": "2023-05-08T10:57:23Z", "stargazers_count": 27, "topics": ["blueair"], "last_fetched": 1695553572.238523, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380330823": {"repository_manifest": {"name": "Eldes Alarm", "render_readme": true}, "full_name": "augustas2/eldes", "authors": ["@augustas2"], "category": "integration", "description": "Home Assistant custom component for Eldes Alarm system", "domain": "eldes_alarm", "etag_repository": "W/\"854719601626fb1b51feff4d26c6a54fe77453be09a5cf0494b97d8c9c68f37b\"", "last_updated": "2023-09-22T13:58:07Z", "stargazers_count": 12, "topics": ["alarm", "alarm-panel", "alarm-system", "eldes", "esim364", "esim384", "output", "pitbull-alarm-pro", "switch"], "last_fetched": 1695553587.771403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356030453": {"repository_manifest": {"name": "remote_syslog", "country": "US", "homeassistant": "2021.3.4", "render_readme": true}, "full_name": "TheByteStuff/RemoteSyslog_Service", "authors": ["@thebytestuff"], "category": "integration", "description": "Home Assistant Custom Component - send Syslog message to remote server.", "domain": "remote_syslog", "etag_repository": "W/\"bb3368c1821c71bd64c36f063fc839195d8fdf9f2cf09ae9c69313e9a7535257\"", "last_updated": "2023-02-23T15:41:24Z", "stargazers_count": 12, "topics": ["syslog", "syslog-client"], "last_fetched": 1695554176.791319, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607493281": {"repository_manifest": {"name": "NeoVolta", "render_readme": true, "homeassistant": "2022.2.0b0"}, "full_name": "austinmroczek/neovolta", "authors": ["@austinmroczek"], "category": "integration", "description": "NeoVolta integration for Home Assistant", "domain": "neovolta", "etag_repository": "W/\"870611d9483acd4ab85c92877ad81970747cd5ae6461bac5c5701b7027af7da5\"", "last_updated": "2023-04-15T23:57:41Z", "stargazers_count": 1, "topics": ["battery-management-system", "neovolta", "solar-battery"], "last_fetched": 1695553588.068184, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320324937": {"repository_manifest": {"name": "Veolia", "hacs": "0.24.0", "homeassistant": "0.115.0", "country": "FR"}, "full_name": "tetienne/veolia-custom-component", "authors": ["@tetienne"], "category": "integration", "description": "Home Assistant custom component to retrieve information from Veolia ", "domain": "veolia", "etag_repository": "W/\"767313284359c40282a32afff7f5a46f69499805e7d464bbe41c4bfe6657790d\"", "last_updated": "2023-01-27T16:18:19Z", "stargazers_count": 6, "topics": ["home-assistant-component", "veolia"], "last_fetched": 1695554176.469226, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "577981941": {"repository_manifest": {"name": "Panasonic Eolia HA component", "homeassistant": "0.110.0"}, "full_name": "avolmensky/panasonic_eolia", "authors": ["@avolmensky"], "category": "integration", "description": "Panasonic Eolia component for Home Assistant", "domain": "panasonic_eolia", "etag_repository": "W/\"90555bb3d9bfa3aaa4feb64a39ad8808860e95a07f26c52da65b762f560a720c\"", "last_updated": "2022-12-15T05:07:17Z", "stargazers_count": 2, "topics": ["eolia", "panasonic"], "last_fetched": 1695553588.680078, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "379688863": {"repository_manifest": {"name": "Thermal Vision", "country": "CA", "homeassistant": "2021.4", "render_readme": true}, "full_name": "TheRealWaldo/thermal", "authors": ["@TheRealWaldo"], "category": "integration", "description": "Thermal Vision Sensor and Camera for Home Assistant", "domain": "thermal_vision", "etag_repository": "W/\"396887d04fe87d8175ab4de499d7507b0026bdd5668c415fd3955999a021f36c\"", "last_updated": "2023-09-04T15:27:42Z", "stargazers_count": 48, "topics": ["homeassistant-custom-component", "thermal-camera"], "last_fetched": 1695554177.505688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296028613": {"repository_manifest": {"name": "D-Link Presence / device_Tracker", "render_readme": true}, "full_name": "ayavilevich/homeassistant-dlink-presence", "authors": ["@ayavilevich"], "category": "integration", "description": "A D-Link AP/router device tracker for Home Assistant", "domain": "dlink_presence", "etag_repository": "W/\"76d7d999e5e5d073ba5b6cc46cdc84b99b32e28368df0ea26b2a7cfbf73f779c\"", "last_updated": "2021-08-09T11:14:30Z", "stargazers_count": 9, "topics": ["d-link", "dlink", "presence-detection"], "last_fetched": 1695553589.191018, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "620909192": {"repository_manifest": {"name": "Cryptoinfo Advanced", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "TheHolyRoger/hass-cryptoinfo", "authors": ["@heyajohnny", "@TheHolyRoger"], "category": "integration", "description": "Provides Home Assistant sensors for all cryptocurrencies supported by CoinGecko", "domain": "cryptoinfo_advanced", "etag_repository": "W/\"b48f3baed9983fda2c4b8b72eedd05218dc79eea71ef39246a5002b06d076ddc\"", "last_updated": "2023-05-21T22:10:24Z", "stargazers_count": 2, "topics": ["bitcoin", "cryptocurrency"], "last_fetched": 1695554177.423657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "352169259": {"repository_manifest": {"name": "Neerslag App", "render_readme": true, "country": ["NL", "BE"]}, "full_name": "aex351/home-assistant-neerslag-app", "authors": ["@aex351"], "category": "integration", "description": "Neerslag app for Home Assistant. All-in-one package (Sensors + Card).", "domain": "neerslag", "etag_repository": "W/\"313a6a32ba9eaa42bc56320653184c6012e56223a8a2cde580b3768faab8d321\"", "last_updated": "2022-07-08T17:26:32Z", "stargazers_count": 43, "last_fetched": 1695553572.075856, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250866164": {"repository_manifest": {"name": "Event sensor", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "azogue/eventsensor", "authors": ["@azogue"], "category": "integration", "description": "HomeAssistant custom sensor to track specific events", "domain": "eventsensor", "etag_repository": "W/\"a4e46790bf41251cf74dbe4b22d70e017f52f8cb4ac51c8ee9fedb28a997f9d0\"", "last_updated": "2023-09-05T10:28:11Z", "stargazers_count": 84, "last_fetched": 1695553589.416673, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "496755553": {"repository_manifest": {"name": "Raspberry Pi 1-Wire via sysbus", "homeassistant": "2022.5.0"}, "full_name": "thecode/ha-onewire-sysbus", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant 1-Wire via sysbus", "domain": "onewire_sysbus", "etag_repository": "W/\"84eb99945797d02510c652c64f105e12b6fc205fb4a0655517cb59709a235eea\"", "last_updated": "2023-09-23T18:00:05Z", "stargazers_count": 21, "topics": ["1-wire", "raspberry-pi"], "last_fetched": 1695554176.872056, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334523683": {"repository_manifest": {"name": "Teufel Raumfeld", "zip_release": true, "filename": "teufel_raumfeld.zip"}, "full_name": "B5r1oJ0A9G/teufel_raumfeld", "authors": ["@B5r1oJ0A9G"], "category": "integration", "description": "Integration for Teufel smart speaker (aka Raumfeld Multiroom) into https://www.home-assistant.io/.", "domain": "teufel_raumfeld", "downloads": 342, "etag_repository": "W/\"dd254463a35112f59f37bc5a4f59ceb1d2fca52557cf647f8bb1e7703a5092d2\"", "last_updated": "2023-08-25T17:39:18Z", "stargazers_count": 21, "topics": ["hassfeld", "multiroom", "multiroom-audio", "raumfeld", "smart-speaker", "teufel"], "last_fetched": 1695553589.552621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454951296": {"repository_manifest": {"name": "Raspberry Pi GPIO", "homeassistant": "2022.7.0"}, "full_name": "thecode/ha-rpi_gpio", "authors": ["@thecode"], "category": "integration", "description": "Home Assistant Raspberry Pi GPIO Integration", "domain": "rpi_gpio", "etag_repository": "W/\"b1dd453a4b807bf8d0fd0fad3737b4b483646bf8ad36006e4a83d26af4a6b88d\"", "last_updated": "2023-09-22T18:44:18Z", "stargazers_count": 124, "topics": ["iot", "raspberry-pi", "rpi-gpio"], "last_fetched": 1695554177.137816, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237695750": {"repository_manifest": {"name": "OpenNEM (AU) Data", "country": "AU"}, "full_name": "bacco007/sensor.opennem", "authors": ["@bacco007"], "category": "integration", "description": "OpenNEM Sensor for Home Assistant", "domain": "opennem", "etag_repository": "W/\"ea474bbbe4fffcda67a54d36c985f35d56a3e121b1b11cdf6692bc63d6e0f6fc\"", "last_updated": "2023-09-08T23:56:08Z", "stargazers_count": 11, "topics": ["opennem"], "last_fetched": 1695553589.542628, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "239339530": {"repository_manifest": {"name": "RAD Hoekschewaard Afval Kalender", "render_readme": true, "country": ["NL"], "homeassistant": "0.100.0"}, "full_name": "Johnwulp/rad-afval", "authors": ["@johnwulp"], "category": "integration", "description": "Home Assisant sensor component for RAD Hoekschewaard Afval Kalender", "domain": "rad-afval", "etag_repository": "W/\"dcf26ef802e9b849b5414fe76bb705ec9efd16940e10d4a164c90a7ed11ef9e6\"", "last_updated": "2022-02-03T19:08:50Z", "stargazers_count": 3, "last_fetched": 1695554092.234089, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265059207": {"repository_manifest": {"name": "ThermIQ MQTT", "hacs": "0.24.0", "homeassistant": "2022.01", "render_readme": true}, "full_name": "ThermIQ/thermiq_mqtt-ha", "authors": ["@thermiq"], "category": "integration", "description": "Home Assistant integration of ThermIQ-MQTT, providing control and logging of Thermia heatpumps ", "domain": "thermiq_mqtt", "etag_repository": "W/\"77c9636c2a72ec8a2608fd267fe3cb052c341f7fe9791e69a52b8024cef4fdf7\"", "last_updated": "2023-07-02T18:17:23Z", "stargazers_count": 19, "topics": ["bergvarme", "danfoss", "dhp", "diplomat", "g2", "g3", "ha", "heatpump", "optimum", "thermal-pump", "thermia", "thermiq", "thermiq-mqtt", "varmepump"], "last_fetched": 1695554178.196108, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229519365": {"repository_manifest": {"name": "WaterNSW Real Time Data", "country": "AU"}, "full_name": "bacco007/sensor.waternsw", "authors": ["@bacco007"], "category": "integration", "description": "Home Assistant Sensor for WaterNSW Real Time Data", "domain": "waternsw", "etag_repository": "W/\"5df3422eae9ab437d81a9dad600521237d31a3c0148cf4fc352f3fb8edb21460\"", "last_updated": "2022-06-10T08:04:57Z", "stargazers_count": 6, "last_fetched": 1695553589.495485, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "121891488": {"repository_manifest": {"name": "Lennox iComfort WiFi Thermostat Integration", "homeassistant": "2021.4.0"}, "full_name": "thevoltagesource/LennoxiComfort", "authors": ["@thevoltagesource"], "category": "integration", "description": "Home Assistant custom component for controlling Lennox iComfort WiFi and AirEase Comfort Sync thermostats.", "domain": "myicomfort", "etag_repository": "W/\"7e38b6b065e684295e352ec4dcf41520225353501c1bef09b5b9f560516a8923\"", "last_updated": "2023-07-31T03:05:39Z", "stargazers_count": 28, "topics": ["icomfort", "lennox", "thermostat"], "last_fetched": 1695554178.303889, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537793361": {"repository_manifest": {"name": "MyJDownloader Card", "filename": "myjdownloader-card.js"}, "full_name": "Nyaran/myjdownloader-card", "category": "plugin", "description": "This Lovelace custom card displays downloads information provided by the MyJDownloader Integration", "downloads": 791, "etag_repository": "W/\"741c5e2d0dbe4654c4ed74a146f1f11a17b17ddd1e5420a12f177b08282bf762\"", "last_updated": "2023-09-19T03:18:09Z", "stargazers_count": 4, "topics": ["hacs-custom", "jdownloader", "myjdownloader"], "last_fetched": 1695553551.965518, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "474172189": {"repository_manifest": {"name": "Anycubic 3D Printer", "country": "US", "homeassistant": "2022.3"}, "full_name": "adamoutler/anycubic-homeassistant", "authors": ["@adamoutler"], "category": "integration", "description": "Home assistant integration for Anycubic Printers. ", "domain": "anycubic_wifi", "etag_repository": "W/\"397d4c9c35996a76b721d3a55b6af82a985050f2044711d799a8209e11431640\"", "last_updated": "2023-08-22T20:43:11Z", "stargazers_count": 7, "topics": ["3d-printing"], "last_fetched": 1695553571.881189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282688934": {"repository_manifest": {"name": "EVA II PRO WiFi Midea Inventor Dehumidifier custom integration", "homeassistant": "0.96.0"}, "full_name": "barban-dev/homeassistant-midea-dehumidifier", "authors": ["@barban-dev"], "category": "integration", "description": "Home Assistant Custom Integration for EVA II PRO WiFi Smart Dehumidifier appliance by Midea/Inventor.", "domain": "midea_dehumidifier", "etag_repository": "W/\"19518d0a2c9fa7a4605fedef281568e480d3c7fd9aab75b355efc29f291edb85\"", "last_updated": "2022-01-31T20:14:41Z", "stargazers_count": 56, "topics": ["dehumidifier", "eva-ii-pro-wifi", "internet-of-things", "inventor", "iot", "midea"], "last_fetched": 1695553589.548499, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491066500": {"repository_manifest": {"name": "Robonomics", "render_readme": true}, "full_name": "airalab/homeassistant-robonomics-integration", "authors": ["@airalab"], "category": "integration", "description": "Remote control all Home Assistant devices through Robonomics blockchain", "domain": "robonomics", "etag_repository": "W/\"24767c164f1ae87200a5d169918444896ff2ba882f6cddb1b6306c1a4ed0efcb\"", "last_updated": "2023-09-11T14:02:01Z", "stargazers_count": 4, "topics": ["blockchain", "iot", "robonomics"], "last_fetched": 1695553573.378637, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403123516": {"repository_manifest": {"name": "Ecowater Softener", "render_readme": true}, "full_name": "barleybobs/homeassistant-ecowater-softener", "authors": ["@barleybobs"], "category": "integration", "description": "A Homeassistant custom component to integrate Ecowater water softeners", "domain": "ecowater_softener", "etag_repository": "W/\"9948e79cefae2506fe563f35f174956fd505fa614762131b128dc597a2e76ee3\"", "last_updated": "2023-03-25T07:26:21Z", "stargazers_count": 21, "topics": ["ecowater"], "last_fetched": 1695553589.564937, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "572278409": {"repository_manifest": {"filename": "irrigationprogram.zip", "name": "IrrigationProgram Custom Component", "render_readme": true, "zip_release": true}, "full_name": "petergridge/Irrigation-V5", "authors": ["@petergridge"], "category": "integration", "description": "Irrigation custom component for Home Assistant", "domain": "irrigationprogram", "downloads": 510, "etag_repository": "W/\"408ee8559e2db61a904db67fbe84bc3b3373945af7e4f9ffb48cbdad743d9491\"", "last_updated": "2023-09-18T09:11:06Z", "stargazers_count": 39, "topics": ["irrigation"], "last_fetched": 1695554140.274469, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504664392": {"repository_manifest": {"name": "PowUnity BikeTrax", "render_readme": true}, "full_name": "basilfx/homeassistant-biketrax", "authors": ["@basilfx"], "category": "integration", "description": "Custom component for the PowUnity BikeTrax integration for Home Assistant.", "domain": "biketrax", "etag_repository": "W/\"f05bf86e0d5048e58db08d931816dcb9d1046de156cd26e288730abd4cded97e\"", "last_updated": "2023-09-11T10:24:21Z", "stargazers_count": 4, "topics": ["biketrax", "powunity"], "last_fetched": 1695553590.053978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "325962977": {"repository_manifest": {"name": "EMSC Earthquake RSS Feed", "hacs": "1.6.0", "homeassistant": "2021.12.2"}, "full_name": "msekoranja/emsc-hacs-repository", "authors": ["@msekoranja"], "category": "integration", "description": "EMSC Home Assistant Integration", "domain": "emscrss", "etag_repository": "W/\"948e5fc0cbf904bb632d51f3d6601755c8268afcac0f9460a8a3b9cc9cfb6852\"", "last_updated": "2023-07-26T18:58:47Z", "stargazers_count": 3, "last_fetched": 1695554126.206409, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "610297310": {"repository_manifest": {"name": "SickGear", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "thisisthetechie/home-assistant-sickgear", "authors": ["@thisisthetechie"], "category": "integration", "description": "An Integration to allow Home Assistant and SickGear to be the best of friends", "domain": "sickgear", "etag_repository": "W/\"c0a9f83d556a3ec5034a9460815ff9b5d53a4c3cd99798aa7dd676377e2cfa99\"", "last_updated": "2023-09-18T17:09:40Z", "stargazers_count": 1, "topics": ["home-assistant-integration", "sickgear"], "last_fetched": 1695554178.212657, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "290261325": {"repository_manifest": {"name": "Adaptive Lighting", "render_readme": true, "homeassistant": "2022.11.0"}, "full_name": "basnijholt/adaptive-lighting", "authors": ["@basnijholt", "@RubenKelevra", "@th3w1zard1", "@protyposis"], "category": "integration", "description": "Adaptive Lighting custom component for Home Assistant", "domain": "adaptive_lighting", "etag_repository": "W/\"b5e7462a27f5a726d5729d20f40cc53eef1a0ea18d66462a3ee2435002904553\"", "last_updated": "2023-09-23T17:19:33Z", "stargazers_count": 1196, "topics": ["adaptive-lighting", "automation", "hue", "iot", "lights", "sunrise", "sunset", "zigbee"], "last_fetched": 1695553590.473424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194140521": {"repository_manifest": {"name": "browser_mod", "homeassistant": "2023.4.0"}, "full_name": "thomasloven/hass-browser_mod", "category": "integration", "description": "\ud83d\udd39 A Home Assistant integration to turn your browser into a controllable entity and media player", "domain": "browser_mod", "etag_repository": "W/\"9c1d9b3a2e4de4b6aceda0f1b55b26f7bf06198fbfd41552c09d482523f4b225\"", "last_updated": "2023-07-25T05:52:38Z", "stargazers_count": 1040, "last_fetched": 1695554178.935048, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "287318591": {"repository_manifest": {"name": "Husqvarna Automower", "homeassistant": "2023.7.0", "render_readme": true, "zip_release": true, "filename": "husqvarna_automower.zip"}, "full_name": "Thomas55555/husqvarna_automower", "authors": ["@Thomas55555"], "category": "integration", "description": "Custom component for Home Assistant to monitor and control your Husqvarna Automower", "domain": "husqvarna_automower", "downloads": 1187, "etag_repository": "W/\"97094bd5889b5fecc7df306e73abd9501817e15b68f3e546c057ca553d0b81d0\"", "last_updated": "2023-09-16T22:30:49Z", "stargazers_count": 89, "topics": ["husqvarna-automower"], "last_fetched": 1695554178.859237, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "181480967": {"repository_manifest": {}, "full_name": "basschipper/homeassistant-generic-hygrostat", "authors": ["@basschipper"], "category": "integration", "description": "Generic Hygrostat for Home Assistant", "domain": "generic_hygrostat", "etag_repository": "W/\"fc311245810e362799b9b258f87255a2f37c6f8652d1cddc6bc80cb7211efa2e\"", "last_updated": "2023-06-08T05:18:12Z", "stargazers_count": 68, "last_fetched": 1695553590.654324, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "537001731": {"repository_manifest": {"name": "Facebook Messenger", "render_readme": true}, "full_name": "emes30/facebook_messenger", "authors": ["@emes30"], "category": "integration", "description": "Home Assistant custom integration for Facebook Messenger.", "domain": "facebook_messenger", "etag_repository": "W/\"f59a50429525da9ad72d5c86bcf691f633b064545ec6d2918717e88bd1af676f\"", "last_updated": "2022-09-26T21:07:38Z", "stargazers_count": 11, "topics": ["facebook", "images", "messenger"], "last_fetched": 1695553636.104031, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200897141": {"repository_manifest": {"name": "lovelace_gen", "homeassistant": "2021.4.0"}, "full_name": "thomasloven/hass-lovelace_gen", "category": "integration", "description": "\ud83d\udd39 Improve the lovelace yaml parser for Home Assistant", "domain": "lovelace_gen", "etag_repository": "W/\"5cb73581a63f3d85e796743be10e10ad578966441e128fb3fca03a32214e8903\"", "last_updated": "2022-10-20T21:24:20Z", "stargazers_count": 177, "last_fetched": 1695554179.284645, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "544910198": {"repository_manifest": {"name": "WaterNSW WaterInsights", "render_readme": true, "country": ["AU"], "homeassistant": "2022.9"}, "full_name": "battlemoose/waternsw-waterinsights-ha", "authors": ["@battlemoose"], "category": "integration", "description": "A Home Assistant integration to fetch NSW dam level and capacity data from the WaterNSW WaterInsights API", "domain": "waterinsights", "etag_repository": "W/\"24da4edd75c034e55db1967afccbf59e71eaed44d9044e6270281bff6666acb5\"", "last_updated": "2022-11-27T22:31:47Z", "stargazers_count": 1, "topics": ["australia", "dam", "nsw", "water"], "last_fetched": 1695553591.306267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607766615": {"repository_manifest": {"name": "HAM Radio Propagation", "country": "IT", "render_readme": true, "homeassistant": "2022.4"}, "full_name": "emics/ham_radio_propagation", "authors": ["@emics"], "category": "integration", "description": "Custom Integration that allows Home Assistant to receive information on Radio Propagation based on solar conditions and the degree of refraction of the Ionosphere. It also allows you to know the status for the different HF frequency bands and the maximum usable frequency through hundreds of stations installed on earth.", "domain": "ham_radio_propagation", "downloads": 10, "etag_repository": "W/\"2e8073051f967f6e2ef0976e602bf654baead1f3dcc2b00b002cb0e3041844a8\"", "last_updated": "2023-06-15T13:29:25Z", "stargazers_count": 27, "topics": ["assistant", "ham-radio", "home"], "last_fetched": 1695553636.257135, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157618389": {"repository_manifest": {"name": "fontawesome", "render_readme": true, "homeassistant": "2021.11.0b0"}, "full_name": "thomasloven/hass-fontawesome", "category": "integration", "description": "\ud83d\udd39 Use icons from fontawesome in home-assistant", "domain": "fontawesome", "etag_repository": "W/\"6a284baa9a65b4a2ffdb7bc91bdcb669c9a4018df2f512ca8fdc479d6c5e96c2\"", "last_updated": "2023-01-07T11:46:00Z", "stargazers_count": 228, "last_fetched": 1695554179.185282, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "579801670": {"repository_manifest": {"name": "JellyFish Lighting", "zip_release": true, "filename": "hass-jellyfish-lighting.zip"}, "full_name": "bdunn44/hass-jellyfish-lighting", "authors": ["@bdunn44"], "category": "integration", "description": "A Jellyfish Lighting integration for Home Assistant", "domain": "jellyfish_lighting", "downloads": 96, "etag_repository": "W/\"3c98d2adbbc916cfa4026e67dedafef479d4f5e3605325bfd9056709aaadffd0\"", "last_updated": "2023-05-24T21:34:01Z", "stargazers_count": 6, "topics": ["assistant", "home", "jellyfish", "led", "led-controller", "led-strips", "lighting"], "last_fetched": 1695553591.623424, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319401286": {"repository_manifest": {"name": "Rademacher HomePilot Bridge", "zip_release": true, "filename": "rademacher.zip", "country": "PT", "homeassistant": "2021.12.8", "render_readme": true}, "full_name": "peribeir/homeassistant-rademacher", "authors": ["@peribeir"], "category": "integration", "description": "This custom integration provides access to Rademacher Devices connected to a HomePilot (or Start2Smart) bridge.", "domain": "rademacher", "downloads": 1013, "etag_repository": "W/\"4ea88941c7e98e69df866ce9c73e171c0967f01df5da5e2fdd39a57ab23c00f4\"", "last_updated": "2023-09-05T20:06:35Z", "stargazers_count": 37, "topics": ["homepilot", "iot", "rademacher"], "last_fetched": 1695554139.689443, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586363416": {"repository_manifest": {"name": "Mushroom - Better Sliders", "filename": "mushroom.js", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "phischdev/lovelace-mushroom-better-sliders", "category": "plugin", "description": "Fork of Mushroom Cards - For better touch control of light sliders \ud83c\udf44", "downloads": 10018, "etag_repository": "W/\"e75eff5ce67aed3c329db642bc16c87224ba8a580d09a821513ed7f2b4a32a56\"", "last_updated": "2023-07-11T13:23:20Z", "stargazers_count": 17, "topics": ["card", "mushroom", "sliders", "touch"], "last_fetched": 1695553553.526084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254203764": {"repository_manifest": {"name": "Bunq balance sensor", "render_readme": true}, "full_name": "ben8p/home-assistant-bunq-balance-sensors", "authors": ["@BSantalucia"], "category": "integration", "description": "Home assistant custom component to provide monetary account balance sensors for Bunq", "domain": "bunq", "etag_repository": "W/\"b3918a01d6959fe610bd7f8b2ba4efc4d8536231615fc4c1a62643b3a3b72c4f\"", "last_updated": "2023-08-08T17:25:05Z", "stargazers_count": 7, "topics": ["bunq", "bunq-api"], "last_fetched": 1695553591.543423, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202220932": {"repository_manifest": {}, "full_name": "thomasloven/hass-favicon", "category": "integration", "description": "\ud83d\udd39 Change the favicon of your Home Assistant instance", "domain": "favicon", "etag_repository": "W/\"80a3522006a44f9551f5b15bf1725e778a37a22bdaccc648c49e7e8396399b55\"", "last_updated": "2022-11-11T01:08:24Z", "stargazers_count": 90, "last_fetched": 1695554178.756207, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363203831": {"repository_manifest": {"name": "SureHA", "content_in_root": true, "render_readme": true}, "full_name": "benleb/sureha", "authors": ["@benleb"], "category": "integration", "description": "SureHA \ud83d\udc3e monitor & control your Sure Petcare devices via Home Assistant", "domain": "sureha", "etag_repository": "W/\"b9f2bff6f36dc71ecc5e6f2397ec3f58b68bf8d9cd960ff0f0861840558679fa\"", "last_updated": "2021-09-20T15:35:49Z", "stargazers_count": 16, "topics": ["surepet", "surepetcare", "surepy"], "last_fetched": 1695553591.706234, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "368653916": {"repository_manifest": {"name": "MOOX-Track", "render_readme": true}, "full_name": "moox-it/hass-moox-track", "authors": ["@moox-it"], "category": "integration", "description": "MOOX-Track Custom Component for HASS (hass-moox-track) is a custom component that connects your MOOX Track devices to Home Assistant as \"Device Trackers\"", "domain": "moox_track", "etag_repository": "W/\"edc50449bbde708244a8401f8d5927f6088aebf2b1f789f596f601dc5297d7e0\"", "last_updated": "2022-08-29T11:36:27Z", "stargazers_count": 1, "topics": ["device", "gps", "moox", "track", "tracker"], "last_fetched": 1695554125.124822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488091347": {"repository_manifest": {"name": "2minersInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/2minersInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from 2miners.com on a specified miner.", "domain": "2minersinfo", "etag_repository": "W/\"0a0507a1704749543b4029ab482a1fe0f645c3ff589eda358b3bd0fc52ce0dc2\"", "last_updated": "2022-05-24T18:49:52Z", "stargazers_count": 4, "topics": ["2miners", "2miners-api", "miner", "statistics"], "last_fetched": 1695554179.529158, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "301509152": {"repository_manifest": {"name": "Novus 300 Bus", "render_readme": true}, "full_name": "BenPru/novus300_Rs485", "authors": ["@BenPru"], "category": "integration", "description": "Home Assistant HACS component to readout values from a Paul Novus 300 ventilation system", "domain": "novus300bus", "etag_repository": "W/\"b3f1e80011efdb0a86885f3c2f777ddf06f77d5cbd34e131a01fe22183e1cd3d\"", "last_updated": "2023-01-30T22:06:47Z", "stargazers_count": 6, "last_fetched": 1695553591.644243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398601732": {"repository_manifest": {"name": "FlexpoolInfo", "render_readme": true, "homeassistant": "0.100.0"}, "full_name": "ThomasPrior/FlexpoolInfo", "authors": ["@thomasprior"], "category": "integration", "description": "Provides data from Flexpool.io on a specified miner.", "domain": "flexpoolinfo", "etag_repository": "W/\"a54b2bb2d264d354526844793a5f02366655108ad0e8888e98efffc7f61d3f33\"", "last_updated": "2022-11-05T14:35:14Z", "stargazers_count": 7, "topics": ["flexpool", "flexpool-api", "miner", "statistics"], "last_fetched": 1695554179.635688, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "137655647": {"repository_manifest": {}, "full_name": "bertbert72/HomeAssistant_VirginTivo", "authors": ["@bertbert72"], "category": "integration", "description": "HomeAssistant component for control of Virgin Media Tivo boxes", "domain": "virgintivo", "etag_repository": "W/\"049fe2aca4500144e8dbdb858f58d0469a46f13e835535272e42d044901cac6e\"", "last_updated": "2023-01-25T21:43:05Z", "stargazers_count": 28, "last_fetched": 1695553591.684371, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "523827471": {"repository_manifest": {"name": "Systemair SAVE Connect Integration", "homeassistant": "2022.8.3", "render_readme": true}, "full_name": "perara/systemair-save-connect", "authors": ["@perara"], "category": "integration", "description": "Systemair SAVE Connect: custom integration for Home Assistant", "domain": "systemair", "etag_repository": "W/\"8e2210d39ee7959dc11f69c487e4f19f0189e986f708ca9b688f3c59dcd5c07b\"", "last_updated": "2022-08-15T18:38:52Z", "stargazers_count": 5, "topics": ["systemair", "ventilation"], "last_fetched": 1695554139.257495, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "162808336": {"repository_manifest": {"name": "Lightwave RF"}, "full_name": "bigbadblunt/homeassistant-lightwave2", "authors": ["@bigbadblunt"], "category": "integration", "description": "Lightwave RF custom component for Home Assistant. Requires generation 2 (\"Link Plus\") hub, but will control both generation 1 (\"Connect Series\") and generation 2 (\"Smart Series\") devices.", "domain": "lightwave2", "etag_repository": "W/\"74b9679e786e1c7b3b5cd880d0e68b9940a577f50463811a77a4479bdf370e1f\"", "last_updated": "2023-09-16T06:06:28Z", "stargazers_count": 37, "topics": ["lightwave", "lightwaverf"], "last_fetched": 1695553591.989189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "635072820": {"repository_manifest": {"name": "T-Smart thermostat"}, "full_name": "pdw-mb/tsmart_ha", "authors": ["@pdw-mb"], "category": "integration", "description": "Support for Tesla T-Smart thermostats in Home Assistant", "domain": "t_smart", "etag_repository": "W/\"390cec74d78ce1cccb516ffa8e37e9a61d37af172d14645243385bbb314a5c0d\"", "last_updated": "2023-09-05T22:14:07Z", "stargazers_count": 4, "topics": ["t-smart"], "last_fetched": 1695554139.202193, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "256292682": {"repository_manifest": {"name": "Battery State Card / Entity Row", "filename": "battery-state-card.js", "render_readme": true}, "full_name": "maxwroc/battery-state-card", "category": "plugin", "description": "Battery state card for Home Assistant", "downloads": 41472, "etag_repository": "W/\"b1d131e6a72aa5c82012bd39f08312cf1bba6f873bd51e9d6673e55cdb580adc\"", "last_updated": "2023-06-05T15:58:12Z", "stargazers_count": 554, "topics": ["battery", "lovelace-custom-card"], "last_fetched": 1695553549.476402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "356033332": {"repository_manifest": {"name": "Crypto Tracker", "render_readme": true}, "full_name": "BigNocciolino/CryptoTracker", "authors": ["@BigNocciolino"], "category": "integration", "description": "Integration for Home Assistant to implement a crypto tracking system", "domain": "cryptostate", "etag_repository": "W/\"bfe41a4dc8b70bb23eca5902c78d454f85cd7f72826b43e5cf0681343d2d4380\"", "last_updated": "2023-04-03T14:47:22Z", "stargazers_count": 24, "topics": ["automation", "currency", "tracker"], "last_fetched": 1695553592.331835, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "251020820": {"repository_manifest": {"name": "Nespresso Ble coffee machine"}, "full_name": "tikismoke/home-assistant-nespressoble", "authors": ["@Tikismoke"], "category": "integration", "description": "NESPRESSO ble Home Assistant custom componenets and also a 2MQTT script", "domain": "nespresso", "etag_repository": "W/\"e3fb4be712a53b9286d312c7afe9c5cde5ce845da436a025a89598225a3480ba\"", "last_updated": "2023-03-04T12:20:10Z", "stargazers_count": 35, "topics": ["nespresso", "nespresso-ble"], "last_fetched": 1695554180.398957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236146080": {"repository_manifest": {"name": "Solaredge Modbus", "homeassistant": "2023.9.2"}, "full_name": "binsentsu/home-assistant-solaredge-modbus", "authors": ["@binsentsu"], "category": "integration", "description": "Home assistant Component for reading data locally from Solaredge inverter through modbus TCP", "domain": "solaredge_modbus", "etag_repository": "W/\"4e3e7ff4b51d1a1c80692c79be987b3cc93fe73554ef9aa904f93493ce7ad1b0\"", "last_updated": "2023-09-16T08:53:27Z", "stargazers_count": 194, "topics": ["modbus", "modbus-tcp", "solaredge", "solaredge-inverter"], "last_fetched": 1695553592.774267, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472497355": {"repository_manifest": {"name": "Energi Data Service", "render_readme": true, "homeassistant": "2023.3.0", "zip_release": true, "filename": "energidataservice.zip", "country": ["DK", "SE", "NO", "FI", "EE", "LV", "LT", "FR", "NL", "BE", "AT", "DE", "LU"]}, "full_name": "MTrab/energidataservice", "authors": ["@MTrab"], "category": "integration", "description": "Fetches spot prices from Energi Data Service", "domain": "energidataservice", "downloads": 1534, "etag_repository": "W/\"52b36ab5182c89774d3e755e19151804151cd7430976f3fc2f9f480d854351bf\"", "last_updated": "2023-09-18T06:43:54Z", "stargazers_count": 111, "topics": ["energi", "spotprice", "statistics"], "last_fetched": 1695554128.06866, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237102126": {"repository_manifest": {"name": "Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm", "authors": ["@kabturek", "@peetereczek"], "category": "integration", "description": "Home Assistant (hass.io) custom component for Warsaw public transport", "domain": "ztm", "etag_repository": "W/\"2353a6be55541c7fa9fa04f6ab250a988354406d64f07fe97129f823011abed4\"", "last_updated": "2022-02-02T11:15:20Z", "stargazers_count": 8, "last_fetched": 1695554139.266214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "582464471": {"repository_manifest": {"name": "OralB_ble", "homeassistant": "2022.11.0"}, "full_name": "bkbilly/oralb_ble", "authors": ["@bkbilly"], "category": "integration", "description": "\ud83e\udea5 Integrates OralB Bluetooth Toothbrushes", "domain": "oralb_ble", "etag_repository": "W/\"51c49fd60b7efff8264ca40f2004fe26d9c64ead04683a72277dca99dd0e60f4\"", "last_updated": "2023-01-06T07:45:15Z", "stargazers_count": 2, "topics": ["bluetooth", "oralb"], "last_fetched": 1695553592.76186, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "391413239": {"repository_manifest": {"name": "Teletask", "homeassistant": "0.109.0"}, "full_name": "Tiemooowh/homeassistant-teletask", "authors": ["@tiemooowh"], "category": "integration", "description": "Teletask (DoIP) Integration for Home Assistant Comunity Store (HACS)", "domain": "teletask", "etag_repository": "W/\"8a17fb134bf210c81924751fd12e87450fcd222471cf05e7bb95b8ec9223577f\"", "last_updated": "2023-02-06T13:38:38Z", "stargazers_count": 3, "topics": ["domotics", "homeassistant-custom-component", "teletask"], "last_fetched": 1695554181.247027, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "609302851": {"repository_manifest": {"name": "TPMS_ble", "homeassistant": "2022.11.0"}, "full_name": "bkbilly/tpms_ble", "authors": ["@bkbilly"], "category": "integration", "description": "\ud83c\udfcd\ufe0f Home Assistant custom integration for Tire Pressure sensors", "domain": "tpms_ble", "etag_repository": "W/\"de457c56e88deeb0e1a6df7495b589d4f35676bfcd7b13492be33f9e10a6afc3\"", "last_updated": "2023-04-05T12:15:32Z", "stargazers_count": 9, "topics": ["bluetooth-low-energy", "tire-pressure", "tpms"], "last_fetched": 1695553593.440672, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "554898014": {"repository_manifest": {"name": "Fusion Solar", "render_readme": true}, "full_name": "tijsverkoyen/HomeAssistant-FusionSolar", "authors": ["@tijsVerkoyen"], "category": "integration", "description": "Integrate FusionSolar into your Home Assistant.", "domain": "fusion_solar", "etag_repository": "W/\"7cb0a45b05415b17b248cdc0b44f420ba2eb6f0ac7a16e9f8e73778fd43837ca\"", "last_updated": "2023-09-20T13:42:10Z", "stargazers_count": 70, "topics": ["fusionsolar", "huawei"], "last_fetched": 1695554180.608581, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "311536795": {"repository_manifest": {"hacs": "1.6.0", "name": "Frigate", "homeassistant": "2022.4.5"}, "full_name": "blakeblackshear/frigate-hass-integration", "authors": ["@blakeblackshear"], "category": "integration", "description": "Frigate integration for Home Assistant", "domain": "frigate", "etag_repository": "W/\"62c0e46d72d24f98d5c594275823f6e76ae61f02e18bee4b66570feacc21bf04\"", "last_updated": "2023-09-23T22:28:56Z", "stargazers_count": 469, "topics": ["ai", "camera", "frigate", "nvr", "object-detection"], "last_fetched": 1695553594.044053, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261496794": {"repository_manifest": {"name": "Plcbus integration"}, "full_name": "tikismoke/home-assistant-plcbus", "authors": ["@Tikismoke"], "category": "integration", "description": "a plcbus custom somponents for HomeAssistant", "domain": "plcbus", "etag_repository": "W/\"72ca565146ac199226143ae35192b455a023cb8056e05b6c4cfe8d8b99e062b0\"", "last_updated": "2023-01-02T22:17:56Z", "stargazers_count": 2, "topics": ["plcbus"], "last_fetched": 1695554180.85539, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "488086721": {"repository_manifest": {"name": "Platinum Weather Card", "hacs": "1.26.0", "render_readme": true, "hide_default_branch": true}, "full_name": "Makin-Things/platinum-weather-card", "category": "plugin", "description": "This is a fully customisable weather card for Home Assistant with a graphical configuration.", "downloads": 12435, "etag_repository": "W/\"34349c726c8c617143ab69d39f313cc9574ef674e13bdcd415fa4bd4c9506d45\"", "last_updated": "2023-09-11T21:14:39Z", "stargazers_count": 100, "topics": ["frontend", "weather", "weather-forecast"], "last_fetched": 1695553547.661006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443297453": {"repository_manifest": {"name": "hasslife", "country": "CN", "render_readme": true}, "full_name": "Blear/HassLife", "authors": ["@Blear"], "category": "integration", "description": "\u5929\u732b\u7cbe\u7075\u3001\u5c0f\u7231\u540c\u5b66\u63a7\u5236HomeAssistant\u8bbe\u5907\u548c\u5c5e\u6027\u4e0a\u62a5\u67e5\u8be2", "domain": "hasslife", "etag_repository": "W/\"2b7f7a949575e52cc13a3a4da9665788c3c2444cf850f09dc5e385fccb9560cb\"", "last_updated": "2023-04-11T11:05:27Z", "stargazers_count": 96, "topics": ["miiot", "tmall", "tmall-genie"], "last_fetched": 1695553593.787047, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "585709486": {"repository_manifest": {"name": "Remeha Home", "homeassistant": "2022.12.0", "render_readme": true, "country": "NL"}, "full_name": "msvisser/remeha_home", "authors": ["@msvisser"], "category": "integration", "description": "Remeha Home integration for Home Assistant", "domain": "remeha_home", "etag_repository": "W/\"fcdaef0ae99e810e3bbe1db26a84644d8a1527ce5c1c243fc5d03acd16236bab\"", "last_updated": "2023-09-24T07:07:06Z", "stargazers_count": 32, "topics": ["home-assistant-component", "home-assistant-integration", "remeha", "remeha-home"], "last_fetched": 1695554127.354041, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203592862": {"repository_manifest": {"name": "USR-R16 16\u8def\u7f51\u7edc\u7ee7\u7535\u5668", "render_readme": true, "homeassistant": "2022.7.5", "country": ["CN"]}, "full_name": "blindlight86/HA_USR-R16", "authors": ["@blindlight"], "category": "integration", "description": "USR-R16 integration for Home Assistant", "domain": "usr_r16", "etag_repository": "W/\"8566f134365c29972385ed34f41e3dcf03d3d34f5a1b475c150346d32006f029\"", "last_updated": "2022-07-31T19:41:14Z", "stargazers_count": 8, "topics": ["relays"], "last_fetched": 1695553593.681726, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498861412": {"repository_manifest": {"name": "Aquanta", "filename": "aquanta.zip", "hacs": "1.6.0", "homeassistant": "2023.3.0", "render_readme": true, "zip_release": true}, "full_name": "bmcclure/ha-aquanta", "authors": ["@bmcclure"], "category": "integration", "description": "An unofficial Aquanta water heater controller integration for Home Assistant", "domain": "aquanta", "downloads": 159, "etag_repository": "W/\"9e4c34d0b0068c4d01f296c8d396806eb31d1ed2acc1ad38adf4b498242b36c9\"", "last_updated": "2023-08-14T15:38:51Z", "stargazers_count": 5, "topics": ["hacs-custom", "home-assistant-integration"], "last_fetched": 1695553593.775815, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "580805288": {"repository_manifest": {"name": "N\u00e5r kommer posten", "country": ["NO"]}, "full_name": "BobTheShoplifter/HomeAssistant-Posten", "authors": ["@BobTheShoplifter"], "category": "integration", "description": "Posten integrasjon som trigger dagen n\u00e5r posten kommer: https://www.posten.no/levering-av-post", "domain": "posten", "etag_repository": "W/\"aacc94aa19002ade1b8b1b630d01603634b4cfa4f608e75e2de38097d75d7b06\"", "last_updated": "2023-07-02T21:11:13Z", "stargazers_count": 30, "topics": ["posten", "posten-packages"], "last_fetched": 1695553593.822403, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "597539627": {"repository_manifest": {"name": "Cielo Home", "homeassistant": "2023.0.0"}, "full_name": "bodyscape/cielo_home", "authors": ["@bodyscape"], "category": "integration", "description": "Integration with Cielo Home", "domain": "cielo_home", "etag_repository": "W/\"6903a11ab50efe91a69d7fcc76feb38b52a379fa5259ea2f6ff9bb3748d347f8\"", "last_updated": "2023-09-14T12:25:11Z", "stargazers_count": 31, "topics": ["cielo", "thermostat"], "last_fetched": 1695553594.402827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296946072": {"repository_manifest": {"homeassistant": "0.115.0", "name": "Kodi Recently Added Media", "render_readme": true}, "full_name": "boralyl/kodi-recently-added", "authors": ["@boralyl"], "category": "integration", "description": "Custom component to feed recently added tv shows and movies to the custom card \"Upcoming Media Card\" for Home Assistant. ", "domain": "kodi_recently_added", "etag_repository": "W/\"3ffddb023ae1f5e2110e7bbe7542518ece55d8a772063e1a62b6f9c035cc126d\"", "last_updated": "2021-12-19T23:48:44Z", "stargazers_count": 6, "topics": ["kodi"], "last_fetched": 1695553594.497433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250688607": {"repository_manifest": {"homeassistant": "0.108.0", "name": "Steam Wishlist", "render_readme": true}, "full_name": "boralyl/steam-wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A home assistant integration that monitors games on sale on your Steam wishlist.", "domain": "steam_wishlist", "etag_repository": "W/\"97ed2a7248a28ba3a07f33ececd0b96c8eb4d7786d87603f55359b2ae68345d7\"", "last_updated": "2023-05-19T00:47:45Z", "stargazers_count": 18, "topics": ["steam"], "last_fetched": 1695553596.169964, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186605347": {"repository_manifest": {"name": "Bosch thermostat", "homeassistant": "2022.9.0", "render_readme": true}, "full_name": "bosch-thermostat/home-assistant-bosch-custom-component", "authors": ["@pszafer"], "category": "integration", "description": "HA custom component for Bosch thermostats", "domain": "bosch", "etag_repository": "W/\"02530c831f8f6529b6feec066d36de15a304c8f035246be40b25fe6d37fb5082\"", "last_updated": "2023-09-24T07:24:37Z", "stargazers_count": 158, "topics": ["bosch", "bosch-thermostat", "buderus", "nefit", "sensors", "thermostat", "xmpp"], "last_fetched": 1695553595.13363, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264796130": {"repository_manifest": {"name": "Pandora CAS card", "render_readme": true}, "full_name": "turbulator/pandora-cas-card", "category": "plugin", "description": "Pandora lovelace card for Home Assistant", "etag_repository": "W/\"138d879e44403be11829ba13f54b2181de61f16a5f7db352bc01aa9fa62876e9\"", "last_updated": "2020-10-03T15:41:00Z", "stargazers_count": 4, "topics": ["lovelace-custom-card", "pandora"], "last_fetched": 1695553567.248133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "419449609": {"repository_manifest": {"name": "First Bus", "render_readme": true}, "full_name": "BottlecapDave/HomeAssistant-FirstBus", "authors": ["@bottlecapdave"], "category": "integration", "description": "Unofficial Home Assistant integration for determining the time to the next First bus", "domain": "first_bus", "etag_repository": "W/\"b6b5ee72af90b865c956c3195719d80625ab27019b6d77f1c9bf8db45292a0b7\"", "last_updated": "2023-08-12T08:32:48Z", "stargazers_count": 3, "topics": ["bus-arrival", "first-bus"], "last_fetched": 1695553595.62281, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "401282856": {"repository_manifest": {"name": "Octopus Energy", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "BottlecapDave/HomeAssistant-OctopusEnergy", "authors": ["@bottlecapdave"], "category": "integration", "description": "Unofficial Home Assistant integration for interacting with Octopus Energy", "domain": "octopus_energy", "etag_repository": "W/\"32659f1d638e1b07acf070ac85fe4a3ffb7bf7f5c8e578fe81e91935019e8c9c\"", "last_updated": "2023-09-24T09:03:05Z", "stargazers_count": 289, "topics": ["energy-consumption", "octopus-energy"], "last_fetched": 1695553596.096997, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "302895020": {"repository_manifest": {"name": "Github Flexi Card / Entity Row", "filename": "github-flexi-card.js", "render_readme": true}, "full_name": "maxwroc/github-flexi-card", "category": "plugin", "description": "Github stats card for Home Assistant", "downloads": 794, "etag_repository": "W/\"adb4edc5a5df874ac284d2cd5374cf07d4bb9e725a91baced132f6df273dc1af\"", "last_updated": "2022-02-08T20:54:42Z", "stargazers_count": 23, "topics": ["card", "flexi", "github", "github-flexi-card"], "last_fetched": 1695553549.262241, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259900367": {"repository_manifest": {"name": "AbfallPlus", "country": "DE", "render_readme": true}, "full_name": "Bouni/abfallplus", "authors": ["@bouni"], "category": "integration", "description": "AbfallPlus component for Home Assistant ", "domain": "abfallplus", "etag_repository": "W/\"3f0583b84bdc46f560b9787112fa7ea705070b2496e29dc84eedb1ccdf23a420\"", "last_updated": "2023-06-09T10:56:03Z", "stargazers_count": 10, "topics": ["abfallplus"], "last_fetched": 1695553595.9191, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259865897": {"repository_manifest": {"name": "DRK Blutspende", "country": "DE", "render_readme": true}, "full_name": "Bouni/drkblutspende", "authors": ["@bouni"], "category": "integration", "description": "DRK Blutspende component for Home Assistant ", "domain": "drkblutspende", "etag_repository": "W/\"3d5ade584ebbc57c13431a2d1b6989eb027f8d3f2a737f739333715b8fdbbd56\"", "last_updated": "2023-06-09T14:19:36Z", "stargazers_count": 4, "topics": ["blutspende", "drk"], "last_fetched": 1695553595.937898, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "260169906": {"repository_manifest": {"name": "Luxtronik", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "Bouni/luxtronik", "authors": ["@bouni"], "category": "integration", "description": "Luxtronik integration for Home Assistant", "domain": "luxtronik", "etag_repository": "W/\"c15930575f35b433a0587c68b1a527dbf4526c1415f300b54b877cb79d273f36\"", "last_updated": "2023-09-11T06:05:43Z", "stargazers_count": 66, "topics": ["luxtronik", "luxtronik2"], "last_fetched": 1695553596.153616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192086849": {"repository_manifest": {}, "full_name": "bouwew/sems2mqtt", "authors": ["bouwew"], "category": "integration", "description": "GoodWe SEMS MQTT-componenent for Home Assistant", "domain": "sems2mqtt", "etag_repository": "W/\"9b6de1fd6d8fae3c5829c09a23e11df1b6e8974b8dfbfe760aeb9ad97ee67c45\"", "last_updated": "2023-03-31T18:23:01Z", "stargazers_count": 8, "last_fetched": 1695553596.251968, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190260955": {"repository_manifest": {"name": "MIND Mobility", "country": "NL", "render_readme": true}, "full_name": "bramkragten/mind", "authors": ["@bramkragten"], "category": "integration", "description": "Add support for Mind Mobility vehicles in Home Assistant", "domain": "mind", "etag_repository": "W/\"e03514647c0e3cd1a48bf9b187265172a79255efe20e5870aaa15db9efb33ee6\"", "last_updated": "2021-05-07T13:37:44Z", "stargazers_count": 9, "last_fetched": 1695553596.495096, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373845609": {"repository_manifest": {"name": "Powercalc", "zip_release": true, "filename": "powercalc.zip", "homeassistant": "2022.11.0"}, "full_name": "bramstroker/homeassistant-powercalc", "authors": ["@bramstroker"], "category": "integration", "description": "Custom component to calculate estimated power consumption of lights and other appliances", "domain": "powercalc", "downloads": 4766, "etag_repository": "W/\"b67e709e2a59db483ef4402ba7ebf79ee05ce43ee41cf3b9c85cdd50cd323850\"", "last_updated": "2023-09-19T16:51:32Z", "stargazers_count": 714, "topics": ["consumption", "energy-monitor", "hue-lights", "metering", "power"], "last_fetched": 1695553597.278072, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "507038522": {"repository_manifest": {"name": "NAD Multi-room Audio Controller", "render_readme": true}, "full_name": "Breina/nad_controller", "authors": ["@Breina"], "category": "integration", "description": "NAD Multi-room Audio Controller HomeAssistant Integration", "domain": "nad_controller", "etag_repository": "W/\"ac6aa1d30353227a5e5b3677b5b38e9f6541b9e1113fa4a9e6e3b000c89a2659\"", "last_updated": "2022-08-14T14:56:11Z", "topics": ["amplifier-controller"], "last_fetched": 1695553597.268496, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "517429793": {"repository_manifest": {"name": "EcoStruxure PowerTag Link Gateway", "render_readme": true}, "full_name": "Breina/PowerTagGateway", "authors": ["@Breina"], "category": "integration", "description": "EcoStruxure PowerTag Link Gateway", "domain": "powertag_gateway", "etag_repository": "W/\"cf4ecd2fcf9c4fa65f944a5c9e579fc5dcc069df53ab861155b21319681433bf\"", "last_updated": "2023-07-30T17:53:59Z", "stargazers_count": 6, "topics": ["ecostruxure", "energy-monitor", "schneider-electric"], "last_fetched": 1695553597.744537, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284006518": {"repository_manifest": {"name": "Bonaire MyClimate", "render_readme": "true", "homeassistant": "2021.12.0"}, "full_name": "bremor/bonaire_myclimate", "authors": ["@bremor"], "category": "integration", "description": "Reverse engineered implementation of the Bonaire MyClimate app.", "domain": "bonaire_myclimate", "etag_repository": "W/\"d0b00c8018bc87f307b2049d9aa56e081878a2d75cf26b075b76cd6f458cc8e9\"", "last_updated": "2022-08-08T20:42:19Z", "stargazers_count": 17, "topics": ["bonaire", "bonaire-myclimate", "climate", "myclimate"], "last_fetched": 1695553598.255487, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307586942": {"repository_manifest": {"name": "Bureau of Meteorology", "render_readme": "true", "homeassistant": "2022.7.0b0"}, "full_name": "bremor/bureau_of_meteorology", "authors": ["@bremor,@makin-things"], "category": "integration", "description": "Custom component for retrieving weather information from the Bureau of Meteorology.", "domain": "bureau_of_meteorology", "etag_repository": "W/\"da694227822df89193512279d2ee88c0bae049bf7625c7f35e08b13cc5006bd3\"", "last_updated": "2023-09-17T07:47:03Z", "stargazers_count": 128, "topics": ["bom", "bureau", "forecast", "meteorology", "observations", "weather", "weather-information"], "last_fetched": 1695553598.373967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282427417": {"repository_manifest": {"name": "Public Transport Victoria", "render_readme": "true"}, "full_name": "bremor/public_transport_victoria", "authors": ["@bremor"], "category": "integration", "description": "Custom component for retrieving departure times for Public Transport Victoria.", "domain": "public_transport_victoria", "etag_repository": "W/\"58a90d21d8a815999403ecc8a8fbfd2701142b08b596248005f46bc9af0e97bb\"", "last_updated": "2022-06-20T00:23:49Z", "stargazers_count": 24, "topics": ["australia", "bus", "ptv", "public", "train", "tram", "transport", "victoria"], "last_fetched": 1695553598.269774, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "455217528": {"repository_manifest": {"name": "systemd notifier", "render_readme": true}, "full_name": "brianegge/home-assistant-sdnotify", "authors": ["@brianegge"], "category": "integration", "description": "systemd service for Home Assistant", "domain": "sdnotify", "etag_repository": "W/\"ab8c1a667ddfddca068b0700977b27325380245ca43213f4bdd9a5789e4195ca\"", "last_updated": "2022-05-29T10:15:45Z", "stargazers_count": 14, "topics": ["systemd"], "last_fetched": 1695553598.151644, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "186765704": {"repository_manifest": {"homeassistant": "0.100.0", "render_readme": true}, "full_name": "nervetattoo/banner-card", "category": "plugin", "description": "A fluffy banner card for Home Assistant \ud83e\udd70", "downloads": 36664, "etag_repository": "W/\"d0b5301f84451e2ed53c60d700fd09e31169077741b2a879e8b21c63234febd4\"", "last_updated": "2023-02-03T04:52:53Z", "stargazers_count": 555, "last_fetched": 1695553551.112042, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "427867835": {"repository_manifest": {"name": "WeatherFlow Integration", "homeassistant": "2023.1.0"}, "full_name": "briis/hass-weatherflow", "authors": ["@briis"], "category": "integration", "description": "Home Assistant Integration for WeatherFlow Stations", "domain": "weatherflow", "etag_repository": "W/\"e6fe29b3895e285a5793dc04fe364c94ca455a3a77da7059423e2359a05f112d\"", "last_updated": "2023-08-31T08:06:36Z", "stargazers_count": 67, "topics": ["python3", "weatherflow"], "last_fetched": 1695553598.555268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262854926": {"repository_manifest": {"name": "Meteobridge Datalogger Integration", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "briis/meteobridge", "authors": ["@briis"], "category": "integration", "description": "The Meteobridge Integration adds support for retrieving current weather data from a Meteobridge datalogger connected to a local Weather Station.", "domain": "meteobridge", "etag_repository": "W/\"e3b42c789557e52acfd549be72b7f100225631359cc72c80b0b6402a48c459b1\"", "last_updated": "2023-02-24T16:31:12Z", "stargazers_count": 9, "topics": ["meteobridge"], "last_fetched": 1695553598.616991, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250498561": {"repository_manifest": {"name": "SecuritySpy for Home Assistant", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "briis/securityspy", "authors": ["@briis"], "category": "integration", "description": "SecuritySpy Integration for Home Assistant with Camera Streams and Motion Detection", "domain": "securityspy", "etag_repository": "W/\"b0fb951ea410c84b01782f35a3d3f764386e3e91ad4f96de515363a0aa353a2c\"", "last_updated": "2023-02-04T08:17:26Z", "stargazers_count": 29, "topics": ["home-assistant-component", "securityspy"], "last_fetched": 1695553598.74634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "258712314": {"repository_manifest": {"name": "Fan Speed Control", "render_readme": "true"}, "full_name": "iml885203/HA-FanSpeedControl", "category": "python_script", "description": "A python script for Home Assistant that control fan speed with Fan Template and Broadlink.", "etag_repository": "W/\"ff953c1c68cbe41e088bf4143953e413e708b541c45efe13a2aba81c569b647c\"", "last_updated": "2022-10-19T06:24:44Z", "stargazers_count": 16, "last_fetched": 1695553508.00948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261970408": {"repository_manifest": {"name": "Weatherbit Weather Forecast for Home Assistant", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "briis/weatherbit", "authors": ["@briis"], "category": "integration", "description": "The weatherbit integration adds support for the weatherbit.io web service as a source for meteorological data for your location.", "domain": "weatherbit", "etag_repository": "W/\"709800766b9934eae2ee50478ffa8b177635b118f206358c117a1a4477675464\"", "last_updated": "2023-05-05T11:28:33Z", "stargazers_count": 35, "topics": ["meteorological-data", "weather-forecast", "weatherbit"], "last_fetched": 1695553599.617948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "447307317": {"repository_manifest": {"name": "Holidays", "zip_release": true, "filename": "holidays.zip", "homeassistant": "2022.12.0"}, "full_name": "bruxy70/Holidays", "authors": ["@bruxy70"], "category": "integration", "description": "\ud83d\udcc5 Custom Home Assistant integration for public holidays - also used for garbage_collection integration to automatically move scheduled events that fall on a public holiday (by an automation blueprint)", "domain": "holidays", "downloads": 4074, "etag_repository": "W/\"ce818b96f5067270f22baae6988da6387dbc36190aebf5c61c0a2596e3cfc6c6\"", "last_updated": "2023-08-15T07:19:23Z", "stargazers_count": 38, "topics": ["calendar", "country-holidays", "garbage-collection", "holidays", "public-holidays"], "last_fetched": 1695553599.649387, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441294260": {"repository_manifest": {"name": "Auto Areas", "render_readme": true}, "full_name": "c-st/auto_areas", "authors": ["@c-st"], "category": "integration", "description": "\ud83e\udd16 A custom component for Home Assistant which automates your areas.", "domain": "auto_areas", "downloads": 3, "etag_repository": "W/\"134384363fc31939f5d7227a4ca58e019281cd7a9541ea9fdd58542ea3daee20\"", "last_updated": "2023-09-18T04:54:13Z", "stargazers_count": 19, "last_fetched": 1695553599.880211, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "136170574": {"repository_manifest": {"name": "Photo captcha on Ezviz Camera for Home Assistant", "render_readme": true, "country": "CN", "homeassistant": "2022.11.0"}, "full_name": "c1pher-cn/homeassistan-ezviz", "authors": ["@_\u5c0f\u611a_"], "category": "integration", "description": "HomeAssistant \u8424\u77f3\uff08ezviz\uff09\u7ec4\u4ef6", "domain": "myezviz", "etag_repository": "W/\"05bda3db63916f05c32ae5f8eb5ec4777973bf4d34699a61d97b43550a3918af\"", "last_updated": "2023-08-09T03:29:04Z", "stargazers_count": 53, "topics": ["camera", "ezviz", "myezviz"], "last_fetched": 1695553600.189375, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201445202": {"repository_manifest": {"name": "ACV garbage collection sensor", "render_readme": true, "country": ["NL"]}, "full_name": "Cadsters/acv-hass-component", "authors": ["@floriskruisselbrink", "@Cadsters", "@aritmeester"], "category": "integration", "description": "\ud83d\uddd1\ufe0f Integration for bin/waste collection by acv-groep", "domain": "acv", "etag_repository": "W/\"77f695888762ef9e5c5e6194de3c7b5998349adb56cefc814916644f061dca22\"", "last_updated": "2022-05-30T13:17:35Z", "stargazers_count": 4, "topics": ["acv-groep", "python3", "trash", "waste"], "last_fetched": 1695553600.54628, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "262017793": {"repository_manifest": {"name": "Switchbot_press", "render_readme": true}, "full_name": "cagnulein/switchbot_press", "authors": ["@cagnulein"], "category": "integration", "description": "This is a simple project that manage the Switchbot ( https://amzn.to/3dnliBD ) that has only the \"press\" ability in Home Assistant.", "domain": "switchbot_press", "etag_repository": "W/\"f5fd75677c55d1435d179b906050aaf300540a985a1c154253121fa086a6d840\"", "last_updated": "2022-07-11T07:32:35Z", "stargazers_count": 13, "topics": ["python3", "switchbot"], "last_fetched": 1695553600.322828, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180464361": {"repository_manifest": {"name": "Travel Time Card", "render_readme": true, "filename": "dist/travel-time-card.js"}, "full_name": "ljmerza/travel-time-card", "category": "plugin", "description": "show travel times for you travel time sensors", "downloads": 1647, "etag_repository": "W/\"622af55f1e9dd28d24624072759553db203afad0ca7f2b622ba916424f963f86\"", "last_updated": "2023-07-11T01:04:26Z", "stargazers_count": 25, "last_fetched": 1695553545.057446, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207620142": {"repository_manifest": {"name": "DPC sensor", "country": ["IT"]}, "full_name": "caiosweet/Home-Assistant-custom-components-DPC-Alert", "authors": ["@caiosweet"], "category": "integration", "description": "Italy Meteo-hydro alert and hydrogeological phenomena Civil Protection (Protezione Civile). In this custom component you can find the vigilance Bulletin and the Bulletin of national hydrogeological and hydraulic criticalities. They allow to check whether in your current location there will be criticalities/warnings related to weather-hydrogeological and hydraulic phenomena. Weather forecasts for civil protection purposes differs from the classic \"weather forecasts\". They highlight potentially harmful situations to people or things. This component was created for personal purposes, in order to be able to monitor the Civil Protection site and check for important updates. I hope it will be useful to you.", "domain": "dpc", "etag_repository": "W/\"7c27eea37502fa0117fd0e0e5dba2227dafc8c2f34ce253d4d5fff16b927a72a\"", "last_updated": "2023-09-05T02:20:09Z", "stargazers_count": 38, "topics": ["dpc", "protezionecivile"], "last_fetched": 1695553600.661613, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "307503425": {"repository_manifest": {"name": "INGV Earthquakes", "zip_release": true, "filename": "ingv_centro_nazionale_terremoti.zip", "country": ["IT"], "render_readme": true, "homeassistant": "2023.02.0"}, "full_name": "caiosweet/Home-Assistant-custom-components-INGV", "authors": ["@exxamalte", "@caiosweet"], "category": "integration", "description": "INGV - National Institute of Geophysics and Volcanology [Istituto Nazionale di Geofisica e Vulcanologia] Terremoti Italia.", "domain": "ingv_centro_nazionale_terremoti", "downloads": 634, "etag_repository": "W/\"b76cff45f9a60164550c492fb49c14f8745e3bce351a89efc7315ffe628b25f5\"", "last_updated": "2023-09-05T10:49:25Z", "stargazers_count": 16, "topics": ["assistant", "geofisica", "home", "ingv", "terremoti", "vulcanologia"], "last_fetched": 1695553600.806766, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "319343045": {"repository_manifest": {"name": "UltraSync", "hacs": "0.24.0", "render_readme": true, "homeassistant": "0.110.0"}, "full_name": "caronc/ha-ultrasync", "authors": ["@caronc"], "category": "integration", "description": "Interlogix ZeroWire and Hills ComNav (NX-595E) UltraSync Security Panel for Integration for Home Assistant Comunity Store (HACS)", "domain": "ultrasync", "etag_repository": "W/\"217b7e5abb40dd6dee9b172bfe5bbae4cc7cabda37de66905521f8e296629a1b\"", "last_updated": "2023-09-11T05:08:33Z", "stargazers_count": 19, "topics": ["comnav", "homeassistant-custom-component", "interlogix", "nx-595e", "security", "ultrasync"], "last_fetched": 1695553600.766311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520644302": {"repository_manifest": {"name": "TAM Card", "render_readme": true, "filename": "tam-card.js"}, "full_name": "MathisAlepis/lovelace-tam-card", "category": "plugin", "description": "Montpellier Lovelace TAM card displays next two crossing times of the tramway or bus in Montpellier, France.", "downloads": 179, "etag_repository": "W/\"4a091a13d3335f9b03909b68a0420ecb12d4190a9013c6f0634c0955c49a3c3f\"", "last_updated": "2022-09-14T11:20:07Z", "stargazers_count": 6, "topics": ["lovelace-custom-card", "montpellier", "public-transport", "tam"], "last_fetched": 1695553548.876362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "229140999": {"repository_manifest": {"name": "go-eCharger", "render_readme": true}, "full_name": "cathiele/homeassistant-goecharger", "authors": ["@cathiele"], "category": "integration", "description": "Home Assistant custom_component for controlling the go-eCharger EV-Charger", "domain": "goecharger", "etag_repository": "W/\"2714c77698ea7ffe552173b3b54a529c40ad1f8c4f05c410a2e69137d3a3a2e9\"", "last_updated": "2023-08-11T15:58:31Z", "stargazers_count": 77, "topics": ["charger", "component", "custom", "go-echarger"], "last_fetched": 1695553600.997829, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "487680971": {"repository_manifest": {"name": "Weather Radar Card", "render_readme": true, "filename": "weather-radar-card.js"}, "full_name": "Makin-Things/weather-radar-card", "category": "plugin", "description": "A rain radar card using the tiled images from RainViewer", "downloads": 19854, "etag_repository": "W/\"9123c7f5505b39021065e92bc2d734c99fc7c035e9e7430c3f85b9ed5cd3ddb0\"", "last_updated": "2022-11-04T00:34:52Z", "stargazers_count": 103, "topics": ["frontend", "home-assistant-config", "meteorology", "radar", "rainviewer", "weather"], "last_fetched": 1695553547.026102, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441942093": {"repository_manifest": {"name": "keyatome", "homeassistant": "2021.12.0"}, "full_name": "jugla/keyatome", "authors": ["@jugla"], "category": "integration", "description": "Home Assistant component to handle key atome (linky) -conso live feature-", "domain": "keyatome", "etag_repository": "W/\"12e4b3cfbbdeb06aa83a7969eb5cba553eb1f4139a4e3a9685f9a13700999eda\"", "last_updated": "2023-05-13T21:37:30Z", "stargazers_count": 20, "topics": ["atome", "keyatome", "linky"], "last_fetched": 1695554096.693114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491303842": {"repository_manifest": {"name": "Datetime Card", "render_readme": true}, "full_name": "a-p-z/datetime-card", "category": "plugin", "description": "A minimalistic card for Home Assistant Lovelace UI which shows how many days it has been between any input_datetime and today.", "downloads": 838, "etag_repository": "W/\"350ecb41577214087e303e91830541ba9de75e16318b7f4d2f8aeaf25d8ffd56\"", "last_updated": "2023-09-15T07:37:53Z", "stargazers_count": 15, "topics": ["lovelace-custom-card", "svelte"], "last_fetched": 1695553508.412512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195438291": {"repository_manifest": {"name": "Nintendo Wishlist", "render_readme": true, "homeassistant": "0.118.5"}, "full_name": "custom-components/sensor.nintendo_wishlist", "authors": ["@boralyl"], "category": "integration", "description": "A sensor that monitors a Nintendo Switch wish list for when games are on sale.", "domain": "nintendo_wishlist", "etag_repository": "W/\"b5d94cd7eee427c217d63f1013c81b6fbef7c2437763923557107ba011529723\"", "last_updated": "2023-06-19T22:02:37Z", "stargazers_count": 14, "topics": ["nintendo-switch"], "last_fetched": 1695553609.985822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220641275": {"repository_manifest": {"name": "Dark Orange Theme"}, "full_name": "home-assistant-community-themes/dark-orange", "category": "theme", "description": "Dark Orange theme for Home Assistant", "etag_repository": "W/\"295cdd304df0a847968ba1df570b45b0948ff282c64b4a0dc63b81594f6221cd\"", "last_updated": "2023-03-22T19:58:15Z", "stargazers_count": 11, "last_fetched": 1695553498.295739, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "334448958": {"repository_manifest": {"name": "bootstrap-grid-card", "render_readme": true}, "full_name": "ownbee/bootstrap-grid-card", "category": "plugin", "description": "Bootstrap grid in Lovelace UI", "downloads": 4042, "etag_repository": "W/\"0fa7727b08653ac7f1f9b87e2e48b18c803d216164e5ecbf542e71e5391eb7c6\"", "last_updated": "2023-04-29T09:22:47Z", "stargazers_count": 34, "topics": ["bootstrap", "bootstrap-grid-card", "card", "grid", "layout"], "last_fetched": 1695553552.853711, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "214979604": {"repository_manifest": {"name": "Dark Mint Theme"}, "full_name": "home-assistant-community-themes/dark-mint", "category": "theme", "description": "Another Dark theme for Home Assistant", "etag_repository": "W/\"f408a4d5fc43b4fcb4498ab497bf9ad205f7c24254c77360cfb5297f0ac0029f\"", "last_updated": "2023-03-27T21:57:12Z", "stargazers_count": 4, "last_fetched": 1695553498.283929, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "497319128": {"repository_manifest": {"name": "Kiosk Mode", "filename": "kiosk-mode.js", "render_readme": true}, "full_name": "NemesisRE/kiosk-mode", "category": "plugin", "description": "\ud83d\ude48 Hides the Home Assistant header and/or sidebar", "downloads": 12307, "etag_repository": "W/\"bec55efb90000594ee56a49703f1b502e62e699d5fae8707d0445b9673241698\"", "last_updated": "2023-09-08T16:29:26Z", "stargazers_count": 135, "topics": ["customization"], "last_fetched": 1695553550.951233, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236277163": {"repository_manifest": {"name": "Reeder Dark Theme", "render_readme": true}, "full_name": "hekm77/reeder_dark_theme", "category": "theme", "description": "Reeder Dark Theme for Home Assistant", "etag_repository": "W/\"626aea7d0e0fea394f8e9f826a81a00aaf509ec43a9f9ba3e0e64562b8f71c8d\"", "last_updated": "2020-09-18T07:41:54Z", "stargazers_count": 8, "last_fetched": 1695553496.535947, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "154845921": {"repository_manifest": {}, "full_name": "custom-components/sensor.ssh", "authors": ["@jchasey"], "category": "integration", "description": "SSH Generic Sensor", "domain": "ssh", "etag_repository": "W/\"3276b79ceae5c46b8f300270be50f7953a1de0778bbf1dbcf193f89938393fdc\"", "last_updated": "2023-06-20T20:26:28Z", "stargazers_count": 38, "last_fetched": 1695553610.702693, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "437989480": {"repository_manifest": {"name": "Centrometal Boiler Display Card", "render_readme": true, "homeassistant": "2021.11.3", "filename": "centrometal-boiler-card.js"}, "full_name": "9a4gl/lovelace-centrometal-boiler-card", "category": "plugin", "description": "Lovelace Centrometal Boiler Card", "etag_repository": "W/\"21b4dd20c0f509eb2f36c6cd919f5ee634ccbb29acdb66c3d90d828185694fac\"", "last_updated": "2023-09-11T12:35:55Z", "stargazers_count": 2, "topics": ["centrometal", "homeassitant", "pellet", "peltec"], "last_fetched": 1695553508.357342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "203294272": {"repository_manifest": {}, "full_name": "custom-cards/unused-card", "category": "plugin", "description": "All your unused entities in a list", "etag_repository": "W/\"8b714b08507ead23869ffb5ee05a8c0c7f93ae078200b1af038fcc795c9c2115\"", "last_updated": "2023-01-04T07:38:35Z", "stargazers_count": 29, "last_fetched": 1695553521.342218, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587494301": {"repository_manifest": {"name": "TimBox Remote Control Card", "filename": "timbox-remote-control-card.js", "render_readme": true}, "full_name": "czz/timbox-remote-control-card", "category": "plugin", "description": "TimBox Remote Control card for Home Assistant", "etag_repository": "W/\"c5617c26fc76e23a3d9084d8b16c656c3bb8cf0d885c7383deb0b126017a0aed\"", "last_updated": "2023-02-20T21:12:25Z", "topics": ["remote-control", "tim", "timbox"], "last_fetched": 1695553521.702083, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192835334": {"repository_manifest": {"name": "Lovelace Lock Card", "render_readme": true}, "full_name": "CyrisXD/love-lock-card", "category": "plugin", "description": "Home Assistant Lovelace card to lock entire cards behind passwords or prompts.", "etag_repository": "W/\"4535f668b7376fac6794bc1bdf09064d5c450a81fa8a4df006f0c5f25dd19683\"", "last_updated": "2023-02-20T00:55:00Z", "stargazers_count": 115, "last_fetched": 1695553521.556667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "254206234": {"repository_manifest": {"name": "PVPC Hourly Pricing Card", "render_readme": true}, "full_name": "danimart1991/pvpc-hourly-pricing-card", "category": "plugin", "description": "Home Assistant Lovelace custom card to use with Spain electricity hourly pricing (PVPC) integration", "downloads": 2112, "etag_repository": "W/\"fcb22d471bf2692908273a34daf7c20ef416eba878c950b1a7b61fcb3886bb1c\"", "last_updated": "2023-07-14T06:51:57Z", "stargazers_count": 69, "topics": ["esios", "graphics", "lovelace-card", "lovelace-custom-card", "pvpc", "ree"], "last_fetched": 1695553522.452252, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "567030726": {"repository_manifest": {"name": "Default Dashboard", "render_readme": true, "filename": "default-dashboard.js"}, "full_name": "daredoes/default-dashboard", "category": "plugin", "description": "Automatically set the default dashboard for all devices for Home Assistant", "downloads": 2195, "etag_repository": "W/\"3f59ca62258ce81a2e7eb02d50bc1b0c07dcd4b9df76a27c35694f216a87b9e1\"", "last_updated": "2023-05-03T07:44:41Z", "stargazers_count": 20, "topics": ["hacs-custom"], "last_fetched": 1695553522.33841, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234961647": {"repository_manifest": {"name": "Climate Mode Entity Row", "filename": "climate-mode-entity-row.js", "render_readme": true}, "full_name": "piitaya/lovelace-climate-mode-entity-row", "category": "plugin", "description": "Climate mode entity for Lovelace", "etag_repository": "W/\"ef375c4651bd828ee437b9657877d078d10fe0807768126fd9e3d6fa4c945923\"", "last_updated": "2022-06-27T07:31:07Z", "stargazers_count": 75, "topics": ["card", "thermostat"], "last_fetched": 1695553553.517019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "559360809": {"repository_manifest": {"name": "Linked Lovelace", "render_readme": true, "filename": "linked-lovelace-ui.js"}, "full_name": "daredoes/linked-lovelace-ui", "category": "plugin", "description": "Create cards that can be re-used, updated, and handle templated data.", "downloads": 954, "etag_repository": "W/\"7346b081527c04de97d88e707ea668b294cc66f75ce0a03a3b5ac54611bbb582\"", "last_updated": "2023-06-26T23:04:57Z", "stargazers_count": 19, "topics": ["javascript", "typescript"], "last_fetched": 1695553522.782805, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215075805": {"repository_manifest": {"name": "Blue Night Theme"}, "full_name": "home-assistant-community-themes/blue-night", "category": "theme", "description": "Blue Night theme for Home Assistant", "etag_repository": "W/\"7da07f37988cd62ae9a0c5c5a5274ea5c6ecb64496cafbd49442064c8252f7c4\"", "last_updated": "2023-09-23T11:27:55Z", "stargazers_count": 8, "last_fetched": 1695553497.084884, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228627470": {"repository_manifest": {"name": "HVCGroep", "country": "NL"}, "full_name": "cyberjunky/home-assistant-hvcgroep", "authors": ["@cyberjunky"], "category": "integration", "description": ":recycle: :wastebasket: This component fetches garbage pickup dates for parts of The Netherlands using HVC Groep's REST API.", "domain": "hvcgroep", "etag_repository": "W/\"45e0a54c6b209c368abffe0e37d61173482dae39add04d7809bf5fe2294356b6\"", "last_updated": "2022-11-24T21:32:23Z", "stargazers_count": 10, "last_fetched": 1695553612.874473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "209891408": {"repository_manifest": {"name": "Amoled Theme"}, "full_name": "home-assistant-community-themes/amoled", "category": "theme", "description": "Amoled theme for Home Assistant", "etag_repository": "W/\"15eb6c0ed4ed459d607f4bb7205c935c308a0059f54bffb6516e7ac20daa0b21\"", "last_updated": "2023-03-23T02:57:45Z", "stargazers_count": 27, "last_fetched": 1695553496.603349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "444350375": {"repository_manifest": {"name": "Mushroom", "filename": "mushroom.js", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "piitaya/lovelace-mushroom", "category": "plugin", "description": "Mushroom Cards - Build a beautiful dashboard easily \ud83c\udf44", "downloads": 37464, "etag_repository": "W/\"411901ce0ff5354feaf4b3dd1798aa4f15dc04d662683dba07d40b6ee4bfd1af\"", "last_updated": "2023-08-30T09:17:09Z", "stargazers_count": 2530, "topics": ["card", "mushroom"], "last_fetched": 1695553554.453342, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228662926": {"repository_manifest": {"name": "Toon Climate", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_climate", "authors": ["@cyberjunky"], "category": "integration", "description": "This component provides a climate device for rooted Toon thermostats.", "domain": "toon_climate", "etag_repository": "W/\"2977eb3eaeb83c32baac03089acdd8e1dd6b151ce8a40c7a5c877aab8817829c\"", "last_updated": "2022-11-24T20:30:08Z", "stargazers_count": 27, "last_fetched": 1695553613.574648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228678807": {"repository_manifest": {"name": "Toon Smart Meter", "country": "NL"}, "full_name": "cyberjunky/home-assistant-toon_smartmeter", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays sensor values from the meteradapter connected to a rooted Toon thermostat.", "domain": "toon_smartmeter", "etag_repository": "W/\"c251c4df9266076b9452d3bb08743c311e85a8a7e64505138eb415f839f71090\"", "last_updated": "2023-07-10T14:54:22Z", "stargazers_count": 19, "last_fetched": 1695553614.119474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "361205663": {"repository_manifest": {"name": "Meteoalarm Card", "render_readme": true, "filename": "meteoalarm-card.js"}, "full_name": "MrBartusek/MeteoalarmCard", "category": "plugin", "description": "Meteoalarm, M\u00e9t\u00e9o-France and DWD severe weather warnings card for Home Assistant Lovelace UI \u26c8\ufe0f", "downloads": 2705, "etag_repository": "W/\"c5bae1dca42579c48a680d8973fafafc094c69fb44b83620f2b09ab62fd6bad9\"", "last_updated": "2023-08-22T16:14:45Z", "stargazers_count": 95, "topics": ["deutscher-wetterdienst", "dwd", "lovelace-card", "meteo-france", "meteoalarm", "meteoalarmeu", "nina", "nws", "weather"], "last_fetched": 1695553550.446271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228690854": {"repository_manifest": {"name": "TTN Gateway Sensor", "country": "NL"}, "full_name": "cyberjunky/home-assistant-ttn_gateway", "authors": ["@cyberjunky"], "category": "integration", "description": "This components reads statistics from a The Things Network Gateway.", "domain": "ttn_gateway", "etag_repository": "W/\"d03e55949ffa2773df66542c39874b4461d846e095b6679037057f3e995be6c6\"", "last_updated": "2021-12-18T16:52:03Z", "stargazers_count": 2, "last_fetched": 1695553613.982364, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "491465538": {"repository_manifest": {"name": "custom-icons", "render_readme": true}, "full_name": "Mariusthvdb/custom-icons", "category": "plugin", "description": "Several custom made and legacy icons, and icons collected all over the internet in 1 set, UI selectable.", "downloads": 6268, "etag_repository": "W/\"ec3c933f38790a55566e72228d2658ec9592a0e4e0ff2c33ba190c730465576c\"", "last_updated": "2023-09-06T15:56:26Z", "stargazers_count": 18, "topics": ["custom", "customization", "icons", "iphone", "light", "shutter", "vacuum"], "last_fetched": 1695553547.254348, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224258177": {"repository_manifest": {"name": "Heatzy", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "cyr-ius/hass-heatzy", "authors": ["@cyr-ius"], "category": "integration", "description": "Climate Home Assistant component for Heatzy Pilot", "domain": "heatzy", "etag_repository": "W/\"5c97f92493a10113d312adf1185c559186f0ab9ab14270fcc7cc95001ea31cbd\"", "last_updated": "2023-04-23T12:24:25Z", "stargazers_count": 24, "topics": ["climate", "heatzy"], "last_fetched": 1695553614.255402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220661494": {"repository_manifest": {"name": "Orange Livebox routeur", "country": "FR", "homeassistant": "0.109", "render_readme": true}, "full_name": "cyr-ius/hass-livebox-component", "authors": ["@cyr-ius"], "category": "integration", "description": "Livebox Component for Home assistant", "domain": "livebox", "etag_repository": "W/\"3b6bb4931c45ed5f7b209011f75168da90e6f9c38e41400e2e677f30689c8b38\"", "last_updated": "2023-08-22T09:34:34Z", "stargazers_count": 41, "topics": ["livebox", "orange"], "last_fetched": 1695553614.339533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "591644026": {"repository_manifest": {"name": "Google Photos", "hacs": "1.6.0", "homeassistant": "2022.6.0", "render_readme": true, "zip_release": true, "filename": "google_photos.zip", "hide_default_branch": true}, "full_name": "Daanoz/ha-google-photos", "authors": ["@Daanoz"], "category": "integration", "description": "Home Assistant Google Photos integration", "domain": "google_photos", "downloads": 2167, "etag_repository": "W/\"f8b6850d96a98f8353d8b1c8c9d81b1155f0651f1759c87208094a9f7485e7ba\"", "last_updated": "2023-09-13T05:33:30Z", "stargazers_count": 51, "topics": ["google-photos", "home-assistant-integration"], "last_fetched": 1695553614.372228, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195459345": {"repository_manifest": {"name": "Climate Group", "render_readme": true, "homeassistant": "0.96.0"}, "full_name": "daenny/climate_group", "authors": ["@daenny"], "category": "integration", "description": "Home Assistant Climate Group", "domain": "climate_group", "etag_repository": "W/\"8cd5e0a57a3215969054be8f3d7eeaef98e51f5b02b756c70446ea4c688c4cf2\"", "last_updated": "2023-09-20T07:03:33Z", "stargazers_count": 106, "last_fetched": 1695553615.174634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "650965476": {"repository_manifest": {"name": "Cupra WeConnect", "render_readme": true, "homeassistant": "2022.7.0"}, "full_name": "daernsinstantfortress/cupra_we_connect", "authors": ["@daernsinstantfortress"], "category": "integration", "description": "Cupra integration for Home Assistant", "domain": "cupra_we_connect", "etag_repository": "W/\"20cec78907ddbeb55eb16be7b2e2fdf963db0498b6f4f50f52f0bfee94ecd0c5\"", "last_updated": "2023-09-18T08:29:02Z", "stargazers_count": 18, "topics": ["born", "car", "cupra", "ev"], "last_fetched": 1695553615.134807, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485895021": {"repository_manifest": {"name": "Blueair Filters", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_blueair", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Blueair Class Filters", "domain": "ha_blueair", "etag_repository": "W/\"2922fddf3eb0141e8e9bf786480b2841f1c85e631623567395a718749a8cc5de\"", "last_updated": "2023-09-18T18:08:55Z", "stargazers_count": 8, "topics": ["blueair", "hassio-integration", "python3"], "last_fetched": 1695553615.520674, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265916869": {"repository_manifest": {"name": "Melnor Raincloud", "render_readme": true, "homeassistant": "2021.4.0", "zip_release": true, "filename": "raincloud.zip"}, "full_name": "vanstinator/hass-raincloud", "authors": ["@vanstinator"], "category": "integration", "description": "Melnor Raincloud Home Assistant Integration", "domain": "raincloud", "downloads": 90, "etag_repository": "W/\"104fdc3536fb2782c308f4436d883b470e1da52a60af252428a47e581f7b7d41\"", "last_updated": "2022-05-30T18:58:16Z", "stargazers_count": 6, "topics": ["assistant", "home", "irrigation", "melnor", "raincloud", "sprinkler"], "last_fetched": 1695554190.690025, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "587122619": {"repository_manifest": {"name": "Carrier Infinity Thermostat", "render_readme": true, "country": ["US"], "homeassistant": "2022.01.0b0"}, "full_name": "dahlb/ha_carrier", "authors": ["@dahlb"], "category": "integration", "description": "Carrier Infinity Integration for Home Assistant", "domain": "ha_carrier", "etag_repository": "W/\"3e5ed97d41f5d45a21706ff7e5f6a08e578697ec6ec7f6beda2d8142bc53b971\"", "last_updated": "2023-09-18T19:49:29Z", "stargazers_count": 16, "topics": ["carrier-integration"], "last_fetched": 1695553615.895552, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "634325657": {"repository_manifest": {"name": "GoXLR Utility", "render_readme": true, "zip_release": true, "filename": "goxlr_utility.zip"}, "full_name": "timmo001/homeassistant-integration-goxlr-utility", "authors": ["@timmo001"], "category": "integration", "description": "Home Assistant Integration - GoXLR Utility", "domain": "goxlr_utility", "downloads": 31, "etag_repository": "W/\"89a9fac0ce9dc6c27c6cbdc054ec735190b4174e65b41cc98f4a07bc24c2065b\"", "last_updated": "2023-09-22T11:25:09Z", "stargazers_count": 1, "topics": ["goxlr-utility-api", "home-assistant-integration"], "last_fetched": 1695554183.623773, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "545945955": {"repository_manifest": {"name": "Formula One Card", "filename": "formulaone-card.js", "render_readme": true, "content_in_root": true}, "full_name": "marcokreeft87/formulaone-card", "category": "plugin", "description": "Present the data of Formula One in a pretty way", "etag_repository": "W/\"f35b90beb027c7fd3c2a10225b5c8fb63ae5e378ed35491a9ebc542f1d1ed8f0\"", "last_updated": "2023-09-15T21:09:59Z", "stargazers_count": 97, "topics": ["card", "f1", "formula1", "formulaone", "homeassistant-frontend", "lovelace-custom-card"], "last_fetched": 1695553547.254076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183499944": {"repository_manifest": {"name": "Tracking Number Card", "render_readme": true, "filename": "dist/tracking-number-card.js"}, "full_name": "ljmerza/tracking-number-card", "category": "plugin", "description": "Show Tracking Numbers from the Email Sensor for Home Assistant", "downloads": 411, "etag_repository": "W/\"543525f0470491479ae877a3f37cc3ef93b7cb64d926db35ccd09d35122ba6d3\"", "last_updated": "2023-07-03T19:02:56Z", "stargazers_count": 24, "last_fetched": 1695553545.04459, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164841067": {"repository_manifest": {}, "full_name": "isabellaalstrom/sensor.krisinformation", "authors": ["@isabellaalstrom"], "category": "integration", "description": "A custom component for Home Assistant to get messages from krisinformation.se", "domain": "krisinformation", "etag_repository": "W/\"3d8d34eec87d56aa3dd70d383b712902aee391141ea6a1f13c50cfea53f2eae6\"", "last_updated": "2021-06-29T18:03:29Z", "stargazers_count": 27, "last_fetched": 1695553666.657199, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169467285": {"repository_manifest": {"name": "EdgeOS (Ubiquiti)", "homeassistant": "2022.11.0"}, "full_name": "elad-bar/ha-edgeos", "authors": ["@elad-bar"], "category": "integration", "description": "Integration with EdgeOS (Ubiquiti)", "domain": "edgeos", "etag_repository": "W/\"860de9e870d0dc1b01d90eca35185747feee2de8a4b8ace81c7c5b1ab2405f36\"", "last_updated": "2023-08-13T08:46:35Z", "stargazers_count": 120, "topics": ["edgeos"], "last_fetched": 1695553634.152289, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "494545750": {"repository_manifest": {"name": "Peaqhvac", "homeassistant": "2022.10.5", "zip_release": true, "filename": "peaqhvaq.zip", "render_readme": true}, "full_name": "elden1337/hass-peaqhvac", "authors": ["@elden1337"], "category": "integration", "description": "Home Assistant custom component to help hvac-systems stay below peak hourly energy levels and prioritize cheap hours to heat your home.", "domain": "peaqhvac", "etag_repository": "W/\"49472659bd2c82c73f55a8f678de5f545ca8bc225088a39d1c1c0a4d5888ac28\"", "last_updated": "2023-09-18T18:10:15Z", "stargazers_count": 3, "topics": ["nibe", "peak-shaving", "smart-pricing"], "last_fetched": 1695553635.763407, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142051833": {"repository_manifest": {"name": "Vertical Stack In Card", "render_readme": true, "filename": "vertical-stack-in-card.js"}, "full_name": "ofekashery/vertical-stack-in-card", "category": "plugin", "description": "\ud83d\udcd0 Home Assistant Card: Group multiple cards into a single sleek card.", "etag_repository": "W/\"f475cb145aabbb0e59c6986aaa4771144829b1ead097a295ef02191ef4771ba1\"", "last_updated": "2023-02-22T22:57:19Z", "stargazers_count": 789, "last_fetched": 1695553552.45428, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "357930725": {"repository_manifest": {"name": "Shinobi Video NVR", "homeassistant": "2023.7.0"}, "full_name": "elad-bar/ha-shinobi", "authors": ["@elad-bar"], "category": "integration", "description": "Shinobi Video custom component for HA", "domain": "shinobi", "etag_repository": "W/\"9629432c03ac9a0a830f58ffaf3b5dda9b51d4a426e76489b92531c1c6b8cdc8\"", "last_updated": "2023-08-31T06:57:32Z", "stargazers_count": 44, "topics": ["shinobi"], "last_fetched": 1695553634.209986, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187339794": {"repository_manifest": {"name": "TV Remote Card", "content_in_root": true, "homeassistant": "2022.4.0"}, "full_name": "marrobHD/tv-card", "category": "plugin", "description": "\ud83d\udcfa TV Remote Card", "etag_repository": "W/\"9fddc41ac69277b6873a29822a20cb8a8b248ba41d9ff740677444ee360e13d8\"", "last_updated": "2022-11-15T14:04:23Z", "stargazers_count": 155, "topics": ["homeassistant-tv-card", "lovelace-card", "tv-card"], "last_fetched": 1695553548.220153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216173358": {"repository_manifest": {"name": "Christmas Theme"}, "full_name": "home-assistant-community-themes/christmas", "category": "theme", "description": "Christmas theme for Home Assistant", "etag_repository": "W/\"f6919ebed3a6ea24c14498535675d0315cef1260af20fcdfc0610ae9fb279c6b\"", "last_updated": "2023-03-27T23:57:09Z", "stargazers_count": 1, "last_fetched": 1695553498.300633, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "619284862": {"repository_manifest": {"name": "Auto generating Mushroom dashboard strategy", "render_readme": true, "filename": "mushroom-strategy.js"}, "full_name": "AalianKhan/mushroom-strategy", "category": "plugin", "description": "A strategy to automatically generate a dashboard using mushroom cards", "downloads": 3373, "etag_repository": "W/\"503b78eb1dde0d396e39344ec4d3212396b6018d7d4a42632a6612e319b0e441\"", "last_updated": "2023-09-21T19:23:44Z", "stargazers_count": 128, "topics": ["mushroom-strategy", "strategy"], "last_fetched": 1695553508.690243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "238414582": {"repository_manifest": {"name": "Custom Card for Warsaw ZTM Information", "country": "PL", "homeassistant": "0.100.0"}, "full_name": "peetereczek/ztm-stop-card", "category": "plugin", "description": "Custom Lovelace card for Warsaw public transport", "etag_repository": "W/\"ea560636c70016b07b2fffc8e8b2a2d9b3e3172a623e20578e1efeb5e3301e24\"", "last_updated": "2023-01-09T10:38:52Z", "stargazers_count": 5, "last_fetched": 1695553552.79017, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "440617082": {"repository_manifest": {"name": "NYC 311 Public Services Calendar", "render_readme": true}, "full_name": "elahd/ha-nyc311", "authors": ["@elahd"], "category": "integration", "description": "Home Assistant integration for NYC trash collection, school, and alternate side parking schedules.", "domain": "nyc311", "etag_repository": "W/\"c3e260409e20ceb200498fc4e2606110b71234d20594264ec741031ed7c75eac\"", "last_updated": "2023-09-18T18:34:32Z", "stargazers_count": 4, "topics": ["community", "government-data", "nyc", "nyc-opendata"], "last_fetched": 1695553634.380114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240900380": {"repository_manifest": {"name": "Entities Script", "render_readme": "true"}, "full_name": "pmazz/ps_hassio_entities", "category": "python_script", "description": "Python script to handle state and attributes of existing sensors and entities", "etag_repository": "W/\"1e22e9b5770ed909d275d8e62688fce0104072c192ed20a381f87f8e905b2893\"", "last_updated": "2021-03-07T22:15:32Z", "stargazers_count": 39, "last_fetched": 1695553508.160565, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236127727": {"repository_manifest": {"name": "Camect Camera Card", "filename": "HACS-camect-custom_card.js"}, "full_name": "pfunkmallone/HACS-camect-custom_card", "category": "plugin", "description": "A custom card which exposes Camect video streams via the Home Assistant Lovelace interface. To use this card, you MUST have already installed the Camect HACS integration.", "etag_repository": "W/\"9276f5a56b5431e82add3eee2a69a91273b6bfacc79a31452a38eed5c7bd2c2a\"", "last_updated": "2022-06-22T04:51:11Z", "stargazers_count": 5, "topics": ["camect"], "last_fetched": 1695553553.204699, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "267558148": {"repository_manifest": {"name": "Custom-ui", "homeassistant": "2021.6.0", "render_readme": true}, "full_name": "Mariusthvdb/custom-ui", "category": "plugin", "description": "Add templates and icon_color to Home Assistant UI", "downloads": 2208, "etag_repository": "W/\"3e10dfcc4e10cb9f781b6d0437cb55a48f14a93d784aeacc5e689c682eb2bd8d\"", "last_updated": "2023-09-08T14:02:38Z", "stargazers_count": 131, "topics": ["customization", "icon-color", "more-info"], "last_fetched": 1695553547.823426, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235943258": {"repository_manifest": {"name": "Hubitat", "country": "US"}, "full_name": "jason0x43/hacs-hubitat", "authors": ["@jason0x43"], "category": "integration", "description": "A Hubitat integration for Home Assistant", "domain": "hubitat", "etag_repository": "W/\"264dedb0e4cdf6f3f93cbf87823e0bb6e0d96b378b9a68739c85d08462b7dcd4\"", "last_updated": "2023-08-10T01:59:59Z", "stargazers_count": 156, "topics": ["hubitat", "maker-api"], "last_fetched": 1695553669.093616, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "183989659": {"repository_manifest": {"name": "NHL API"}, "full_name": "JayBlackedOut/hass-nhlapi", "authors": ["@jayblackedout", "@mastermc0"], "category": "integration", "description": "NHL Stats API Integration Into Home Assistant", "domain": "nhl_api", "etag_repository": "W/\"ba255870a5ea5c301eda52eb56c56090a1a268fab0c62c95d04be158a1d256c8\"", "last_updated": "2023-09-22T15:03:18Z", "stargazers_count": 57, "last_fetched": 1695553669.070542, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "472077314": {"repository_manifest": {"name": "World's Air Quality Index", "render_readme": true, "country": ["GB", "US", "PL"]}, "full_name": "pawkakol1/worlds-air-quality-index", "authors": ["@pawkakol1"], "category": "integration", "description": "HACS World's Air Quality Index integration from waqi.info", "domain": "worlds_air_quality_index", "etag_repository": "W/\"e0ae8c7a8382813f81e1c48cba082dec7d7116f5072630104c1aee8a0f60d39b\"", "last_updated": "2023-08-28T15:41:11Z", "stargazers_count": 34, "topics": ["ha", "pollution", "waqi"], "last_fetched": 1695554139.157465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255270395": {"repository_manifest": {"name": "Stell Blue with Colors Theme"}, "full_name": "home-assistant-community-themes/stell-blue-with-colors", "category": "theme", "description": "Stell Blue with Colors theme for Home Assistant", "etag_repository": "W/\"85d360e158623f3e73a08fececd61ab0cf90d4b5cc716501da05cf40565ef0d6\"", "last_updated": "2023-05-29T08:57:05Z", "stargazers_count": 2, "last_fetched": 1695553500.182727, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "85400693": {"repository_manifest": {"name": "Padavan Tracker", "render_readme": true}, "full_name": "PaulAnnekov/home-assistant-padavan-tracker", "authors": ["@PaulAnnekov"], "category": "integration", "description": "Device tracker component that uses Padavan-based router", "domain": "padavan_tracker", "etag_repository": "W/\"34deb73003b02807f9a4b6fb679c3fe040e8e031523aaa1981dbdd5e8c58747c\"", "last_updated": "2022-05-18T17:01:17Z", "stargazers_count": 43, "topics": ["padavan", "router", "xiaomi"], "last_fetched": 1695554137.788345, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201740996": {"repository_manifest": {"name": "Generate readme", "zip_release": true, "filename": "readme.zip", "homeassistant": "2021.5.0", "hide_default_branch": true, "render_readme": true, "hacs": "0.19.1"}, "full_name": "custom-components/readme", "authors": ["@ludeeus"], "category": "integration", "description": "Use Jinja and data from Home Assistant to generate your README.md file", "domain": "readme", "downloads": 203, "etag_repository": "W/\"4b39c848a5ee47abe0b5e03d153f49125828a2e4a2fd52197e300166d72929bf\"", "last_updated": "2023-01-29T21:10:32Z", "stargazers_count": 24, "topics": ["automation", "jinja", "readme"], "last_fetched": 1695553608.637248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "647057223": {"repository_manifest": {"name": "Pronote for Home Assistant", "country": "FR"}, "full_name": "delphiki/hass-pronote", "authors": ["@delphiki"], "category": "integration", "description": "Pronote integration for Home Assistant", "domain": "pronote", "etag_repository": "W/\"3219b9150419fbbafc596eee0f6bb0f38980290f95cde0ac988aaf559ac29d82\"", "last_updated": "2023-09-24T09:32:28Z", "stargazers_count": 10, "topics": ["hassio-integration", "pronote"], "last_fetched": 1695553622.942982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "467638459": {"repository_manifest": {"name": "Niko Home Control II", "render_readme": true}, "full_name": "joleys/niko-home-control-II", "authors": ["@filipvh", "@joleys", "@tijsverkoyen"], "category": "integration", "description": "Home Assistant Custom Integration for Niko Home Control II", "domain": "nhc2", "etag_repository": "W/\"3cb0feb871e7c893f9caf1dd0a074c29164d234dde17dd19dc9626607f4d3548\"", "last_updated": "2023-09-19T11:14:29Z", "stargazers_count": 61, "topics": ["automation", "domotics", "niko"], "last_fetched": 1695554092.374474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "255139072": {"repository_manifest": {"name": "Entidade Reguladora dos Servi\u00e7os Energ\u00e9ticos", "country": "PT", "homeassistant": "2023.7.0", "render_readme": true}, "full_name": "dgomes/ha_erse", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant Custom Component for ERSE", "domain": "erse", "etag_repository": "W/\"fafe65d72597046e993760f398ad18f3b0dce06d316d72f6f1b93f5b105507d1\"", "last_updated": "2023-09-23T22:20:52Z", "stargazers_count": 35, "topics": ["home-assistant-component", "utility-meters"], "last_fetched": 1695553624.810708, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "222292912": {"repository_manifest": {}, "full_name": "gcobb321/icloud3", "authors": ["@gcobb321"], "category": "integration", "description": "iCloud3 v3 Prerelease is now available, Enable Beta Versions in HACS. ---- iCloud3 is an advanced iDevice tracker that uses Apple iCloud account and HA Companion App data for presence detection and location based automations.", "domain": "icloud3", "downloads": 11075, "etag_repository": "W/\"9cc3452b4f631c0547a36f8c3a597d19b2cff8c9c57495a6085a315a3f402503\"", "last_updated": "2023-09-24T06:54:08Z", "stargazers_count": 394, "topics": ["device-tracker", "ha-ios", "icloud", "icloud-account", "tracking", "zone", "zones"], "last_fetched": 1695553647.393965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "445977563": {"repository_manifest": {"name": "Plum ecoMAX boiler controller integration", "homeassistant": "2023.4.0"}, "full_name": "denpamusic/homeassistant-plum-ecomax", "authors": ["@denpamusic"], "category": "integration", "description": "Plum ecoMAX boiler controller integration for Home Assistant.", "domain": "plum_ecomax", "etag_repository": "W/\"382b2e17fe01020e337e87ce33c9f8f8e816c0298f583b5c8c911c7445f42677\"", "last_updated": "2023-09-21T20:07:56Z", "stargazers_count": 20, "topics": ["ecomax", "econet", "heating-controller", "heating-monitoring", "python3"], "last_fetched": 1695553623.18863, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "332651510": {"repository_manifest": {"homeassistant": "2023.1.0", "name": "Baby Buddy", "render_readme": true}, "full_name": "jcgoette/baby_buddy_homeassistant", "authors": ["@jcgoette"], "category": "integration", "description": "This custom integration provides sensors for Baby Buddy API endpoints.", "domain": "babybuddy", "downloads": 4, "etag_repository": "W/\"035db6e06d3a5e56ed2bac1bebe807ef78afc00c071be443a21b8e010f20028e\"", "last_updated": "2023-09-08T12:46:14Z", "stargazers_count": 52, "topics": ["baby", "home-assistant-component", "parents"], "last_fetched": 1695553672.933506, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187201747": {"repository_manifest": {}, "full_name": "jihao/rokid-webhook-hass", "category": "integration", "description": "rokid webhook component for Home Assistant (\u82e5\u742aHA\u7ec4\u4ef6)", "domain": "rokid_webhook", "etag_repository": "W/\"dab3ee102c3eeefcb64a4f6c3cfd475b37d1b7d554b0b25f1d9ac79db2db974f\"", "last_updated": "2022-02-15T08:44:30Z", "stargazers_count": 13, "last_fetched": 1695553677.525114, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245159052": {"repository_manifest": {"name": "Canary"}, "full_name": "jcwillox/lovelace-canary", "category": "plugin", "description": "\ud83d\udc24 Adds many useful extensions to lovelace, such as templating secondary info, stacking within a card and more!", "downloads": 6207, "etag_repository": "W/\"ed7c25aa72f1ab58cca8709c770b56275d71ab74e062fbcdcbac859fbae72a32\"", "last_updated": "2023-09-23T04:25:34Z", "stargazers_count": 71, "topics": ["canary-card", "extensions"], "last_fetched": 1695553539.035201, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "127689312": {"repository_manifest": {"name": "Sinope Neviweb", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "0.110.0"}, "full_name": "claudegel/sinope-1", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb Custom Component for Home Assistant to manage devices connected via GT125", "domain": "neviweb", "etag_repository": "W/\"c849c0106b95ba9468324ed3485b67aa6c83b679682e5c76c9caeb5790dded25\"", "last_updated": "2023-03-05T02:59:58Z", "stargazers_count": 23, "topics": ["neviweb", "sinope"], "last_fetched": 1695553603.155583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223938651": {"repository_manifest": {"name": "Midnight Blue Theme"}, "full_name": "home-assistant-community-themes/midnight-blue", "category": "theme", "description": "Midnight Blue theme for Home Assistant", "etag_repository": "W/\"061caa491a47077ce674313f0450ccabde1824944c1df9d56b133705934e719c\"", "last_updated": "2023-03-27T22:57:02Z", "stargazers_count": 5, "last_fetched": 1695553499.011301, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "589771870": {"repository_manifest": {"name": "Youfone", "render_readme": true, "country": ["BE", "NL"]}, "full_name": "myTselection/youfone_be", "authors": ["@myTselection"], "category": "integration", "description": "Youfone Home Assistant custom component HACS to get Youfone mobile phone subscription and usage details for Belgium and Netherlands.", "domain": "youfone_be", "etag_repository": "W/\"0d32804bbab001978e16ff63b79143abaf896ba219a215ade20da289d50fed27\"", "last_updated": "2023-08-20T15:15:37Z", "stargazers_count": 2, "topics": ["youfone"], "last_fetched": 1695554130.684783, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337228671": {"repository_manifest": {"name": "Porsche Connect", "hacs": "1.6.0", "render_readme": true, "homeassistant": "0.118.0"}, "full_name": "CJNE/ha-porscheconnect", "authors": ["@cjne"], "category": "integration", "description": "Porsche Connect custom component for Home Assistant", "domain": "porscheconnect", "etag_repository": "W/\"226230cd3290ea57d99d4392bf2b6268358d824994e5d2df198453d0210f2af6\"", "last_updated": "2023-09-11T20:46:24Z", "stargazers_count": 19, "topics": ["porsche"], "last_fetched": 1695553602.909335, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "370997019": {"repository_manifest": {"name": "WebOS Keyboard Card", "content_in_root": true, "filename": "webos-keyboard-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-webos-keyboard-card", "category": "plugin", "description": "Type on your WebOS TV using this lovelace card", "etag_repository": "W/\"d0a513554a52bfe4b44bcdc2ae8c85453f016d4dbbd959c5e70a9e774eb070b3\"", "last_updated": "2021-12-17T14:54:58Z", "stargazers_count": 5, "topics": ["card", "input-method", "keyboard", "remote", "webos"], "last_fetched": 1695553514.552077, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163446489": {"repository_manifest": {"name": "Entur Card", "render_readme": true, "filename": "entur-card.js"}, "full_name": "jonkristian/entur-card", "category": "plugin", "description": "Home Assistant Lovelace card card for the Entur public transport component.", "etag_repository": "W/\"e7db09be9d76888ab02b50b5167e87675e0639f63ca2d4f12cca55a281ed503d\"", "last_updated": "2023-06-12T10:24:09Z", "stargazers_count": 46, "topics": ["entur", "transportation"], "last_fetched": 1695553539.873782, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366332990": {"repository_manifest": {"name": "Electrolux Wellbeing", "hacs": "1.6.0", "homeassistant": "2021.12.0"}, "full_name": "JohNan/homeassistant-wellbeing", "authors": ["@JohNan"], "category": "integration", "description": "Get the status from your Electrolux devices connected to Wellbeing", "domain": "wellbeing", "downloads": 7, "etag_repository": "W/\"10fa0e7006fdf9d6409063232beaffedb27e4fc280ac4af7707f03f5510e7daa\"", "last_updated": "2023-08-08T16:29:54Z", "stargazers_count": 48, "topics": ["electrolux", "electrolux-wellbeing", "wellbeing"], "last_fetched": 1695554092.49331, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "358962656": {"repository_manifest": {"name": "Notify Card", "content_in_root": true, "filename": "notify-card.js", "render_readme": true}, "full_name": "bernikr/lovelace-notify-card", "category": "plugin", "description": "Send notifications directly from the dashboard", "etag_repository": "W/\"99370bca047633dfa0073f00015923c66cc4182e5e5db76c776a2bb8cc29b51f\"", "last_updated": "2023-03-17T09:29:34Z", "stargazers_count": 24, "topics": ["card", "notification", "notifications", "notify", "service"], "last_fetched": 1695553514.55025, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188698828": {"repository_manifest": {"country": ["RU", "BY"], "homeassistant": "2022.5", "name": "Yandex Smart Home", "render_readme": true}, "full_name": "dext0r/yandex_smart_home", "authors": ["@dext0r"], "category": "integration", "description": "Adds support for Yandex Smart Home (Alice voice assistant) into Home Assistant", "domain": "yandex_smart_home", "etag_repository": "W/\"cf7603a307ea63142432a490253743fbc24f5d9311261a6ed1abcb2119464a7d\"", "last_updated": "2023-09-06T17:35:31Z", "stargazers_count": 644, "topics": ["alice", "home-assistant-component", "voice-assistant", "yandex"], "last_fetched": 1695553624.232301, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "489295753": {"repository_manifest": {"name": "Navbar Position", "render_readme": true}, "full_name": "javawizard/ha-navbar-position", "category": "plugin", "description": "Moves the Home Assistant dashboard navigation bar to the bottom of the screen", "etag_repository": "W/\"9b1543da236ea6dcde0e950e58bca570d858231cd68b9192c6e3593ef0d92780\"", "last_updated": "2023-07-06T00:49:31Z", "stargazers_count": 17, "last_fetched": 1695553538.648621, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283578257": {"repository_manifest": {"name": "power-distribution-card", "render_readme": true, "filename": "power-distribution-card.js"}, "full_name": "JonahKr/power-distribution-card", "category": "plugin", "description": "A Lovelace Card for visualizing power distributions.", "downloads": 6203, "etag_repository": "W/\"40c6fd8312310e331b0e791baad3e55c28f6ba6da61dfb6a353130efe2bcee09\"", "last_updated": "2023-09-09T18:31:33Z", "stargazers_count": 167, "topics": ["e3dc", "lovelace-card"], "last_fetched": 1695553540.043138, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "449416816": {"repository_manifest": {"name": "Sonos Card", "render_readme": true, "filename": "custom-sonos-card.js"}, "full_name": "johanfrick/custom-sonos-card", "category": "plugin", "description": "Home Assistant custom lovelace sonos card", "downloads": 2464, "etag_repository": "W/\"a56f2855bd20ea7e6077b0c2e7f41d7f9bc8b76cfc672c1031ef041dc8e2930f\"", "last_updated": "2023-09-19T10:29:52Z", "stargazers_count": 76, "topics": ["lovelace-custom-card", "sonos"], "last_fetched": 1695553539.429942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "476357279": {"repository_manifest": {"name": "Music Assistant", "render_readme": true, "zip_release": true, "filename": "mass.zip", "hide_default_branch": true, "homeassistant": "2023.3.0"}, "full_name": "music-assistant/hass-music-assistant", "authors": ["@music-assistant"], "category": "integration", "description": "Turn your Home Assistant instance into a jukebox, hassle free streaming of your favorite media to Home Assistant media players.", "domain": "mass", "downloads": 9861, "etag_repository": "W/\"dc83a140842941b84876c9dabe5cd8326b8275d8ef2b07ea1241968469ac3ddd\"", "last_updated": "2023-09-23T00:48:36Z", "stargazers_count": 706, "topics": ["music-library", "music-player"], "last_fetched": 1695554128.633169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362551242": {"repository_manifest": {"name": "Update Time Card", "content_in_root": true, "render_readme": true, "filename": "update-time-card.js"}, "full_name": "itobey/update-time-card", "category": "plugin", "description": "Simple last-updated card for Home assistant lovelace", "etag_repository": "W/\"d714882f55a5696d2c28ef2c9c66333106442c49b6c12897dc334c59bd134e58\"", "last_updated": "2023-04-03T23:03:48Z", "stargazers_count": 5, "topics": ["clock", "dashboard", "e-ink", "last-updated", "lovelace-custom-card"], "last_fetched": 1695553538.267168, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351472550": {"repository_manifest": {"name": "Multiline Entity Card", "render_readme": true, "filename": "multiline-entity-card.js"}, "full_name": "jampez77/Multiline-Entity-Card", "category": "plugin", "description": "A custom entity card for Home Assistant that allows text to span multiple lines.", "etag_repository": "W/\"0f1dfb8ffd142f8da0c04c86afa2d93bdcd5484195b08c78768945708e3913d2\"", "last_updated": "2023-01-31T09:32:25Z", "stargazers_count": 14, "topics": ["automation"], "last_fetched": 1695553538.650477, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201599575": {"repository_manifest": {"name": "Emby Latest Media"}, "full_name": "gcorgnet/sensor.emby_upcoming_media", "authors": ["@gcorgnet"], "category": "integration", "description": "Home Assistant component to feed Upcoming Media Card with the latest releases on an Emby instance.", "domain": "emby_upcoming_media", "etag_repository": "W/\"1e7ee64c3b41a4b5f8c2dd7cf30b816fd8e28bd83cac176e5cee300cf1584b7a\"", "last_updated": "2022-06-23T21:18:24Z", "stargazers_count": 17, "last_fetched": 1695553647.538064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "244872232": {"repository_manifest": {"name": "Paper Buttons Row"}, "full_name": "jcwillox/lovelace-paper-buttons-row", "category": "plugin", "description": "Adds highly configurable buttons that use actions and per-state styling.", "downloads": 18072, "etag_repository": "W/\"7c0350f4440e5b0b254109faf23485d17a1fab46004cf8b6c2d3094953f85636\"", "last_updated": "2023-09-23T03:53:38Z", "stargazers_count": 214, "topics": ["actions", "buttons", "haptic", "paper"], "last_fetched": 1695553539.075503, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309506416": {"repository_manifest": {"name": "WallPanel", "render_readme": true, "filename": "wallpanel.js"}, "full_name": "j-a-n/lovelace-wallpanel", "category": "plugin", "description": "\ud83d\uddbc\ufe0f Wall panel mode and photo screensaver for your Home Assistant Dashboards", "downloads": 3149, "etag_repository": "W/\"1cb90381bdd34f2709e3f4f9022043e0e5dc9422e08dc6e4f7f331a2710a1a26\"", "last_updated": "2023-09-17T13:09:49Z", "stargazers_count": 249, "topics": ["dashboard", "fullscreen", "home-assistant-addons", "photo-gallery", "screensaver", "wallpanel"], "last_fetched": 1695553538.671949, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "318359434": {"repository_manifest": {"name": "keymaster", "zip_release": true, "filename": "keymaster.zip", "homeassistant": "2022.4.0"}, "full_name": "FutureTense/keymaster", "authors": ["@FutureTense", "@firstof9", "@raman325"], "category": "integration", "description": "Home Assistant integration for managing Z-Wave enabled locks", "domain": "keymaster", "downloads": 5469, "etag_repository": "W/\"adf3dc2e108871a3e8ac187bf8c94fcd4e93109d5ca4a1a803cf0fa25a7cac03\"", "last_updated": "2023-02-22T08:12:59Z", "stargazers_count": 182, "topics": ["keymaster", "locks", "zwave", "zwave-enabled-locks"], "last_fetched": 1695553645.552998, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "165156754": {"repository_manifest": {}, "full_name": "custom-cards/pc-card", "category": "plugin", "description": "\ud83d\udcb5 Personal Capital Card", "etag_repository": "W/\"00d18c21094d8061d5fc0884ed8d7d6109647fb45128a93f5062a49b3a38b574\"", "last_updated": "2019-10-21T03:36:31Z", "stargazers_count": 5, "last_fetched": 1695553519.708465, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "416059983": {"repository_manifest": {"name": "Stiebel Eltron ISG", "filename": "stiebel_eltron_isg.zip", "homeassistant": "2023.9.1", "render_readme": true, "zip_release": true}, "full_name": "pail23/stiebel_eltron_isg_component", "authors": ["@pail23"], "category": "integration", "description": "Stiebel Eltron ISG integration for Home Assistant ", "domain": "stiebel_eltron_isg", "downloads": 199, "etag_repository": "W/\"9d7ed0679760398f87ce6523c45eee7fe3d844b6bc90f55a3a812daf7396351f\"", "last_updated": "2023-09-18T20:26:32Z", "stargazers_count": 22, "last_fetched": 1695554137.301092, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "528492198": {"repository_manifest": {"name": "Telenet Telemeter", "render_readme": true, "country": ["BE"]}, "full_name": "myTselection/telenet_telemeter", "authors": ["@myTselection"], "category": "integration", "description": "Telenet Telemeter Home Assistant custom component HACS for Belgian ISP and mobile phone network traffic.", "domain": "telenet_telemeter", "etag_repository": "W/\"2c08eeb69aff872a8903156c51c04a73dc459428804234f092a66856973e660c\"", "last_updated": "2023-09-21T20:08:36Z", "stargazers_count": 18, "topics": ["telemeter", "telenet"], "last_fetched": 1695554130.747982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180229356": {"repository_manifest": {"name": "Simple Vacuum Card", "filename": "xiaomi-vacuum-card.js", "render_readme": true}, "full_name": "benct/lovelace-xiaomi-vacuum-card", "category": "plugin", "description": "Simple card for various robot vacuums in Home Assistant's Lovelace UI", "downloads": 19795, "etag_repository": "W/\"08cbcfcca79c7fcc21203f8032111e1c84073fb15de0646c4fba9baad7895a28\"", "last_updated": "2023-01-18T07:18:33Z", "stargazers_count": 241, "topics": ["card", "roborock", "robot-vacuums", "vacuum", "xiaomi", "xiaomi-vacuum"], "last_fetched": 1695553514.670382, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "178921037": {"repository_manifest": {"name": "Multiple Entity Row", "filename": "multiple-entity-row.js", "render_readme": true}, "full_name": "benct/lovelace-multiple-entity-row", "category": "plugin", "description": "Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI", "downloads": 27660, "etag_repository": "W/\"32e70d9776f8d589a30b5f2a5033c9d537a966f8a6813ce97dbf68438f8915ee\"", "last_updated": "2023-05-30T20:51:09Z", "stargazers_count": 664, "topics": ["attribute", "card", "entity", "entity-attribute", "entity-rows", "format", "multiple", "state"], "last_fetched": 1695553514.695148, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328132422": {"repository_manifest": {"name": "Kodi Playlist Card", "render_readme": true, "filename": "kodi-playlist-card.js"}, "full_name": "jtbgroup/kodi-playlist-card", "category": "plugin", "description": "This repository is used to contain the code of a kodi playlist card for Home Assistant and publish it via HACS", "downloads": 416, "etag_repository": "W/\"54ae74fb128d357f63d3815aa82ee70691b2d1ad811957b8f51c235feec4302c\"", "last_updated": "2023-06-11T05:28:23Z", "stargazers_count": 2, "topics": ["kodi"], "last_fetched": 1695553540.470965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732887": {"repository_manifest": {"homeassistant": "0.110.0"}, "full_name": "bramkragten/swipe-card", "category": "plugin", "description": "Card that allows you to swipe throught multiple cards for Home Assistant Lovelace", "etag_repository": "W/\"ad1504153cff90f8eb262d0c4a0d42f4c2e5f4858fdcda51f92b48a5a294dd9a\"", "last_updated": "2023-09-07T21:30:39Z", "stargazers_count": 173, "last_fetched": 1695553514.726473, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "362058414": {"repository_manifest": {"name": "Libratone Zipp", "render_readme": true}, "full_name": "Chouffy/home_assistant_libratone_zipp", "authors": ["@chouffy"], "category": "integration", "description": "Control a Libratone Zipp speaker within Home Assistant", "domain": "libratone_zipp", "etag_repository": "W/\"70eb8b9fe73fc5658c3b1c297fdd30f6c800f03584a04ea201216c16b050e461\"", "last_updated": "2022-05-27T07:58:22Z", "stargazers_count": 5, "topics": ["home-assistant-integration", "libratone", "python3"], "last_fetched": 1695553601.99957, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "250022973": {"repository_manifest": {"name": "SmartThinQ LGE Sensors", "homeassistant": "2023.7.0"}, "full_name": "ollo69/ha-smartthinq-sensors", "authors": ["@ollo69"], "category": "integration", "description": "HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.", "domain": "smartthinq_sensors", "etag_repository": "W/\"cc265bf950600dbe1fa727f6e06f10f7cf9068410686049004e6379452109954\"", "last_updated": "2023-09-22T22:48:29Z", "stargazers_count": 782, "topics": ["ac", "air-purifier", "climate", "dehumidifier", "dishwasher", "dryer", "fan", "lg", "lge", "microwave", "oven", "range", "refrigerator", "sensors", "smartthinq", "thinq", "washer"], "last_fetched": 1695554137.096011, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "524783308": {"repository_manifest": {"name": "Shutter Row", "render_readme": true, "filename": "shutter-row.js", "content_in_root": true}, "full_name": "berrywhite96/lovelace-shutter-row", "category": "plugin", "description": "Home Assistant Lovelace Shutter Row Card", "downloads": 2747, "etag_repository": "W/\"278e79df436312f0509f9825d5b38ee9cf73fc0b825ae2aad7019ea54b361313\"", "last_updated": "2023-05-19T14:24:38Z", "stargazers_count": 17, "topics": ["home-assistant-card", "lovelace-card"], "last_fetched": 1695553514.718353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "224560492": {"repository_manifest": {"name": "Sinope Neviweb130", "filename": false, "render_readme": true, "country": ["CA"], "homeassistant": "2021.12.1"}, "full_name": "claudegel/sinope-130", "authors": ["@claudegel"], "category": "integration", "description": "Neviweb custom component for Home Assistant to manage devices connected via a GT130 and wifi devices from Sinop\u00e9", "domain": "neviweb130", "etag_repository": "W/\"d6cbf432b357096eda9e832e77a91391b63678f9012b3665062cbd91c6a8a3ac\"", "last_updated": "2023-09-09T18:00:56Z", "stargazers_count": 42, "topics": ["neviweb", "sinope"], "last_fetched": 1695553603.328012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "610701268": {"repository_manifest": {"name": "FoxESS - Modbus", "hacs": "1.20.0", "homeassistant": "2023.3.0", "render_readme": true}, "full_name": "nathanmarlor/foxess_modbus", "authors": ["@nathanmarlor"], "category": "integration", "description": "FoxESS inverter integration. Connect directly to your FoxESS inverter (no cloud!) for real-time status and control.", "domain": "foxess_modbus", "etag_repository": "W/\"d7f6ff20c1e6163aa0c3d51abdd609b1fbaa45b440547235f051283dc85b8445\"", "last_updated": "2023-09-18T16:22:20Z", "stargazers_count": 52, "topics": ["energy", "foxess"], "last_fetched": 1695554131.466316, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197245179": {"repository_manifest": {}, "full_name": "twrecked/lovelace-hass-aarlo", "category": "plugin", "description": "Lovelace card for hass-aarlo integration.", "etag_repository": "W/\"e771afd437fb2fb734f3492a92e284ab98f1de2815fbdf05160b339209b007e6\"", "last_updated": "2023-09-02T17:56:32Z", "stargazers_count": 64, "topics": ["arlo", "camera", "lovelace-card", "streaming"], "last_fetched": 1695553567.157023, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340759468": {"repository_manifest": {"name": "NIWA Tides", "country": "NZ", "render_readme": true}, "full_name": "muxa/home-assistant-niwa-tides", "authors": ["@muxa"], "category": "integration", "description": "Custom integration for Home Assistant to get New Zealand tide information from NIWA Tides API", "domain": "niwa_tides", "etag_repository": "W/\"68ba8726c6e855bebb9d26727014775968672e50fc16105493e742d924035c54\"", "last_updated": "2022-03-12T21:41:22Z", "stargazers_count": 6, "topics": ["tides"], "last_fetched": 1695554128.332474, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192732636": {"repository_manifest": {}, "full_name": "bramkragten/weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace", "etag_repository": "W/\"9bc4063dc93b0b0d2d9e10dbc917f70770d46c7d838c0d3d26b7e7c1f9bb4adf\"", "last_updated": "2023-07-03T20:13:34Z", "stargazers_count": 412, "last_fetched": 1695553515.77284, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "439467929": {"repository_manifest": {"name": "Midea Air Appliances (LAN)", "homeassistant": "2022.5.0"}, "full_name": "nbogojevic/homeassistant-midea-air-appliances-lan", "authors": ["@nbogojevic"], "category": "integration", "description": "This Home Assistant custom component adding support for controlling Midea air conditioners and dehumidifiers on local network. ", "domain": "midea_dehumidifier_lan", "etag_repository": "W/\"3d4eb73f4f5c51a9da3d6d617102df37e41d71a2430b9ae529b5db29b84369d5\"", "last_updated": "2023-09-17T18:07:57Z", "stargazers_count": 169, "topics": ["air-conditioner", "airconditioning", "dehumidifier", "midea"], "last_fetched": 1695554131.978426, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "297106424": {"repository_manifest": {"name": "Ebeco thermostats"}, "full_name": "joggs/home_assistant_ebeco", "authors": ["@joggs"], "category": "integration", "description": "Integration for Ebeco thermostats", "domain": "ebeco", "etag_repository": "W/\"c9a7633f120b39113af75cb825cb0e3ce66288b04ccd556f71a1df4055067212\"", "last_updated": "2023-08-03T08:12:37Z", "stargazers_count": 22, "topics": ["ebeco"], "last_fetched": 1695554092.397624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269588712": {"repository_manifest": {"name": "Philips Hue Play HDMI Sync Box", "render_readme": true, "homeassistant": "2023.8.0"}, "full_name": "mvdwetering/huesyncbox", "authors": ["@mvdwetering"], "category": "integration", "description": "Custom integration for Home Assistant to control the Philips Hue Play HDMI Sync Box", "domain": "huesyncbox", "downloads": 12, "etag_repository": "W/\"576e2296bf2ee1134d7f71f1a4d0eeaa57b61c65828d00af3e29ed71f8040df6\"", "last_updated": "2023-09-24T00:07:08Z", "stargazers_count": 80, "topics": ["hue-entertainment", "huesync", "philips-hue"], "last_fetched": 1695554129.035296, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144888844": {"repository_manifest": {}, "full_name": "Paul-dH/Home-Assisant-Sensor-OvApi", "category": "integration", "description": null, "domain": "ovapi", "etag_repository": "W/\"35d51573b100d1cd101bf4611c7396543cad0038fbae5359c28ed098f45e93a7\"", "last_updated": "2023-06-05T21:33:45Z", "stargazers_count": 18, "last_fetched": 1695554137.112051, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "520565579": {"repository_manifest": {"name": "Theme Parks Waiting Times", "render_readme": true}, "full_name": "danielsmith-eu/home-assistant-themeparks-integration", "authors": ["@danielsmith-eu"], "category": "integration", "description": "A Home Assistant integration that shows Theme Park waiting times using the ThemeParks.wiki API", "domain": "themeparks", "etag_repository": "W/\"f6669b44b082ed59128b7273728117df3fa1d891534c02986df3365425255b47\"", "last_updated": "2023-03-07T13:02:40Z", "stargazers_count": 9, "topics": ["api", "queue", "themeparks", "times", "wait"], "last_fetched": 1695553618.272107, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "456340193": {"repository_manifest": {"name": "Innova Heat and A/C", "homeassistant": "2022.12.0", "country": "CA"}, "full_name": "danielrivard/homeassistant-innova", "authors": ["@danielrivard"], "category": "integration", "description": "Home Assistant Integration for Innova 2.0 Heat Pump and AirLeaf", "domain": "innova", "etag_repository": "W/\"ba0f47ae9864340855e9842e267f360f020c74f06d3a2ece487ec77f7696c2df\"", "last_updated": "2023-09-13T13:09:15Z", "stargazers_count": 22, "topics": ["airleaf", "climate", "fancoil", "innova", "innova-2point0", "innovaenergie", "twopointzero"], "last_fetched": 1695553618.396679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "215327195": {"repository_manifest": {"name": "RGB Light Card", "content_in_root": true, "filename": "card.js", "render_readme": true}, "full_name": "bokub/rgb-light-card", "category": "plugin", "description": "\ud83d\udca1 A Lovelace custom card for RGB lights", "downloads": 25676, "etag_repository": "W/\"9f94ab17d5925fb4867a4c345004de200fbc0a0fb15534d2eba041a379ac2207\"", "last_updated": "2023-05-15T06:53:21Z", "stargazers_count": 376, "topics": ["lovelace-custom-card", "rgb-lights"], "last_fetched": 1695553514.759545, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283847957": {"repository_manifest": {"name": "pyscript", "zip_release": true, "filename": "hass-custom-pyscript.zip"}, "full_name": "custom-components/pyscript", "authors": ["@craigbarratt"], "category": "integration", "description": "Pyscript adds rich Python scripting to HASS", "domain": "pyscript", "downloads": 8227, "etag_repository": "W/\"b26a98c70729a8ad251b7d129923e9f0e94557e65f625c19e847ec61446ccca3\"", "last_updated": "2023-08-25T21:03:41Z", "stargazers_count": 684, "topics": ["jupyter"], "last_fetched": 1695553608.762397, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "247070270": {"repository_manifest": {"name": "SamsungTV Smart", "homeassistant": "2023.7.0"}, "full_name": "ollo69/ha-samsungtv-smart", "authors": ["@jaruba", "@ollo69", "@screwdgeh"], "category": "integration", "description": "\ud83d\udcfa Home Assistant SamsungTV Smart Component with simplified SmartThings API Support configurable from User Interface.", "domain": "samsungtv_smart", "etag_repository": "W/\"44c12310c8e922a9449d4c3057c5164b3c083d9d2dc89a770e03b4c355d00fc9\"", "last_updated": "2023-09-14T20:10:02Z", "stargazers_count": 315, "topics": ["samsung", "samsung-smart-tv", "samsung-tv", "smartthings"], "last_fetched": 1695554136.607724, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480112024": {"repository_manifest": {"name": "Sj\u00f6fartsverket ViVa", "country": "SE"}, "full_name": "patrickribbing/sjofartsverket_viva-component", "authors": ["@patrickribbing"], "category": "integration", "description": "Get wind information from the Swedish Sj\u00f6farsverket's ViVa service.", "domain": "sjofartsverket_viva", "etag_repository": "W/\"d8c3d32af275c29dc7f2ad2df64bd06b0e71021fbfee35ca850215ebf4831fb3\"", "last_updated": "2023-07-14T12:19:43Z", "stargazers_count": 2, "last_fetched": 1695554137.209879, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459761427": {"repository_manifest": {"name": "PGNIG sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/pgnig-sensor", "authors": ["@pawelhulek"], "category": "integration", "description": "This sensor is gathering gas usage data from PGNIG ebok page.", "domain": "pgnig_gas_sensor", "downloads": 18, "etag_repository": "W/\"d5cee2549c9cfff0ba74ed2f4d5c41f026e20f58306a2bdcb24cf6e01951b203\"", "last_updated": "2022-09-19T05:48:29Z", "stargazers_count": 24, "topics": ["gas-sensor"], "last_fetched": 1695554138.908827, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "459709817": {"repository_manifest": {"name": "Tedee", "render_readme": true, "hide_default_branch": true}, "full_name": "patrickhilker/tedee_hass_integration", "authors": ["@patrickhilker", "@joerg65", "@zweckj"], "category": "integration", "description": "Control your tedee smart lock from Home Assistant", "domain": "tedee", "etag_repository": "W/\"8092adf2686df77d8154e33dcc08bcf727ff9f47f500783da01c2fd537769ef8\"", "last_updated": "2023-07-10T06:48:56Z", "stargazers_count": 14, "topics": ["customcomponent", "lock", "security", "smart-lock", "smartlock", "tedee"], "last_fetched": 1695554137.17064, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "270638476": {"repository_manifest": {"name": "Nord Theme"}, "full_name": "home-assistant-community-themes/nord", "category": "theme", "description": "Nord theme for Home Assistant", "etag_repository": "W/\"a8a81a787bb50a5338b40000021cb3d5ea4e8cd0f726f2fb1e49461676c5195b\"", "last_updated": "2023-04-03T13:58:06Z", "stargazers_count": 12, "last_fetched": 1695553500.175676, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396695907": {"repository_manifest": {"name": "Gree Extension for Home-Assistant built in integration", "render_readme": true}, "full_name": "mullerdavid/hass_GreeExt", "authors": ["@mullerdavid"], "category": "integration", "description": "Gree Extension for built in integration", "domain": "gree_ext", "etag_repository": "W/\"6417ad2a8a4db38b7b8fbc502a7df0692a9ab3081e0a1ba557c8bb748a6e8412\"", "last_updated": "2023-06-12T09:56:03Z", "stargazers_count": 5, "topics": ["gree"], "last_fetched": 1695554128.206232, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278930028": {"repository_manifest": {"name": "Linkplay-based speakers and devices", "homeassistant": "2022.6.0"}, "full_name": "nagyrobi/home-assistant-custom-components-linkplay", "authors": ["@nicjo814", "@limych", "@nagyrobi"], "category": "integration", "description": "LinkPlay based media devices integration for Home Assistant. Supports multiroom, Media Browser, and snapshot and restore functionality for TTS. Compatible with Mini Media Player card.", "domain": "linkplay", "etag_repository": "W/\"32e0c3d8c083e0d4834659f233f556e420fc03b7c304ba5474e4f76aa33333fc\"", "last_updated": "2023-08-17T19:33:14Z", "stargazers_count": 124, "topics": ["arylic", "cvte", "harman-kardon", "linkplay", "speaker", "tts"], "last_fetched": 1695554130.832701, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "442594482": {"repository_manifest": {"name": "Kontomierz sensor", "country": "PL", "render_readme": true}, "full_name": "pawelhulek/kontomierz-sensor", "category": "integration", "description": "A sensor that integrates all your bank balance gathered in kontomierz app", "domain": "kontomierz_sensor", "etag_repository": "W/\"47ec1f87cdac3df692fd832c4db4043530640136aead9e45998462205821a0da\"", "last_updated": "2022-03-10T06:49:41Z", "stargazers_count": 5, "topics": ["finance", "financial-analysis", "fintech", "kontomierz"], "last_fetched": 1695554138.812456, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265313034": {"repository_manifest": {"name": "Refreshable picture card", "filename": "refreshable-picture-card.js", "render_readme": true}, "full_name": "dimagoltsman/refreshable-picture-card", "category": "plugin", "description": "a refreshable picture card for HACS", "etag_repository": "W/\"b4f118c634158c58b6dda94f051333c6264cf60c6fb20ae77dace11e1a3e802c\"", "last_updated": "2023-09-23T20:34:08Z", "stargazers_count": 27, "last_fetched": 1695553525.530658, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "193262086": {"repository_manifest": {}, "full_name": "dimagoltsman/content-card-remote-control", "category": "plugin", "description": "Home assistant remote control", "etag_repository": "W/\"2dcf4ef195cf9aa18a135300300f91b9cc1ca21b2f761e8f6963a037cec9f319\"", "last_updated": "2022-01-20T20:58:11Z", "stargazers_count": 4, "last_fetched": 1695553524.520035, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "337387822": {"repository_manifest": {"name": "Hella ONYX.CENTER", "homeassistant": "2023.8.0", "render_readme": true}, "full_name": "muhlba91/onyx-homeassistant-integration", "authors": ["@muhlba91"], "category": "integration", "description": "Home Assistant integration (HACS) for Hella's ONYX.CENTER appliance", "domain": "hella_onyx", "etag_repository": "W/\"46f2af18f65e3d670ad8bcf05002a0ab22c70b80ea27b14e93e74d8af8542589\"", "last_updated": "2023-09-13T00:52:01Z", "stargazers_count": 2, "topics": ["hella", "onyx"], "last_fetched": 1695554128.412762, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "394082552": {"repository_manifest": {"name": "Frigate Card", "render_readme": true, "filename": "frigate-hass-card.js", "homeassistant": "2022.3.0"}, "full_name": "dermotduffy/frigate-hass-card", "category": "plugin", "description": "A Lovelace card for Frigate in Home Assistant", "downloads": 21357, "etag_repository": "W/\"626ffd8bfecedc5d1019777e770dd31f016decc469ffd5d42e41e06f158bfb8d\"", "last_updated": "2023-09-19T16:18:54Z", "stargazers_count": 319, "topics": ["cctv", "frigate", "nvr"], "last_fetched": 1695553524.885369, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "351828005": {"repository_manifest": {"name": "Dahua VTO", "render_readme": true}, "full_name": "myhomeiot/DahuaVTO", "authors": ["@myhomeiot"], "category": "integration", "description": "Control Dahua VTO/VTH devices from Home Assistant", "domain": "dahua_vto", "etag_repository": "W/\"7dacfe7f9103fc3e6bc2830b506b6539c3c403eedd0bd86faec264bceb86ba8f\"", "last_updated": "2023-04-11T19:32:50Z", "stargazers_count": 109, "topics": ["dahua"], "last_fetched": 1695554129.964351, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "197929015": {"repository_manifest": {}, "full_name": "dmulcahey/zha-network-card", "category": "plugin", "description": "Custom Lovelace card that displays ZHA network and device information", "etag_repository": "W/\"66cd3099f87f3708fd09a9045c0f8944fdd8dd11569118a4edf3284fd0b81cba\"", "last_updated": "2020-11-25T23:16:49Z", "stargazers_count": 83, "last_fetched": 1695553525.249088, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "157674859": {"repository_manifest": {"name": "Air Visual Card"}, "full_name": "dnguyen800/air-visual-card", "category": "plugin", "description": "A Lovelace card showing air quality data from airvisual.com. Requires the AirVisual component.", "etag_repository": "W/\"91de5a924469d46e40f981986e2435357ce00e4a354df4d191c4ccaab1a1e32b\"", "last_updated": "2023-04-06T20:25:49Z", "stargazers_count": 87, "topics": ["air-quality", "air-visual"], "last_fetched": 1695553525.766406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "604796673": {"repository_manifest": {"name": "Carbu.com", "render_readme": true, "country": ["BE", "FR"]}, "full_name": "myTselection/Carbu_com", "authors": ["@myTselection"], "category": "integration", "description": "Home Assistant custom component HACS integration to Carbu.com site to compare and save on your fuel oil / heating oil (mazout) and fuel (diesel, super and lpg) purchases in Belgium, France and Luxembourg. Fuel prices supported for Netherlands, Germany and Italy too!", "domain": "carbu_com", "etag_repository": "W/\"cbad1efd35d49e3ba83515ebc7512181ac3288f4fcc8f8a189bb24089455cf25\"", "last_updated": "2023-09-07T21:11:28Z", "stargazers_count": 10, "topics": ["fuel-prices", "price-tracker"], "last_fetched": 1695554130.345151, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "454859084": {"repository_manifest": {"name": "Home Connect Alt", "hacs": "1.25.0", "homeassistant": "2022.7.0"}, "full_name": "ekutner/home-connect-hass", "authors": ["@ekutner"], "category": "integration", "description": "Alternative (and improved) Home Connect integration for Home Assistant", "domain": "home_connect_alt", "etag_repository": "W/\"1204c05f0a822890dfd35e675ab75e95aa94fc37690bdeb749235a6f0c1c6699\"", "last_updated": "2023-09-20T16:40:24Z", "stargazers_count": 269, "topics": ["home-assistant-component", "home-assistant-integration", "home-connect", "homeconnect"], "last_fetched": 1695553634.053356, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "373101151": {"repository_manifest": {"name": "SunSpec", "hacs": "1.6.0", "render_readme": true, "homeassistant": "2021.9.1"}, "full_name": "CJNE/ha-sunspec", "authors": ["@cjne"], "category": "integration", "description": "Home Assistant customcomponent for SunSpec modbus devices", "domain": "sunspec", "etag_repository": "W/\"0013d6a7be0d5d0467c7d0e85fa8e7d50f75d16e1fe7706e78095cffff01aceb\"", "last_updated": "2023-06-29T05:12:10Z", "stargazers_count": 40, "topics": ["sunspec"], "last_fetched": 1695553603.134969, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "283518438": {"repository_manifest": {"name": "RHVoice", "render_readme": true}, "full_name": "definitio/ha-rhvoice", "authors": ["@definitio"], "category": "integration", "description": "Home Assistant integration for RHVoice - a local text-to-speech engine.", "domain": "rhvoice", "etag_repository": "W/\"edc7a2974b9cb0cd761352cbea23be64af03e7c61ae60d9410d85a5839fd77f3\"", "last_updated": "2023-06-11T19:21:14Z", "stargazers_count": 37, "topics": ["rhvoice", "tts"], "last_fetched": 1695553622.780248, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "192604318": {"repository_manifest": {"name": "iPhone Device Tracker", "homeassistant": "0.94.0", "zip_release": true, "filename": "iphonedetect.zip"}, "full_name": "mudape/iphonedetect", "authors": ["@mudape"], "category": "integration", "description": "A custom component for Home Assistant to detect iPhones connected to local LAN, even if the phone is in deep sleep.", "domain": "iphonedetect", "downloads": 15683, "etag_repository": "W/\"5a880cbf57db3a5c30d0283e6827ee434a5d1c518083b6b5ea6409f6b162b9d8\"", "last_updated": "2023-03-09T15:55:27Z", "stargazers_count": 305, "topics": ["iphonedetect"], "last_fetched": 1695554127.99795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "527179792": {"repository_manifest": {"name": "wnsm", "render_readme": true, "zip_release": true, "filename": "wnsm.zip", "country": "AT"}, "full_name": "DarwinsBuddy/WienerNetzeSmartmeter", "authors": ["@DarwinsBuddy"], "category": "integration", "description": "A home-assistant integration supporting WienerNetze Smartmeters as sensors", "domain": "wnsm", "downloads": 310, "etag_repository": "W/\"fc80f6efe47ecb4fcbb04b4c0039693560514e4cb0b1752c03c256b632a2464a\"", "last_updated": "2023-08-31T20:19:50Z", "stargazers_count": 76, "topics": ["energy", "smartmeter", "wien-energie", "wiener-netze"], "last_fetched": 1695553620.368909, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "598313217": {"repository_manifest": {"name": "MijnTuin", "render_readme": true, "country": ["BE"]}, "full_name": "myTselection/MijnTuin", "authors": ["@myTselection"], "category": "integration", "description": "MijnTuin.org Home Assistant custom component HACS to manage garden plants and see activities for your garden", "domain": "mijntuin", "etag_repository": "W/\"a509df4fbb163b56a30c2312ad457504c6a01fc8eff8fde5a308aabfc907e709\"", "last_updated": "2023-05-23T07:19:23Z", "stargazers_count": 5, "topics": ["garden", "gardening"], "last_fetched": 1695554130.198238, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "425931056": {"repository_manifest": {"name": "HA Kia/Hyundai", "render_readme": true, "country": ["US", "CA"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_kia_hyundai", "authors": ["@dahlb"], "category": "integration", "description": "A Home Assistant HACS integration that supports Kia Connect(Uvo). The integration supports the USA.", "domain": "ha_kia_hyundai", "etag_repository": "W/\"84a870f8e32a4ae89b7f645addeaacb24d957dca9a069cd360630cfc1db10a09\"", "last_updated": "2023-09-18T18:10:20Z", "stargazers_count": 15, "topics": ["car", "kia", "python3", "uvo"], "last_fetched": 1695553618.423311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292081477": {"repository_manifest": {"name": "Shairport Sync Media Player", "render_readme": true}, "full_name": "parautenbach/hass-shairport-sync", "authors": ["@parautenbach"], "category": "integration", "description": "A custom media player for Home Assistant that allows you to control and get updates from a Shairport Sync installation using MQTT.", "domain": "shairport_sync", "etag_repository": "W/\"6330793d1d3d14ed1956963655491f0b5198f1b150b55fc6c6f3a6cfcc212b59\"", "last_updated": "2023-07-22T20:04:56Z", "stargazers_count": 47, "topics": ["airplay", "mqtt", "shairport-sync"], "last_fetched": 1695554137.098217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269665267": {"repository_manifest": {"name": "Yamaha (YNCA)", "render_readme": true, "homeassistant": "2023.6.0"}, "full_name": "mvdwetering/yamaha_ynca", "authors": ["@mvdwetering"], "category": "integration", "description": "Custom integration for Home Assistant to support Yamaha AV receivers with the YNCA protocol (serial and network).", "domain": "yamaha_ynca", "downloads": 10, "etag_repository": "W/\"fc1aafe61ef0c4653c2f499c09827df45a2651bbd97a44a6d3fcff501a52a0c1\"", "last_updated": "2023-09-16T15:12:15Z", "stargazers_count": 17, "topics": ["home-assistant-component", "yamaha-avr", "yamaha-receiver"], "last_fetched": 1695554129.760618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "340596609": {"repository_manifest": {"name": "Panasonic Smart App", "homeassistant": "2021.9.0"}, "full_name": "osk2/panasonic_smart_app", "authors": ["@osk2"], "category": "integration", "description": "\ud83d\udd1b Panasonic Smart App integration for Home Assistant.", "domain": "panasonic_smart_app", "etag_repository": "W/\"3c66ddac4a31df77786226c3dc78bf89a15295f557dbfc3ce1c5694049d61da0\"", "last_updated": "2023-08-13T09:25:55Z", "stargazers_count": 61, "topics": ["panasonic"], "last_fetched": 1695554136.95105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "216165131": {"repository_manifest": {"name": "Solarized Light Theme"}, "full_name": "home-assistant-community-themes/solarized-light", "category": "theme", "description": "Solarized Light theme for Home Assistant", "etag_repository": "W/\"e0c4ddbc1fe6724bbdda1a8efcda8612ba4dbdc690237b4f93e02996e9eb70c7\"", "last_updated": "2023-03-27T02:57:14Z", "stargazers_count": 4, "last_fetched": 1695553500.195567, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263901624": {"repository_manifest": {"name": "Generic Remote Control Card", "filename": "generic-remote-control-card.js", "render_readme": true}, "full_name": "dimagoltsman/generic-remote-control-card", "category": "plugin", "description": "Generic Remote control card for HACS", "etag_repository": "W/\"f69db0a45d7e3f7ad3cff4c1be14e071f5885d4eb58a8df89b18053b1cbda186\"", "last_updated": "2022-10-11T20:06:17Z", "stargazers_count": 82, "last_fetched": 1695553524.808837, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "586474647": {"repository_manifest": {"name": "Pixometer", "render_readme": true}, "full_name": "myTselection/pixometer", "authors": ["@myTselection"], "category": "integration", "description": "Home Assistant custom component HACS for Pixolus Pixometer app meter reading integration.", "domain": "pixometer", "etag_repository": "W/\"31fd229bedf1a17557fc0729c61277152a1bb5fedaf7561d086b7f67f07b133c\"", "last_updated": "2023-08-16T23:09:00Z", "stargazers_count": 3, "topics": ["meterreading", "pixometer"], "last_fetched": 1695554130.343353, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "169641362": {"repository_manifest": {"name": "BlueIris NVR", "homeassistant": "2021.12.0"}, "full_name": "elad-bar/ha-blueiris", "authors": ["@elad-bar", "@kramttocs"], "category": "integration", "description": "Integration with Blue Iris Video Security Software", "domain": "blueiris", "etag_repository": "W/\"d88a671c537d8944c8217efdee826359021a8426f91943f9b199f9626d1e44f0\"", "last_updated": "2022-12-05T07:02:47Z", "stargazers_count": 150, "last_fetched": 1695553634.006751, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158194879": {"repository_manifest": {"name": "Entity Controller", "homeassistant": "2022.7.4"}, "full_name": "danobot/entity-controller", "authors": ["@danobot"], "category": "integration", "description": "Entity and lighting controller for managing devices via timers, scripts, and sun-based time restrictions.", "domain": "entity_controller", "etag_repository": "W/\"c9c2a157a808e52d10dea722411776d79702da660e85f34b1bdbaefd5835a5ed\"", "last_updated": "2023-08-24T08:44:01Z", "stargazers_count": 246, "topics": ["finite-state-machine", "internet-of-things", "iot", "lighting-controller", "motion-light", "motion-sensor"], "last_fetched": 1695553618.523697, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "422834940": {"repository_manifest": {"name": "Kef Connector", "render_readme": true}, "full_name": "N0ciple/hass-kef-connector", "authors": ["@n0ciple"], "category": "integration", "description": "A Home Assistant integration for the Kef LS50W2", "domain": "kef_connector", "etag_repository": "W/\"4313a372907191c753f602f1912c92c308f2e555a3c2ab421a712aee592d1b9d\"", "last_updated": "2022-03-03T14:43:11Z", "stargazers_count": 4, "topics": ["kef", "ls50", "ls50w2", "speaker"], "last_fetched": 1695554130.530188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "463624702": {"repository_manifest": {"name": "Hatch Rest Mini Sound Machine", "render_readme": true, "country": ["US"], "homeassistant": "2021.10.0b0"}, "full_name": "dahlb/ha_hatch", "authors": ["@dahlb"], "category": "integration", "description": "Home Assistant Integration for Hatch Rest Mini", "domain": "ha_hatch", "etag_repository": "W/\"23d9e908c0918574a970c68e9031ba839034b62c2c42e03e5986ad7c3595550a\"", "last_updated": "2023-09-18T11:35:52Z", "stargazers_count": 43, "topics": ["hatch-baby-rest", "python3"], "last_fetched": 1695553618.393635, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "484333657": {"repository_manifest": {"name": "Lovelace Wallpanel Screensaver", "render_readme": true, "zip_release": true, "filename": "wallpanel-screensaver.js"}, "full_name": "Shreyas-R/lovelace-wallpanel-screensaver", "category": "plugin", "description": "Wall panel mode for your Home Assistant Lovelace dashboard with more focus on screensaver. Configurable extension which features a fullscreen kiosk mode, image and weather-clock screensaver, screen wake lock and the ability to hide side and top bar.", "downloads": 6416, "etag_repository": "W/\"7af0fc9613900ec57c73bc81d27c3ec0abc61f4b935803afc36bc1cf3808cba8\"", "last_updated": "2022-09-08T12:24:08Z", "stargazers_count": 25, "topics": ["configurable", "css", "fullscreen", "hide-side-bar", "hide-top-bar", "javascript", "kiosk", "photo-screensaver", "screensaver", "wallclock", "wallpanel", "weather"], "last_fetched": 1695553559.720584, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259126760": {"repository_manifest": {"name": "Honeycomb Menu", "content_in_root": true, "filename": "honeycomb-menu.js", "render_readme": true}, "full_name": "Sian-Lee-SA/honeycomb-menu", "category": "plugin", "description": "Honeycomb menu is a Home Assistant module (not a card) that can be applied to any lovelace card. When activated by the defined action on said card, the module will display a 'rounded' list of honeycomb buttons with an optional XY pad to make interfacing with lovelace more fluent", "downloads": 1621, "etag_repository": "W/\"908d10b1994fe86ed912b862423bfc93a1a54551141f8d8524836a9947ae682a\"", "last_updated": "2023-08-08T21:03:45Z", "stargazers_count": 153, "topics": ["lovelace-module", "menu", "module"], "last_fetched": 1695553560.002129, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "633889686": {"repository_manifest": {"name": "Silent bus card", "filename": "silent-bus.js", "render_readme": true, "homeassistant": "0.95.4", "country": "IL"}, "full_name": "silentbil/silent-bus", "category": "plugin", "description": "Bus card for homeassistant - Israel", "etag_repository": "W/\"fd479f6da958b5f976dbba9e6acb699e9def1dad6f7fd2a20529b1784ce25640\"", "last_updated": "2023-09-22T14:05:57Z", "stargazers_count": 19, "topics": ["bus", "card", "frontend"], "last_fetched": 1695553560.246126, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "583449944": {"repository_manifest": {"name": "Silent remotes card", "filename": "silent-remotes-card.js", "render_readme": true, "homeassistant": "0.95.4"}, "full_name": "silentbil/silent-remotes-card", "category": "plugin", "description": "Remotes control card for home assistant", "etag_repository": "W/\"4e3ca3a67f4e2d1c1c7a3ef83d8985218e0cb8ec87d164770c8126eba9853460\"", "last_updated": "2023-04-25T10:30:32Z", "stargazers_count": 7, "topics": ["broadlink", "card", "remote", "remote-control", "smartir"], "last_fetched": 1695553560.382311, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "300754203": {"repository_manifest": {"name": "Kanji Clock Card", "render_readme": true, "filename": "kanji-clock-card.js", "country": "JP"}, "full_name": "sopelj/lovelace-kanji-clock-card", "category": "plugin", "description": "A simple clock widget using Japanese Kanji for date and time", "downloads": 400, "etag_repository": "W/\"cd8a6d76f83bd4917f113324900994aa51d827839faf36cc8fb136e007f09486\"", "last_updated": "2023-07-23T22:40:23Z", "stargazers_count": 2, "topics": ["lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553560.944757, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "431901513": {"repository_manifest": {"name": "Fluid Level Background Card", "render_readme": true, "filename": "fluid-level-background-card.js"}, "full_name": "swingerman/lovelace-fluid-level-background-card", "category": "plugin", "description": "This card wraps any other cards and renders a fluid background behind them.", "downloads": 1809, "etag_repository": "W/\"447c4e770412042e5f99a4d7ce5daef2bca25efc4d67935fa125bb852b9b6061\"", "last_updated": "2023-09-11T01:54:11Z", "stargazers_count": 18, "topics": ["lovelace-card"], "last_fetched": 1695553561.177894, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "607398282": {"repository_manifest": {"name": "UV Index Card", "render_readme": true, "filename": "uv-index-card.js"}, "full_name": "t1gr0u/uv-index-card", "category": "plugin", "description": "A Lovelace card that shows a the UV index and risk level for Home Assistant", "downloads": 4166, "etag_repository": "W/\"6dd97aa113bf1fb991753d97fe022caa667bd334262a5f47259ddcdfe1f96b86\"", "last_updated": "2023-07-19T08:39:57Z", "stargazers_count": 16, "topics": ["uv-index"], "last_fetched": 1695553561.273039, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "609593305": {"repository_manifest": {"name": "Rain Gauge Card", "render_readme": true, "filename": "rain-gauge-card.js"}, "full_name": "t1gr0u/rain-gauge-card", "category": "plugin", "description": "A Lovelace card that shows the rain gauge for Home Assistant", "downloads": 4137, "etag_repository": "W/\"f127ae27f20b6d8dc920166cabd224989eb191d127c134d102c6d6255bd5a662\"", "last_updated": "2023-08-03T10:11:46Z", "stargazers_count": 28, "topics": ["uv-index"], "last_fetched": 1695553561.069249, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284283867": {"repository_manifest": {"name": "Gallery Card", "filename": "gallery-card.js", "render_readme": true}, "full_name": "TarheelGrad1998/gallery-card", "category": "plugin", "description": "A custom card for Home Assistant that will display images and/or videos from a folder in the style of a gallery. ", "etag_repository": "W/\"124a53ef73b2eefa48bbcc82e043e60a2cf9adb311ae5d1b9ea378644462d4e1\"", "last_updated": "2023-04-25T20:26:39Z", "stargazers_count": 77, "topics": ["gallery", "gallery-card", "images", "videos"], "last_fetched": 1695553561.567383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "191580766": {"repository_manifest": {"name": "Light with profiles", "content_in_root": true, "filename": "light-with-profiles.js", "homeassistant": "0.100.0"}, "full_name": "tcarlsen/lovelace-light-with-profiles", "category": "plugin", "description": "Turn on lights based on light_profiles.csv", "etag_repository": "W/\"56d49fd73f3a56bf226bd760b8c32b3539cfbb6fb5c5cfe16ed5273ac8e913a6\"", "last_updated": "2022-06-12T20:39:16Z", "stargazers_count": 60, "topics": ["light", "light-profiles", "lovelace-card", "profiles"], "last_fetched": 1695553561.502857, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "202874270": {"repository_manifest": {}, "full_name": "TheLastProject/lovelace-media-art-background", "category": "plugin", "description": "Sets the background of your Home Assistant to match the entity picture of a media player. No longer maintained.", "etag_repository": "W/\"53e019e38eda5a74a31a8261e78532a261dee16ad1d553715e4e9236ee041746\"", "last_updated": "2023-04-08T19:23:34Z", "stargazers_count": 28, "last_fetched": 1695553561.379293, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309056232": {"repository_manifest": {"name": "GitHub Dark Theme", "render_readme": true}, "full_name": "einschmidt/github_dark_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "etag_repository": "W/\"d186404dbc0555ace565deac5a730a240e7da0730658dc1583642fc8ca7a27cb\"", "last_updated": "2023-08-23T06:12:41Z", "stargazers_count": 3, "topics": ["assistant-theme"], "last_fetched": 1695553496.3907, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637182469": {"repository_manifest": {"name": "MIWA", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/miwa", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for MIWA BE services", "domain": "miwa", "etag_repository": "W/\"98c4000bf6af401edda20f79f56272ebb21664507190a2eace9e9885d28c0c8d\"", "last_updated": "2023-09-22T11:28:05Z", "topics": ["miwa"], "last_fetched": 1695553647.677986, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "622332920": {"repository_manifest": {"name": "TTLock", "render_readme": true, "zip_release": true, "filename": "ttlock.zip"}, "full_name": "jbergler/hass-ttlock", "authors": ["@jbergler"], "category": "integration", "description": "Home Assistant integration for TTLock locks", "domain": "ttlock", "downloads": 788, "etag_repository": "W/\"443a7acbe7835a43e5178765c019b560903a306089fc1ec715d4868b8bc66663\"", "last_updated": "2023-07-15T06:41:10Z", "stargazers_count": 16, "topics": ["cielsa", "e-lok", "ttlock"], "last_fetched": 1695553671.675968, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "485813852": {"repository_manifest": {"name": "Google Light and Dark Theme", "render_readme": true}, "full_name": "digitaljamie/google-theme", "category": "theme", "description": "A fork of Google Assistant Theme to fix common issues - by digitaljamie", "etag_repository": "W/\"9f4be962a3475ed7242b12d59fc3cc361e595364faf1becc27277a0e0fa41c8e\"", "last_updated": "2023-01-04T13:52:20Z", "stargazers_count": 5, "topics": ["darkmode", "google-theme", "googletheme", "lightmode"], "last_fetched": 1695553495.15352, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237620254": {"repository_manifest": {"name": "todoist-task-list", "content_in_root": true, "render_readme": true, "filename": "todoist-task-list.js"}, "full_name": "tholgir/TodoIst-Task-List", "category": "plugin", "description": "This is a custom lovelace card for displaying a todoist calendar in Home Assistant.", "etag_repository": "W/\"3be29afd2eff41b05cf3d334f213659001eadf5c97afbb6edd082ecf0709ac73\"", "last_updated": "2021-04-25T07:36:09Z", "stargazers_count": 13, "topics": ["lovelace-custom-card", "todoist"], "last_fetched": 1695553561.941385, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "190927524": {"repository_manifest": {"name": "card-mod", "render_readme": true, "homeassistant": "2023.4.0b5"}, "full_name": "thomasloven/lovelace-card-mod", "category": "plugin", "description": "\ud83d\udd39 Add CSS styles to (almost) any lovelace card", "etag_repository": "W/\"9f28e549a9364b1da69eb1872bdad0fe3706e8b5784f4ca3c87eecaaab7748d5\"", "last_updated": "2023-06-08T08:51:44Z", "stargazers_count": 771, "last_fetched": 1695553563.167046, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167744584": {"repository_manifest": {"name": "auto-entities", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-auto-entities", "category": "plugin", "description": "\ud83d\udd39Automatically populate the entities-list of lovelace cards", "etag_repository": "W/\"b7955713c4dfcca681bcbd4d58d4139a9e71bb0bfdd321c06a1e3415ed21d7c0\"", "last_updated": "2023-02-13T21:35:57Z", "stargazers_count": 934, "last_fetched": 1695553562.350389, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281453608": {"repository_manifest": {"name": "badge-card", "render_readme": true}, "full_name": "thomasloven/lovelace-badge-card", "category": "plugin", "description": "\ud83d\udd39 Place badges anywhere in the lovelace layout", "etag_repository": "W/\"eb18ab38f90b508512e3d393d414b17455d1ecee92748156a900b38b85f2c799\"", "last_updated": "2023-03-05T07:44:24Z", "stargazers_count": 64, "last_fetched": 1695553562.253401, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "150781994": {"repository_manifest": {"name": "fold-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-fold-entity-row", "category": "plugin", "description": "\ud83d\udd39 A foldable row for entities card, containing other rows", "etag_repository": "W/\"b3845266719a8367412541a94f05392aecce354196e27338179d70be5c5a611c\"", "last_updated": "2023-03-04T05:08:58Z", "stargazers_count": 462, "last_fetched": 1695553563.333638, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "161403328": {"repository_manifest": {"name": "card-tools", "homeassistant": "0.100.0"}, "full_name": "thomasloven/lovelace-card-tools", "category": "plugin", "description": "\ud83d\udd39A collection of tools for other lovelace plugins to use", "etag_repository": "W/\"14581a3017be04216c53bcd12f7239a16a92dad8ef5a879381f244e3e40f487e\"", "last_updated": "2023-04-10T09:48:29Z", "stargazers_count": 219, "last_fetched": 1695553563.026897, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "249942054": {"repository_manifest": {"name": "hui-element", "render_readme": true}, "full_name": "thomasloven/lovelace-hui-element", "category": "plugin", "description": "\ud83d\udd39 Use built-in elements in the wrong place", "etag_repository": "W/\"306858ff4ddfd6542450f47d2991601cc0267e47344dafc2a81396bcf65ed435\"", "last_updated": "2023-03-04T07:59:05Z", "stargazers_count": 85, "last_fetched": 1695553563.158832, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180528950": {"repository_manifest": {"name": "more-info-card", "render_readme": true, "homeassistant": "0.113"}, "full_name": "thomasloven/lovelace-more-info-card", "category": "plugin", "description": "\ud83d\udd39 Display the more-info dialog of any entity as a lovelace card", "etag_repository": "W/\"81be24661dd978d2b2f1d61b27c6769c48c7a362a9f2a109457a6312a9ab282c\"", "last_updated": "2022-05-28T13:40:55Z", "stargazers_count": 89, "last_fetched": 1695553563.446214, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156434866": {"repository_manifest": {"name": "layout-card", "render_readme": true, "homeassistant": "2022.3.0"}, "full_name": "thomasloven/lovelace-layout-card", "category": "plugin", "description": "\ud83d\udd39 Get more control over the placement of lovelace cards.", "etag_repository": "W/\"2f229d3ac0d2eb4aef1987c9a7486611683a67ed171b3a2c01b8115e22b7eddf\"", "last_updated": "2023-08-19T15:53:52Z", "stargazers_count": 815, "last_fetched": 1695553563.520472, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "144899700": {"repository_manifest": {"name": "slider-entity-row", "render_readme": true}, "full_name": "thomasloven/lovelace-slider-entity-row", "category": "plugin", "description": "\ud83d\udd39 Add sliders to entity cards", "etag_repository": "W/\"12c5cf685cd57bc20bd6a3b5edc51011b431057624aa9c93dc3efad00c03b820\"", "last_updated": "2022-12-26T01:55:34Z", "stargazers_count": 737, "last_fetched": 1695553563.674271, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "158756598": {"repository_manifest": {"name": "state-switch", "render_readme": true}, "full_name": "thomasloven/lovelace-state-switch", "category": "plugin", "description": "\ud83d\udd39Dynamically replace lovelace cards depending on occasion", "etag_repository": "W/\"eee5e6347d6cd057256bdfa408e6c4c19cdb0ed3436456d12fdfe86f1fabfbed\"", "last_updated": "2023-01-08T19:43:39Z", "stargazers_count": 326, "last_fetched": 1695553564.015714, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231674882": {"repository_manifest": {"name": "template-entity-row", "render_readme": true, "homeassistant": "0.107.0b1"}, "full_name": "thomasloven/lovelace-template-entity-row", "category": "plugin", "description": "\ud83d\udd39 Display whatever you want in an entities card row.", "etag_repository": "W/\"d6280aa7a458687a1b49bb79346da53541c48938c80c92b4fd31a50eef8e716c\"", "last_updated": "2023-05-07T13:58:22Z", "stargazers_count": 165, "last_fetched": 1695553564.208549, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "308752409": {"repository_manifest": {"name": "Charger Card", "render_readme": true, "filename": "charger-card.js"}, "full_name": "tmjo/charger-card", "category": "plugin", "description": "A lovelace card for electrical vehicle (EV) home chargers and charging robots.", "downloads": 1777, "etag_repository": "W/\"d4127670128f98babe7cc1ce2af1f2a4dcf3fc40b2fb4fc706682b5f7e1b8e5a\"", "last_updated": "2023-07-24T21:32:01Z", "stargazers_count": 70, "topics": ["charger", "charging-robot", "easee", "elbil", "electric-vehicle", "evcharger"], "last_fetched": 1695553564.573498, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "320381430": {"repository_manifest": {"name": "Analog Clock", "render_readme": true, "filename": "analogclock.js"}, "full_name": "tomasrudh/analogclock", "category": "plugin", "description": "An analog clock for Home Assistant Lovelace", "etag_repository": "W/\"c6e0a5e77bfc8c765f0c5526dc12734e0ae0b76606a93144fbc1cd13ecc452cb\"", "last_updated": "2022-06-03T19:55:56Z", "stargazers_count": 15, "topics": ["analog", "analog-clock", "assistant-lovelace", "clock"], "last_fetched": 1695553564.989175, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "234581410": {"repository_manifest": {"name": "UX Goodie Theme", "render_readme": true}, "full_name": "fi-sch/ux_goodie_theme", "category": "theme", "description": "\ud83c\udfa8 Theme for Home Assistant inspired by iOS Dark Mode \ud83c\udf16", "etag_repository": "W/\"57940713ba8e7bc708b7af4e0c4f8f2ca23ee89e9fd00d0af15e816b0d747880\"", "last_updated": "2022-05-27T21:05:56Z", "stargazers_count": 11, "topics": ["dark", "ios", "lovelace-theme", "mode", "ux"], "last_fetched": 1695553496.568896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "227988032": {"repository_manifest": {"name": "sweet pink", "render_readme": true}, "full_name": "estiens/sweet_pink_hass_theme", "category": "theme", "description": "Theme for home assistant that makes use of pinks and purples and maybe some teal", "etag_repository": "W/\"8ac56c91f32681d2c53decbc81c89de869cfcb8e7c650a8c68c861742c2ebe56\"", "last_updated": "2022-05-14T18:31:48Z", "stargazers_count": 4, "topics": ["cyberpunk", "lovelace-theme"], "last_fetched": 1695553496.398076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "464998514": {"repository_manifest": {"name": "Cyberpunk 2077 Theme"}, "full_name": "flejz/hass-cyberpunk-2077-theme", "category": "theme", "description": "Cyberpunk 2077 GUI inspied Home Assistant theme", "etag_repository": "W/\"388d95402e2615165aee07bd5016017e9f6d899b87f45ba8796b76c05b39237b\"", "last_updated": "2023-03-27T22:58:46Z", "stargazers_count": 21, "topics": ["cyberpunk", "cyberpunk-2077"], "last_fetched": 1695553496.593383, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309053262": {"repository_manifest": {"name": "GitHub Light Theme", "render_readme": true}, "full_name": "einschmidt/github_light_theme", "category": "theme", "description": "A Home Assistant theme inspired on Github.", "etag_repository": "W/\"79d3b7e53dc26aabc215172653c0053a4775ce5267f31b57a82b1bae4394c7ed\"", "last_updated": "2020-12-16T13:49:52Z", "stargazers_count": 4, "topics": ["assistant-theme"], "last_fetched": 1695553496.407189, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235436539": {"repository_manifest": {"name": "Noctis Grey", "render_readme": true}, "full_name": "chaptergy/noctis-grey", "category": "theme", "description": "Dark Grey Theme for Home Assistant", "etag_repository": "W/\"55f45ffa2026091e845a2a04e340f71e76062e4211645dded9ee35e3ea1257a6\"", "last_updated": "2023-05-13T16:55:57Z", "stargazers_count": 7, "last_fetched": 1695553494.718562, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "570909059": {"repository_manifest": {"name": "Catppuccin Theme", "render_readme": true}, "full_name": "catppuccin/home-assistant", "category": "theme", "description": "\ud83c\udfe0 Soothing pastel theme for Home Assistant", "etag_repository": "W/\"b031ae9556dd314ed9c5f9d08e9717ac3a4e75afc367c9427c6383b4f737284c\"", "last_updated": "2023-04-02T19:22:57Z", "stargazers_count": 41, "topics": ["catppuccin", "catppuccin-theme"], "last_fetched": 1695553494.648145, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "174809046": {"repository_manifest": {"name": "Avanza Stock", "render_readme": true}, "full_name": "custom-components/sensor.avanza_stock", "authors": ["@claha"], "category": "integration", "description": "Custom component to get stock data from Avanza for Home Assistant", "domain": "avanza_stock", "etag_repository": "W/\"2529efc32ae662bf309b357ebb37dc439640b6da39122472e5e464d863babe57\"", "last_updated": "2023-09-16T18:30:17Z", "stargazers_count": 38, "topics": ["funds", "stock"], "last_fetched": 1695553609.746505, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261924981": {"repository_manifest": {"name": "Swart Ninja Dark Theme"}, "full_name": "DickSwart/swart_ninja_dark_theme", "category": "theme", "description": "\ud83c\udfa8 Green, dark mode theme for Home Assistant, Enjoy.\ud83e\udd18\ud83c\udffb", "etag_repository": "W/\"43c35f59ae125effddbe8f127fd7c163166ecf44ea95562ae4e0b838485db38d\"", "last_updated": "2022-03-04T09:56:36Z", "stargazers_count": 4, "topics": ["dark-theme"], "last_fetched": 1695553494.757823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "470262899": {"repository_manifest": {"name": "Nordic Theme", "render_readme": true}, "full_name": "coltondick/nordic-theme-main", "category": "theme", "description": "Nordic theme for home assistant.", "etag_repository": "W/\"b5ab8b2bd2f0a1193a283f074b08c44340577122207d34aaf24acfbac1970987\"", "last_updated": "2022-04-30T13:38:21Z", "stargazers_count": 7, "last_fetched": 1695553494.678512, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151550084": {"repository_manifest": {}, "full_name": "custom-components/sensor.owlintuition", "authors": ["@glpatcern"], "category": "integration", "description": "A set of sensors to integrate the OWL Intuition devices network", "domain": "owlintuition", "etag_repository": "W/\"3a00b8cd85a8eda760d49cd3b8297af40bdb8b91f73c1f31e4dd493e772020e9\"", "last_updated": "2023-06-10T07:59:27Z", "stargazers_count": 11, "last_fetched": 1695553609.873394, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "563077911": {"repository_manifest": {"name": "China Southern Power Grid Statistics", "render_readme": true, "country": "CN", "homeassistant": "2022.11"}, "full_name": "CubicPill/china_southern_power_grid_stat", "authors": ["@cubicpill"], "category": "integration", "description": "Home Assistant intergration to get statictics from China Southern Power Grid (CSG) \u5357\u65b9\u7535\u7f51HA\u96c6\u6210", "domain": "china_southern_power_grid_stat", "etag_repository": "W/\"3eeae544b9d876fdf9cbbe6458398cef4e5bc1368503326daa5e2f679ed33826\"", "last_updated": "2023-05-27T14:15:41Z", "stargazers_count": 90, "last_fetched": 1695553605.437223, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "630565367": {"repository_manifest": {"name": "Technische Alternative CoE", "render_readme": true}, "full_name": "DeerMaximum/Technische-Alternative-CoE", "authors": ["@DeerMaximum"], "category": "integration", "description": "Custom Home Assistant integration to read data from a C.M.I. via CoE", "domain": "ta_coe", "etag_repository": "W/\"fa119e22e92fc19c39d7ea1a3e51373e195f04503db99af5bdfa2bdc85b4bf7b\"", "last_updated": "2023-09-17T20:59:12Z", "stargazers_count": 1, "last_fetched": 1695553622.744274, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "504337320": {"repository_manifest": {"name": "Dremel 3D Printer", "hacs": "1.25.5", "homeassistant": "2022.6.6"}, "full_name": "godely/ha-dremel-3d-printer", "authors": ["@godely"], "category": "integration", "description": "Dremel 3D Printer integration for Home Assistant.", "domain": "dremel_3d_printer", "etag_repository": "W/\"d368014bb1a3b873e65116fedb1cc6b6aac7531663273f805340710d03ea5ff6\"", "last_updated": "2022-06-28T18:56:38Z", "stargazers_count": 6, "topics": ["3d", "3d-printer", "3d-printing", "bosch", "dremel", "dremel-idea-builder", "dremel-ideabuilder"], "last_fetched": 1695553650.055713, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "145777833": {"repository_manifest": {}, "full_name": "custom-components/sensor.personalcapital", "authors": ["@iantrich"], "category": "integration", "description": "\ud83d\udcb5 Personal Capital Integration for Bank Account Monitoring", "domain": "personalcapital", "etag_repository": "W/\"dd302b104a64aafff9cada9656d0e484798e547573e90e57c7ea8d4097fa5e3e\"", "last_updated": "2023-04-14T05:56:48Z", "stargazers_count": 12, "last_fetched": 1695553610.635358, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235984421": {"repository_manifest": {"name": "Blackened Theme"}, "full_name": "home-assistant-community-themes/blackened", "category": "theme", "description": "Blackened theme for Home Assistant", "etag_repository": "W/\"11013ee1d4fbd92a8792b72beee9587ece961afc16abdc152dff5e632ee28f09\"", "last_updated": "2023-03-22T11:57:48Z", "stargazers_count": 8, "last_fetched": 1695553496.604603, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261311061": {"repository_manifest": {"name": "Ecowitt Weather Station", "render_readme": true}, "full_name": "garbled1/homeassistant_ecowitt", "authors": ["@garbled1"], "category": "integration", "description": "Ecowitt Weather Station integration for homeassistant", "domain": "ecowitt", "etag_repository": "W/\"9b6d7f506b33c1c9e6144b770daf2b619f4203a619ed2cab767a769bd03c28e8\"", "last_updated": "2023-05-05T15:38:45Z", "stargazers_count": 132, "topics": ["ecowitt"], "last_fetched": 1695553645.373402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "278596510": {"repository_manifest": {"name": "Leaf Spy", "hacs": "0.24.0", "homeassistant": "0.110.0"}, "full_name": "jesserockz/ha-leafspy", "authors": ["@jesserockz"], "category": "integration", "description": "A Home Assistant integration to receive live data sent from the LeafSpy app", "domain": "leafspy", "etag_repository": "W/\"150b9efb5210db1ceef2f92d4df36eca26aa4ba3df5052cfef2625119c1f7c85\"", "last_updated": "2023-01-18T21:04:26Z", "stargazers_count": 15, "topics": ["electric-vehicles", "ev", "leaf", "leafspy", "nissan"], "last_fetched": 1695553675.343874, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273333188": {"repository_manifest": {"name": "Daily Sensor", "render_readme": true}, "full_name": "jeroenterheerdt/HADailySensor", "authors": ["@jeroenterheerdt"], "category": "integration", "description": "Sensor for Home Assistant that gets reset at midnight", "domain": "daily", "etag_repository": "W/\"fd415c2d5e9951e7d38ee30368940ca265c5162ebb2fabfbb14c874aa45e8194\"", "last_updated": "2023-06-19T20:44:31Z", "stargazers_count": 37, "topics": ["aggregation", "average", "max", "maximum", "mean", "median", "min", "minimum", "standard-deviation", "statistics", "stdev", "sum", "var", "variance"], "last_fetched": 1695553675.378169, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "542062483": {"repository_manifest": {"name": "HASS.Agent", "homeassistant": "2022.9", "render_readme": true}, "full_name": "LAB02-Research/HASS.Agent-Integration", "authors": ["@fillefilip8", "@LAB02-Admin"], "category": "integration", "description": "HASS.Agent's Home Assistant integration. Adds notifications and mediaplayer capabilities to HASS.Agent - a Windows based client (companion app) for Home Assistant.", "domain": "hass_agent", "etag_repository": "W/\"7ef012a285a30f7815f6d72dc3517a45e2abf686dbb7369c25494a15d1fa50de\"", "last_updated": "2023-08-08T15:26:21Z", "stargazers_count": 67, "topics": ["notifications"], "last_fetched": 1695554105.65303, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "199306511": {"repository_manifest": {"name": "Kostal Piko", "render_readme": true}, "full_name": "gieljnssns/kostalpiko-sensor-homeassistant", "authors": ["@gieljnssns"], "category": "integration", "description": "A custom component to get the readings of a Kostal Piko inverter", "domain": "kostal", "etag_repository": "W/\"3e34a7dccd961df6c8976e424ca3095b9b35d2aa8e04cbec168afefae9e8c027\"", "last_updated": "2021-06-16T14:25:39Z", "stargazers_count": 11, "last_fetched": 1695553649.99217, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "336798340": {"repository_manifest": {"name": "TrueNAS", "homeassistant": "2023.9.0", "zip_release": true, "filename": "truenas.zip"}, "full_name": "tomaae/homeassistant-truenas", "authors": ["@tomaae"], "category": "integration", "description": "TrueNAS integration for Home Assistant ", "domain": "truenas", "downloads": 1455, "etag_repository": "W/\"8f4b6c2ab37de51a924e66f5d2ece9d9deb04b0109ee8a60fffb00ff1817a29d\"", "last_updated": "2023-09-19T19:10:22Z", "stargazers_count": 107, "topics": ["homeassistant-custom-component", "truenas"], "last_fetched": 1695554183.700529, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194037195": {"repository_manifest": {}, "full_name": "Ceerbeerus/beerbolaget-card", "category": "plugin", "description": "A custom card for displaying information provided by Beerbolaget (https://github.com/Ceerbeerus/beerbolaget).", "etag_repository": "W/\"5c8d18d10c02dd674503ba9332337e6f9423d884cde24d6b645cd9976c448426\"", "last_updated": "2020-08-07T06:24:51Z", "stargazers_count": 3, "last_fetched": 1695553516.254053, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "163363577": {"repository_manifest": {"name": "Bar Card", "render_readme": true, "filename": "bar-card.js"}, "full_name": "custom-cards/bar-card", "category": "plugin", "description": "Customizable Animated Bar card for Home Assistant Lovelace", "downloads": 64679, "etag_repository": "W/\"6413cebeac14339a4493ed5e3e2b0da31bb4600c2122dca4f9d0b7574e22bf3f\"", "last_updated": "2023-07-04T13:12:35Z", "stargazers_count": 304, "last_fetched": 1695553516.702864, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "339124227": {"repository_manifest": {"name": "Zonneplan ONE", "homeassistant": "2021.12.0", "render_readme": true, "country": "NL"}, "full_name": "fsaris/home-assistant-zonneplan-one", "authors": ["@fsaris"], "category": "integration", "description": "Unofficial Zonneplan ONE + connect integration for Home Assistant", "domain": "zonneplan_one", "etag_repository": "W/\"774ab61af7edb015c231778a74739f33d9b641fd1e4d8f5d2c669fc3929b9d5d\"", "last_updated": "2023-06-09T21:01:00Z", "stargazers_count": 71, "topics": ["home-assistant-component", "zonneplan", "zonneplan-connect", "zonneplan-one"], "last_fetched": 1695553645.599879, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "380367845": {"repository_manifest": {"name": "Eufy Security", "render_readme": true}, "full_name": "fuatakgun/eufy_security", "authors": ["@fuatakgun"], "category": "integration", "description": "Home Assistant integration to manage Eufy Security devices as cameras, home base stations, doorbells, motion and contact sensors.", "domain": "eufy_security", "etag_repository": "W/\"ae541aa8dce527af8b4bd8d3a1cbb314eb5dbe88d1ce119d3725cfa519a471ad\"", "last_updated": "2023-09-13T11:06:59Z", "stargazers_count": 615, "topics": ["camera", "eufy", "eufycam", "eufysecurity", "rtsp", "security"], "last_fetched": 1695553645.593927, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "139634406": {"repository_manifest": {"name": "Dark Thermostat", "render_readme": true, "filename": "thermostat-dark-card.js"}, "full_name": "ciotlosm/lovelace-thermostat-dark-card", "category": "plugin", "description": "\ud83c\udf21 Thermostat card with a round and black feel to it", "downloads": 26265, "etag_repository": "W/\"e5d1bf170c105f4557c4ac3d4ddb9fb8ad3f39d70ec6abcd8cbdb78e0fe7176c\"", "last_updated": "2023-07-09T18:52:12Z", "stargazers_count": 704, "topics": ["thermostat"], "last_fetched": 1695553516.460376, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "235449701": {"repository_manifest": {"name": "Lightalarm Card", "filename": "lightalarm-card.js"}, "full_name": "chaptergy/lightalarm-card", "category": "plugin", "description": "\u23f0 Lovelace Card to Control Light Alarm Properties", "etag_repository": "W/\"f76a9454e44b8e574673fb479419feebd18bc1b2c8e66372e62f643b7921e823\"", "last_updated": "2023-07-18T20:41:09Z", "stargazers_count": 34, "last_fetched": 1695553516.368566, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309018094": {"repository_manifest": {"name": "fordpass"}, "full_name": "itchannel/fordpass-ha", "authors": ["@itchannel"], "category": "integration", "description": "Fordpass integration for Home Assistant", "domain": "fordpass", "etag_repository": "W/\"fcb417063d83897f0abad3cbeb99f5fa96ae53b06c9b9b9f0649ab9d391dd2df\"", "last_updated": "2023-09-23T22:41:24Z", "stargazers_count": 170, "topics": ["assistant", "car", "fordpass", "home"], "last_fetched": 1695553666.921153, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "363468409": {"repository_manifest": {"name": "RedPocket Mobile", "render_readme": true}, "full_name": "mbillow/ha-redpocket", "authors": ["@mbillow"], "category": "integration", "description": "RedPocket Integration for Data Usage Monitoring", "domain": "redpocket", "etag_repository": "W/\"656bcee188f69f6684c9e3b9ef67116094ca569aeed4c71ebf03b872d0e15962\"", "last_updated": "2021-06-06T19:51:29Z", "stargazers_count": 3, "topics": ["home", "mvno", "redpocket"], "last_fetched": 1695554120.924623, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265716369": {"repository_manifest": {"name": "Minerstat", "render_readme": "true"}, "full_name": "gilsonmandalogo/hacs-minerstat", "authors": ["@gilsonmandalogo"], "category": "integration", "description": "Minerstat mining hashrate.", "domain": "hacs-minerstat", "etag_repository": "W/\"151d929cc7dcdfdf5e8fd80d4e83e28c8db30da6cda14dbe3b9fff8a499d20a7\"", "last_updated": "2022-01-11T22:19:20Z", "stargazers_count": 4, "topics": ["minerstat", "mining"], "last_fetched": 1695553649.850795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323346718": {"repository_manifest": {"name": "AwoX MESH control", "homeassistant": "2022.09.0", "render_readme": true}, "full_name": "fsaris/home-assistant-awox", "authors": ["@fsaris"], "category": "integration", "description": "AwoX mesh light integration for Home Assistant", "domain": "awox", "etag_repository": "W/\"779a3e5bab3ddf554fdcf18e71fb35c931d1fb73cceba11eb124781ea1610a97\"", "last_updated": "2023-06-02T06:50:08Z", "stargazers_count": 75, "topics": ["awox", "bluetooth", "eglo"], "last_fetched": 1695553645.486756, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194824532": {"repository_manifest": {"name": "M\u00e9t\u00e9o France Weather Card", "country": "FR", "render_readme": true}, "full_name": "Imbuzi/meteo-france-weather-card", "category": "plugin", "description": "Weather Card with animated icons for Home Assistant Lovelace adapted to display all informations from M\u00e9t\u00e9o France integration", "etag_repository": "W/\"0482c1d6739561dd6af020eab0c6b4d8f9a687c91e5a10ef26ce4cbc26bb5e38\"", "last_updated": "2023-02-25T18:25:41Z", "stargazers_count": 26, "topics": ["animated-icons", "lovelace-card", "meteo-france", "weather"], "last_fetched": 1695553536.764434, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261873234": {"repository_manifest": {"name": "Sector Alarm", "render_readme": true, "homeassistant": "2022.5.0"}, "full_name": "gjohansson-ST/sector", "authors": ["@gjohansson-ST"], "category": "integration", "description": "Integration to Sector Alarm for Home Assistant", "domain": "sector", "downloads": 12, "etag_repository": "W/\"21b3c5534fdf681fb371f836345776561b5b94713f5f5290942ccf364ddaabde\"", "last_updated": "2023-05-17T10:21:47Z", "stargazers_count": 23, "topics": ["alarm", "alarm-control", "alarm-control-panel", "lock", "sector", "sector-alarm", "temperature-sensor"], "last_fetched": 1695553650.138431, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "221855213": {"repository_manifest": {"name": "Auto Backup", "zip_release": true, "hide_default_branch": true, "filename": "auto_backup.zip", "homeassistant": "2022.4.0"}, "full_name": "jcwillox/hass-auto-backup", "authors": ["@jcwillox"], "category": "integration", "description": "\ud83d\uddc3\ufe0f Improved Backup Service for Home Assistant that can Automatically Remove Backups and Supports Generational Backup Schemes.", "domain": "auto_backup", "downloads": 9936, "etag_repository": "W/\"0332f46a556e6b7cc9f2be80daf257dceaad2889274ffee7a9101429cbf540b5\"", "last_updated": "2023-08-05T10:10:37Z", "stargazers_count": 235, "topics": ["auto-purge", "backups", "generational-backups", "snapshots"], "last_fetched": 1695553671.747905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328361159": {"repository_manifest": {"name": "ultimaker", "render_readme": true}, "full_name": "jellespijker/home-assistant-ultimaker", "authors": ["@jellespijker"], "category": "integration", "description": "Home-Assistant component for Ultimaker printers (UM3, S3, S5)", "domain": "ultimaker", "etag_repository": "W/\"21e7ec5cff6eb80be0e254ff597623a794d338adbfa471870fb12fbcd2e5ff90\"", "last_updated": "2022-06-07T18:51:42Z", "stargazers_count": 11, "topics": ["3d-printing", "home-assistant-component", "s3", "s5", "ultimaker", "um3"], "last_fetched": 1695553671.446256, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "281214271": {"repository_manifest": {"name": "RPi Monitor Card", "filename": "rpi-monitor-card.js"}, "full_name": "ironsheep/lovelace-rpi-monitor-card", "category": "plugin", "description": "A Raspberry Pi status display Card for Home Assistant Lovelace", "downloads": 7410, "etag_repository": "W/\"dc421021d851bd0e5d3d9f2525187a5ad463b4251d87eedc23b02dc2ed4b3c4d\"", "last_updated": "2023-07-24T14:24:45Z", "stargazers_count": 140, "topics": ["lovelace-card", "lovelace-custom-card", "raspberry-pi"], "last_fetched": 1695553537.158878, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "550121200": {"repository_manifest": {"name": "Weback vacuum", "render_readme": true}, "full_name": "Jezza34000/homeassistant_weback_component", "authors": ["@Jezza34000"], "category": "integration", "description": "Control vacuum using Weback app into HomeAssistant. Many brands using this application can be controlled as : Neatsvor, Tesvor, Abir, Orfeld, Valubot...", "domain": "weback_vacuum", "etag_repository": "W/\"98f01f870f229f1ae8e7cc85e24f12f02faeb33170fdd6716ad0d6342f76cfb1\"", "last_updated": "2023-08-10T11:05:07Z", "stargazers_count": 23, "topics": ["abir", "component", "neatsvor", "tesvor", "vacuum-cleaner", "vacuum-robot", "weback"], "last_fetched": 1695553675.34419, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273405252": {"repository_manifest": {"name": "Lightning Detector Card", "filename": "lightning-detector-card.js"}, "full_name": "ironsheep/lovelace-lightning-detector-card", "category": "plugin", "description": "A Lightning Detection Display Card for Home Assistant Lovelace", "downloads": 2871, "etag_repository": "W/\"aaac7bddd7f5d9cf29585ec7fbefbd37f3845fecfabad93496f131eebe53bc1c\"", "last_updated": "2023-01-04T15:47:05Z", "stargazers_count": 20, "topics": ["as3935", "lovelace-card", "lovelace-custom-card"], "last_fetched": 1695553537.033087, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237812136": {"repository_manifest": {"name": "Yandex Icons", "filename": "yandex-icons.js", "render_readme": true, "country": ["RU"], "homeassistant": "0.110.0"}, "full_name": "iswitch/ha-yandex-icons", "category": "plugin", "description": "\u0418\u043a\u043e\u043d\u043a\u0438 \u042f\u043d\u0434\u0435\u043a\u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043b\u044f Home Assistant", "etag_repository": "W/\"7564b2ca7a1790c28389d6537919e3967c96a6c408a9ee9604f4e46269a33a44\"", "last_updated": "2023-09-16T23:28:48Z", "stargazers_count": 54, "topics": ["icon-pack", "icons", "yandex"], "last_fetched": 1695553537.943318, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195671060": {"repository_manifest": {"name": "Lovelace Grocy Chores Card", "render_readme": true}, "full_name": "isabellaalstrom/lovelace-grocy-chores-card", "category": "plugin", "description": "A card to track chores and tasks in Grocy.", "etag_repository": "W/\"1aadf2c0ba030f022cba2bfac593f2ac6307aef7ca272d075265ae9cbf054c7f\"", "last_updated": "2023-05-02T19:00:54Z", "stargazers_count": 110, "last_fetched": 1695553537.92502, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164887047": {"repository_manifest": {}, "full_name": "isabellaalstrom/krisinfo-card", "category": "plugin", "description": "A Lovelace custom card for custom component Krisinformation is Home Assistant", "etag_repository": "W/\"fa0259af0ff3d9606052cf9e2ac2af67aec674440cdb08bab8ed5d69e08bccae\"", "last_updated": "2020-09-18T17:45:35Z", "stargazers_count": 7, "last_fetched": 1695553537.183085, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "501368149": {"repository_manifest": {"name": "Fuelprices DK", "country": ["DK"], "render_readme": true}, "full_name": "J-Lindvig/Fuelprices_DK", "authors": ["@J-Lindvig"], "category": "integration", "description": "Scraping of 5 types of fuel :fuelpump: from 8 different fuelcompanies in Denmark :denmark:.", "domain": "fuelprices_dk", "etag_repository": "W/\"01364bb0b6446debed34efd03becfca1c9adcd624a944b93717d5ef53a18a100\"", "last_updated": "2023-08-05T06:55:35Z", "stargazers_count": 15, "topics": ["denmark", "economy", "fuel-prices", "scraping"], "last_fetched": 1695553666.818453, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "574163721": {"repository_manifest": {"name": "Graphite Theme", "render_readme": true}, "full_name": "TilmanGriesel/graphite", "category": "theme", "description": "Calm and clean dark theme for Home Assistant", "etag_repository": "W/\"4f41105c07d7f22a13aef227fe606a5de0c024a9ec835f38b87a8319b691abd4\"", "last_updated": "2023-01-27T19:36:59Z", "stargazers_count": 21, "topics": ["calm", "clean", "dark", "dark-theme", "flat", "minimalist", "modern"], "last_fetched": 1695553506.179775, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "407627914": {"repository_manifest": {"name": "Google Dark Theme", "render_readme": true}, "full_name": "pacjo/google_dark_animated", "category": "theme", "description": "A fork of popular Home Assistant Google dark theme with animated icons", "etag_repository": "W/\"53b093de8df1fe0a48f656fb1e55247d490b79b48df305d610dab200bcf90354\"", "last_updated": "2021-11-22T17:05:56Z", "stargazers_count": 4, "topics": ["ha"], "last_fetched": 1695553504.178677, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146660369": {"repository_manifest": {"name": "Bravia TV PSK", "zip_release": true, "filename": "combined.zip", "hide_default_branch": true}, "full_name": "custom-components/media_player.braviatv_psk", "authors": ["@gerard33"], "category": "integration", "description": "Sony Bravia TV (Pre-Shared Key) component for Home Assistant", "domain": "braviatv_psk", "downloads": 4988, "etag_repository": "W/\"9c7e30f885a95028d1c1a23bf88f0203f74b29241dc5d2d92690d4097208d875\"", "last_updated": "2023-02-23T19:07:55Z", "stargazers_count": 103, "topics": ["bravia", "psk", "sony"], "last_fetched": 1695553607.695823, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "201963665": {"repository_manifest": {"name": "Healthchecks.io", "zip_release": true, "hide_default_branch": true, "filename": "healthchecksio.zip"}, "full_name": "custom-components/healthchecksio", "authors": ["@ludeeus"], "category": "integration", "description": "Update and display the status of your healthchecks.io checks.", "domain": "healthchecksio", "downloads": 1438, "etag_repository": "W/\"b9cdc136e882c2ac067a298e35d5a319c53fd5fedced8e421a51ac3f572ce612\"", "last_updated": "2023-08-16T01:49:59Z", "stargazers_count": 42, "topics": ["api-client", "healthchecksio", "monitor"], "last_fetched": 1695553607.6967, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "236664033": {"repository_manifest": {"name": "Swipe Glance Card", "render_readme": true, "filename": "swipe-glance-card.js"}, "full_name": "dooz127/swipe-glance-card", "category": "plugin", "description": ":point_up_2: Swipe Glance Card", "downloads": 2851, "etag_repository": "W/\"5dbf193ecd7084389d21470bec75f74688cb88e4e928b95851cb6c149ab7b5ed\"", "last_updated": "2023-01-04T14:06:20Z", "stargazers_count": 12, "topics": ["automation"], "last_fetched": 1695553526.594648, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146379582": {"repository_manifest": {"name": "Trakt", "homeassistant": "0.99.0", "render_readme": true}, "full_name": "custom-components/sensor.trakt", "authors": ["@iantrich", "@engrbm"], "category": "integration", "description": "\ud83d\udcfa Trakt Integration for Upcoming Media Card", "domain": "trakt", "etag_repository": "W/\"7c8a493df97519874012ced98aa964739e51d9bf11fcc5becdab2d38547dfc1d\"", "last_updated": "2022-06-21T14:17:46Z", "stargazers_count": 55, "last_fetched": 1695553611.425243, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "490231724": {"repository_manifest": {"name": "Elro Connects", "hacs": "1.0.0", "homeassistant": "2023.7.2"}, "full_name": "jbouwh/ha-elro-connects", "authors": ["@jbouwh"], "category": "integration", "description": "Elro Connects K1 for Home Assistant via HACS", "domain": "elro_connects", "etag_repository": "W/\"9893634b036b43d54854358c8988bfc6686c37e22dc9dc85778ac405eb0d7be7\"", "last_updated": "2023-07-22T15:35:24Z", "stargazers_count": 8, "topics": ["elro", "fire-alarm", "fire-alarm-monitoring-system", "hacs-custom", "siterwell"], "last_fetched": 1695553671.653123, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231989179": {"repository_manifest": {"name": "HASS Bardolph"}, "full_name": "JAAlperin/hass-bardolph", "authors": ["al-fontes-jr", "JAAlperin"], "category": "integration", "description": "HASS custom component to load and run Bardolph (simple scripting utility for LIFX light bulbs by Al Fontes, Jr.)", "domain": "bardolph", "etag_repository": "W/\"8a7df207645742045e2c1d6012872e7d37247b1b273295b7833ea6a901a2265e\"", "last_updated": "2021-05-08T22:23:44Z", "stargazers_count": 3, "topics": ["bardolph", "color-bulb", "lifx", "lifx-lan-protocol", "scripts", "services"], "last_fetched": 1695553666.614965, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "228685436": {"repository_manifest": {"name": "Toon Boiler Status"}, "full_name": "cyberjunky/home-assistant-toon_boilerstatus", "authors": ["@cyberjunky"], "category": "integration", "description": "This component reads and displays the boiler status values from a rooted Toon thermostat.", "domain": "toon_boilerstatus", "etag_repository": "W/\"88a48d6ff8328480d0698b0953a3ed6d65be301a2b40732bfbc68b94355c0106\"", "last_updated": "2023-01-04T12:20:20Z", "stargazers_count": 9, "topics": ["cv", "opentherm", "toon"], "last_fetched": 1695553613.65288, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188323494": {"repository_manifest": {"name": "Ha Floorplan", "filename": "floorplan.js"}, "full_name": "ExperienceLovelace/ha-floorplan", "category": "plugin", "description": "Bring new life to Home Assistant. By mapping entities to a SVG-object, you're able to control devices, show states, calling services - and much more. Add custom styling on top, to visualize whatever you can think of. Your imagination just become the new limit.", "etag_repository": "W/\"873170a76691c52f4ec7c3210e3e935545fe69712c4de59d37961aca1389224a\"", "last_updated": "2023-09-23T21:53:09Z", "stargazers_count": 835, "topics": ["floorplan", "lovelace-card", "lovelace-floorplan", "panel"], "last_fetched": 1695553526.892133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "350509867": {"repository_manifest": {"name": "Uptime Card", "render_readme": true, "filename": "uptime-card.js"}, "full_name": "dylandoamaral/uptime-card", "category": "plugin", "description": "Minimalistic uptime card for Home Assistant Lovelace UI", "downloads": 5327, "etag_repository": "W/\"8bedd9a1b7fd3ba6e016c918371152772d28799030a312a7fa79ef13108185bc\"", "last_updated": "2023-08-28T15:43:43Z", "stargazers_count": 216, "topics": ["card", "custom", "uptime", "uptime-card"], "last_fetched": 1695553526.643605, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "366862031": {"repository_manifest": {"name": "Custom brand icons"}, "full_name": "elax46/custom-brand-icons", "category": "plugin", "description": "Custom brand icons for Home Assistant", "etag_repository": "W/\"60acb5911db54ac14bcad67767a302910c7cc6c9e69599d313fcc69a6f6b62cf\"", "last_updated": "2023-09-23T10:15:32Z", "stargazers_count": 330, "topics": ["custom-icons", "icons", "icons-pack", "iconset", "ikea", "philips-hue", "xiaomi"], "last_fetched": 1695553526.83717, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "271984369": {"repository_manifest": {"name": "Ferroamp Sensors", "homeassistant": "2023.7.0"}, "full_name": "henricm/ha-ferroamp", "authors": ["@henricm", "@argoyle"], "category": "integration", "description": "Ferroamp MQTT Home Assistant sensors for EnergyHub, SSO, ESM and ESO", "domain": "ferroamp", "etag_repository": "W/\"7f0b1e3e881ce51c06329b6ca43b982d790a2d3e7f1fce7f46a69b103db37eb6\"", "last_updated": "2023-09-16T19:29:42Z", "stargazers_count": 33, "topics": ["ferroamp", "homeassistant-custom-component"], "last_fetched": 1695553659.102808, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "441738040": {"repository_manifest": {"name": "Soft Theme", "render_readme": true, "homeassistant": "2021.6", "country": "US"}, "full_name": "KTibow/lovelace-soft-theme", "category": "theme", "description": "\ud83c\udfa8 A new, simple soft theme for Home Assistant.", "etag_repository": "W/\"78aced2574e7868bab80fdcc14f988ef199d586574ae249009a29461241b8959\"", "last_updated": "2021-12-25T19:04:42Z", "stargazers_count": 23, "topics": ["soft-ui"], "last_fetched": 1695553502.211076, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "200399989": {"repository_manifest": {"name": "Clean up snapshots service", "render_readme": true}, "full_name": "tmonck/clean_up_snapshots", "authors": ["@tmonck"], "category": "integration", "description": "Service to clean up your home assistant snapshots, so you don't manually have to.", "domain": "clean_up_snapshots_service", "downloads": 5, "etag_repository": "W/\"e761a4519a2bce20f047525d5821fed454de1be0b64ef3c66a90267cf9f56fc8\"", "last_updated": "2023-09-04T13:40:49Z", "stargazers_count": 14, "topics": ["backups"], "last_fetched": 1695554183.698636, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "392931946": {"repository_manifest": {"name": "Aria2 card", "render_readme": true, "filename": "aria2-card.js"}, "full_name": "deblockt/aria2-card", "category": "plugin", "description": "An aria2 card for home assistant", "downloads": 319, "etag_repository": "W/\"57be9e508ca0e12226b188c27da5f679c8e9891322f628179fba15954e4f6566\"", "last_updated": "2022-09-20T13:30:10Z", "stargazers_count": 3, "topics": ["aria2", "download-manager"], "last_fetched": 1695553523.74794, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "534353896": {"repository_manifest": {"name": "HA LCARS", "render_readme": true, "filename": "lcars.yaml", "country": ["US", "GB"]}, "full_name": "th3jesta/ha-lcars", "category": "theme", "description": "LCARS theme for Home Assistant", "etag_repository": "W/\"e66ed43b256690104c441649fb2c581158ee5ea7825a3ea0638e7d53e4af1191\"", "last_updated": "2023-09-10T04:52:04Z", "stargazers_count": 157, "topics": ["ha-theme", "hacs-theme", "homeassistant-themes", "lcars", "lcars-interface", "lcars-style", "startrek"], "last_fetched": 1695553506.278406, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "381052530": {"repository_manifest": {"name": "FordPass China", "country": ["CN"], "render_readme": true}, "full_name": "georgezhao2010/fordpass_china", "authors": ["@georgezhao2010"], "category": "integration", "description": "\u798f\u7279\u6d3e\u7684Home Assistant\u96c6\u6210\u7ec4\u4ef6\uff0c\u901a\u8fc7Home Assistant\u8fdc\u7a0b\u76d1\u63a7\u6216\u8005\u63a7\u5236\u4f60\u7684\u798f\u7279/\u6797\u80af\u6c7d\u8f66", "domain": "fordpass_china", "etag_repository": "W/\"d1440285aa0c6b07a1bcf05bf8957d9310bda46fe8a72bb23275070528ed61eb\"", "last_updated": "2022-11-10T11:48:30Z", "stargazers_count": 24, "topics": ["china", "ford", "fordpass", "lincoln", "lincoln-way"], "last_fetched": 1695553647.834357, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625309779": {"repository_manifest": {"name": "Nexxtmove", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/nexxtmove", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for the Nexxtmove - Powerdale platform", "domain": "nexxtmove", "etag_repository": "W/\"e71947337c9f1bd3c1e93a7dedcb4ebd8711f129688a61fa4e85aca4683fe3fe\"", "last_updated": "2023-09-22T09:58:57Z", "stargazers_count": 3, "topics": ["hacs-custom", "nexxtmove", "powerdale"], "last_fetched": 1695553647.68962, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "264490983": {"repository_manifest": {"name": "Slack User", "render_readme": true}, "full_name": "GeorgeSG/ha-slack-user", "authors": ["@GeorgeSG"], "category": "integration", "description": "Slack User sensor for Home Assistant", "domain": "slack_user", "etag_repository": "W/\"c26fa1aa64bb3ec4f3dc72a28e918e3a189349608e826cf4c5ba1fc725d7414e\"", "last_updated": "2022-12-01T14:00:43Z", "stargazers_count": 23, "topics": ["home-assistant-component"], "last_fetched": 1695553647.73925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "296396632": {"repository_manifest": {"name": "Rejseplanen S-Tog Card", "country": "DK"}, "full_name": "DarkFox/rejseplanen-stog-card", "category": "plugin", "description": "Lovelace card for listing departures from Rejseplanen sensors, in the style of S-Tog departure boards.", "etag_repository": "W/\"65758f669550ac87e6ceea3132c189f4d779165f0d7978012b40cb367ae7282c\"", "last_updated": "2023-01-06T14:35:56Z", "stargazers_count": 5, "topics": ["denmark", "lovelace-card", "rejseplanen", "rejseplanen-sensors"], "last_fetched": 1695553522.496729, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "483187645": {"repository_manifest": {}, "full_name": "geoffreylagaisse/Hass-Microsoft-Graph", "authors": ["@jlweston", "@geoffreylagaisse"], "category": "integration", "description": "Microsoft Graph API Presence Integration for Home Assistant", "domain": "microsoft_graph", "etag_repository": "W/\"8644ad889b2541bd1edfd2524f820b27dc6e6af44cf98381d171666bae80f7b8\"", "last_updated": "2023-04-28T15:38:44Z", "stargazers_count": 23, "topics": ["custom", "graphapi"], "last_fetched": 1695553647.736066, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245461": {"repository_manifest": {}, "full_name": "custom-cards/entity-attributes-card", "category": "plugin", "description": "Entity Attributes", "etag_repository": "W/\"7714e85d66fc4f3d6b568f88115fbfce99c843a6f02e799f28305d9dc64fafc6\"", "last_updated": "2021-06-05T21:05:54Z", "stargazers_count": 60, "last_fetched": 1695553518.104533, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "196132939": {"repository_manifest": {"homeassistant": "0.106.0", "name": "Nintendo Wishlist Card", "render_readme": true}, "full_name": "custom-cards/nintendo-wishlist-card", "category": "plugin", "description": "Displays a card showing Nintendo Switch games that are on sale from your wish list.", "etag_repository": "W/\"d9295d04dc0362be2c258ae2ed7d910fea2a49e674a8dc863e578e61f9f50c4d\"", "last_updated": "2021-03-04T02:29:13Z", "stargazers_count": 11, "last_fetched": 1695553519.662298, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "156292058": {"repository_manifest": {"name": "Flex Table - Highly customizable, Data visualization", "content_in_root": true, "filename": "flex-table-card.js"}, "full_name": "custom-cards/flex-table-card", "category": "plugin", "description": "Highly Flexible Lovelace Card - arbitrary contents/columns/rows, regex matched, perfect to show appdaemon created content and anything breaking out of the entity_id + attributes concept", "etag_repository": "W/\"41ef8c002b78b0a16059f01a6c4d3e37b98125fd8e30ccbf59e4ba3965b1f72c\"", "last_updated": "2023-09-19T10:37:05Z", "stargazers_count": 155, "topics": ["data-table", "data-visualization", "flexible-table", "high-configurability", "javascript", "single-file", "table-visualization"], "last_fetched": 1695553518.491381, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625947979": {"repository_manifest": {"name": "Youfone", "render_readme": true, "country": ["BE", "NL"]}, "full_name": "geertmeersman/youfone", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for Youfone BE & NL services", "domain": "youfone", "etag_repository": "W/\"493c9bb2a635936dba5c735180f45f01b9361767eb1e3d1a1dae5dcf450174d2\"", "last_updated": "2023-09-18T06:17:56Z", "stargazers_count": 2, "topics": ["youfone"], "last_fetched": 1695553647.881259, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245511": {"repository_manifest": {"name": "group-card", "render_readme": true}, "full_name": "custom-cards/group-card", "category": "plugin", "description": null, "etag_repository": "W/\"be02564a8082b862df3834ced6395d5d6f8eef666164a5704ef60b820f921104\"", "last_updated": "2021-06-12T14:19:18Z", "stargazers_count": 23, "last_fetched": 1695553518.612188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151318225": {"repository_manifest": {"name": "light-entity-row", "render_readme": true}, "full_name": "custom-cards/light-entity-row", "category": "plugin", "description": "Entity row for lights with sliders for adjusting different values based on features", "etag_repository": "W/\"dfdda56dceef29ba04ecbe9ce745c40741b99024a7780c60192595961be6ab1e\"", "last_updated": "2023-01-28T20:14:04Z", "stargazers_count": 54, "last_fetched": 1695553518.826132, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "180000010": {"repository_manifest": {}, "full_name": "custom-cards/cover-element", "category": "plugin", "description": null, "downloads": 3131, "etag_repository": "W/\"02d78a8cf90f9c97afe72a320c41ba2bdda3e53da870ac0907fe02e3e650dd2a\"", "last_updated": "2019-06-03T04:34:16Z", "stargazers_count": 17, "last_fetched": 1695553517.988795, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "389366750": {"repository_manifest": {"name": "Rental Control", "hacs": "1.13.2", "zip_release": true, "filename": "rental_control.zip", "homeassistant": "2022.5.0"}, "full_name": "tykeal/homeassistant-rental-control", "authors": ["@tykeal"], "category": "integration", "description": "Rental Control system for Home Assistant", "domain": "rental_control", "downloads": 149, "etag_repository": "W/\"de81338e3726c3c0891b606862f73ddb76cee4472652127bd6be62c9ae28efdd\"", "last_updated": "2023-09-18T20:35:45Z", "stargazers_count": 22, "topics": ["airbnb", "ical", "locks"], "last_fetched": 1695554190.469362, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "176018567": {"repository_manifest": {"name": "gPodder", "render_readme": true, "zip_release": true, "hide_default_branch": true, "hacs": "0.19.0", "filename": "gpodder.zip"}, "full_name": "custom-components/gpodder", "authors": ["@iantrich"], "category": "integration", "description": "\ud83c\udfa7 gPodder Integration for Podcast Feed Monitoring", "domain": "gpodder", "downloads": 458, "etag_repository": "W/\"30f49e9d5afaf130b14749ca9032b9524a71e88aaf31302d069bad0c04d5e767\"", "last_updated": "2021-06-05T21:16:30Z", "stargazers_count": 11, "last_fetched": 1695553607.108147, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "188686483": {"repository_manifest": {"name": "Decluttering Card", "render_readme": true, "filename": "decluttering-card.js"}, "full_name": "custom-cards/decluttering-card", "category": "plugin", "description": "\ud83e\uddf9 Declutter your lovelace configuration with the help of this card", "downloads": 9308, "etag_repository": "W/\"9722c115771c87e82e075d47f6ea35f4e803b44317f480a5407148f05ebf1ad1\"", "last_updated": "2023-07-18T21:23:00Z", "stargazers_count": 278, "last_fetched": 1695553518.418006, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "396083412": {"repository_manifest": {"name": "Midea AC LAN", "render_readme": true, "homeassistant": 2022.5, "zip_release": true, "filename": "mieda_ac_lan.zip"}, "full_name": "georgezhao2010/midea_ac_lan", "authors": ["@georgezhao2010"], "category": "integration", "description": "Auto-configure and then control your Midea M-Smart devices (Air conditioner, Fan, Water heater, Washer, etc) via local area network.", "domain": "midea_ac_lan", "downloads": 864, "etag_repository": "W/\"a43508c8dde951346b03f1605b830dec3d80be5e3a5fe280e6526b509a85c9a6\"", "last_updated": "2023-09-22T16:48:49Z", "stargazers_count": 736, "topics": ["air-conditioner", "air-purifier", "cooker", "dehumidifier", "dishwasher", "dryer", "fan", "humidifier", "lan", "midea", "refrigerator", "washer", "water-heater"], "last_fetched": 1695553649.619264, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "625647772": {"repository_manifest": {"name": "Mobile Vikings", "render_readme": true, "country": ["BE"]}, "full_name": "geertmeersman/mobile_vikings", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant component for Mobile Vikings BE services", "domain": "mobile_vikings", "etag_repository": "W/\"1e827a76ab84a4ccb5f5ca70b1a43750d7c12361c938554de5ce058ceefe9a64\"", "last_updated": "2023-09-22T09:57:40Z", "stargazers_count": 7, "topics": ["hacs-custom"], "last_fetched": 1695553647.635793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "637354954": {"repository_manifest": {"name": "Robonect", "render_readme": true}, "full_name": "geertmeersman/robonect", "authors": ["@geertmeersman"], "category": "integration", "description": "Home Assistant integration for Robonect", "domain": "robonect", "etag_repository": "W/\"f3a24c56d0241751dff8f866d30d64b13232717299cdc8cb895c4a57aa11797d\"", "last_updated": "2023-09-23T19:12:29Z", "stargazers_count": 22, "topics": ["robonect"], "last_fetched": 1695553647.798932, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "167885769": {"repository_manifest": {"name": "Arlo Camera Support", "homeassistant": "0.110.0"}, "full_name": "twrecked/hass-aarlo", "authors": ["@twrecked"], "category": "integration", "description": "Asynchronous Arlo Component for Home Assistant", "domain": "aarlo", "etag_repository": "W/\"0fdbd93badf648242fca769b8bd8b48d96555c6dcb891a131162aeb95cc34c01\"", "last_updated": "2023-08-03T00:38:31Z", "stargazers_count": 330, "topics": ["arlo", "netgear"], "last_fetched": 1695554188.451106, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "223028160": {"repository_manifest": {"name": "Green Slate Theme"}, "full_name": "pbeckcom/green_slate_theme", "category": "theme", "description": "Green adaptation of this Home-Assistant theme: https://github.com/seangreen2/slate_theme", "etag_repository": "W/\"dc67aa5a882e556ca2eafd9db6a333eaa09715ccb6ac93c7885d7f041070fc25\"", "last_updated": "2019-11-20T22:22:55Z", "stargazers_count": 1, "last_fetched": 1695553504.298624, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143762825": {"repository_manifest": {"name": "Dual gauge card", "filename": "dual-gauge-card.js", "content_in_root": true}, "full_name": "custom-cards/dual-gauge-card", "category": "plugin", "description": "Dual gauge custom card for Lovelace in Home Assistant", "etag_repository": "W/\"2fb0a2fb7206b7483d45770f4060c6c916f3529ad4039b5663b0265a1a604370\"", "last_updated": "2022-11-01T08:48:35Z", "stargazers_count": 151, "last_fetched": 1695553518.302822, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245495": {"repository_manifest": {"name": "gauge-card", "render_readme": true}, "full_name": "custom-cards/gauge-card", "category": "plugin", "description": null, "etag_repository": "W/\"6a0cf1d6b394640d9db103b9771b202d73c09d4ba84d2f5f89df7e4469c3aa25\"", "last_updated": "2022-05-01T20:12:53Z", "stargazers_count": 34, "last_fetched": 1695553518.563611, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "179491130": {"repository_manifest": {}, "full_name": "custom-cards/group-element", "category": "plugin", "description": "A group element for picture-elements with dynamic toggle capability", "downloads": 1028, "etag_repository": "W/\"1e740106490004c445c4862736a5794dfddf0e9269731cd6bd1b738e7f3f0419\"", "last_updated": "2023-02-16T13:58:24Z", "stargazers_count": 60, "last_fetched": 1695553518.492074, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "328566789": {"repository_manifest": {"name": "BeoPlay", "country": "US", "render_readme": true}, "full_name": "giachello/beoplay", "authors": ["@giachello"], "category": "integration", "description": "Home Assistant component to control BeoPlay including TVs, Speakers and others. ", "domain": "beoplay", "etag_repository": "W/\"9a0c856edfbf7bec197e3ede491e6731781015c4bb9cd42841ccd1a6aabd9cee\"", "last_updated": "2023-04-16T22:52:36Z", "stargazers_count": 16, "topics": ["bang-olufsen"], "last_fetched": 1695553649.738101, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "326352749": {"repository_manifest": {"name": "MasterLink Gateway", "country": "US", "render_readme": true}, "full_name": "giachello/mlgw", "authors": ["@giachello", "@Lele-72", "@astrandb"], "category": "integration", "description": "This components integrates Bang & Olufsen Master Link Gateway and Beolink Gateway to Home Assistant, the open-source home automation platform.", "domain": "mlgw", "etag_repository": "W/\"8baf8e5614435604418bab235ec5c29dcf7443d3c273254f05550f5c3dc90e7d\"", "last_updated": "2023-08-18T15:06:31Z", "stargazers_count": 21, "topics": ["bang-olufsen", "beolink-gateway", "masterlink-gateway", "mlgw-configuration"], "last_fetched": 1695553649.801099, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "270386127": {"repository_manifest": {"name": "Comelit SimpleHome/Vedo integration for Home Assistant", "homeassistant": "2021.12.0", "render_readme": true}, "full_name": "gicamm/homeassistant-comelit", "authors": ["@gicamm"], "category": "integration", "description": "With Comelit Hub/Vedo integration, you can connect your Home Assistant instance to Comelit Simple Home and Vedo systems.", "domain": "comelit", "etag_repository": "W/\"73195344f5ad643dcd67f17d2d2ad5584541870d4e83b0745a7a91655048af37\"", "last_updated": "2023-06-09T23:42:31Z", "stargazers_count": 16, "topics": ["automation", "comelit", "comelit-hub", "comelit-vedo", "vedo"], "last_fetched": 1695553649.872221, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "402156016": {"repository_manifest": {"name": "Kamstrup 403", "homeassistant": "2023.6.0", "render_readme": true}, "full_name": "golles/ha-kamstrup_403", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup 403 heating system into Home Assistant. This component does also support a few other heating systems", "domain": "kamstrup_403", "etag_repository": "W/\"12a63a045ffca69f4039b5c7f90adddfc3dda2d4c51734decd2a7ce3561ef910\"", "last_updated": "2023-09-04T18:24:54Z", "stargazers_count": 54, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "kamstrup403", "stadsverwarming"], "last_fetched": 1695553651.964935, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "376390299": {"repository_manifest": {"name": "KNMI", "homeassistant": "2023.9.0", "render_readme": true}, "full_name": "golles/ha-knmi", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates KNMI weather service in to Home Assistant", "domain": "knmi", "etag_repository": "W/\"d2f0362d1c62b56e78be1f4b1c374fdde57194c861c030c1417f871d7bc5f3f6\"", "last_updated": "2023-09-07T15:14:55Z", "stargazers_count": 62, "topics": ["home-assistant-component", "home-assistant-integration", "knmi", "weather", "weerlive"], "last_fetched": 1695553652.10183, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "265587564": {"repository_manifest": {"name": "Kamstrup Multicall 66C", "homeassistant": "2021.1.0", "render_readme": true}, "full_name": "golles/Home-Assistant-Sensor-MC66C", "authors": ["@golles"], "category": "integration", "description": "Custom component that integrates the Kamstrup Multicall 66C heating system into Home Assistant", "domain": "mc66c", "etag_repository": "W/\"c6e6376647cb9138b8ca6252f5be5f69eca36047ab0cf4e2fec244181397157d\"", "last_updated": "2023-09-04T18:26:49Z", "stargazers_count": 13, "topics": ["home-assistant-component", "home-assistant-integration", "kamstrup", "stadsverwarming"], "last_fetched": 1695553651.956224, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "480992848": {"repository_manifest": {"name": "macOS Theme - Based on the system-wide light and dark mode UI", "render_readme": true}, "full_name": "JuanMTech/macOS-Theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- Theme based on the macOS system-wide light and dark mode interface", "etag_repository": "W/\"574eff7dd19a9923286235597dbf080c7dedc04ec8a90c9b0425b818602b67bc\"", "last_updated": "2023-01-13T19:20:50Z", "stargazers_count": 36, "topics": ["darktheme", "lighttheme"], "last_fetched": 1695553502.231706, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "532472578": {"repository_manifest": {"name": "Evonic Fires", "render_readme": true}, "full_name": "greghesp/ha-evonic", "authors": ["@greghesp"], "category": "integration", "description": "Unofficial Evonic Fire integration for Home Assistant", "domain": "evonic", "etag_repository": "W/\"1b2c124b612e20c1eb67df24a4460a3be344c3067df43c2e4bc3f897bf5cd347\"", "last_updated": "2023-09-03T07:42:19Z", "stargazers_count": 6, "topics": ["evonic", "evonicfires", "homeassistant-custom-component"], "last_fetched": 1695553652.089166, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "207794683": {"repository_manifest": {"name": "GoogleGeocode-HASS", "render_readme": true}, "full_name": "gregoryduckworth/GoogleGeocode-HASS", "category": "integration", "description": "Google Location for HASS using the Google Geocode API", "domain": "google_geocode", "etag_repository": "W/\"af98bad5216fdfe8c8b8bc74768873958eff8585d32c5d23712b9419fe15e593\"", "last_updated": "2022-05-13T16:17:01Z", "stargazers_count": 13, "last_fetched": 1695553652.081103, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "448031517": {"repository_manifest": {"name": "Shellies Discovery Gen2", "homeassistant": "2023.9.0b0", "zip_release": true, "filename": "shellies-discovery-gen2.zip"}, "full_name": "bieniu/ha-shellies-discovery-gen2", "category": "python_script", "description": "Script that adds MQTT discovery support for Shellies Gen2 devices", "downloads": 150, "etag_repository": "W/\"34145a76be98214d98233ea69b2c2a9dc8a5cc82402bfda2bf7357de7758a0c3\"", "last_updated": "2023-09-22T04:51:01Z", "stargazers_count": 54, "topics": ["discovery", "mqtt", "shelly"], "last_fetched": 1695553506.907903, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "141952963": {"repository_manifest": {"name": "Circle Sensor Card", "homeassistant": "2020.12.0", "content_in_root": true, "filename": "circle-sensor-card.js"}, "full_name": "custom-cards/circle-sensor-card", "category": "plugin", "description": "A custom component for displaying sensor values as cards or elements", "etag_repository": "W/\"93f70258b488532d5a47c3b17a4d647056858d6273845e80d8004c8a934d1e7a\"", "last_updated": "2022-06-02T04:10:16Z", "stargazers_count": 162, "last_fetched": 1695553517.754942, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "371474642": {"repository_manifest": {"name": "consul", "render_readme": "true"}, "full_name": "gtjadsonsantos/consul", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the consul \ud83d\udd34", "domain": "consul", "etag_repository": "W/\"1c4ab038f6c520bf6c3ecb173153c05cd955a34346ec3ac451ed03cee477e066\"", "last_updated": "2021-10-09T12:30:45Z", "stargazers_count": 3, "topics": ["consul"], "last_fetched": 1695553651.957667, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309178213": {"repository_manifest": {"name": "controlid", "render_readme": "true"}, "full_name": "gtjadsonsantos/controlid", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the controlid \ud83d\udeaa\ud83d\udd11", "domain": "controlid", "etag_repository": "W/\"cd2203b07eb57a9d532d0c2b5fe2aeb23565b9188dd19280e4d7fe28e2c77edb\"", "last_updated": "2021-06-24T16:29:59Z", "topics": ["controlid"], "last_fetched": 1695553652.042105, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "309195773": {"repository_manifest": {"name": "vapix", "render_readme": "true"}, "full_name": "gtjadsonsantos/vapix", "authors": ["@jadson179"], "category": "integration", "description": "home-assistant service for control the vapix \ud83d\udeaa\ud83d\udd11", "domain": "vapix", "etag_repository": "W/\"d4b4b9195e8281b6afc8c688921467976ad81700a26d8ef4d602ce7169494771\"", "last_updated": "2021-06-22T11:49:49Z", "topics": ["axis", "services"], "last_fetched": 1695553652.166572, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "432434646": {"repository_manifest": {"name": "Securitas Direct Alarm", "homeassistant": "2021.9.0"}, "full_name": "guerrerotook/securitas-direct-new-api", "authors": ["@guerrerotook"], "category": "integration", "description": "This repository contains the new securitas direct API that can be integrated in Home Assistant", "domain": "securitas", "etag_repository": "W/\"671ad394009a90acfe14dee82d13d678e81ee721563d204baafde51935a09c43\"", "last_updated": "2023-09-23T15:26:34Z", "stargazers_count": 53, "last_fetched": 1695553652.290948, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "282509738": {"repository_manifest": {"name": "OVH DynHost", "render_readme": true}, "full_name": "GuilleGF/hassio-ovh", "authors": ["@GuilleGF"], "category": "integration", "description": "OVH DynHost Updater Component for https://www.home-assistant.io/", "domain": "ovh", "etag_repository": "W/\"ce3cfe71f887e3ba8605b855a704abd19e31a0b964a4beff4973c7cf520bfdbf\"", "last_updated": "2022-08-08T13:04:12Z", "stargazers_count": 18, "topics": ["ddns", "ddns-updater", "ovh", "ovh-dynhost"], "last_fetched": 1695553652.318023, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "323152128": {"repository_manifest": {"name": "Crunch-O-Meter", "render_readme": true, "zip_release": true, "filename": "crunch_o_meter.zip"}, "full_name": "GuyLewin/home-assistant-crunch-o-meter", "authors": ["@guylewin"], "category": "integration", "description": "Crunch-O-Meter API as sensors in Home Assistant. See how many people are currently at your local gym", "domain": "crunch_o_meter", "downloads": 123, "etag_repository": "W/\"b03bab1ac86a26c2e0956858032468e0005bd0ab8238decb66fe6d52d2d201ec\"", "last_updated": "2021-06-14T13:06:16Z", "stargazers_count": 1, "topics": ["crunch", "crunch-o-meter"], "last_fetched": 1695553654.080269, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "462065554": {"repository_manifest": {"name": "Life Time Fitness", "render_readme": true, "zip_release": true, "filename": "lifetime_fitness.zip"}, "full_name": "GuyLewin/home-assistant-lifetime-fitness", "authors": ["@GuyLewin"], "category": "integration", "description": "Life Time Fitness integration for Home Assistant", "domain": "lifetime_fitness", "downloads": 40, "etag_repository": "W/\"89a11209edbd5cda89b1f97b1e42b859bf689f7dc3aa6100713bc558d0ea1f72\"", "last_updated": "2023-05-13T12:48:58Z", "topics": ["lifetime"], "last_fetched": 1695553654.05978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "263075818": {"repository_manifest": {"name": "HA-meural"}, "full_name": "GuySie/ha-meural", "authors": ["@guysie"], "category": "integration", "description": "Integration for NETGEAR Meural Canvas digital art frame in Home Assistant ", "domain": "meural", "etag_repository": "W/\"1ee7ce861e7d3d50dea7065b978b0749305daed27db2cc9fa735046bd2faa488\"", "last_updated": "2023-08-16T19:55:02Z", "stargazers_count": 54, "topics": ["meural", "netgear"], "last_fetched": 1695553654.178872, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "506356147": {"repository_manifest": {"name": "Haier hOn", "homeassistant": "2022.6.0"}, "full_name": "gvigroux/hon", "authors": ["@gvigroux", "@MiguelAngelLV"], "category": "integration", "description": "Support of all Haier, Candy, Hoover appliances integrated in the official hOn mobile app. The only one supporting Climate!", "domain": "hon", "downloads": 13, "etag_repository": "W/\"c956d70ab1c2dffb3b919962cad30714c0ca99f1f38696dfc8e3c60bf3ecfc1f\"", "last_updated": "2023-09-07T12:47:20Z", "stargazers_count": 107, "topics": ["candy", "haier", "hon", "hoover"], "last_fetched": 1695553654.280052, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "383608593": {"repository_manifest": {"name": "Toshiba AC", "render_readme": true, "homeassistant": "2023.3.0"}, "full_name": "h4de5/home-assistant-toshiba_ac", "authors": ["@h4de5"], "category": "integration", "description": "Toshiba AC integration into home-assistant.io", "domain": "toshiba_ac", "downloads": 90, "etag_repository": "W/\"41ad1a32f47522132c175888646f08af8ba893d1f9f95083cae91acc19808277\"", "last_updated": "2023-08-06T07:06:09Z", "stargazers_count": 89, "topics": ["climate", "toshiba"], "last_fetched": 1695553654.45204, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269205129": {"repository_manifest": {"name": "VIMAR By-Me Hub", "render_readme": true, "homeassistant": "2021.12.0"}, "full_name": "h4de5/home-assistant-vimar", "authors": ["@h4de5", "@robigan", "@davideciarmiello"], "category": "integration", "description": "VIMAR by-me integration into home-assistant.io", "domain": "vimar", "downloads": 7, "etag_repository": "W/\"8287b8f71bec9e3159dc6ec7d9f3fa813a30ef4f9bfb10d1e424662224a0b284\"", "last_updated": "2023-08-15T23:08:26Z", "stargazers_count": 40, "topics": ["vimar", "vimar-platform"], "last_fetched": 1695553654.287618, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231824299": {"repository_manifest": {"name": "Warmup under-floor heating integration"}, "full_name": "ha-warmup/warmup", "authors": ["@ha-warmup"], "category": "integration", "description": "Home Assistant integration for Warmup heating thermostats as a HACS integration or a custom component", "domain": "warmup", "etag_repository": "W/\"180024e4c263d088cb8bfb85aa4bc85185278b593108ed2b7d1fa975256d0a61\"", "last_updated": "2023-06-23T09:52:51Z", "stargazers_count": 20, "topics": ["climate", "climate-control", "heating", "heating-control", "thermostat", "warmup"], "last_fetched": 1695553654.270082, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "397776105": {"repository_manifest": {"name": "Hildebrand Glow (DCC)", "render_readme": true, "country": ["GB"], "homeassistant": "2022.12.0"}, "full_name": "HandyHat/ha-hildebrandglow-dcc", "authors": ["@HandyHat"], "category": "integration", "description": "Home Assistant integration for UK SMETS (Smart) meters pulling data from the DCC via the Hildebrand Glow API ", "domain": "hildebrandglow_dcc", "etag_repository": "W/\"33bc0f1aacf6e1ab3c63689b8b74f885f3c6b279c281a53c063d06402b06ee06\"", "last_updated": "2023-09-12T05:18:16Z", "stargazers_count": 197, "topics": ["electricity", "electricity-consumption", "energy", "energy-consumption", "gas", "glow", "hildebrand", "smart-meter", "smart-meters", "smartmeter", "smets", "smets2", "uk"], "last_fetched": 1695553654.376129, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "535287543": {"repository_manifest": {"name": "evnex", "render_readme": true}, "full_name": "hardbyte/ha-evnex", "authors": ["@hardbyte"], "category": "integration", "description": "A cloud-polling Home Assistant component to integrate with an Evnex Charger", "domain": "evnex", "etag_repository": "W/\"4e0619002375ef7d05c1320eb68e181039d22644c567dd365c895731238ee327\"", "last_updated": "2023-05-22T01:46:39Z", "stargazers_count": 3, "topics": ["charger", "energy-consumption", "homeassistant-custom-component"], "last_fetched": 1695553654.463404, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "259867685": {"repository_manifest": {"name": "Swedish Public Transport Sensor (HASL)", "country": "SE", "homeassistant": "2021.12.0"}, "full_name": "hasl-sensor/integration", "authors": ["@DSorlov"], "category": "integration", "description": "Swedish Public Transport Sensor (HASL). Formerly named HomeAssistant SL Sensor", "domain": "hasl3", "etag_repository": "W/\"1711d7159da48eb6b94629d6515d0d8a08ef86dbff58f7350ab987bd3cee3feb\"", "last_updated": "2023-06-12T10:01:42Z", "stargazers_count": 26, "topics": ["ha-sensor-sl", "hasl", "hasl3", "haslv3", "sl-sensor", "stockholms-lokaltrafik"], "last_fetched": 1695553654.566896, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "410867791": {"repository_manifest": {"name": "Microsoft Edge TTS", "render_readme": true}, "full_name": "hasscc/hass-edge-tts", "authors": ["@al-one", "@rany2"], "category": "integration", "description": "\ud83d\udde3\ufe0f Microsoft Edge TTS for Home Assistant, no need for app_key", "domain": "edge_tts", "etag_repository": "W/\"efde8e04cdfbe42d5b7c7b84a82058f44606e7d67655c588350c8a470ddfbee7\"", "last_updated": "2023-08-14T11:34:37Z", "stargazers_count": 248, "topics": ["tts"], "last_fetched": 1695553656.121978, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "400117627": {"repository_manifest": {"name": "Petkit", "render_readme": true}, "full_name": "hasscc/petkit", "authors": ["@al-one"], "category": "integration", "description": "\ud83d\udc31 Petkit feeder components for HomeAssistant", "domain": "petkit", "downloads": 34, "etag_repository": "W/\"69e3a1d1d36aa99e937803462b74a3847ef9aa31ac7d3aee25ffb4279a77e444\"", "last_updated": "2023-08-30T02:59:01Z", "stargazers_count": 109, "topics": ["feeder", "petkit"], "last_fetched": 1695553656.230509, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "342427139": {"repository_manifest": {"name": "openHASP", "hacs": "1.7.1", "homeassistant": "2022.4.0"}, "full_name": "HASwitchPlate/openHASP-custom-component", "authors": ["@dgomes"], "category": "integration", "description": "Home Assistant custom component for openHASP", "domain": "openhasp", "etag_repository": "W/\"9358859b2b1ed2ba894b4f2271bef59d4701ce67cc13fa9adac6930b0643c1b7\"", "last_updated": "2023-08-08T20:39:07Z", "stargazers_count": 38, "topics": ["openhasp"], "last_fetched": 1695553656.431586, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "292197182": {"repository_manifest": {"name": "Yeelight bluetooth", "render_readme": true, "homeassistant": "2022.10.0"}, "full_name": "hcoohb/hass-yeelightbt", "authors": ["@hcoohb"], "category": "integration", "description": "Home assistant custom component for Yeelight bluetooth", "domain": "yeelight_bt", "etag_repository": "W/\"b675037c7a97443055f2dab50fd6c423092b653b263c70c58dd83b1c42c61d32\"", "last_updated": "2023-03-01T00:18:07Z", "stargazers_count": 45, "topics": ["bluetooth", "bluetooth-low-energy", "yeelight-lamp"], "last_fetched": 1695553656.58133, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "398739214": {"repository_manifest": {"render_readme": true, "homeassistant": "2021.8.1"}, "full_name": "HCookie/Webhook-Service-home-assistant", "category": "integration", "description": "Add a Webhook service to HomeAssistant, originally designed for use with Discord Webhooks", "domain": "webhook_service", "downloads": 22, "etag_repository": "W/\"85c6a3ee438c592119c988e31cda25a3285452ac297e841783ad47caed5675e2\"", "last_updated": "2023-03-23T09:33:59Z", "stargazers_count": 8, "topics": ["webhooks"], "last_fetched": 1695553656.379021, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "243122556": {"repository_manifest": {"name": "tide", "country": "NOR", "homeassistant": "0.96.0", "render_readme": true}, "full_name": "Hellowlol/ha-tide", "authors": ["@hellowlol"], "category": "integration", "description": "Tide a sensor for HASS.", "domain": "tide", "etag_repository": "W/\"aebda22b0bc108f6be794b73eb90126a8a9cc1682831229c54ea7e435a3f638a\"", "last_updated": "2021-06-06T20:30:32Z", "stargazers_count": 4, "topics": ["norway", "tide"], "last_fetched": 1695553656.41176, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "266595512": {"repository_manifest": {"name": "Casambi", "render_readme": true}, "full_name": "hellqvio86/home_assistant_casambi", "authors": ["@hellqvio86"], "category": "integration", "description": "Home assistant Integration for Casambi Cloud lights", "domain": "casambi", "etag_repository": "W/\"18d674943b66cd325932ca3144d8c73c17f3904fec6c5498961bbb53b21c877b\"", "last_updated": "2023-04-21T04:19:47Z", "stargazers_count": 21, "topics": ["casambi"], "last_fetched": 1695553656.486602, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "286408741": {"repository_manifest": {"name": "Posten Card", "render_readme": true, "filename": "posten-card.js", "country": "NO"}, "full_name": "ezand/lovelace-posten-card", "category": "plugin", "description": "A Lovelace card to display Norwegian mail delivery days", "downloads": 1939, "etag_repository": "W/\"d1687a2a9bc0c69dcedd4e5d0812a55a1da6e3e2a8dcfad22a136be3dd3dbed0\"", "last_updated": "2023-01-04T16:22:44Z", "stargazers_count": 14, "topics": ["lovelace-card", "mail-delivery"], "last_fetched": 1695553526.698664, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "142545838": {"repository_manifest": {"name": "Canvas Gauge Card", "render_readme": true, "filename": "canvas-gauge-card.js"}, "full_name": "custom-cards/canvas-gauge-card", "category": "plugin", "description": "The card makes it possible to use gauges from https://canvas-gauges.com/", "downloads": 7311, "etag_repository": "W/\"a46ad7460cd3bb99ff17f5461889bbf111f85ef2ba37909613ae54de018668da\"", "last_updated": "2023-08-05T23:57:04Z", "stargazers_count": 141, "last_fetched": 1695553516.698818, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146194325": {"repository_manifest": {"name": "button-card", "render_readme": true, "filename": "button-card.js", "homeassistant": "2023.7.0"}, "full_name": "custom-cards/button-card", "category": "plugin", "description": "\u2747\ufe0f Lovelace button-card for home assistant", "downloads": 51496, "etag_repository": "W/\"c48021c1bcd0a4a574dbba8d36d5d2f1628e1ac214cd9e0b1cef0d01bb8b7064\"", "last_updated": "2023-09-11T06:42:43Z", "stargazers_count": 1504, "last_fetched": 1695553516.902084, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187245418": {"repository_manifest": {"name": "bignumber-card", "render_readme": true}, "full_name": "custom-cards/bignumber-card", "category": "plugin", "description": null, "etag_repository": "W/\"0b40fbccdb1ece1aef31d664776b328e906ba0cb0606ef07fff11064475df3cf\"", "last_updated": "2022-01-31T15:47:59Z", "stargazers_count": 103, "last_fetched": 1695553516.633803, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "143850865": {"repository_manifest": {}, "full_name": "custom-cards/beer-card", "category": "plugin", "description": "This card give you a list of your wishlist items.", "etag_repository": "W/\"c2b03290f98156b1e5f8824a704020aaf2082a459dccbf059655a953fbbe957e\"", "last_updated": "2021-01-13T09:25:20Z", "stargazers_count": 3, "last_fetched": 1695553516.370278, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "245267534": {"repository_manifest": {"name": "Virtual Components"}, "full_name": "twrecked/hass-virtual", "authors": ["@twrecked"], "category": "integration", "description": "Virtual Components for Home Assistant", "domain": "virtual", "etag_repository": "W/\"9b64ad35c07874abb07965283418d1578d9ecc0e9c3810d5a801b679be4cea74\"", "last_updated": "2023-06-14T17:16:05Z", "stargazers_count": 109, "topics": ["virtual"], "last_fetched": 1695554190.300584, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "131915802": {"repository_manifest": {"name": "Places", "render_readme": true, "homeassistant": "2023.1.0b0", "zip_release": true, "filename": "places.zip", "persistent_directory": "json_sensors"}, "full_name": "custom-components/places", "authors": ["@Snuffy2"], "category": "integration", "description": "Component to integrate with OpenStreetMap Reverse Geocode (places)", "domain": "places", "downloads": 733, "etag_repository": "W/\"7ce069f292723bc54daa8a9a160db65ef7d685e61c22e6c6579460f42f49c6fa\"", "last_updated": "2023-09-17T00:11:11Z", "stargazers_count": 85, "topics": ["device-tracker", "geolocation", "openstreetmap"], "last_fetched": 1695553608.838665, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "164022050": {"repository_manifest": {}, "full_name": "custom-cards/check-button-card", "category": "plugin", "description": "Check Button Card is a button that tracks when it is last pressed, for the Home Assistant Lovelace front-end using MQTT auto discovery.", "downloads": 5594, "etag_repository": "W/\"0be912a1c831060d9945074552f17273a71d4da1a79c661361a85746f112ce48\"", "last_updated": "2021-12-22T18:23:08Z", "stargazers_count": 100, "last_fetched": 1695553516.545402, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "498794033": {"repository_manifest": {"name": "Slider Button Card", "render_readme": true, "filename": "slider-button-card.js"}, "full_name": "custom-cards/slider-button-card", "category": "plugin", "description": "A button card with integrated slider", "downloads": 9812, "etag_repository": "W/\"510a77ea0754a907302430d4d8426043aabf9843c5a0af92450477acbad7f3cd\"", "last_updated": "2023-08-16T07:36:47Z", "stargazers_count": 75, "topics": ["button-card", "card", "lovelace-custom-card", "slider"], "last_fetched": 1695553520.537679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272140589": {"repository_manifest": {"name": "Monitor Docker"}, "full_name": "ualex73/monitor_docker", "authors": ["@ualex73"], "category": "integration", "description": "Monitor Docker containers from Home Assistant", "domain": "monitor_docker", "etag_repository": "W/\"dcd5fa2e0500f5f1f1fe80eeb32126fb1ea3c756ecc153dff21d2c35bcfb5eac\"", "last_updated": "2023-08-11T16:13:59Z", "stargazers_count": 217, "topics": ["docker"], "last_fetched": 1695554190.439179, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "479056577": {"repository_manifest": {"name": "Green and Dark Theme: Simple, clean, and green", "render_readme": true, "homeassistant": "2022.3"}, "full_name": "Matt-PMCT/Green-and-Dark-HA-Theme", "category": "theme", "description": "A dark theme with green accents for Home Assistant based off green_dark_mode by JuanMTech, with mods by dmyoung9", "etag_repository": "W/\"42790e982044555e827120a0d79dc19aee9c6ccd5930f09608d1be13619264af\"", "last_updated": "2022-04-07T16:57:33Z", "stargazers_count": 2, "topics": ["dark-theme", "green"], "last_fetched": 1695553502.372905, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "413812496": {"repository_manifest": {"name": "Plotly Graph Card", "render_readme": true, "filename": "plotly-graph-card.js"}, "full_name": "dbuezas/lovelace-plotly-graph-card", "category": "plugin", "description": "Highly customisable Lovelace card to plot interactive graphs. Brings scrolling, zooming, and much more!", "downloads": 10849, "etag_repository": "W/\"951c54356c4ff761de801cc4bc59aaebb2c020a8cdf45da1494138bb79f238ab\"", "last_updated": "2023-07-31T19:44:38Z", "stargazers_count": 180, "topics": ["graphs", "history", "lovelace-custom-card", "navigate", "plotly", "plotlyjs", "plots", "scroll", "zoom"], "last_fetched": 1695553523.586601, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "76125161": {"repository_manifest": {"name": "iCal Sensor", "homeassistant": "2022.5.0"}, "full_name": "tybritten/ical-sensor-homeassistant", "authors": ["@Olen", "@TyBritten"], "category": "integration", "description": "an iCal Sensor for Home Assistant", "domain": "ical", "etag_repository": "W/\"5af29993c01039ba4667360f4d15b450429f8b47c2c6e3ba3681650b48ca705c\"", "last_updated": "2023-08-30T18:17:55Z", "stargazers_count": 85, "topics": ["ical"], "last_fetched": 1695554190.356349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "312649007": {"repository_manifest": {"name": "Reminder"}, "full_name": "eyalcha/ha-reminder", "category": "python_script", "description": "A python script for Home Assistant that counts down the days to reminder", "etag_repository": "W/\"524c3a5edcc64422fd988b88c299c375dc24099d536061ecfec98054f25a5a95\"", "last_updated": "2020-12-20T21:07:41Z", "stargazers_count": 13, "topics": ["python-scripts"], "last_fetched": 1695553506.778634, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "499270202": {"repository_manifest": {"name": "Hourly Weather Card", "render_readme": true, "filename": "hourly-weather.js"}, "full_name": "decompil3d/lovelace-hourly-weather", "category": "plugin", "description": "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar.", "downloads": 5607, "etag_repository": "W/\"b41394b1b51258040982baba4a7fd9d7b07268ca46a65cad327250a02bbb237d\"", "last_updated": "2023-09-21T16:51:32Z", "stargazers_count": 133, "topics": ["card", "hourly", "weather"], "last_fetched": 1695553524.619188, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "231145540": {"repository_manifest": {"name": "NextBus Card", "render_readme": true, "filename": "nextbus-card.js"}, "full_name": "dcramer/lovelace-nextbus-card", "category": "plugin", "description": "A card giving richer public transit display using NextBus sensors.", "downloads": 378, "etag_repository": "W/\"989bc4d09c96db46de7e9a500d97a4c569e9907783930ce4542573bc68bf9d14\"", "last_updated": "2023-01-04T13:48:39Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "nextbus", "public-transit"], "last_fetched": 1695553523.462227, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "274738925": {"repository_manifest": {"name": "Purifier Card", "render_readme": true, "filename": "purifier-card.js"}, "full_name": "denysdovhan/purifier-card", "category": "plugin", "description": "Air Purifier card for Home Assistant Lovelace UI", "downloads": 4468, "etag_repository": "W/\"0b8c4ff9b43e8ed42fe379d995c1decc882b7e0224b5e5bdcf6a9651217df101\"", "last_updated": "2023-09-07T10:32:44Z", "stargazers_count": 213, "topics": ["air-purifier", "purifier"], "last_fetched": 1695553524.749902, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "450192057": {"repository_manifest": {"name": "SkyKettle", "homeassistant": "2022.8.1", "render_readme": true, "country": ["RU"]}, "full_name": "ClusterM/skykettle-ha", "authors": ["@clusterm"], "category": "integration", "description": "Redmond SkyKettle integration for Home Assistant", "domain": "skykettle", "etag_repository": "W/\"3a698a14385848a1c10c25dbc98a8519f87a28ce1b69dfb7a94e5c4a078238d3\"", "last_updated": "2023-06-12T12:46:00Z", "stargazers_count": 64, "topics": ["kettle", "redmond", "skykettle"], "last_fetched": 1695553604.216268, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "195497310": {"repository_manifest": {"name": "Custom Animated Weather Card", "content_in_root": true, "filename": "bom-weather-card.js", "country": ["IT", "FR", "DE", "NL", "PL", "HE", "RU", "DA", "UA", "EN"]}, "full_name": "DavidFW1960/bom-weather-card", "category": "plugin", "description": "Custom Animated Weather Card for any weather provider", "etag_repository": "W/\"96de86634852c85234b3e0b624c89996ce58e0461f5640c2afaa5c2e178b0c57\"", "last_updated": "2023-03-16T00:34:49Z", "stargazers_count": 148, "topics": ["bom", "weather-forecast"], "last_fetched": 1695553522.790793, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "151580533": {"repository_manifest": {}, "full_name": "custom-components/sensor.unifigateway", "authors": ["@jchasey"], "category": "integration", "description": "High level health status of UniFi Security Gateway devices via UniFi Controller", "domain": "unifigateway", "etag_repository": "W/\"11e7185c3eaebedf1d575bb0012bdbcb1ea5b60c42dfd43fcca8adf11dac2d94\"", "last_updated": "2021-04-19T12:12:56Z", "stargazers_count": 118, "last_fetched": 1695553611.426303, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "187247927": {"repository_manifest": {}, "full_name": "custom-cards/plan-coordinates", "category": "plugin", "description": null, "etag_repository": "W/\"65e055074859c77381931602f3f1b259695e9f8ce36a1be99f59f51e00664220\"", "last_updated": "2021-06-05T21:07:14Z", "stargazers_count": 28, "last_fetched": 1695553519.80349, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "272337216": {"repository_manifest": {"name": "Pandora Car Alarm System", "country": ["RU", "BY"], "render_readme": true}, "full_name": "turbulator/pandora-cas", "authors": ["@turbulator"], "category": "integration", "description": "Home Assistant custom component for Pandora Car Alarm System", "domain": "pandora_cas", "etag_repository": "W/\"5604a19466f508bfcfdc165cded03dc05ad17283662247ab6bc1d2d8d53ea75e\"", "last_updated": "2023-03-06T05:08:02Z", "stargazers_count": 39, "topics": ["pandora"], "last_fetched": 1695554188.064861, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "581307720": {"repository_manifest": {"name": "QuestDB State Storage (QSS)", "homeassistant": "2023.6.0", "hide_default_branch": true, "render_readme": true, "zip_release": true, "filename": "qss.zip"}, "full_name": "CM000n/qss", "authors": ["@CM000n"], "category": "integration", "description": "QuestDB State Storage (QSS) Custom Component for Home Assistant to store entity states inside a QuestDB.", "domain": "qss", "downloads": 63, "etag_repository": "W/\"d23e7aec3fac3e395e779b9a311419da42b48d5e7f8c3af685586562da424418\"", "last_updated": "2023-07-05T08:43:28Z", "stargazers_count": 5, "topics": ["analytics", "database", "grafana", "qss", "questdb", "state-storage", "storage", "timeseries"], "last_fetched": 1695553604.620012, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "615891516": {"repository_manifest": {"name": "Sense Custom Reporting (Kasa Plug Emulation)", "homeassistant": "2022.2.0", "render_readme": true, "country": ["US"]}, "full_name": "dahlb/ha_sense", "authors": ["@dahlb"], "category": "integration", "description": "Report custom devices to sense energy monitoring for ha consumption devices", "domain": "ha_sense", "etag_repository": "W/\"e2ce5463d60b6d64fd3f4a3f3ba84e06111ca885908d731a9e08ef231f11f10d\"", "last_updated": "2023-09-18T19:20:36Z", "stargazers_count": 2, "topics": ["python3"], "last_fetched": 1695553618.274125, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "273007955": {"repository_manifest": {"name": "Power Usage Card with Regular Expressions", "content_in_root": true, "filename": "power-usage-card-regex.js", "render_readme": true}, "full_name": "DBa2016/power-usage-card-regex", "category": "plugin", "description": "Lovelace pie chart card that displays current energy usage", "etag_repository": "W/\"cf8cc5c86840c0c720de5a4f951c50d6cf781fefd2970d9b009810c0624b42d3\"", "last_updated": "2022-07-26T02:31:34Z", "stargazers_count": 7, "topics": ["lovelace-custom-card", "power-usage"], "last_fetched": 1695553522.497433, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "269011342": {"repository_manifest": {"name": "Shutter Card", "filename": "hass-shutter-card.js", "render_readme": true, "homeassistant": "2021.11.0"}, "full_name": "Deejayfool/hass-shutter-card", "category": "plugin", "description": "Shutter card for Home Assistant Lovelace UI", "downloads": 12378, "etag_repository": "W/\"0601147dc3012c4e39b7feeaf421e660226de9927909a59ec9885b56218d8f50\"", "last_updated": "2023-05-25T03:34:25Z", "stargazers_count": 220, "last_fetched": 1695553524.43438, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "486045869": {"repository_manifest": {"name": "Metrology - Metro + Fluent + Windows Themes - by mmak.es", "render_readme": true}, "full_name": "Madelena/Metrology-for-Hass", "category": "theme", "description": "\ud83c\udfa8 Give your Home Assistant a modern and clean facelift. \ud83d\udfe5\ud83d\udfe7\ud83d\udfe9\ud83d\udfe6\ud83d\udfea 24 Variations with 2 Styles + 6 Colors (Magenta Red / Orange / Green / Blue / Purple) + \ud83c\udf1e Light and \ud83c\udf1a Dark modes included. Based on Metro and Fluent UI Design Systems from Microsoft Windows.", "etag_repository": "W/\"7fe5aad23ba32a4ffc8c8264453e7224fb1650faaf277317df61643e5d51f40b\"", "last_updated": "2023-04-04T23:04:20Z", "stargazers_count": 433, "topics": ["home-assistant-config", "lovelace-theme"], "last_fetched": 1695553502.39982, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "240459262": {"repository_manifest": {"name": "Abfall API (Jumomind)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_jumomind_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (Jumomind) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_jumomind", "etag_repository": "W/\"03cfd6e9d0f8ae41cc1adb4315e089391eb0a3cb6f113f3df532f66d9eef811d\"", "last_updated": "2021-12-22T09:57:43Z", "stargazers_count": 4, "topics": ["abfall", "collection", "deutschland", "garbage", "germany", "jumomind", "muell", "waste"], "last_fetched": 1695554188.115236, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "194381263": {"repository_manifest": {"name": "Thermostat Update"}, "full_name": "bieniu/ha-thermostat-update", "category": "python_script", "description": "This script updates Z-Wave thermostat entity state and current temperature from external sensor", "etag_repository": "W/\"01669dc0882fb3e00c9f1411eefcd25527d75688bc38369669762cab745dece7\"", "last_updated": "2020-04-28T06:54:52Z", "stargazers_count": 13, "topics": ["thermostat", "z-wave"], "last_fetched": 1695553506.502744, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "443140011": {"repository_manifest": {"name": "Ambient Weather Station - Local", "render_readme": true, "homeassistant": "2023.1.0"}, "full_name": "tlskinneriv/awnet_local", "authors": ["@tlskinneriv"], "category": "integration", "description": "Enables local support for Ambient Weather personal weather stations.", "domain": "awnet_local", "etag_repository": "W/\"d05a95fc28d0fefed8a3944fa8dd1b2e499ea76b60850445bd5aa927d056c6a6\"", "last_updated": "2023-09-10T03:25:05Z", "stargazers_count": 18, "topics": ["ambient-weather", "ambient-weather-api"], "last_fetched": 1695554183.711528, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "237628853": {"repository_manifest": {"name": "Abfall API (RegioIT)", "country": "DE", "homeassistant": "0.104.3", "render_readme": true}, "full_name": "tuxuser/abfallapi_regioit_ha", "authors": ["@tuxuser"], "category": "integration", "description": "Abfall API (RegioIT) custom component for home assistant - Get an alert when garbage collection is due", "domain": "abfallapi_regioit", "etag_repository": "W/\"ff3716bb657449c838adffdb4afd1e31cd15c89a35a419b7cf209466484341a2\"", "last_updated": "2022-12-23T23:34:37Z", "stargazers_count": 11, "topics": ["collection", "component", "garbage", "muell", "muellabfuhr", "regioit", "waste"], "last_fetched": 1695554188.085925, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "261291295": {"repository_manifest": {"name": "Vacuum Card", "render_readme": true, "filename": "vacuum-card.js"}, "full_name": "denysdovhan/vacuum-card", "category": "plugin", "description": "Vacuum cleaner card for Home Assistant Lovelace UI", "downloads": 13161, "etag_repository": "W/\"c9504b06f54bf487d98ff0d0b823f929ebcd165520685c62544d4771b73f5f2c\"", "last_updated": "2023-09-14T18:14:12Z", "stargazers_count": 741, "topics": ["robot-vacuum", "vacuum"], "last_fetched": 1695553524.749679, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "220313935": {"repository_manifest": {"name": "hass-AMS", "country": ["NO", "SE"], "render_readme": true}, "full_name": "turbokongen/hass-AMS", "authors": ["@turbokongen"], "category": "integration", "description": "Custom component reading AMS through MBus adapter into HomeAssistant", "domain": "ams", "etag_repository": "W/\"565dd1f574d8ed5d40653407a29777a25c932224311f65e8bd9d7e20e9e8ba80\"", "last_updated": "2023-03-26T17:56:50Z", "stargazers_count": 37, "topics": ["mbus-adapter", "meter", "sensors"], "last_fetched": 1695554188.266553, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "146335411": {"repository_manifest": {"name": "RMV Card", "content_in_root": true, "filename": "rmv-card.js"}, "full_name": "custom-cards/rmv-card", "category": "plugin", "description": "Custom card for the RMV component.", "etag_repository": "W/\"5377307c7f3caa5f79c61629d98d2b54132d1247c234fe838a65151575101f08\"", "last_updated": "2023-07-06T11:12:17Z", "stargazers_count": 18, "last_fetched": 1695553520.21019, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "403381222": {"repository_manifest": {"name": "Noctis-Solarized"}, "full_name": "williamahartman/noctis-solarized", "category": "theme", "description": "Noctis theme made Solarized", "etag_repository": "W/\"4d32a10390a2cae49a58c24ff8995f68def7646063acc7c0e42cf39e4a61fbea\"", "last_updated": "2022-03-06T20:37:36Z", "stargazers_count": 4, "topics": ["home-assistant-theme"], "last_fetched": 1695553506.16037, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "284294048": {"repository_manifest": {"name": "iOS Light Mode", "render_readme": true}, "full_name": "JuanMTech/ios_light_mode_theme", "category": "theme", "description": "\ud83c\udfa8 By JuanMTech -- A Home Assistant theme inspired on the iOS light mode interface.", "etag_repository": "W/\"4bc7b61985610af8875db4603eb5c40a18189bcf6a4aa174e937791b881bec7f\"", "last_updated": "2023-01-12T22:54:45Z", "stargazers_count": 16, "last_fetched": 1695553502.150583, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}, "185304888": {"repository_manifest": {}, "full_name": "custom-cards/text-action-element", "category": "plugin", "description": null, "downloads": 444, "etag_repository": "W/\"8bd2d2b872cb3eb435b80cd58ef862dd86fed1b272b0228b47e4d8c27b268507\"", "last_updated": "2023-02-16T13:53:44Z", "stargazers_count": 8, "last_fetched": 1695553520.561225, "first_install": true, "installed": false, "show_beta": false, "new": false, "installed_commit": null, "selected_tag": null, "version_installed": null}} \ No newline at end of file diff --git a/custom_components/hacs/utils/filters.py b/custom_components/hacs/utils/filters.py index e155b8e..1482c75 100644 --- a/custom_components/hacs/utils/filters.py +++ b/custom_components/hacs/utils/filters.py @@ -1,4 +1,5 @@ """Filter functions.""" + from __future__ import annotations from typing import Any diff --git a/custom_components/hacs/utils/logger.py b/custom_components/hacs/utils/logger.py index 699d7f1..47a77c0 100644 --- a/custom_components/hacs/utils/logger.py +++ b/custom_components/hacs/utils/logger.py @@ -1,4 +1,5 @@ """Custom logger for HACS.""" + import logging from ..const import PACKAGE_NAME diff --git a/custom_components/hacs/utils/path.py b/custom_components/hacs/utils/path.py index 493b9e6..7994a8d 100644 --- a/custom_components/hacs/utils/path.py +++ b/custom_components/hacs/utils/path.py @@ -1,6 +1,8 @@ """Path utils""" + from __future__ import annotations +from functools import lru_cache from pathlib import Path from typing import TYPE_CHECKING @@ -8,14 +10,32 @@ if TYPE_CHECKING: from ..base import HacsBase +@lru_cache(maxsize=1) +def _get_safe_paths( + config_path: str, + appdaemon_path: str, + plugin_path: str, + python_script_path: str, + theme_path: str, +) -> set[str]: + """Get safe paths.""" + return { + Path(f"{config_path}/{appdaemon_path}").as_posix(), + Path(f"{config_path}/{plugin_path}").as_posix(), + Path(f"{config_path}/{python_script_path}").as_posix(), + Path(f"{config_path}/{theme_path}").as_posix(), + Path(f"{config_path}/custom_components/").as_posix(), + Path(f"{config_path}/custom_templates/").as_posix(), + } + + def is_safe(hacs: HacsBase, path: str | Path) -> bool: """Helper to check if path is safe to remove.""" - return Path(path).as_posix() not in ( - Path(f"{hacs.core.config_path}/{hacs.configuration.appdaemon_path}").as_posix(), - Path(f"{hacs.core.config_path}/{hacs.configuration.netdaemon_path}").as_posix(), - Path(f"{hacs.core.config_path}/{hacs.configuration.plugin_path}").as_posix(), - Path(f"{hacs.core.config_path}/{hacs.configuration.python_script_path}").as_posix(), - Path(f"{hacs.core.config_path}/{hacs.configuration.theme_path}").as_posix(), - Path(f"{hacs.core.config_path}/custom_components/").as_posix(), - Path(f"{hacs.core.config_path}/custom_templates/").as_posix(), + configuration = hacs.configuration + return Path(path).as_posix() not in _get_safe_paths( + hacs.core.config_path, + configuration.appdaemon_path, + configuration.plugin_path, + configuration.python_script_path, + configuration.theme_path, ) diff --git a/custom_components/hacs/utils/queue_manager.py b/custom_components/hacs/utils/queue_manager.py index 8bc7714..e8498be 100644 --- a/custom_components/hacs/utils/queue_manager.py +++ b/custom_components/hacs/utils/queue_manager.py @@ -1,9 +1,10 @@ """The QueueManager class.""" + from __future__ import annotations import asyncio +from collections.abc import Coroutine import time -from typing import Coroutine from homeassistant.core import HomeAssistant @@ -60,9 +61,6 @@ class QueueManager: for task in self.queue: local_queue.append(task) - for task in local_queue: - self.queue.remove(task) - _LOGGER.debug(" Starting queue execution for %s tasks", len(local_queue)) start = time.time() result = await asyncio.gather(*local_queue, return_exceptions=True) @@ -71,6 +69,9 @@ class QueueManager: _LOGGER.error(" %s", entry) end = time.time() - start + for task in local_queue: + self.queue.remove(task) + _LOGGER.debug( " Queue execution finished for %s tasks finished in %.2f seconds", len(local_queue), diff --git a/custom_components/hacs/utils/regex.py b/custom_components/hacs/utils/regex.py index 6f92fa0..845e403 100644 --- a/custom_components/hacs/utils/regex.py +++ b/custom_components/hacs/utils/regex.py @@ -1,4 +1,5 @@ """Regex utils""" + from __future__ import annotations import re diff --git a/custom_components/hacs/utils/store.py b/custom_components/hacs/utils/store.py index d3a0fc5..f0afa07 100644 --- a/custom_components/hacs/utils/store.py +++ b/custom_components/hacs/utils/store.py @@ -1,4 +1,5 @@ """Storage handers.""" + from homeassistant.helpers.json import JSONEncoder from homeassistant.helpers.storage import Store from homeassistant.util import json as json_util diff --git a/custom_components/hacs/utils/template.py b/custom_components/hacs/utils/template.py deleted file mode 100644 index 425e2da..0000000 --- a/custom_components/hacs/utils/template.py +++ /dev/null @@ -1,38 +0,0 @@ -"""Custom template support.""" -from __future__ import annotations - -from typing import TYPE_CHECKING - -from jinja2 import Template - -if TYPE_CHECKING: - from ..base import HacsBase - from ..repositories.base import HacsRepository - - -def render_template(hacs: HacsBase, content: str, context: HacsRepository) -> str: - """Render templates in content.""" - if hacs.configuration.experimental: - # Do not render for experimental - return content - # Fix None issues - if context.releases.last_release_object is not None: - prerelease = context.releases.last_release_object.prerelease - else: - prerelease = False - - # Render the template - try: - return Template(content).render( - installed=context.data.installed, - pending_update=context.pending_update, - prerelease=prerelease, - selected_tag=context.data.selected_tag, - version_available=context.releases.last_release, - version_installed=context.display_installed_version, - ) - except ( - BaseException # lgtm [py/catch-base-exception] pylint: disable=broad-except - ) as exception: - context.logger.debug(exception) - return content diff --git a/custom_components/hacs/utils/validate.py b/custom_components/hacs/utils/validate.py index c0ba455..fa25be9 100644 --- a/custom_components/hacs/utils/validate.py +++ b/custom_components/hacs/utils/validate.py @@ -1,7 +1,10 @@ """Validation utilities.""" + from __future__ import annotations +from collections.abc import Callable from dataclasses import dataclass, field +from typing import Any from awesomeversion import AwesomeVersion from homeassistant.helpers.config_validation import url as url_validator @@ -67,3 +70,146 @@ INTEGRATION_MANIFEST_JSON_SCHEMA = vol.Schema( }, extra=vol.ALLOW_EXTRA, ) + + +def validate_repo_data(schema: dict[str, Any], extra: int) -> Callable[[Any], Any]: + """Return a validator for repo data. + + This is used instead of vol.All to always try both the repo schema and + and the validate_version validator. + """ + _schema = vol.Schema(schema, extra=extra) + + def validate_repo_data(data: Any) -> Any: + """Validate integration repo data.""" + schema_errors: vol.MultipleInvalid | None = None + try: + _schema(data) + except vol.MultipleInvalid as err: + schema_errors = err + try: + validate_version(data) + except vol.Invalid as err: + if schema_errors: + schema_errors.add(err) + else: + raise + if schema_errors: + raise schema_errors + return data + + return validate_repo_data + + +def validate_version(data: Any) -> Any: + """Ensure at least one of last_commit or last_version is present.""" + if "last_commit" not in data and "last_version" not in data: + raise vol.Invalid("Expected at least one of [`last_commit`, `last_version`], got none") + return data + + +V2_COMMON_DATA_JSON_SCHEMA = { + vol.Required("description"): vol.Any(str, None), + vol.Optional("downloads"): int, + vol.Optional("etag_releases"): str, + vol.Required("etag_repository"): str, + vol.Required("full_name"): str, + vol.Optional("last_commit"): str, + vol.Required("last_fetched"): vol.Any(int, float), + vol.Required("last_updated"): str, + vol.Optional("last_version"): str, + vol.Optional("prerelease"): str, + vol.Required("manifest"): { + vol.Optional("country"): vol.Any([str], False), + vol.Optional("name"): str, + }, + vol.Optional("open_issues"): int, + vol.Optional("stargazers_count"): int, + vol.Optional("topics"): [str], +} + +V2_INTEGRATION_DATA_JSON_SCHEMA = { + **V2_COMMON_DATA_JSON_SCHEMA, + vol.Required("domain"): str, + vol.Required("manifest_name"): str, +} + +_V2_REPO_SCHEMAS = { + "appdaemon": V2_COMMON_DATA_JSON_SCHEMA, + "integration": V2_INTEGRATION_DATA_JSON_SCHEMA, + "plugin": V2_COMMON_DATA_JSON_SCHEMA, + "python_script": V2_COMMON_DATA_JSON_SCHEMA, + "template": V2_COMMON_DATA_JSON_SCHEMA, + "theme": V2_COMMON_DATA_JSON_SCHEMA, +} + +# Used when validating repos in the hacs integration, discards extra keys +VALIDATE_FETCHED_V2_REPO_DATA = { + category: validate_repo_data(schema, vol.REMOVE_EXTRA) + for category, schema in _V2_REPO_SCHEMAS.items() +} + +# Used when validating repos when generating data, fails on extra keys +VALIDATE_GENERATED_V2_REPO_DATA = { + category: vol.Schema({str: validate_repo_data(schema, vol.PREVENT_EXTRA)}) + for category, schema in _V2_REPO_SCHEMAS.items() +} + +V2_CRITICAL_REPO_DATA_SCHEMA = { + vol.Required("link"): str, + vol.Required("reason"): str, + vol.Required("repository"): str, +} + +# Used when validating critical repos in the hacs integration, discards extra keys +VALIDATE_FETCHED_V2_CRITICAL_REPO_SCHEMA = vol.Schema( + V2_CRITICAL_REPO_DATA_SCHEMA, + extra=vol.REMOVE_EXTRA, +) + +# Used when validating critical repos when generating data, fails on extra keys +VALIDATE_GENERATED_V2_CRITICAL_REPO_SCHEMA = vol.Schema( + [ + vol.Schema( + V2_CRITICAL_REPO_DATA_SCHEMA, + extra=vol.PREVENT_EXTRA, + ) + ] +) + +V2_REMOVED_REPO_DATA_SCHEMA = { + vol.Optional("link"): str, + vol.Optional("reason"): str, + vol.Required("removal_type"): vol.In( + [ + "Integration is missing a version, and is abandoned.", + "Remove", + "archived", + "blacklist", + "critical", + "deprecated", + "removal", + "remove", + "removed", + "replaced", + "repository", + ] + ), + vol.Required("repository"): str, +} + +# Used when validating removed repos in the hacs integration, discards extra keys +VALIDATE_FETCHED_V2_REMOVED_REPO_SCHEMA = vol.Schema( + V2_REMOVED_REPO_DATA_SCHEMA, + extra=vol.REMOVE_EXTRA, +) + +# Used when validating removed repos when generating data, fails on extra keys +VALIDATE_GENERATED_V2_REMOVED_REPO_SCHEMA = vol.Schema( + [ + vol.Schema( + V2_REMOVED_REPO_DATA_SCHEMA, + extra=vol.PREVENT_EXTRA, + ) + ] +) diff --git a/custom_components/hacs/utils/version.py b/custom_components/hacs/utils/version.py index b11012d..6c44b2c 100644 --- a/custom_components/hacs/utils/version.py +++ b/custom_components/hacs/utils/version.py @@ -1,4 +1,5 @@ """Version utils.""" + from __future__ import annotations from functools import lru_cache diff --git a/custom_components/hacs/utils/workarounds.py b/custom_components/hacs/utils/workarounds.py index b730e3c..4d7867c 100644 --- a/custom_components/hacs/utils/workarounds.py +++ b/custom_components/hacs/utils/workarounds.py @@ -1,7 +1,37 @@ -"""Workarounds for issues that should not be fixed.""" +"""Workarounds.""" +from homeassistant.core import HomeAssistant DOMAIN_OVERRIDES = { # https://github.com/hacs/integration/issues/2465 "custom-components/sensor.custom_aftership": "custom_aftership" } + + +try: + from homeassistant.components.http import StaticPathConfig + + async def async_register_static_path( + hass: HomeAssistant, + url_path: str, + path: str, + cache_headers: bool = True, + ) -> None: + """Register a static path with the HTTP component.""" + await hass.http.async_register_static_paths( + [StaticPathConfig(url_path, path, cache_headers)] + ) +except ImportError: + + async def async_register_static_path( + hass: HomeAssistant, + url_path: str, + path: str, + cache_headers: bool = True, + ) -> None: + """Register a static path with the HTTP component. + + Legacy: Can be removed when min version is 2024.7 + https://developers.home-assistant.io/blog/2024/06/18/async_register_static_paths/ + """ + hass.http.register_static_path(url_path, path, cache_headers) diff --git a/custom_components/hacs/validate/archived.py b/custom_components/hacs/validate/archived.py index 39fde0f..2205d56 100644 --- a/custom_components/hacs/validate/archived.py +++ b/custom_components/hacs/validate/archived.py @@ -1,8 +1,12 @@ from __future__ import annotations -from ..repositories.base import HacsRepository +from typing import TYPE_CHECKING + from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + async def async_setup_validator(repository: HacsRepository) -> Validator: """Set up this validator.""" @@ -15,7 +19,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-archived" allow_fork = False - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if self.repository.data.archived: raise ValidationException("The repository is archived") diff --git a/custom_components/hacs/validate/base.py b/custom_components/hacs/validate/base.py index a58ebb8..c69e37a 100644 --- a/custom_components/hacs/validate/base.py +++ b/custom_components/hacs/validate/base.py @@ -1,12 +1,13 @@ """Base class for validation.""" + from __future__ import annotations -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, Any -from ..enums import HacsCategory from ..exceptions import HacsException if TYPE_CHECKING: + from ..enums import HacsCategory from ..repositories.base import HacsRepository @@ -17,7 +18,7 @@ class ValidationException(HacsException): class ActionValidationBase: """Base class for action validation.""" - categories: list[HacsCategory] = [] + categories: tuple[HacsCategory, ...] = () allow_fork: bool = True more_info: str = "https://hacs.xyz/docs/publish/action" @@ -34,7 +35,7 @@ class ActionValidationBase: async def async_validate(self) -> None: """Validate the repository.""" - async def execute_validation(self, *_, **__) -> None: + async def execute_validation(self, *_: Any, **__: Any) -> None: """Execute the task defined in subclass.""" self.failed = False diff --git a/custom_components/hacs/validate/brands.py b/custom_components/hacs/validate/brands.py index 15b66ae..20869c9 100644 --- a/custom_components/hacs/validate/brands.py +++ b/custom_components/hacs/validate/brands.py @@ -1,10 +1,14 @@ from __future__ import annotations +from typing import TYPE_CHECKING + from custom_components.hacs.enums import HacsCategory -from ..repositories.base import HacsRepository from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + URL = "https://brands.home-assistant.io/domains.json" @@ -17,9 +21,9 @@ class Validator(ActionValidationBase): """Validate the repository.""" more_info = "https://hacs.xyz/docs/publish/include#check-brands" - categories = [HacsCategory.INTEGRATION] + categories = (HacsCategory.INTEGRATION,) - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" response = await self.hacs.session.get(URL) diff --git a/custom_components/hacs/validate/description.py b/custom_components/hacs/validate/description.py index f52f457..1dbe9f8 100644 --- a/custom_components/hacs/validate/description.py +++ b/custom_components/hacs/validate/description.py @@ -1,8 +1,12 @@ from __future__ import annotations -from ..repositories.base import HacsRepository +from typing import TYPE_CHECKING + from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + async def async_setup_validator(repository: HacsRepository) -> Validator: """Set up this validator.""" @@ -15,7 +19,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-repository" allow_fork = False - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if not self.repository.data.description: raise ValidationException("The repository has no description") diff --git a/custom_components/hacs/validate/hacsjson.py b/custom_components/hacs/validate/hacsjson.py index 4d00007..ea4a610 100644 --- a/custom_components/hacs/validate/hacsjson.py +++ b/custom_components/hacs/validate/hacsjson.py @@ -19,7 +19,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-hacs-manifest" - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if RepositoryFile.HACS_JSON not in [x.filename for x in self.repository.tree]: raise ValidationException(f"The repository has no '{RepositoryFile.HACS_JSON}' file") diff --git a/custom_components/hacs/validate/images.py b/custom_components/hacs/validate/images.py index 3b13fc9..313a7d3 100644 --- a/custom_components/hacs/validate/images.py +++ b/custom_components/hacs/validate/images.py @@ -1,9 +1,13 @@ from __future__ import annotations +from typing import TYPE_CHECKING + from ..enums import HacsCategory -from ..repositories.base import HacsRepository from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + IGNORED = ["-shield", "img.shields.io", "buymeacoffee.com"] @@ -15,12 +19,12 @@ async def async_setup_validator(repository: HacsRepository) -> Validator: class Validator(ActionValidationBase): """Validate the repository.""" - categories = [HacsCategory.PLUGIN, HacsCategory.THEME] + categories = (HacsCategory.PLUGIN, HacsCategory.THEME) more_info = "https://hacs.xyz/docs/publish/include#check-images" - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" - info = await self.repository.async_get_info_file_contents() + info = await self.repository.async_get_info_file_contents(version=self.repository.ref) for line in info.split("\n"): if " Validator: """Set up this validator.""" @@ -14,7 +18,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-info" - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" filenames = [x.filename.lower() for x in self.repository.tree] if "readme" in filenames: diff --git a/custom_components/hacs/validate/integration_manifest.py b/custom_components/hacs/validate/integration_manifest.py index 524c936..edd54b1 100644 --- a/custom_components/hacs/validate/integration_manifest.py +++ b/custom_components/hacs/validate/integration_manifest.py @@ -1,13 +1,17 @@ from __future__ import annotations +from typing import TYPE_CHECKING + from voluptuous.error import Invalid from ..enums import HacsCategory, RepositoryFile -from ..repositories.base import HacsRepository -from ..repositories.integration import HacsIntegrationRepository from ..utils.validate import INTEGRATION_MANIFEST_JSON_SCHEMA from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + from ..repositories.integration import HacsIntegrationRepository + async def async_setup_validator(repository: HacsRepository) -> Validator: """Set up this validator.""" @@ -19,16 +23,16 @@ class Validator(ActionValidationBase): repository: HacsIntegrationRepository more_info = "https://hacs.xyz/docs/publish/include#check-manifest" - categories = [HacsCategory.INTEGRATION] + categories = (HacsCategory.INTEGRATION,) - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if RepositoryFile.MAINIFEST_JSON not in [x.filename for x in self.repository.tree]: raise ValidationException( f"The repository has no '{RepositoryFile.MAINIFEST_JSON}' file" ) - content = await self.repository.async_get_integration_manifest(self.repository.ref) + content = await self.repository.get_integration_manifest(version=self.repository.ref) try: INTEGRATION_MANIFEST_JSON_SCHEMA(content) except Invalid as exception: diff --git a/custom_components/hacs/validate/issues.py b/custom_components/hacs/validate/issues.py index 13515db..88afa6e 100644 --- a/custom_components/hacs/validate/issues.py +++ b/custom_components/hacs/validate/issues.py @@ -1,8 +1,12 @@ from __future__ import annotations -from ..repositories.base import HacsRepository +from typing import TYPE_CHECKING + from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + async def async_setup_validator(repository: HacsRepository) -> Validator: """Set up this validator.""" @@ -15,7 +19,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-repository" allow_fork = False - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if not self.repository.data.has_issues: raise ValidationException("The repository does not have issues enabled") diff --git a/custom_components/hacs/validate/manager.py b/custom_components/hacs/validate/manager.py index af69353..94d3f88 100644 --- a/custom_components/hacs/validate/manager.py +++ b/custom_components/hacs/validate/manager.py @@ -1,4 +1,5 @@ """Hacs validation manager.""" + from __future__ import annotations import asyncio @@ -7,13 +8,12 @@ import os from pathlib import Path from typing import TYPE_CHECKING -from homeassistant.core import HomeAssistant - -from ..repositories.base import HacsRepository -from .base import ActionValidationBase - if TYPE_CHECKING: + from homeassistant.core import HomeAssistant + from ..base import HacsBase + from ..repositories.base import HacsRepository + from .base import ActionValidationBase class ValidationManager: @@ -23,16 +23,16 @@ class ValidationManager: """Initialize the setup manager class.""" self.hacs = hacs self.hass = hass - self._validatiors: dict[str, ActionValidationBase] = {} + self._validators: dict[str, ActionValidationBase] = {} @property - def validatiors(self) -> list[ActionValidationBase]: + def validators(self) -> list[ActionValidationBase]: """Return all list of all tasks.""" - return list(self._validatiors.values()) + return list(self._validators.values()) async def async_load(self, repository: HacsRepository) -> None: """Load all tasks.""" - self._validatiors = {} + self._validators = {} validator_files = Path(__file__).parent validator_modules = ( module.stem @@ -40,10 +40,10 @@ class ValidationManager: if module.name not in ("base.py", "__init__.py", "manager.py") ) - async def _load_module(module: str): + async def _load_module(module: str) -> None: task_module = import_module(f"{__package__}.{module}") if task := await task_module.async_setup_validator(repository=repository): - self._validatiors[task.slug] = task + self._validators[task.slug] = task await asyncio.gather(*[_load_module(task) for task in validator_modules]) @@ -59,9 +59,9 @@ class ValidationManager: and os.getenv("GITHUB_REPOSITORY") != repository.data.full_name ) - validatiors = [ + validators = [ validator - for validator in self.validatiors or [] + for validator in self.validators or [] if ( (not validator.categories or repository.data.category in validator.categories) and validator.slug not in os.getenv("INPUT_IGNORE", "").split(" ") @@ -69,10 +69,10 @@ class ValidationManager: ) ] - await asyncio.gather(*[validator.execute_validation() for validator in validatiors]) + await asyncio.gather(*[validator.execute_validation() for validator in validators]) - total = len(validatiors) - failed = len([x for x in validatiors if x.failed]) + total = len(validators) + failed = len([x for x in validators if x.failed]) if failed != 0: repository.logger.error("%s %s/%s checks failed", repository.string, failed, total) diff --git a/custom_components/hacs/validate/topics.py b/custom_components/hacs/validate/topics.py index d9f18d8..ec8ddd1 100644 --- a/custom_components/hacs/validate/topics.py +++ b/custom_components/hacs/validate/topics.py @@ -1,8 +1,12 @@ from __future__ import annotations -from ..repositories.base import HacsRepository +from typing import TYPE_CHECKING + from .base import ActionValidationBase, ValidationException +if TYPE_CHECKING: + from ..repositories.base import HacsRepository + async def async_setup_validator(repository: HacsRepository) -> Validator: """Set up this validator.""" @@ -15,7 +19,7 @@ class Validator(ActionValidationBase): more_info = "https://hacs.xyz/docs/publish/include#check-repository" allow_fork = False - async def async_validate(self): + async def async_validate(self) -> None: """Validate the repository.""" if not self.repository.data.topics: raise ValidationException("The repository has no valid topics")