From ba004a1c9e57fde0d7fb3477bcc16c1d960cdfda Mon Sep 17 00:00:00 2001 From: Thomas Fink Date: Mon, 20 Nov 2023 14:03:23 +0100 Subject: [PATCH 01/31] Add recall time migration01~ --- .../1700484515-add-recall-time-for-process-queue.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql diff --git a/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql b/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql new file mode 100644 index 000000000..fb6299037 --- /dev/null +++ b/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql @@ -0,0 +1,5 @@ +ALTER TABLE buerger +ADD COLUMN `recall_time` time DEFAULT NULL; + +ALTER TABLE standort +ADD COLUMN `recall_time_limit` INT(5) NOT NULL DEFAULT 5; \ No newline at end of file From ce331847f9f92a55f54a1528925d0fe8b96bab54 Mon Sep 17 00:00:00 2001 From: Thomas Fink Date: Mon, 20 Nov 2023 19:25:17 +0100 Subject: [PATCH 02/31] Solution using updateTimestamp --- zmsadmin/src/Zmsadmin/Application.php | 2 +- zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php | 1 + zmsadmin/templates/block/queue/table.twig | 14 +++++++++++++- zmsdb/src/Zmsdb/Query/Process.php | 7 +++++-- zmsdb/tests/Zmsdb/IcsTest.php | 8 ++++---- zmsentities/schema/dereferenced/day.json | 4 ++++ zmsentities/schema/dereferenced/mail.json | 4 ++++ zmsentities/schema/dereferenced/notification.json | 4 ++++ zmsentities/schema/dereferenced/process.json | 5 +++++ zmsentities/schema/dereferenced/workstation.json | 4 ++++ zmsentities/schema/process.json | 5 +++++ zmsentities/src/Zmsentities/Process.php | 4 ++++ 12 files changed, 54 insertions(+), 8 deletions(-) diff --git a/zmsadmin/src/Zmsadmin/Application.php b/zmsadmin/src/Zmsadmin/Application.php index 65c6a83e1..6be2c4ee1 100644 --- a/zmsadmin/src/Zmsadmin/Application.php +++ b/zmsadmin/src/Zmsadmin/Application.php @@ -27,7 +27,7 @@ class Application extends \BO\Slim\Application const DEBUG = false; - const TWIG_CACHE = '/cache/'; + const TWIG_CACHE = false; const TEMPLATE_PATH = ZMS_ADMIN_TEMPLATE_FOLDER; diff --git a/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php b/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php index e7747e34e..a3c583d71 100644 --- a/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php +++ b/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php @@ -253,6 +253,7 @@ public static function getProcess() id status createTimestamp + updateTimestamp reminderTimestamp appointments{ date diff --git a/zmsadmin/templates/block/queue/table.twig b/zmsadmin/templates/block/queue/table.twig index f867764e0..650b1b1f3 100644 --- a/zmsadmin/templates/block/queue/table.twig +++ b/zmsadmin/templates/block/queue/table.twig @@ -261,7 +261,19 @@ {% endif %} Dieser Kunde ist nicht erschienen - wieder aufnehmen + {{ item.customTextfield|decodeEntities|raw }} + {% set currentTime = "now"|date('U') %} + {% set updateTimestamp = item.updateTimestamp|date('U') %} + {% set fiveMinutes = 300 %} + + {% if currentTime - updateTimestamp > fiveMinutes %} + + {{ item.updateTimestamp }} + wieder aufnehmen + + {% else %} + {{ item.updateTimestamp }} + {% endif %} {% endfor %} diff --git a/zmsdb/src/Zmsdb/Query/Process.php b/zmsdb/src/Zmsdb/Query/Process.php index 99e1a4131..692b8373a 100644 --- a/zmsdb/src/Zmsdb/Query/Process.php +++ b/zmsdb/src/Zmsdb/Query/Process.php @@ -203,9 +203,10 @@ public function getEntityMapping() 'customTextfield' => 'process.custom_text_field', 'createIP' => 'process.IPAdresse', 'createTimestamp' => 'process.IPTimeStamp', + 'updateTimestamp' => 'process.updateTimestamp', 'lastChange' => 'process.updateTimestamp', 'showUpTime' => 'process.showUpTime', - 'finishTime' => 'process.finishTime', + 'finishTime' => 'process.finishTime', 'status' => $status_expression, 'queue__status' => $status_expression, 'queue__arrivalTime' => self::expression( @@ -794,13 +795,15 @@ protected function addProcessingTimeData($process, \DateTimeInterface $dateTime) { $data = array(); + //print($process->status); + if ($process->status == 'processing') { $data['showUpTime'] = $dateTime->format('Y-m-d H:i:s'); } if ($process->status == 'finished') { $data['finishTime'] = $dateTime->format('Y-m-d H:i:s'); - } + } $this->addValues($data); } diff --git a/zmsdb/tests/Zmsdb/IcsTest.php b/zmsdb/tests/Zmsdb/IcsTest.php index 13e559807..3279567e2 100644 --- a/zmsdb/tests/Zmsdb/IcsTest.php +++ b/zmsdb/tests/Zmsdb/IcsTest.php @@ -11,11 +11,11 @@ class IcsTest extends Base public function testBasic() { setlocale(LC_ALL, 'de_DE'); - $testTimestamp = 1463062089; // 12.5.2016, 16:08:09 GMT+2:00 DST saved in base64 ics string below + $updateTimestamp = 1463062089; // 12.5.2016, 16:08:09 GMT+2:00 DST saved in base64 ics string below $process = (new Process())->readEntity(169530, 'b3b0', 3); //process from testDB import $config = (new Config())->readEntity(); - $ics = \BO\Zmsentities\Helper\Messaging::getMailIcs($process, $config, 'appointment', null, $testTimestamp); + $ics = \BO\Zmsentities\Helper\Messaging::getMailIcs($process, $config, 'appointment', null, $updateTimestamp); $this->assertEntity("\\BO\\Zmsentities\\Ics", $ics); $this->assertStringContainsString('169530', $ics->getContent()); @@ -25,11 +25,11 @@ public function testBasic() public function testDeleteIcs() { - $testTimestamp = 1463062089; // 12.5.2016, 16:08:09 GMT+2:00 DST saved in base64 ics string below + $updateTimestamp = 1463062089; // 12.5.2016, 16:08:09 GMT+2:00 DST saved in base64 ics string below $process = (new Process())->readEntity(169530, 'b3b0'); //process from testDB import $process->status = 'deleted'; $config = (new Config())->readEntity(); - $ics = \BO\Zmsentities\Helper\Messaging::getMailIcs($process, $config, 'deleted', null, $testTimestamp); + $ics = \BO\Zmsentities\Helper\Messaging::getMailIcs($process, $config, 'deleted', null, $updateTimestamp); $this->assertEntity("\\BO\\Zmsentities\\Ics", $ics); $this->assertStringContainsString('CANCELLED', $ics->getContent()); $this->assertStringContainsString('UID:20160408-169530', $ics->getContent()); diff --git a/zmsentities/schema/dereferenced/day.json b/zmsentities/schema/dereferenced/day.json index f74001db1..8e9111742 100644 --- a/zmsentities/schema/dereferenced/day.json +++ b/zmsentities/schema/dereferenced/day.json @@ -295,6 +295,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "scope": { "id": 123, "hint": "Standort aus Beispiel-Termin", diff --git a/zmsentities/schema/dereferenced/mail.json b/zmsentities/schema/dereferenced/mail.json index 52559c06f..035f61429 100644 --- a/zmsentities/schema/dereferenced/mail.json +++ b/zmsentities/schema/dereferenced/mail.json @@ -405,6 +405,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "clients": { "type": "array", "items": { diff --git a/zmsentities/schema/dereferenced/notification.json b/zmsentities/schema/dereferenced/notification.json index f6bb50bc6..c5d7f21c0 100644 --- a/zmsentities/schema/dereferenced/notification.json +++ b/zmsentities/schema/dereferenced/notification.json @@ -308,6 +308,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "clients": { "type": "array", "items": { diff --git a/zmsentities/schema/dereferenced/process.json b/zmsentities/schema/dereferenced/process.json index 99bad7c7b..02e8dd0e9 100644 --- a/zmsentities/schema/dereferenced/process.json +++ b/zmsentities/schema/dereferenced/process.json @@ -24,6 +24,7 @@ "createIP": "145.15.3.10", "createTimestamp": 1447931596, "lastChange": 1447931596, + "updateTimestamp": 1447931596, "id": 123456, "queue": { "arrivalTime": 1447922893, @@ -233,6 +234,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "queue": { "type": "object", "description": "A queue represents a waiting queue for processes\/clients.", diff --git a/zmsentities/schema/dereferenced/workstation.json b/zmsentities/schema/dereferenced/workstation.json index dcefd3b48..0a65aaaf0 100644 --- a/zmsentities/schema/dereferenced/workstation.json +++ b/zmsentities/schema/dereferenced/workstation.json @@ -168,6 +168,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "clients": { "type": "array", "items": { diff --git a/zmsentities/schema/process.json b/zmsentities/schema/process.json index 3c35c2b47..22bce2771 100644 --- a/zmsentities/schema/process.json +++ b/zmsentities/schema/process.json @@ -23,6 +23,7 @@ "createIP": "145.15.3.10", "createTimestamp": 1447931596, "lastChange": 1447931596, + "updateTimestamp": 1447931596, "id": 123456, "queue": { "arrivalTime": 1447922893, @@ -316,6 +317,10 @@ "type": "string", "description": "unix timestamp og time when process has been finished" }, + "updateTimestamp": { + "type": "string", + "description": "unix timestamp og time when process has been missed" + }, "queue": { "$ref": "queue.json" }, diff --git a/zmsentities/src/Zmsentities/Process.php b/zmsentities/src/Zmsentities/Process.php index ce14b240d..1f3c48efa 100644 --- a/zmsentities/src/Zmsentities/Process.php +++ b/zmsentities/src/Zmsentities/Process.php @@ -37,6 +37,7 @@ public function getDefaults() return [ 'amendment' => '', 'customTextfield' => '', + 'updateTimestamp' => time(), 'appointments' => new Collection\AppointmentList(), 'apiclient' => new Apiclient(), 'authKey' => '', @@ -461,6 +462,7 @@ public function withLessData(array $keepArray = []) } unset($entity['createTimestamp']); + unset($entity['updateTimestamp']); unset($entity['createIP']); if ($entity->toProperty()->scope->status->isAvailable()) { @@ -579,6 +581,7 @@ public function toDerefencedAmendment() 'StandortID' => $this->scope['id'], 'Anmerkung' => $this->amendment, 'IPTimeStamp' => $this->createTimestamp, + 'updateTimestamp' => $this->updateTimestamp, 'LastChange' => $lastChange, ), 1 @@ -594,6 +597,7 @@ public function toDerefencedCustomTextfield() 'StandortID' => $this->scope['id'], 'CustomTextfield' => $this->customTextfield, 'IPTimeStamp' => $this->createTimestamp, + 'updateTimestamp' => $this->updateTimestamp, 'LastChange' => $lastChange, ), 1 From 5c4a7ec9ef28e0765dae385a69c989b7660c3cd6 Mon Sep 17 00:00:00 2001 From: Thomas Fink Date: Mon, 20 Nov 2023 20:14:17 +0100 Subject: [PATCH 03/31] Format minutes --- zmsadmin/templates/block/queue/table.twig | 28 ++++++++++++++--------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/zmsadmin/templates/block/queue/table.twig b/zmsadmin/templates/block/queue/table.twig index 650b1b1f3..1065e2318 100644 --- a/zmsadmin/templates/block/queue/table.twig +++ b/zmsadmin/templates/block/queue/table.twig @@ -262,18 +262,24 @@ Dieser Kunde ist nicht erschienen {{ item.customTextfield|decodeEntities|raw }} - {% set currentTime = "now"|date('U') %} - {% set updateTimestamp = item.updateTimestamp|date('U') %} - {% set fiveMinutes = 300 %} + {% set currentTime = "now"|date('U') %} + {% set updateTimestamp = item.updateTimestamp|date('U') %} + {% set fiveMinutes = 300 %} + {% set timeDiff = currentTime - updateTimestamp %} + {% set remainingTime = fiveMinutes - timeDiff %} - {% if currentTime - updateTimestamp > fiveMinutes %} - - {{ item.updateTimestamp }} - wieder aufnehmen - - {% else %} - {{ item.updateTimestamp }} - {% endif %} + {% if timeDiff > fiveMinutes %} + + wieder aufnehmen + + {% else %} + {% set remainingMinutes = (remainingTime // 60) %} + {% set remainingSeconds = remainingTime % 60 %} + {% set formattedTime = '%02d:%02d'|format(remainingMinutes, remainingSeconds) %} + +

Kann in {{ formattedTime }} Minuten wieder aufgerufen werden. Zuletzt geƤnderte Zeit: {{ item.updateTimestamp }}

+ + {% endif %} {% endfor %} From 7efcbbbb04c0f945e31d82310a77bfbd40b10d3c Mon Sep 17 00:00:00 2001 From: Thomas Fink Date: Wed, 22 Nov 2023 19:47:34 +0100 Subject: [PATCH 04/31] It actually works lol --- zmsadmin/composer.json | 5 +- zmsadmin/composer.lock | 471 ++++++------------ .../src/Zmsadmin/Helper/ClusterHelper.php | 6 +- .../src/Zmsadmin/Helper/GraphDefaults.php | 1 + .../src/Zmsadmin/WorkstationProcessCalled.php | 2 + .../Zmsadmin/WorkstationProcessCancelNext.php | 7 + .../src/Zmsadmin/WorkstationProcessNext.php | 94 ++++ zmsadmin/templates/block/process/called.twig | 1 + zmsadmin/templates/block/process/precall.twig | 1 + zmsadmin/templates/block/queue/table.twig | 67 +-- zmsapi/src/Zmsapi/ProcessNextByScope.php | 61 ++- ...4515-add-recall-time-for-process-queue.sql | 5 +- zmsdb/src/Zmsdb/Query/Process.php | 10 +- zmsentities/schema/dereferenced/day.json | 4 + zmsentities/schema/dereferenced/mail.json | 4 + .../schema/dereferenced/notification.json | 4 + zmsentities/schema/dereferenced/process.json | 4 + .../schema/dereferenced/workstation.json | 4 + zmsentities/schema/process.json | 4 + .../src/Zmsentities/Collection/QueueList.php | 4 + zmsentities/src/Zmsentities/Process.php | 5 + 21 files changed, 412 insertions(+), 352 deletions(-) diff --git a/zmsadmin/composer.json b/zmsadmin/composer.json index 610e34314..0ff9fc45e 100644 --- a/zmsadmin/composer.json +++ b/zmsadmin/composer.json @@ -45,7 +45,8 @@ "psr/http-message": "^1.0", "container-interop/container-interop": "^1.2", "twig/intl-extra": "^3.4", - "twig/twig": "3.*" + "twig/twig": "3.*", + "symfony/polyfill-intl-icu": "^1.21" }, "bin": [], "autoload": { @@ -54,4 +55,4 @@ "BO\\Zmsadmin\\Tests\\": "tests/Zmsadmin/" } } -} \ No newline at end of file +} diff --git a/zmsadmin/composer.lock b/zmsadmin/composer.lock index e3e8eb2fe..52a8817ce 100644 --- a/zmsadmin/composer.lock +++ b/zmsadmin/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3de9c394dcf24f5a36246f602d593469", + "content-hash": "c2e6d4b36074e3b24497f77fe81aede0", "packages": [ { "name": "aronduby/dump", @@ -205,11 +205,11 @@ }, { "name": "eappointment/zmsclient", - "version": "dev-main", + "version": "dev-feature-1498_wiederaufruf_erst_nach_5_minuten", "dist": { "type": "path", "url": "../zmsclient", - "reference": "a3041b800445f8aca076b2a79397eeca5fe7af85" + "reference": "ea4081d276a9b42c08d8ac75fc296672fa79cb27" }, "require": { "aronduby/dump": "^0.9", @@ -258,17 +258,16 @@ ], "description": "Use this library to fetch data from the eappointment API via HTTP.", "transport-options": { - "symlink": true, - "relative": true + "symlink": true } }, { "name": "eappointment/zmsentities", - "version": "dev-main", + "version": "dev-feature-1498_wiederaufruf_erst_nach_5_minuten", "dist": { "type": "path", "url": "../zmsentities", - "reference": "6d50c616376c01caa495318e4a4c3825703dd24b" + "reference": "5c4a7ec9ef28e0765dae385a69c989b7660c3cd6" }, "require": { "eappointment/mellon": "@dev", @@ -316,17 +315,16 @@ ], "description": "Entity definitions for eappoinment", "transport-options": { - "symlink": true, - "relative": true + "symlink": true } }, { "name": "eappointment/zmsslim", - "version": "dev-main", + "version": "dev-feature-1498_wiederaufruf_erst_nach_5_minuten", "dist": { "type": "path", "url": "../zmsslim", - "reference": "dbbbdf39b2231536c550f7b58dd40dc6f873c977" + "reference": "5c4a7ec9ef28e0765dae385a69c989b7660c3cd6" }, "require": { "eappointment/mellon": "@dev", @@ -376,8 +374,7 @@ ], "description": "Basic configuration for a slim framework", "transport-options": { - "symlink": true, - "relative": true + "symlink": true } }, { @@ -501,16 +498,16 @@ }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.23", + "version": "8.13.25", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480" + "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b2dff83693cb46eb4478b193e9d94e2ff6258480", - "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae", + "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae", "shasum": "" }, "require": { @@ -565,24 +562,20 @@ "phonenumber", "validation" ], - "support": { - "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", - "source": "https://github.com/giggsey/libphonenumber-for-php" - }, - "time": "2023-10-11T07:12:56+00:00" + "time": "2023-11-13T09:34:15+00:00" }, { "name": "giggsey/locale", - "version": "2.4", + "version": "2.5", "source": { "type": "git", "url": "https://github.com/giggsey/Locale.git", - "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb" + "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/Locale/zipball/a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", - "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", + "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239", + "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239", "shasum": "" }, "require": { @@ -619,11 +612,7 @@ } ], "description": "Locale functions required by libphonenumber-for-php", - "support": { - "issues": "https://github.com/giggsey/Locale/issues", - "source": "https://github.com/giggsey/Locale/tree/2.4" - }, - "time": "2023-04-13T07:40:58+00:00" + "time": "2023-11-01T17:19:48+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1506,16 +1495,16 @@ }, { "name": "php-http/curl-client", - "version": "2.3.0", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/php-http/curl-client.git", - "reference": "f7352c0796549949900d28fe991e19c90572386a" + "reference": "085570be588f7cbdc4601e78886eea5b7051ad71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/curl-client/zipball/f7352c0796549949900d28fe991e19c90572386a", - "reference": "f7352c0796549949900d28fe991e19c90572386a", + "url": "https://api.github.com/repos/php-http/curl-client/zipball/085570be588f7cbdc4601e78886eea5b7051ad71", + "reference": "085570be588f7cbdc4601e78886eea5b7051ad71", "shasum": "" }, "require": { @@ -1526,7 +1515,7 @@ "php-http/message": "^1.2", "psr/http-client": "^1.0", "psr/http-factory-implementation": "^1.0", - "symfony/options-resolver": "^3.4 || ^4.0 || ^5.0 || ^6.0" + "symfony/options-resolver": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "provide": { "php-http/async-client-implementation": "1.0", @@ -1537,6 +1526,7 @@ "guzzlehttp/psr7": "^1.0", "laminas/laminas-diactoros": "^2.0", "php-http/client-integration-tests": "^3.0", + "php-http/message-factory": "^1.1", "phpunit/phpunit": "^7.5 || ^9.4" }, "type": "library", @@ -1562,11 +1552,7 @@ "http", "psr-18" ], - "support": { - "issues": "https://github.com/php-http/curl-client/issues", - "source": "https://github.com/php-http/curl-client/tree/2.3.0" - }, - "time": "2023-04-28T14:56:41+00:00" + "time": "2023-11-03T15:32:00+00:00" }, { "name": "php-http/discovery", @@ -1770,16 +1756,16 @@ }, { "name": "php-http/promise", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/php-http/promise.git", - "reference": "ef4905bfb492ff389eb7f12e26925a0f20073050" + "reference": "44a67cb59f708f826f3bec35f22030b3edb90119" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/promise/zipball/ef4905bfb492ff389eb7f12e26925a0f20073050", - "reference": "ef4905bfb492ff389eb7f12e26925a0f20073050", + "url": "https://api.github.com/repos/php-http/promise/zipball/44a67cb59f708f826f3bec35f22030b3edb90119", + "reference": "44a67cb59f708f826f3bec35f22030b3edb90119", "shasum": "" }, "require": { @@ -1814,11 +1800,7 @@ "keywords": [ "promise" ], - "support": { - "issues": "https://github.com/php-http/promise/issues", - "source": "https://github.com/php-http/promise/tree/1.2.0" - }, - "time": "2023-10-24T09:20:26+00:00" + "time": "2023-11-08T12:57:08+00:00" }, { "name": "psr/container", @@ -2680,16 +2662,16 @@ }, { "name": "symfony/intl", - "version": "v5.4.26", + "version": "v5.4.30", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", - "reference": "c26c40b64ecdc056810e294ea67ac5b34182cd69" + "reference": "cd6cce16151ac871071a3495e7a325460b952b5a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/c26c40b64ecdc056810e294ea67ac5b34182cd69", - "reference": "c26c40b64ecdc056810e294ea67ac5b34182cd69", + "url": "https://api.github.com/repos/symfony/intl/zipball/cd6cce16151ac871071a3495e7a325460b952b5a", + "reference": "cd6cce16151ac871071a3495e7a325460b952b5a", "shasum": "" }, "require": { @@ -2748,9 +2730,6 @@ "l10n", "localization" ], - "support": { - "source": "https://github.com/symfony/intl/tree/v5.4.26" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2765,7 +2744,7 @@ "type": "tidelift" } ], - "time": "2023-07-13T09:02:54+00:00" + "time": "2023-10-28T09:19:54+00:00" }, { "name": "symfony/options-resolver", @@ -2918,6 +2897,90 @@ ], "time": "2023-01-26T09:26:14+00:00" }, + { + "name": "symfony/polyfill-intl-icu", + "version": "v1.28.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-icu.git", + "reference": "e46b4da57951a16053cd751f63f4a24292788157" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157", + "reference": "e46b4da57951a16053cd751f63f4a24292788157", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance and support of other locales than \"en\"" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Icu\\": "" + }, + "classmap": [ + "Resources/stubs" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's ICU-related data and classes", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "icu", + "intl", + "polyfill", + "portable", + "shim" + ], + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-03-21T17:27:24+00:00" + }, { "name": "symfony/polyfill-mbstring", "version": "v1.28.0", @@ -3165,16 +3228,16 @@ }, { "name": "symfony/translation", - "version": "v5.4.24", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "de237e59c5833422342be67402d487fbf50334ff" + "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/de237e59c5833422342be67402d487fbf50334ff", - "reference": "de237e59c5833422342be67402d487fbf50334ff", + "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f", + "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f", "shasum": "" }, "require": { @@ -3241,9 +3304,6 @@ ], "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/translation/tree/v5.4.24" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3258,7 +3318,7 @@ "type": "tidelift" } ], - "time": "2023-05-19T12:34:17+00:00" + "time": "2023-11-03T16:16:43+00:00" }, { "name": "symfony/translation-contracts", @@ -3340,16 +3400,16 @@ }, { "name": "symfony/twig-bridge", - "version": "v5.4.29", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", - "reference": "8e94856da373b63e7ba69e51a6c4f834d991cd58" + "reference": "fc6ee0a3b672ea12ca1f26592d257bfc7f4ee942" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/8e94856da373b63e7ba69e51a6c4f834d991cd58", - "reference": "8e94856da373b63e7ba69e51a6c4f834d991cd58", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/fc6ee0a3b672ea12ca1f26592d257bfc7f4ee942", + "reference": "fc6ee0a3b672ea12ca1f26592d257bfc7f4ee942", "shasum": "" }, "require": { @@ -3440,9 +3500,6 @@ ], "description": "Provides integration for Twig with various Symfony components", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/twig-bridge/tree/v5.4.29" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -3457,7 +3514,7 @@ "type": "tidelift" } ], - "time": "2023-09-06T21:54:06+00:00" + "time": "2023-11-09T21:19:08+00:00" }, { "name": "tracy/tracy", @@ -3535,25 +3592,25 @@ }, { "name": "twig/intl-extra", - "version": "v3.7.1", + "version": "v3.8.0", "source": { "type": "git", "url": "https://github.com/twigphp/intl-extra.git", - "reference": "4f4fe572f635534649cc069e1dafe4a8ad63774d" + "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/4f4fe572f635534649cc069e1dafe4a8ad63774d", - "reference": "4f4fe572f635534649cc069e1dafe4a8ad63774d", + "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/7b3db67c700735f473a265a97e1adaeba3e6ca0c", + "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/intl": "^5.4|^6.0", - "twig/twig": "^2.7|^3.0" + "php": ">=7.2.5", + "symfony/intl": "^5.4|^6.0|^7.0", + "twig/twig": "^3.0" }, "require-dev": { - "symfony/phpunit-bridge": "^5.4|^6.3" + "symfony/phpunit-bridge": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -3582,9 +3639,6 @@ "intl", "twig" ], - "support": { - "source": "https://github.com/twigphp/intl-extra/tree/v3.7.1" - }, "funding": [ { "url": "https://github.com/fabpot", @@ -3595,30 +3649,31 @@ "type": "tidelift" } ], - "time": "2023-07-29T15:34:56+00:00" + "time": "2023-11-21T17:27:48+00:00" }, { "name": "twig/twig", - "version": "v3.7.1", + "version": "v3.8.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "a0ce373a0ca3bf6c64b9e3e2124aca502ba39554" + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/a0ce373a0ca3bf6c64b9e3e2124aca502ba39554", - "reference": "a0ce373a0ca3bf6c64b9e3e2124aca502ba39554", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.22" }, "require-dev": { "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.3" + "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" }, "type": "library", "autoload": { @@ -3652,10 +3707,6 @@ "keywords": [ "templating" ], - "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.7.1" - }, "funding": [ { "url": "https://github.com/fabpot", @@ -3666,7 +3717,7 @@ "type": "tidelift" } ], - "time": "2023-08-28T11:09:02+00:00" + "time": "2023-11-21T18:54:41+00:00" }, { "name": "zendframework/zend-diactoros", @@ -3788,10 +3839,6 @@ "regex", "regular expression" ], - "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/2.1.1" - }, "funding": [ { "url": "https://packagist.com", @@ -3853,11 +3900,6 @@ "Xdebug", "performance" ], - "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" - }, "funding": [ { "url": "https://packagist.com", @@ -3924,10 +3966,6 @@ "constructor", "instantiate" ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.5.0" - }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -3986,10 +4024,6 @@ } ], "description": "PHPUnit assertions for JSON documents", - "support": { - "issues": "https://github.com/martin-helmich/phpunit-json-assert/issues", - "source": "https://github.com/martin-helmich/phpunit-json-assert/tree/v3.4.3" - }, "funding": [ { "url": "https://donate.helmich.me", @@ -4045,10 +4079,6 @@ } ], "description": "PHPUnit assertions for testing PSR7-compliant applications", - "support": { - "issues": "https://github.com/martin-helmich/phpunit-psr7-assert/issues", - "source": "https://github.com/martin-helmich/phpunit-psr7-assert/tree/v4.3.0" - }, "funding": [ { "url": "https://donate.helmich.me", @@ -4125,10 +4155,6 @@ "json", "schema" ], - "support": { - "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" - }, "time": "2023-09-26T02:20:38+00:00" }, { @@ -4178,10 +4204,6 @@ "object", "object graph" ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" - }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", @@ -4240,10 +4262,6 @@ "parser", "php" ], - "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" - }, "time": "2023-08-13T19:53:39+00:00" }, { @@ -4297,10 +4315,6 @@ "dev", "pdepend" ], - "support": { - "issues": "https://github.com/pdepend/pdepend/issues", - "source": "https://github.com/pdepend/pdepend/tree/2.15.1" - }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend", @@ -4363,10 +4377,6 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" - }, "time": "2021-07-20T11:28:43+00:00" }, { @@ -4414,10 +4424,6 @@ } ], "description": "Library for handling version information and constraints", - "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" - }, "time": "2022-02-21T01:04:05+00:00" }, { @@ -4467,10 +4473,6 @@ "reflection", "static analysis" ], - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" - }, "time": "2020-06-27T09:03:43+00:00" }, { @@ -4524,10 +4526,6 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" - }, "time": "2021-10-19T17:43:47+00:00" }, { @@ -4574,10 +4572,6 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1" - }, "time": "2022-03-15T21:29:03+00:00" }, { @@ -4651,11 +4645,6 @@ "phpmd", "pmd" ], - "support": { - "irc": "irc://irc.freenode.org/phpmd", - "issues": "https://github.com/phpmd/phpmd/issues", - "source": "https://github.com/phpmd/phpmd/tree/2.14.1" - }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd", @@ -4726,10 +4715,6 @@ "spy", "stub" ], - "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.17.0" - }, "time": "2023-02-02T15:41:36+00:00" }, { @@ -4778,10 +4763,6 @@ "phpunit", "prophecy" ], - "support": { - "issues": "https://github.com/phpspec/prophecy-phpunit/issues", - "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.2" - }, "time": "2023-04-18T11:58:05+00:00" }, { @@ -4849,11 +4830,6 @@ "testing", "xunit" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4910,10 +4886,6 @@ "filesystem", "iterator" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4973,10 +4945,6 @@ "keywords": [ "process" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5032,10 +5000,6 @@ "keywords": [ "template" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5091,10 +5055,6 @@ "keywords": [ "timer" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5185,11 +5145,6 @@ "testing", "xunit" ], - "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13" - }, "funding": [ { "url": "https://phpunit.de/sponsors.html", @@ -5250,10 +5205,6 @@ ], "description": "Library for parsing CLI options", "homepage": "https://github.com/sebastianbergmann/cli-parser", - "support": { - "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5306,10 +5257,6 @@ ], "description": "Collection of value objects that represent the PHP code units", "homepage": "https://github.com/sebastianbergmann/code-unit", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5361,10 +5308,6 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5435,10 +5378,6 @@ "compare", "equality" ], - "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5492,10 +5431,6 @@ ], "description": "Library for calculating the complexity of PHP code units", "homepage": "https://github.com/sebastianbergmann/complexity", - "support": { - "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5558,10 +5493,6 @@ "unidiff", "unified diff" ], - "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5621,10 +5552,6 @@ "environment", "hhvm" ], - "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5698,10 +5625,6 @@ "export", "exporter" ], - "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5762,10 +5685,6 @@ "keywords": [ "global state" ], - "support": { - "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5819,10 +5738,6 @@ ], "description": "Library for counting the lines of code in PHP source code", "homepage": "https://github.com/sebastianbergmann/lines-of-code", - "support": { - "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5876,10 +5791,6 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "support": { - "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5931,10 +5842,6 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "support": { - "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5994,10 +5901,6 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "https://github.com/sebastianbergmann/recursion-context", - "support": { - "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6049,10 +5952,6 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6105,10 +6004,6 @@ ], "description": "Collection of value objects that represent the types of the PHP type system", "homepage": "https://github.com/sebastianbergmann/type", - "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6158,10 +6053,6 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6221,12 +6112,6 @@ } ], "description": "JSONPath implementation for parsing, searching and flattening arrays", - "support": { - "email": "hello@1-2.dev", - "forum": "https://github.com/SoftCreatR/JSONPath/discussions", - "issues": "https://github.com/SoftCreatR/JSONPath/issues", - "source": "https://github.com/SoftCreatR/JSONPath" - }, "funding": [ { "url": "https://ecologi.com/softcreatr?r=61212ab3fc69b8eb8a2014f4", @@ -6289,25 +6174,20 @@ "standards", "static analysis" ], - "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" - }, "time": "2023-02-22T23:07:41+00:00" }, { "name": "symfony/config", - "version": "v5.4.26", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "8109892f27beed9252bd1f1c1880aeb4ad842650" + "reference": "dd5ea39de228813aba0c23c3a4153da2a4cf3cd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8109892f27beed9252bd1f1c1880aeb4ad842650", - "reference": "8109892f27beed9252bd1f1c1880aeb4ad842650", + "url": "https://api.github.com/repos/symfony/config/zipball/dd5ea39de228813aba0c23c3a4153da2a4cf3cd9", + "reference": "dd5ea39de228813aba0c23c3a4153da2a4cf3cd9", "shasum": "" }, "require": { @@ -6356,9 +6236,6 @@ ], "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/config/tree/v5.4.26" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6373,20 +6250,20 @@ "type": "tidelift" } ], - "time": "2023-07-19T20:21:11+00:00" + "time": "2023-11-09T08:22:43+00:00" }, { "name": "symfony/dependency-injection", - "version": "v5.4.29", + "version": "v5.4.31", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "338638ed8c9d5c7fcb136a73f5c7043465ae2f05" + "reference": "eb1bcafa54e00ed218e1b733b8b6ad1c9ff83d20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/338638ed8c9d5c7fcb136a73f5c7043465ae2f05", - "reference": "338638ed8c9d5c7fcb136a73f5c7043465ae2f05", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/eb1bcafa54e00ed218e1b733b8b6ad1c9ff83d20", + "reference": "eb1bcafa54e00ed218e1b733b8b6ad1c9ff83d20", "shasum": "" }, "require": { @@ -6445,9 +6322,6 @@ ], "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v5.4.29" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6462,7 +6336,7 @@ "type": "tidelift" } ], - "time": "2023-09-20T06:23:43+00:00" + "time": "2023-10-31T07:58:33+00:00" }, { "name": "symfony/filesystem", @@ -6509,9 +6383,6 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/filesystem/tree/v5.4.25" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6588,9 +6459,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6671,9 +6539,6 @@ "interoperability", "standards" ], - "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6692,16 +6557,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.1", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", "shasum": "" }, "require": { @@ -6728,17 +6593,13 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "support": { - "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" - }, "funding": [ { "url": "https://github.com/theseer", "type": "github" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2023-11-20T00:12:19+00:00" }, { "name": "webmozart/assert", @@ -6792,10 +6653,6 @@ "check", "validate" ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" - }, "time": "2022-06-03T18:03:27+00:00" } ], @@ -6815,5 +6672,5 @@ "platform-overrides": { "php": "7.3" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "1.1.0" } diff --git a/zmsadmin/src/Zmsadmin/Helper/ClusterHelper.php b/zmsadmin/src/Zmsadmin/Helper/ClusterHelper.php index f60b69855..f775bf9f3 100644 --- a/zmsadmin/src/Zmsadmin/Helper/ClusterHelper.php +++ b/zmsadmin/src/Zmsadmin/Helper/ClusterHelper.php @@ -54,9 +54,14 @@ public static function getNextProcess($excludedIds) ->withoutStatus(['fake','missed']); $excludedIds = (1 < $queueList->count()) ? $excludedIds : ''; + error_log($excludedIds); + error_log("Count: " . $queueList->count()); + error_log(json_encode($queueList)); + if (1 > $queueList->count()) { return new \BO\Zmsentities\Process(); } + if (static::isClusterEnabled()) { $nextProcess = \App::$http->readGetResult( '/cluster/'. static::$cluster['id'] .'/queue/next/', @@ -72,7 +77,6 @@ public static function getNextProcess($excludedIds) )->getEntity(); } - return ($nextProcess) ? $nextProcess : new \BO\Zmsentities\Process(); } diff --git a/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php b/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php index a3c583d71..2ae69bb92 100644 --- a/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php +++ b/zmsadmin/src/Zmsadmin/Helper/GraphDefaults.php @@ -254,6 +254,7 @@ public static function getProcess() status createTimestamp updateTimestamp + queuedTime reminderTimestamp appointments{ date diff --git a/zmsadmin/src/Zmsadmin/WorkstationProcessCalled.php b/zmsadmin/src/Zmsadmin/WorkstationProcessCalled.php index fb5642642..3bc9b7d10 100644 --- a/zmsadmin/src/Zmsadmin/WorkstationProcessCalled.php +++ b/zmsadmin/src/Zmsadmin/WorkstationProcessCalled.php @@ -40,6 +40,8 @@ public function readResponse( 'has_called_pickup' : 'has_called_process'; } + + //print($workstation->process->getStatus()); if ($workstation->process->getStatus() == 'processing') { return \BO\Slim\Render::redirect('workstationProcessProcessing', [], ['error' => $error]); diff --git a/zmsadmin/src/Zmsadmin/WorkstationProcessCancelNext.php b/zmsadmin/src/Zmsadmin/WorkstationProcessCancelNext.php index 63e9f0cbd..9067ffa2a 100644 --- a/zmsadmin/src/Zmsadmin/WorkstationProcessCancelNext.php +++ b/zmsadmin/src/Zmsadmin/WorkstationProcessCancelNext.php @@ -28,6 +28,13 @@ public function readResponse( if ($workstation->process['id']) { \App::$http->readDeleteResult('/workstation/process/')->getEntity(); } + /* + error_log($workstation->process->getStatus()); + //print_r(json_encode($workstation->process)); + error_log($workstation->process->queuedTime); + error_log("Cancel Next"); + */ + return \BO\Slim\Render::redirect( 'workstationProcessNext', array(), diff --git a/zmsadmin/src/Zmsadmin/WorkstationProcessNext.php b/zmsadmin/src/Zmsadmin/WorkstationProcessNext.php index 7786e570c..ea04a0daf 100644 --- a/zmsadmin/src/Zmsadmin/WorkstationProcessNext.php +++ b/zmsadmin/src/Zmsadmin/WorkstationProcessNext.php @@ -6,6 +6,8 @@ namespace BO\Zmsadmin; +use \BO\Zmsentities\Collection\ProcessList; + class WorkstationProcessNext extends BaseController { /** @@ -24,8 +26,100 @@ public function readResponse( $validator = $request->getAttribute('validator'); $excludedIds = $validator->getParameter('exclude')->isString()->getValue(); $excludedIds = ($excludedIds) ? $excludedIds : ''; + + function timeToUnix($timeString) + { + list($hours, $minutes, $seconds) = explode(':', $timeString); + return mktime($hours, $minutes, $seconds); + } + + $selectedDateTime = \App::$now; + $selectedDateTime = ($selectedDateTime < \App::$now) ? \App::$now : $selectedDateTime; + + $workstationRequest = new \BO\Zmsclient\WorkstationRequests(\App::$http, $workstation); + + $processList = $workstationRequest->readProcessListByDate( + $selectedDateTime, + Helper\GraphDefaults::getProcess() + ); + + +$filteredProcessList = new ProcessList; + +foreach ($processList as $process) { + if ($process->status === "queued") { + $queuedTimeUnix = isset($process->queuedTime) ? timeToUnix($process->queuedTime) : null; + $currentTimeUnix = time(); + + // Check if callCount is 0 or queuedTime is more than five minutes ago + if(!isset($process->queuedTime)){ + $filteredProcessList->addEntity(clone $process); + } else if (isset($queuedTimeUnix) && !($process->queue->callCount > 0 && ($currentTimeUnix - $queuedTimeUnix) < 300)) { + // Add the process to the filtered list + $filteredProcessList->addEntity(clone $process); + } else { + + if (!empty($excludedIds)) { + // Add a comma before appending if $excludedIds is not empty + $excludedIds .= ","; + } + + $excludedIds .= $process->queue->number; + } + } +} + + + + $process = isset($filteredProcessList[0]) ? $filteredProcessList[0] : null; + + + $process = (new Helper\ClusterHelper($workstation))->getNextProcess($excludedIds); + + + $queueList = $processList->toQueueList(\App::$now); + $queueList = $queueList->withStatus(['queued']); + + + + + + /* + do { + //error_log("Huh"); + $process = (new Helper\ClusterHelper($workstation))->getNextProcess($excludedIds); + + // Log the process details + //error_log(json_encode($process->queue->number)); + error_log($excludedIds); + + + + if ($process->queue->number !== 0) { + $queuedTimeUnix = timeToUnix($process->queuedTime); + $currentTimeUnix = time(); + } + + + // Check if callCount is greater than 0 and queued time is less than five minutes ago + + + $fetchAgain = $process->queue->callCount > 0 && ($currentTimeUnix - $queuedTimeUnix) < 300; + + //$fetchAgain = false; + + if ($fetchAgain) { + if (!empty($excludedIds)) { + $excludedIds .= ","; + } + $excludedIds .= $process->queue->number; + } + } while ($fetchAgain); + */ + + if (! $process->hasId() || $process->getFirstAppointment()->date > \App::$now->getTimestamp()) { return \BO\Slim\Render::withHtml( $response, diff --git a/zmsadmin/templates/block/process/called.twig b/zmsadmin/templates/block/process/called.twig index ead59d68b..0a6d870a1 100644 --- a/zmsadmin/templates/block/process/called.twig +++ b/zmsadmin/templates/block/process/called.twig @@ -4,6 +4,7 @@ {% endblock %} {% block board_body %} {% if error != "has_called_pickup" %} +

{{ workstation.process.status }}

{% trans %}Zeit seit Kundenaufruf{% endtrans %}:

diff --git a/zmsadmin/templates/block/process/precall.twig b/zmsadmin/templates/block/process/precall.twig index b008e610b..1dfd2cb84 100644 --- a/zmsadmin/templates/block/process/precall.twig +++ b/zmsadmin/templates/block/process/precall.twig @@ -6,6 +6,7 @@ {% block board_body %} {% if error != "has_called_pickup" %} +

{{ process.status }}

Der nƤchste Kunde ist:

{% if process.clients|first.familyName %} diff --git a/zmsadmin/templates/block/queue/table.twig b/zmsadmin/templates/block/queue/table.twig index 1065e2318..ee9fc4d6b 100644 --- a/zmsadmin/templates/block/queue/table.twig +++ b/zmsadmin/templates/block/queue/table.twig @@ -124,22 +124,39 @@ {{ item.queue.number }} {% endif %} - - {% if item.queue.status == "reserved" %} - Reservierung - {% else %} - {% set callCount = "" %} - {% set familyName = item.clients|first.familyName|decodeEntities|raw %} - {% if item.queue.callCount > 0 %} - {% set callCount = "(%d)"|format(item.queue.callCount) %} - {% endif %} - {% if source != 'counter' and (workstation.scope.id == item.scope.id or allowClusterWideCall) and isToday %} - {{ familyName }} {{ callCount|raw }} - {% else %} - {{ familyName }} {{ callCount|raw }} - {% endif %} - {% endif %} - + + +{{ item.status }} +{{ item.queuedTime }} + {% if item.queue.status == "reserved" %} + Reservierung + {% else %} + {% set familyName = item.clients|first.familyName|decodeEntities|raw %} + {% set currentTime = "now"|date('U') %} + {% set queuedTime = item.queuedTime|date('U') %} + {% set fiveMinutes = 300 %} + {% set timeDiff = currentTime - queuedTime %} + {% set callCount = "" %} + + {% if item.queue.callCount > 0 %} + {% set callCount = "(%d)"|format(item.queue.callCount) %} + {% endif %} + + {% if timeDiff < fiveMinutes and item.queue.callCount > 0 %} + {% set remainingTime = fiveMinutes - timeDiff %} + {% set remainingMinutes = (remainingTime // 60) %} + {% set remainingSeconds = remainingTime % 60 %} + {% set formattedTime = '%02d:%02d'|format(remainingMinutes, remainingSeconds) %} + {{ familyName }} {{ callCount|raw }} kann in {{ formattedTime }} Minuten wieder aufgerufen werden. + {% elseif source != 'counter' and (workstation.scope.id == item.scope.id or allowClusterWideCall) and isToday %} + {{ familyName }} {{ callCount|raw }} + {% else %} + {{ familyName }} {{ callCount|raw }} + {% endif %} + {% endif %} + + + {% if item.clients|first.telephone and department.preferences.notifications.enabled %} {{ item.clients|first.telephone }} @@ -242,7 +259,8 @@ {{ item.queue.arrivalTime|date("H:i") }} {% endif %} - {% if item.clients|first.familyName %}{{ item.clients|first.familyName }}{% else %}Wartenummer {{ item.queue.number }} {% endif %} ({{ item.queue.number }}) + {{ item.status }} + {% if item.clients|first.familyName %}{{ item.clients|first.familyName }}{% else %}Wartenummer {{ item.queue.number }} {% endif %} ({{ item.queue.number }}) {{ item.requests|first.name }} {% if item.requests|length > 1 %} @@ -262,24 +280,9 @@ Dieser Kunde ist nicht erschienen {{ item.customTextfield|decodeEntities|raw }} - {% set currentTime = "now"|date('U') %} - {% set updateTimestamp = item.updateTimestamp|date('U') %} - {% set fiveMinutes = 300 %} - {% set timeDiff = currentTime - updateTimestamp %} - {% set remainingTime = fiveMinutes - timeDiff %} - - {% if timeDiff > fiveMinutes %} wieder aufnehmen - {% else %} - {% set remainingMinutes = (remainingTime // 60) %} - {% set remainingSeconds = remainingTime % 60 %} - {% set formattedTime = '%02d:%02d'|format(remainingMinutes, remainingSeconds) %} - -

Kann in {{ formattedTime }} Minuten wieder aufgerufen werden. Zuletzt geƤnderte Zeit: {{ item.updateTimestamp }}

- - {% endif %} {% endfor %} diff --git a/zmsapi/src/Zmsapi/ProcessNextByScope.php b/zmsapi/src/Zmsapi/ProcessNextByScope.php index c8d6e8148..a4426f277 100644 --- a/zmsapi/src/Zmsapi/ProcessNextByScope.php +++ b/zmsapi/src/Zmsapi/ProcessNextByScope.php @@ -9,6 +9,8 @@ use \BO\Slim\Render; use \BO\Mellon\Validator; use \BO\Zmsdb\Scope as Query; +use \BO\Zmsdb\Process; +use \BO\Zmsdb\Workstation; use \BO\Zmsentities\Helper\DateTime; class ProcessNextByScope extends BaseController @@ -22,20 +24,51 @@ public function readResponse( \Psr\Http\Message\ResponseInterface $response, array $args ) { + + (new Helper\User($request))->checkRights(); $query = new Query(); $selectedDate = Validator::param('date')->isString()->getValue(); $exclude = Validator::param('exclude')->isString()->getValue(); + + + $dateTime = ($selectedDate) ? new DateTime($selectedDate) : \App::$now; $scope = $query->readEntity($args['id']); if (! $scope) { throw new Exception\Scope\ScopeNotFound(); } $queueList = $query->readQueueList($scope->id, $dateTime, 1); - + $message = Response\Message::create($request); $message->data = static::getProcess($queueList, $dateTime, $exclude); + if($message->data->id >= 1000 || $message->data->id !== 0){ + + $workstation = (new Helper\User($request))->checkRights(); + $process = new \BO\Zmsentities\Process($message->data); + + $process->testValid(); + + $this->testProcessData($process); + $this->testProcessInWorkstation($process, $workstation); + + \BO\Zmsdb\Connection\Select::getWriteConnection(); + $query = new \BO\Zmsdb\ProcessStatusArchived; + + //error_log(json_encode($process)); + + //error_log($process->queuedTime); + + if ('queued' == $process['status']) { + error_log($process->queuedTime); + + $process = $query->updateEntity($process, \App::$now); + (new Workstation)->writeRemovedProcess($workstation); + } + + } + $response = Render::withLastModified($response, time(), '0'); $response = Render::withJson($response, $message, 200); return $response; @@ -46,4 +79,30 @@ public static function getProcess($queueList, $dateTime, $exclude = null) $process = $queueList->getNextProcess($dateTime, $exclude); return ($process) ? $process : new \BO\Zmsentities\Process(); } + + protected function testProcessInWorkstation($process, $workstation) + { + $department = (new \BO\Zmsdb\Department)->readByScopeId($workstation->scope['id'], 1); + $workstation->process = $process; + $workstation->testMatchingProcessScope($department->getScopeList()); + } + + protected function testProcessData($process) + { + $hasValidId = ( + $process->hasId() && + ('queued' == $process['status'] || 'called' == $process['status']) + ); + if (! $hasValidId) { + throw new Exception\Process\ProcessInvalid(); + } + + $processCheck = (new Process())->readEntity($process->id, new \BO\Zmsdb\Helper\NoAuth()); + + if (null === $processCheck || false === $processCheck->hasId()) { + throw new Exception\Process\ProcessNotFound(); + } elseif ($processCheck->authKey != $process->authKey) { + throw new Exception\Process\AuthKeyMatchFailed(); + } + } } diff --git a/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql b/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql index fb6299037..b7af05f47 100644 --- a/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql +++ b/zmsdb/migrations/1700484515-add-recall-time-for-process-queue.sql @@ -1,5 +1,2 @@ ALTER TABLE buerger -ADD COLUMN `recall_time` time DEFAULT NULL; - -ALTER TABLE standort -ADD COLUMN `recall_time_limit` INT(5) NOT NULL DEFAULT 5; \ No newline at end of file +ADD COLUMN `queuedTime` time DEFAULT NULL; \ No newline at end of file diff --git a/zmsdb/src/Zmsdb/Query/Process.php b/zmsdb/src/Zmsdb/Query/Process.php index 692b8373a..3dd4f8d59 100644 --- a/zmsdb/src/Zmsdb/Query/Process.php +++ b/zmsdb/src/Zmsdb/Query/Process.php @@ -206,6 +206,7 @@ public function getEntityMapping() 'updateTimestamp' => 'process.updateTimestamp', 'lastChange' => 'process.updateTimestamp', 'showUpTime' => 'process.showUpTime', + 'queuedTime' => 'process.queuedTime', 'finishTime' => 'process.finishTime', 'status' => $status_expression, 'queue__status' => $status_expression, @@ -795,13 +796,12 @@ protected function addProcessingTimeData($process, \DateTimeInterface $dateTime) { $data = array(); - //print($process->status); - + if ($process->status == 'processing') { $data['showUpTime'] = $dateTime->format('Y-m-d H:i:s'); - } - - if ($process->status == 'finished') { + } else if ($process->status == 'called') { + $data['queuedTime'] = $dateTime->format('Y-m-d H:i:s'); + } else if ($process->status == 'finished') { $data['finishTime'] = $dateTime->format('Y-m-d H:i:s'); } diff --git a/zmsentities/schema/dereferenced/day.json b/zmsentities/schema/dereferenced/day.json index 8e9111742..37cd88294 100644 --- a/zmsentities/schema/dereferenced/day.json +++ b/zmsentities/schema/dereferenced/day.json @@ -291,6 +291,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/schema/dereferenced/mail.json b/zmsentities/schema/dereferenced/mail.json index 035f61429..388230e87 100644 --- a/zmsentities/schema/dereferenced/mail.json +++ b/zmsentities/schema/dereferenced/mail.json @@ -401,6 +401,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/schema/dereferenced/notification.json b/zmsentities/schema/dereferenced/notification.json index c5d7f21c0..aadcf1d4d 100644 --- a/zmsentities/schema/dereferenced/notification.json +++ b/zmsentities/schema/dereferenced/notification.json @@ -304,6 +304,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/schema/dereferenced/process.json b/zmsentities/schema/dereferenced/process.json index 02e8dd0e9..e84fea77b 100644 --- a/zmsentities/schema/dereferenced/process.json +++ b/zmsentities/schema/dereferenced/process.json @@ -230,6 +230,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/schema/dereferenced/workstation.json b/zmsentities/schema/dereferenced/workstation.json index 0a65aaaf0..cfb13575b 100644 --- a/zmsentities/schema/dereferenced/workstation.json +++ b/zmsentities/schema/dereferenced/workstation.json @@ -164,6 +164,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/schema/process.json b/zmsentities/schema/process.json index 22bce2771..9026acb47 100644 --- a/zmsentities/schema/process.json +++ b/zmsentities/schema/process.json @@ -313,6 +313,10 @@ "type": "string", "description": "unix timestamp of showing up after call" }, + "queuedTime": { + "type": "string", + "description": "unix timestamp of after a call is entered or re-entered into the queue" + }, "finishTime": { "type": "string", "description": "unix timestamp og time when process has been finished" diff --git a/zmsentities/src/Zmsentities/Collection/QueueList.php b/zmsentities/src/Zmsentities/Collection/QueueList.php index a3dfa585f..eca263b2c 100644 --- a/zmsentities/src/Zmsentities/Collection/QueueList.php +++ b/zmsentities/src/Zmsentities/Collection/QueueList.php @@ -216,12 +216,16 @@ public function getNextProcess(\DateTimeInterface $dateTime, $exclude = null) $excludeNumbers = explode(',', $exclude); $queueList = clone $this; // sort by waiting time to get realistic next process + $queueList = $queueList ->withStatus(['confirmed', 'queued']) ->withEstimatedWaitingTime(10, 1, $dateTime, false) ->getArrayCopy() ; + + $next = array_shift($queueList); + $currentTime = $dateTime->getTimestamp(); while ($next) { if (! in_array($next->number, $excludeNumbers) && diff --git a/zmsentities/src/Zmsentities/Process.php b/zmsentities/src/Zmsentities/Process.php index 1f3c48efa..94bf8577b 100644 --- a/zmsentities/src/Zmsentities/Process.php +++ b/zmsentities/src/Zmsentities/Process.php @@ -323,6 +323,11 @@ public function getShowUpTime() return $this->toProperty()->showUpTime->get(); } + public function getQueuedTime() + { + return $this->toProperty()->queuedTime->get(); + } + public function getFinishTime() { return $this->toProperty()->finishTime->get(); From b774077b69bafc5cc11f34b1b04dc6b1f2783cb5 Mon Sep 17 00:00:00 2001 From: Igor Manjencic Date: Thu, 23 Nov 2023 09:25:22 +0100 Subject: [PATCH 05/31] feat(ZMS-1629): create default call display --- zmsadmin/js/block/calldisplay/config/index.js | 5 +- zmsadmin/public/_js/index.js | 348 +--- zmsadmin/public/_js/reactcomponents.js | 2 +- zmscalldisplay/js/block/analogClock.js | 29 +- .../_css/background_anzeige1.44c0eb4d.png | Bin 0 -> 778 bytes .../_css/background_anzeige1.8e638d08.png | Bin 3748 -> 0 bytes .../_css/background_anzeige1.f1ed1461.png | Bin 4161 -> 0 bytes .../background_anzeige1_1920.461afab7.png | Bin 0 -> 1436 bytes .../background_anzeige1_1920.af25e8eb.png | Bin 8209 -> 0 bytes .../background_anzeige1_1920.bc9eff88.png | Bin 7823 -> 0 bytes ...und_anzeige1_1920_behoerde_80.6bd6e6e7.png | Bin 14982 -> 0 bytes ...und_anzeige1_1920_behoerde_80.aef875ec.png | Bin 7431 -> 0 bytes ...und_anzeige1_1920_behoerde_80.ea86ad30.png | Bin 0 -> 1418 bytes ...ckground_anzeige1_behoerde_80.92ef8db0.png | Bin 0 -> 833 bytes ...ckground_anzeige1_behoerde_80.b753a749.png | Bin 3348 -> 0 bytes ...ckground_anzeige1_behoerde_80.efe68ab8.png | Bin 6982 -> 0 bytes .../background_anzeige1_hoch.049e589c.png | Bin 0 -> 849 bytes .../background_anzeige1_hoch.07a7476e.png | Bin 4099 -> 0 bytes .../background_anzeige1_hoch.a73ccd93.png | Bin 4062 -> 0 bytes ...background_anzeige1_hoch_1920.6f51f255.png | Bin 8464 -> 0 bytes ...background_anzeige1_hoch_1920.7be93f97.png | Bin 0 -> 1411 bytes ...background_anzeige1_hoch_1920.86f30aa9.png | Bin 8246 -> 0 bytes ...nzeige1_hoch_1920_behoerde_80.32f3f136.png | Bin 16105 -> 0 bytes ...nzeige1_hoch_1920_behoerde_80.50058120.png | Bin 8033 -> 0 bytes ...nzeige1_hoch_1920_behoerde_80.6d94fc72.png | Bin 0 -> 1422 bytes ...und_anzeige1_hoch_behoerde_80.34071b8c.png | Bin 0 -> 470 bytes ...und_anzeige1_hoch_behoerde_80.b8f91f5d.png | Bin 4541 -> 0 bytes ...und_anzeige1_hoch_behoerde_80.d15fb8a9.png | Bin 7679 -> 0 bytes zmscalldisplay/public/_js/index.js | 1429 ++++++++++++++++- 29 files changed, 1435 insertions(+), 378 deletions(-) create mode 100644 zmscalldisplay/public/_css/background_anzeige1.44c0eb4d.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1.8e638d08.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1.f1ed1461.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920.461afab7.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920.af25e8eb.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920.bc9eff88.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920_behoerde_80.6bd6e6e7.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920_behoerde_80.aef875ec.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_1920_behoerde_80.ea86ad30.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_behoerde_80.92ef8db0.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_behoerde_80.b753a749.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_behoerde_80.efe68ab8.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch.049e589c.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch.07a7476e.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch.a73ccd93.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920.6f51f255.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920.7be93f97.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920.86f30aa9.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920_behoerde_80.32f3f136.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920_behoerde_80.50058120.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_1920_behoerde_80.6d94fc72.png create mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_behoerde_80.34071b8c.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_behoerde_80.b8f91f5d.png delete mode 100644 zmscalldisplay/public/_css/background_anzeige1_hoch_behoerde_80.d15fb8a9.png diff --git a/zmsadmin/js/block/calldisplay/config/index.js b/zmsadmin/js/block/calldisplay/config/index.js index 3e607db08..c7e3d7d21 100644 --- a/zmsadmin/js/block/calldisplay/config/index.js +++ b/zmsadmin/js/block/calldisplay/config/index.js @@ -321,7 +321,10 @@ class CallDisplayConfigView extends Component { { name: 'Uhrzeit, Anzahl Wartende, Wartezeit, 6-12 Aufrufe |Ā Raum', value: 'clocknrwaitraum' }, { name: '4-8 Aufrufe, nur Zahlen | TĆ¼r', value: 'rawdoor4-8' }, { name: '6-18 Aufrufe |Ā TĆ¼r', value: 'raw18door' }, - { name: '6-18 Aufrufe |Ā Platz', value: 'raw18platz' } + { name: '6-18 Aufrufe |Ā Platz', value: 'raw18platz' }, + { name: '10 Aufrufe | Platz', value: 'default_platz' }, + { name: '10 Aufrufe | TĆ¼r', value: 'default_tuer' }, + { name: '10 Aufrufe | Raum', value: 'default_raum' } ]} value={this.state.template} onChange={onTemplateStatusChange} /> diff --git a/zmsadmin/public/_js/index.js b/zmsadmin/public/_js/index.js index 977ccb8e8..79c0cadc3 100644 --- a/zmsadmin/public/_js/index.js +++ b/zmsadmin/public/_js/index.js @@ -1,350 +1,6 @@ -(()=>{function e(e,t,n,r){Object.defineProperty(e,t,{get:n,set:r,enumerable:!0,configurable:!0})}function t(e){Object.defineProperty(e,"__esModule",{value:!0,configurable:!0})}function n(e){return e&&e.__esModule?e.default:e}var r="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},a={},o={},i=r.parcelRequire58e2;null==i&&((i=function(e){if(e in a)return a[e].exports;if(e in o){var t=o[e];delete o[e];var n={id:e,exports:{}};return a[e]=n,t.call(n.exports,n,n.exports),n.exports}var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}).register=function(e,t){o[e]=t},r.parcelRequire58e2=i),i.register("gpzQW",(function(e,t){e.exports=function(){"use strict";var t,n;function r(){return t.apply(null,arguments)}function a(e){t=e}function o(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function u(e){return void 0===e}function d(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function f(e,t){var n,r=[],a=e.length;for(n=0;n>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}var N=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,A=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,R={},F={};function W(e,t,n,r){var a=r;"string"==typeof r&&(a=function(){return this[r]()}),e&&(F[e]=a),t&&(F[t[0]]=function(){return H(a.apply(this,arguments),t[1],t[2])}),n&&(F[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function I(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function z(e){var t,n,r=e.match(N);for(t=0,n=r.length;t=0&&A.test(e);)e=e.replace(A,r),A.lastIndex=0,n-=1;return e}var B={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function q(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(N).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])}var V="Invalid date";function J(){return this._invalidDate}var G="%d",Q=/\d{1,2}/;function K(e){return this._ordinal.replace("%d",e)}var X={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Z(e,t,n,r){var a=this._relativeTime[n];return x(a)?a(e,t,n,r):a.replace(/%d/i,e)}function ee(e,t){var n=this._relativeTime[e>0?"future":"past"];return x(n)?n(t):n.replace(/%s/i,t)}var te={};function ne(e,t){var n=e.toLowerCase();te[n]=te[n+"s"]=te[t]=e}function re(e){return"string"==typeof e?te[e]||te[e.toLowerCase()]:void 0}function ae(e){var t,n,r={};for(n in e)s(e,n)&&(t=re(n))&&(r[t]=e[n]);return r}var oe={};function ie(e,t){oe[e]=t}function se(e){var t,n=[];for(t in e)s(e,t)&&n.push({unit:t,priority:oe[t]});return n.sort((function(e,t){return e.priority-t.priority})),n}function le(e){return e%4==0&&e%100!=0||e%400==0}function ue(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function de(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=ue(t)),n}function ce(e,t){return function(n){return null!=n?(pe(this,e,n),r.updateOffset(this,t),this):fe(this,e)}}function fe(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&le(e.year())&&1===e.month()&&29===e.date()?(n=de(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Ze(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function he(e){return x(this[e=re(e)])?this[e]():this}function me(e,t){if("object"==typeof e){var n,r=se(e=ae(e)),a=r.length;for(n=0;n68?1900:2e3)};var _t=ce("FullYear",!0);function yt(){return le(this.year())}function gt(e,t,n,r,a,o,i){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,a,o,i),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,a,o,i),s}function vt(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function bt(e,t,n){var r=7+t-n;return-(7+vt(e,0,r).getUTCDay()-t)%7+r-1}function Mt(e,t,n,r,a){var o,i,s=1+7*(t-1)+(7+n-r)%7+bt(e,r,a);return s<=0?i=mt(o=e-1)+s:s>mt(e)?(o=e+1,i=s-mt(e)):(o=e,i=s),{year:o,dayOfYear:i}}function wt(e,t,n){var r,a,o=bt(e.year(),t,n),i=Math.floor((e.dayOfYear()-o-1)/7)+1;return i<1?r=i+kt(a=e.year()-1,t,n):i>kt(e.year(),t,n)?(r=i-kt(e.year(),t,n),a=e.year()+1):(a=e.year(),r=i),{week:r,year:a}}function kt(e,t,n){var r=bt(e,t,n),a=bt(e+1,t,n);return(mt(e)-r+a)/7}function Lt(e){return wt(e,this._week.dow,this._week.doy).week}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),ne("week","w"),ne("isoWeek","W"),ie("week",5),ie("isoWeek",5),je("w",we),je("ww",we,ge),je("W",we),je("WW",we,ge),We(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=de(e)}));var Dt={dow:0,doy:6};function Yt(){return this._week.dow}function Tt(){return this._week.doy}function St(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function xt(e){var t=wt(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Pt(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}function Ct(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Ot(e,t){return e.slice(t,7).concat(e.slice(0,t))}W("d",0,"do","day"),W("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),W("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),W("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),ne("day","d"),ne("weekday","e"),ne("isoWeekday","E"),ie("day",11),ie("weekday",11),ie("isoWeekday",11),je("d",we),je("e",we),je("E",we),je("dd",(function(e,t){return t.weekdaysMinRegex(e)})),je("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),je("dddd",(function(e,t){return t.weekdaysRegex(e)})),We(["dd","ddd","dddd"],(function(e,t,n,r){var a=n._locale.weekdaysParse(e,r,n._strict);null!=a?t.d=a:_(n).invalidWeekday=e})),We(["d","e","E"],(function(e,t,n,r){t[r]=de(e)}));var Et="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),jt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ht="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Nt=Ee,At=Ee,Rt=Ee;function Ft(e,t){var n=o(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ot(n,this._week.dow):e?n[e.day()]:n}function Wt(e){return!0===e?Ot(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function It(e){return!0===e?Ot(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function zt(e,t,n){var r,a,o,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=h([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(a=ze.call(this._weekdaysParse,i))?a:null:"ddd"===t?-1!==(a=ze.call(this._shortWeekdaysParse,i))?a:null:-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:"dddd"===t?-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._shortWeekdaysParse,i))||-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:"ddd"===t?-1!==(a=ze.call(this._shortWeekdaysParse,i))||-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:-1!==(a=ze.call(this._minWeekdaysParse,i))||-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._shortWeekdaysParse,i))?a:null}function Ut(e,t,n){var r,a,o;if(this._weekdaysParseExact)return zt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=h([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}}function $t(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Pt(e,this.localeData()),this.add(e-t,"d")):t}function Bt(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function qt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Ct(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Vt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Nt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Jt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=At),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Gt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Rt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qt(){function e(e,t){return t.length-e.length}var t,n,r,a,o,i=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),r=Ae(this.weekdaysMin(n,"")),a=Ae(this.weekdaysShort(n,"")),o=Ae(this.weekdays(n,"")),i.push(r),s.push(a),l.push(o),u.push(r),u.push(a),u.push(o);i.sort(e),s.sort(e),l.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+i.join("|")+")","i")}function Kt(){return this.hours()%12||12}function Xt(){return this.hours()||24}function Zt(e,t){W(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function en(e,t){return t._meridiemParse}function tn(e){return"p"===(e+"").toLowerCase().charAt(0)}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Kt),W("k",["kk",2],0,Xt),W("hmm",0,0,(function(){return""+Kt.apply(this)+H(this.minutes(),2)})),W("hmmss",0,0,(function(){return""+Kt.apply(this)+H(this.minutes(),2)+H(this.seconds(),2)})),W("Hmm",0,0,(function(){return""+this.hours()+H(this.minutes(),2)})),W("Hmmss",0,0,(function(){return""+this.hours()+H(this.minutes(),2)+H(this.seconds(),2)})),Zt("a",!0),Zt("A",!1),ne("hour","h"),ie("hour",13),je("a",en),je("A",en),je("H",we),je("h",we),je("k",we),je("HH",we,ge),je("hh",we,ge),je("kk",we,ge),je("hmm",ke),je("hmmss",Le),je("Hmm",ke),je("Hmmss",Le),Fe(["H","HH"],qe),Fe(["k","kk"],(function(e,t,n){var r=de(e);t[qe]=24===r?0:r})),Fe(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),Fe(["h","hh"],(function(e,t,n){t[qe]=de(e),_(n).bigHour=!0})),Fe("hmm",(function(e,t,n){var r=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r)),_(n).bigHour=!0})),Fe("hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r,2)),t[Je]=de(e.substr(a)),_(n).bigHour=!0})),Fe("Hmm",(function(e,t,n){var r=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r))})),Fe("Hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r,2)),t[Je]=de(e.substr(a))}));var nn=/[ap]\.?m?\.?/i,rn=ce("Hours",!0);function an(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var on,sn={calendar:E,longDateFormat:B,invalidDate:V,ordinal:G,dayOfMonthOrdinalParse:Q,relativeTime:X,months:et,monthsShort:tt,week:Dt,weekdays:Et,weekdaysMin:Ht,weekdaysShort:jt,meridiemParse:nn},ln={},un={};function dn(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=hn(a.slice(0,t).join("-")))return r;if(n&&n.length>=t&&dn(a,n)>=t-1)break;t--}o++}return on}function pn(e){return null!=e.match("^[^/\\\\]*$")}function hn(t){var n=null;if(void 0===ln[t]&&e&&e.exports&&pn(t))try{n=on._abbr,(void 0)("./locale/"+t),mn(n)}catch(e){ln[t]=null}return ln[t]}function mn(e,t){var n;return e&&((n=u(t)?gn(e):_n(e,t))?on=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),on._abbr}function _n(e,t){if(null!==t){var n,r=sn;if(t.abbr=e,null!=ln[e])S("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=ln[e]._config;else if(null!=t.parentLocale)if(null!=ln[t.parentLocale])r=ln[t.parentLocale]._config;else{if(null==(n=hn(t.parentLocale)))return un[t.parentLocale]||(un[t.parentLocale]=[]),un[t.parentLocale].push({name:e,config:t}),null;r=n._config}return ln[e]=new O(C(r,t)),un[e]&&un[e].forEach((function(e){_n(e.name,e.config)})),mn(e),ln[e]}return delete ln[e],null}function yn(e,t){if(null!=t){var n,r,a=sn;null!=ln[e]&&null!=ln[e].parentLocale?ln[e].set(C(ln[e]._config,t)):(null!=(r=hn(e))&&(a=r._config),t=C(a,t),null==r&&(t.abbr=e),(n=new O(t)).parentLocale=ln[e],ln[e]=n),mn(e)}else null!=ln[e]&&(null!=ln[e].parentLocale?(ln[e]=ln[e].parentLocale,e===mn()&&mn(e)):null!=ln[e]&&delete ln[e]);return ln[e]}function gn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return on;if(!o(e)){if(t=hn(e))return t;e=[e]}return fn(e)}function vn(){return Y(ln)}function bn(e){var t,n=e._a;return n&&-2===_(e).overflow&&(t=n[$e]<0||n[$e]>11?$e:n[Be]<1||n[Be]>Ze(n[Ue],n[$e])?Be:n[qe]<0||n[qe]>24||24===n[qe]&&(0!==n[Ve]||0!==n[Je]||0!==n[Ge])?qe:n[Ve]<0||n[Ve]>59?Ve:n[Je]<0||n[Je]>59?Je:n[Ge]<0||n[Ge]>999?Ge:-1,_(e)._overflowDayOfYear&&(tBe)&&(t=Be),_(e)._overflowWeeks&&-1===t&&(t=Qe),_(e)._overflowWeekday&&-1===t&&(t=Ke),_(e).overflow=t),e}var Mn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,wn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,kn=/Z|[+-]\d\d(?::?\d\d)?/,Ln=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Dn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Yn=/^\/?Date\((-?\d+)/i,Tn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Sn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function xn(e){var t,n,r,a,o,i,s=e._i,l=Mn.exec(s)||wn.exec(s),u=Ln.length,d=Dn.length;if(l){for(_(e).iso=!0,t=0,n=u;tmt(o)||0===e._dayOfYear)&&(_(e)._overflowDayOfYear=!0),n=vt(o,0,e._dayOfYear),e._a[$e]=n.getUTCMonth(),e._a[Be]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=i[t]=r[t];for(;t<7;t++)e._a[t]=i[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[qe]&&0===e._a[Ve]&&0===e._a[Je]&&0===e._a[Ge]&&(e._nextDay=!0,e._a[qe]=0),e._d=(e._useUTC?vt:gt).apply(null,i),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[qe]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(_(e).weekdayMismatch=!0)}}function Wn(e){var t,n,r,a,o,i,s,l,u;null!=(t=e._w).GG||null!=t.W||null!=t.E?(o=1,i=4,n=An(t.GG,e._a[Ue],wt(Gn(),1,4).year),r=An(t.W,1),((a=An(t.E,1))<1||a>7)&&(l=!0)):(o=e._locale._week.dow,i=e._locale._week.doy,u=wt(Gn(),o,i),n=An(t.gg,e._a[Ue],u.year),r=An(t.w,u.week),null!=t.d?((a=t.d)<0||a>6)&&(l=!0):null!=t.e?(a=t.e+o,(t.e<0||t.e>6)&&(l=!0)):a=o),r<1||r>kt(n,o,i)?_(e)._overflowWeeks=!0:null!=l?_(e)._overflowWeekday=!0:(s=Mt(n,r,a,o,i),e._a[Ue]=s.year,e._dayOfYear=s.dayOfYear)}function In(e){if(e._f!==r.ISO_8601)if(e._f!==r.RFC_2822){e._a=[],_(e).empty=!0;var t,n,a,o,i,s,l,u=""+e._i,d=u.length,c=0;for(l=(a=$(e._f,e._locale).match(N)||[]).length,t=0;t0&&_(e).unusedInput.push(i),u=u.slice(u.indexOf(n)+n.length),c+=n.length),F[o]?(n?_(e).empty=!1:_(e).unusedTokens.push(o),Ie(o,n,e)):e._strict&&!n&&_(e).unusedTokens.push(o);_(e).charsLeftOver=d-c,u.length>0&&_(e).unusedInput.push(u),e._a[qe]<=12&&!0===_(e).bigHour&&e._a[qe]>0&&(_(e).bigHour=void 0),_(e).parsedDateParts=e._a.slice(0),_(e).meridiem=e._meridiem,e._a[qe]=zn(e._locale,e._a[qe],e._meridiem),null!==(s=_(e).era)&&(e._a[Ue]=e._locale.erasConvertYear(s,e._a[Ue])),Fn(e),bn(e)}else Hn(e);else xn(e)}function zn(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function Un(e){var t,n,r,a,o,i,s=!1,l=e._f.length;if(0===l)return _(e).invalidFormat=!0,void(e._d=new Date(NaN));for(a=0;athis?this:e:g()}));function Xn(e,t){var n,r;if(1===t.length&&o(t[0])&&(t=t[0]),!t.length)return Gn();for(n=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function wr(){if(!u(this._isDSTShifted))return this._isDSTShifted;var e,t={};return M(t,this),(t=qn(t))._a?(e=t._isUTC?h(t._a):Gn(t._a),this._isDSTShifted=this.isValid()&&ur(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function kr(){return!!this.isValid()&&!this._isUTC}function Lr(){return!!this.isValid()&&this._isUTC}function Dr(){return!!this.isValid()&&this._isUTC&&0===this._offset}r.updateOffset=function(){};var Yr=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Tr=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function Sr(e,t){var n,r,a,o=e,i=null;return sr(e)?o={ms:e._milliseconds,d:e._days,M:e._months}:d(e)||!isNaN(+e)?(o={},t?o[t]=+e:o.milliseconds=+e):(i=Yr.exec(e))?(n="-"===i[1]?-1:1,o={y:0,d:de(i[Be])*n,h:de(i[qe])*n,m:de(i[Ve])*n,s:de(i[Je])*n,ms:de(lr(1e3*i[Ge]))*n}):(i=Tr.exec(e))?(n="-"===i[1]?-1:1,o={y:xr(i[2],n),M:xr(i[3],n),w:xr(i[4],n),d:xr(i[5],n),h:xr(i[6],n),m:xr(i[7],n),s:xr(i[8],n)}):null==o?o={}:"object"==typeof o&&("from"in o||"to"in o)&&(a=Cr(Gn(o.from),Gn(o.to)),(o={}).ms=a.milliseconds,o.M=a.months),r=new ir(o),sr(e)&&s(e,"_locale")&&(r._locale=e._locale),sr(e)&&s(e,"_isValid")&&(r._isValid=e._isValid),r}function xr(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Pr(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Cr(e,t){var n;return e.isValid()&&t.isValid()?(t=pr(t,e),e.isBefore(t)?n=Pr(e,t):((n=Pr(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Or(e,t){return function(n,r){var a;return null===r||isNaN(+r)||(S(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),a=n,n=r,r=a),Er(this,Sr(n,r),e),this}}function Er(e,t,n,a){var o=t._milliseconds,i=lr(t._days),s=lr(t._months);e.isValid()&&(a=null==a||a,s&&ut(e,fe(e,"Month")+s*n),i&&pe(e,"Date",fe(e,"Date")+i*n),o&&e._d.setTime(e._d.valueOf()+o*n),a&&r.updateOffset(e,i||s))}Sr.fn=ir.prototype,Sr.invalid=or;var jr=Or(1,"add"),Hr=Or(-1,"subtract");function Nr(e){return"string"==typeof e||e instanceof String}function Ar(e){return k(e)||c(e)||Nr(e)||d(e)||Fr(e)||Rr(e)||null==e}function Rr(e){var t,n,r=i(e)&&!l(e),a=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],u=o.length;for(t=0;tn.valueOf():n.valueOf()9999?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):x(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+6e4*this.utcOffset()).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ea(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r,a="moment",o="";return this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",o="Z"),e="["+a+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",r=o+'[")]',this.format(e+t+n+r)}function ta(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)}function na(e,t){return this.isValid()&&(k(e)&&e.isValid()||Gn(e).isValid())?Sr({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ra(e){return this.from(Gn(),e)}function aa(e,t){return this.isValid()&&(k(e)&&e.isValid()||Gn(e).isValid())?Sr({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function oa(e){return this.to(Gn(),e)}function ia(e){var t;return void 0===e?this._locale._abbr:(null!=(t=gn(e))&&(this._locale=t),this)}r.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",r.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var sa=D("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",(function(e){return void 0===e?this.localeData():this.locale(e)}));function la(){return this._locale}var ua=1e3,da=60*ua,ca=60*da,fa=3506328*ca;function pa(e,t){return(e%t+t)%t}function ha(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-fa:new Date(e,t,n).valueOf()}function ma(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-fa:Date.UTC(e,t,n)}function _a(e){var t,n;if(void 0===(e=re(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?ma:ha,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=pa(t+(this._isUTC?0:this.utcOffset()*da),ca);break;case"minute":t=this._d.valueOf(),t-=pa(t,da);break;case"second":t=this._d.valueOf(),t-=pa(t,ua)}return this._d.setTime(t),r.updateOffset(this,!0),this}function ya(e){var t,n;if(void 0===(e=re(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?ma:ha,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=ca-pa(t+(this._isUTC?0:this.utcOffset()*da),ca)-1;break;case"minute":t=this._d.valueOf(),t+=da-pa(t,da)-1;break;case"second":t=this._d.valueOf(),t+=ua-pa(t,ua)-1}return this._d.setTime(t),r.updateOffset(this,!0),this}function ga(){return this._d.valueOf()-6e4*(this._offset||0)}function va(){return Math.floor(this.valueOf()/1e3)}function ba(){return new Date(this.valueOf())}function Ma(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function wa(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ka(){return this.isValid()?this.toISOString():null}function La(){return y(this)}function Da(){return p({},_(this))}function Ya(){return _(this).overflow}function Ta(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Sa(e,t){var n,a,o,i=this._eras||gn("en")._eras;for(n=0,a=i.length;n=0)return l[r]}function Pa(e,t){var n=e.since<=e.until?1:-1;return void 0===t?r(e.since).year():r(e.since).year()+(t-e.offset)*n}function Ca(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;e(o=kt(e,r,a))&&(t=o),Ka.call(this,e,t,n,r,a))}function Ka(e,t,n,r,a){var o=Mt(e,t,n,r,a),i=vt(o.year,0,o.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}function Xa(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}W("N",0,0,"eraAbbr"),W("NN",0,0,"eraAbbr"),W("NNN",0,0,"eraAbbr"),W("NNNN",0,0,"eraName"),W("NNNNN",0,0,"eraNarrow"),W("y",["y",1],"yo","eraYear"),W("y",["yy",2],0,"eraYear"),W("y",["yyy",3],0,"eraYear"),W("y",["yyyy",4],0,"eraYear"),je("N",Ra),je("NN",Ra),je("NNN",Ra),je("NNNN",Fa),je("NNNNN",Wa),Fe(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,r){var a=n._locale.erasParse(e,r,n._strict);a?_(n).era=a:_(n).invalidEra=e})),je("y",Se),je("yy",Se),je("yyy",Se),je("yyyy",Se),je("yo",Ia),Fe(["y","yy","yyy","yyyy"],Ue),Fe(["yo"],(function(e,t,n,r){var a;n._locale._eraYearOrdinalRegex&&(a=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Ue]=n._locale.eraYearOrdinalParse(e,a):t[Ue]=parseInt(e,10)})),W(0,["gg",2],0,(function(){return this.weekYear()%100})),W(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),Ua("gggg","weekYear"),Ua("ggggg","weekYear"),Ua("GGGG","isoWeekYear"),Ua("GGGGG","isoWeekYear"),ne("weekYear","gg"),ne("isoWeekYear","GG"),ie("weekYear",1),ie("isoWeekYear",1),je("G",xe),je("g",xe),je("GG",we,ge),je("gg",we,ge),je("GGGG",Ye,be),je("gggg",Ye,be),je("GGGGG",Te,Me),je("ggggg",Te,Me),We(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=de(e)})),We(["gg","GG"],(function(e,t,n,a){t[a]=r.parseTwoDigitYear(e)})),W("Q",0,"Qo","quarter"),ne("quarter","Q"),ie("quarter",7),je("Q",ye),Fe("Q",(function(e,t){t[$e]=3*(de(e)-1)})),W("D",["DD",2],"Do","date"),ne("date","D"),ie("date",9),je("D",we),je("DD",we,ge),je("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),Fe(["D","DD"],Be),Fe("Do",(function(e,t){t[Be]=de(e.match(we)[0])}));var Za=ce("Date",!0);function eo(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}W("DDD",["DDDD",3],"DDDo","dayOfYear"),ne("dayOfYear","DDD"),ie("dayOfYear",4),je("DDD",De),je("DDDD",ve),Fe(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=de(e)})),W("m",["mm",2],0,"minute"),ne("minute","m"),ie("minute",14),je("m",we),je("mm",we,ge),Fe(["m","mm"],Ve);var to=ce("Minutes",!1);W("s",["ss",2],0,"second"),ne("second","s"),ie("second",15),je("s",we),je("ss",we,ge),Fe(["s","ss"],Je);var no,ro,ao=ce("Seconds",!1);for(W("S",0,0,(function(){return~~(this.millisecond()/100)})),W(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),W(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),W(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),W(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),W(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),W(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),ne("millisecond","ms"),ie("millisecond",16),je("S",De,ye),je("SS",De,ge),je("SSS",De,ve),no="SSSS";no.length<=9;no+="S")je(no,Se);function oo(e,t){t[Ge]=de(1e3*("0."+e))}for(no="S";no.length<=9;no+="S")Fe(no,oo);function io(){return this._isUTC?"UTC":""}function so(){return this._isUTC?"Coordinated Universal Time":""}ro=ce("Milliseconds",!1),W("z",0,0,"zoneAbbr"),W("zz",0,0,"zoneName");var lo=w.prototype;function uo(e){return Gn(1e3*e)}function co(){return Gn.apply(null,arguments).parseZone()}function fo(e){return e}lo.add=jr,lo.calendar=zr,lo.clone=Ur,lo.diff=Qr,lo.endOf=ya,lo.format=ta,lo.from=na,lo.fromNow=ra,lo.to=aa,lo.toNow=oa,lo.get=he,lo.invalidAt=Ya,lo.isAfter=$r,lo.isBefore=Br,lo.isBetween=qr,lo.isSame=Vr,lo.isSameOrAfter=Jr,lo.isSameOrBefore=Gr,lo.isValid=La,lo.lang=sa,lo.locale=ia,lo.localeData=la,lo.max=Kn,lo.min=Qn,lo.parsingFlags=Da,lo.set=me,lo.startOf=_a,lo.subtract=Hr,lo.toArray=Ma,lo.toObject=wa,lo.toDate=ba,lo.toISOString=Zr,lo.inspect=ea,"undefined"!=typeof Symbol&&null!=Symbol.for&&(lo[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),lo.toJSON=ka,lo.toString=Xr,lo.unix=va,lo.valueOf=ga,lo.creationData=Ta,lo.eraName=Ca,lo.eraNarrow=Oa,lo.eraAbbr=Ea,lo.eraYear=ja,lo.year=_t,lo.isLeapYear=yt,lo.weekYear=$a,lo.isoWeekYear=Ba,lo.quarter=lo.quarters=Xa,lo.month=dt,lo.daysInMonth=ct,lo.week=lo.weeks=St,lo.isoWeek=lo.isoWeeks=xt,lo.weeksInYear=Ja,lo.weeksInWeekYear=Ga,lo.isoWeeksInYear=qa,lo.isoWeeksInISOWeekYear=Va,lo.date=Za,lo.day=lo.days=$t,lo.weekday=Bt,lo.isoWeekday=qt,lo.dayOfYear=eo,lo.hour=lo.hours=rn,lo.minute=lo.minutes=to,lo.second=lo.seconds=ao,lo.millisecond=lo.milliseconds=ro,lo.utcOffset=mr,lo.utc=yr,lo.local=gr,lo.parseZone=vr,lo.hasAlignedHourOffset=br,lo.isDST=Mr,lo.isLocal=kr,lo.isUtcOffset=Lr,lo.isUtc=Dr,lo.isUTC=Dr,lo.zoneAbbr=io,lo.zoneName=so,lo.dates=D("dates accessor is deprecated. Use date instead.",Za),lo.months=D("months accessor is deprecated. Use month instead",dt),lo.years=D("years accessor is deprecated. Use year instead",_t),lo.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",_r),lo.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",wr);var po=O.prototype;function ho(e,t,n,r){var a=gn(),o=h().set(r,t);return a[n](o,e)}function mo(e,t,n){if(d(e)&&(t=e,e=void 0),e=e||"",null!=t)return ho(e,t,n,"month");var r,a=[];for(r=0;r<12;r++)a[r]=ho(e,r,n,"month");return a}function _o(e,t,n,r){"boolean"==typeof e?(d(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,d(t)&&(n=t,t=void 0),t=t||"");var a,o=gn(),i=e?o._week.dow:0,s=[];if(null!=n)return ho(t,(n+i)%7,r,"day");for(a=0;a<7;a++)s[a]=ho(t,(a+i)%7,r,"day");return s}function yo(e,t){return mo(e,t,"months")}function go(e,t){return mo(e,t,"monthsShort")}function vo(e,t,n){return _o(e,t,n,"weekdays")}function bo(e,t,n){return _o(e,t,n,"weekdaysShort")}function Mo(e,t,n){return _o(e,t,n,"weekdaysMin")}po.calendar=j,po.longDateFormat=q,po.invalidDate=J,po.ordinal=K,po.preparse=fo,po.postformat=fo,po.relativeTime=Z,po.pastFuture=ee,po.set=P,po.eras=Sa,po.erasParse=xa,po.erasConvertYear=Pa,po.erasAbbrRegex=Na,po.erasNameRegex=Ha,po.erasNarrowRegex=Aa,po.months=ot,po.monthsShort=it,po.monthsParse=lt,po.monthsRegex=pt,po.monthsShortRegex=ft,po.week=Lt,po.firstDayOfYear=Tt,po.firstDayOfWeek=Yt,po.weekdays=Ft,po.weekdaysMin=It,po.weekdaysShort=Wt,po.weekdaysParse=Ut,po.weekdaysRegex=Vt,po.weekdaysShortRegex=Jt,po.weekdaysMinRegex=Gt,po.isPM=tn,po.meridiem=an,mn("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===de(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=D("moment.lang is deprecated. Use moment.locale instead.",mn),r.langData=D("moment.langData is deprecated. Use moment.localeData instead.",gn);var wo=Math.abs;function ko(){var e=this._data;return this._milliseconds=wo(this._milliseconds),this._days=wo(this._days),this._months=wo(this._months),e.milliseconds=wo(e.milliseconds),e.seconds=wo(e.seconds),e.minutes=wo(e.minutes),e.hours=wo(e.hours),e.months=wo(e.months),e.years=wo(e.years),this}function Lo(e,t,n,r){var a=Sr(t,n);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function Do(e,t){return Lo(this,e,t,1)}function Yo(e,t){return Lo(this,e,t,-1)}function To(e){return e<0?Math.floor(e):Math.ceil(e)}function So(){var e,t,n,r,a,o=this._milliseconds,i=this._days,s=this._months,l=this._data;return o>=0&&i>=0&&s>=0||o<=0&&i<=0&&s<=0||(o+=864e5*To(Po(s)+i),i=0,s=0),l.milliseconds=o%1e3,e=ue(o/1e3),l.seconds=e%60,t=ue(e/60),l.minutes=t%60,n=ue(t/60),l.hours=n%24,i+=ue(n/24),s+=a=ue(xo(i)),i-=To(Po(a)),r=ue(s/12),s%=12,l.days=i,l.months=s,l.years=r,this}function xo(e){return 4800*e/146097}function Po(e){return 146097*e/4800}function Co(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=re(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+xo(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Po(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}}function Oo(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*de(this._months/12):NaN}function Eo(e){return function(){return this.as(e)}}var jo=Eo("ms"),Ho=Eo("s"),No=Eo("m"),Ao=Eo("h"),Ro=Eo("d"),Fo=Eo("w"),Wo=Eo("M"),Io=Eo("Q"),zo=Eo("y");function Uo(){return Sr(this)}function $o(e){return e=re(e),this.isValid()?this[e+"s"]():NaN}function Bo(e){return function(){return this.isValid()?this._data[e]:NaN}}var qo=Bo("milliseconds"),Vo=Bo("seconds"),Jo=Bo("minutes"),Go=Bo("hours"),Qo=Bo("days"),Ko=Bo("months"),Xo=Bo("years");function Zo(){return ue(this.days()/7)}var ei=Math.round,ti={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function ni(e,t,n,r,a){return a.relativeTime(t||1,!!n,e,r)}function ri(e,t,n,r){var a=Sr(e).abs(),o=ei(a.as("s")),i=ei(a.as("m")),s=ei(a.as("h")),l=ei(a.as("d")),u=ei(a.as("M")),d=ei(a.as("w")),c=ei(a.as("y")),f=o<=n.ss&&["s",o]||o0,f[4]=r,ni.apply(null,f)}function ai(e){return void 0===e?ei:"function"==typeof e&&(ei=e,!0)}function oi(e,t){return void 0!==ti[e]&&(void 0===t?ti[e]:(ti[e]=t,"s"===e&&(ti.ss=t-1),!0))}function ii(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,a=!1,o=ti;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(a=e),"object"==typeof t&&(o=Object.assign({},ti,t),null!=t.s&&null==t.ss&&(o.ss=t.s-1)),r=ri(this,!a,o,n=this.localeData()),a&&(r=n.pastFuture(+this,r)),n.postformat(r)}var si=Math.abs;function li(e){return(e>0)-(e<0)||+e}function ui(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,a,o,i,s,l=si(this._milliseconds)/1e3,u=si(this._days),d=si(this._months),c=this.asSeconds();return c?(e=ue(l/60),t=ue(e/60),l%=60,e%=60,n=ue(d/12),d%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",a=c<0?"-":"",o=li(this._months)!==li(c)?"-":"",i=li(this._days)!==li(c)?"-":"",s=li(this._milliseconds)!==li(c)?"-":"",a+"P"+(n?o+n+"Y":"")+(d?o+d+"M":"")+(u?i+u+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var di=ir.prototype;di.isValid=ar,di.abs=ko,di.add=Do,di.subtract=Yo,di.as=Co,di.asMilliseconds=jo,di.asSeconds=Ho,di.asMinutes=No,di.asHours=Ao,di.asDays=Ro,di.asWeeks=Fo,di.asMonths=Wo,di.asQuarters=Io,di.asYears=zo,di.valueOf=Oo,di._bubble=So,di.clone=Uo,di.get=$o,di.milliseconds=qo,di.seconds=Vo,di.minutes=Jo,di.hours=Go,di.days=Qo,di.weeks=Zo,di.months=Ko,di.years=Xo,di.humanize=ii,di.toISOString=ui,di.toString=ui,di.toJSON=ui,di.locale=ia,di.localeData=la,di.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ui),di.lang=sa,W("X",0,0,"unix"),W("x",0,0,"valueOf"),je("x",xe),je("X",Oe),Fe("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),Fe("x",(function(e,t,n){n._d=new Date(de(e))})), -//! moment.js -r.version="2.29.4",a(Gn),r.fn=lo,r.min=Zn,r.max=er,r.now=tr,r.utc=h,r.unix=uo,r.months=yo,r.isDate=c,r.locale=mn,r.invalid=g,r.duration=Sr,r.isMoment=k,r.weekdays=vo,r.parseZone=co,r.localeData=gn,r.isDuration=sr,r.monthsShort=go,r.weekdaysMin=Mo,r.defineLocale=_n,r.updateLocale=yn,r.locales=vn,r.weekdaysShort=bo,r.normalizeUnits=re,r.relativeTimeRounding=ai,r.relativeTimeThreshold=oi,r.calendarFormat=Ir,r.prototype=lo,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"}, -//! moment.js locale configuration -r.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"vm":"VM":n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[MĆ“re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var ci=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},fi={s:["Ų£Ł‚Ł„ Ł…Ł† Ų«Ų§Ł†ŁŠŲ©","Ų«Ų§Ł†ŁŠŲ© ŁˆŲ§Ų­ŲÆŲ©",["Ų«Ų§Ł†ŁŠŲŖŲ§Ł†","Ų«Ų§Ł†ŁŠŲŖŁŠŁ†"],"%d Ų«ŁˆŲ§Ł†","%d Ų«Ų§Ł†ŁŠŲ©","%d Ų«Ų§Ł†ŁŠŲ©"],m:["Ų£Ł‚Ł„ Ł…Ł† ŲÆŁ‚ŁŠŁ‚Ų©","ŲÆŁ‚ŁŠŁ‚Ų© ŁˆŲ§Ų­ŲÆŲ©",["ŲÆŁ‚ŁŠŁ‚ŲŖŲ§Ł†","ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†"],"%d ŲÆŁ‚Ų§Ų¦Ł‚","%d ŲÆŁ‚ŁŠŁ‚Ų©","%d ŲÆŁ‚ŁŠŁ‚Ų©"],h:["Ų£Ł‚Ł„ Ł…Ł† Ų³Ų§Ų¹Ų©","Ų³Ų§Ų¹Ų© ŁˆŲ§Ų­ŲÆŲ©",["Ų³Ų§Ų¹ŲŖŲ§Ł†","Ų³Ų§Ų¹ŲŖŁŠŁ†"],"%d Ų³Ų§Ų¹Ų§ŲŖ","%d Ų³Ų§Ų¹Ų©","%d Ų³Ų§Ų¹Ų©"],d:["Ų£Ł‚Ł„ Ł…Ł† ŁŠŁˆŁ…","ŁŠŁˆŁ… ŁˆŲ§Ų­ŲÆ",["ŁŠŁˆŁ…Ų§Ł†","ŁŠŁˆŁ…ŁŠŁ†"],"%d Ų£ŁŠŲ§Ł…","%d ŁŠŁˆŁ…Ł‹Ų§","%d ŁŠŁˆŁ…"],M:["Ų£Ł‚Ł„ Ł…Ł† Ų“Ł‡Ų±","Ų“Ł‡Ų± ŁˆŲ§Ų­ŲÆ",["Ų“Ł‡Ų±Ų§Ł†","Ų“Ł‡Ų±ŁŠŁ†"],"%d Ų£Ų“Ł‡Ų±","%d Ų“Ł‡Ų±Ų§","%d Ų“Ł‡Ų±"],y:["Ų£Ł‚Ł„ Ł…Ł† Ų¹Ų§Ł…","Ų¹Ų§Ł… ŁˆŲ§Ų­ŲÆ",["Ų¹Ų§Ł…Ų§Ł†","Ų¹Ų§Ł…ŁŠŁ†"],"%d Ų£Ų¹ŁˆŲ§Ł…","%d Ų¹Ų§Ł…Ł‹Ų§","%d Ų¹Ų§Ł…"]},pi=function(e){return function(t,n,r,a){var o=ci(t),i=fi[e][ci(t)];return 2===o&&(i=i[n?0:1]),i.replace(/%d/i,t)}},hi=["Ų¬Ų§Ł†ŁŁŠ","ŁŁŠŁŲ±ŁŠ","Ł…Ų§Ų±Ų³","Ų£ŁŲ±ŁŠŁ„","Ł…Ų§ŁŠ","Ų¬ŁˆŲ§Ł†","Ų¬ŁˆŁŠŁ„ŁŠŲ©","Ų£ŁˆŲŖ","Ų³ŲØŲŖŁ…ŲØŲ±","Ų£ŁƒŲŖŁˆŲØŲ±","Ł†ŁˆŁŁ…ŲØŲ±","ŲÆŁŠŲ³Ł…ŲØŲ±"];r.defineLocale("ar-dz",{months:hi,monthsShort:hi,weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų£Ų­ŲÆ_Ų„Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų£Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/ā€M/ā€YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/Ųµ|Ł…/,isPM:function(e){return"Ł…"===e},meridiem:function(e,t,n){return e<12?"Ųµ":"Ł…"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŁ‹Ų§ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŲØŲ¹ŲÆ %s",past:"Ł…Ł†Ų° %s",s:pi("s"),ss:pi("s"),m:pi("m"),mm:pi("m"),h:pi("h"),hh:pi("h"),d:pi("d"),dd:pi("d"),M:pi("M"),MM:pi("M"),y:pi("y"),yy:pi("y")},postformat:function(e){return e.replace(/,/g,"ŲŒ")},week:{dow:0,doy:4}}), -//! moment.js locale configuration -r.defineLocale("ar-kw",{months:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆŲ²_ŲŗŲ“ŲŖ_Ų“ŲŖŁ†ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁ†ŲØŲ±_ŲÆŲ¬Ł†ŲØŲ±".split("_"),monthsShort:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆŲ²_ŲŗŲ“ŲŖ_Ų“ŲŖŁ†ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁ†ŲØŲ±_ŲÆŲ¬Ł†ŲØŲ±".split("_"),weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„ŲŖŁ†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų§Ų­ŲÆ_Ų§ŲŖŁ†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŲ§ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŁŁŠ %s",past:"Ł…Ł†Ų° %s",s:"Ų«ŁˆŲ§Ł†",ss:"%d Ų«Ų§Ł†ŁŠŲ©",m:"ŲÆŁ‚ŁŠŁ‚Ų©",mm:"%d ŲÆŁ‚Ų§Ų¦Ł‚",h:"Ų³Ų§Ų¹Ų©",hh:"%d Ų³Ų§Ų¹Ų§ŲŖ",d:"ŁŠŁˆŁ…",dd:"%d Ų£ŁŠŲ§Ł…",M:"Ų“Ł‡Ų±",MM:"%d Ų£Ų“Ł‡Ų±",y:"Ų³Ł†Ų©",yy:"%d Ų³Ł†ŁˆŲ§ŲŖ"},week:{dow:0,doy:12}}); -//! moment.js locale configuration -var mi={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},_i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},yi={s:["Ų£Ł‚Ł„ Ł…Ł† Ų«Ų§Ł†ŁŠŲ©","Ų«Ų§Ł†ŁŠŲ© ŁˆŲ§Ų­ŲÆŲ©",["Ų«Ų§Ł†ŁŠŲŖŲ§Ł†","Ų«Ų§Ł†ŁŠŲŖŁŠŁ†"],"%d Ų«ŁˆŲ§Ł†","%d Ų«Ų§Ł†ŁŠŲ©","%d Ų«Ų§Ł†ŁŠŲ©"],m:["Ų£Ł‚Ł„ Ł…Ł† ŲÆŁ‚ŁŠŁ‚Ų©","ŲÆŁ‚ŁŠŁ‚Ų© ŁˆŲ§Ų­ŲÆŲ©",["ŲÆŁ‚ŁŠŁ‚ŲŖŲ§Ł†","ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†"],"%d ŲÆŁ‚Ų§Ų¦Ł‚","%d ŲÆŁ‚ŁŠŁ‚Ų©","%d ŲÆŁ‚ŁŠŁ‚Ų©"],h:["Ų£Ł‚Ł„ Ł…Ł† Ų³Ų§Ų¹Ų©","Ų³Ų§Ų¹Ų© ŁˆŲ§Ų­ŲÆŲ©",["Ų³Ų§Ų¹ŲŖŲ§Ł†","Ų³Ų§Ų¹ŲŖŁŠŁ†"],"%d Ų³Ų§Ų¹Ų§ŲŖ","%d Ų³Ų§Ų¹Ų©","%d Ų³Ų§Ų¹Ų©"],d:["Ų£Ł‚Ł„ Ł…Ł† ŁŠŁˆŁ…","ŁŠŁˆŁ… ŁˆŲ§Ų­ŲÆ",["ŁŠŁˆŁ…Ų§Ł†","ŁŠŁˆŁ…ŁŠŁ†"],"%d Ų£ŁŠŲ§Ł…","%d ŁŠŁˆŁ…Ł‹Ų§","%d ŁŠŁˆŁ…"],M:["Ų£Ł‚Ł„ Ł…Ł† Ų“Ł‡Ų±","Ų“Ł‡Ų± ŁˆŲ§Ų­ŲÆ",["Ų“Ł‡Ų±Ų§Ł†","Ų“Ł‡Ų±ŁŠŁ†"],"%d Ų£Ų“Ł‡Ų±","%d Ų“Ł‡Ų±Ų§","%d Ų“Ł‡Ų±"],y:["Ų£Ł‚Ł„ Ł…Ł† Ų¹Ų§Ł…","Ų¹Ų§Ł… ŁˆŲ§Ų­ŲÆ",["Ų¹Ų§Ł…Ų§Ł†","Ų¹Ų§Ł…ŁŠŁ†"],"%d Ų£Ų¹ŁˆŲ§Ł…","%d Ų¹Ų§Ł…Ł‹Ų§","%d Ų¹Ų§Ł…"]},gi=function(e){return function(t,n,r,a){var o=_i(t),i=yi[e][_i(t)];return 2===o&&(i=i[n?0:1]),i.replace(/%d/i,t)}},vi=["ŁŠŁ†Ų§ŁŠŲ±","ŁŲØŲ±Ų§ŁŠŲ±","Ł…Ų§Ų±Ų³","Ų£ŲØŲ±ŁŠŁ„","Ł…Ų§ŁŠŁˆ","ŁŠŁˆŁ†ŁŠŁˆ","ŁŠŁˆŁ„ŁŠŁˆ","Ų£ŲŗŲ³Ų·Ų³","Ų³ŲØŲŖŁ…ŲØŲ±","Ų£ŁƒŲŖŁˆŲØŲ±","Ł†ŁˆŁŁ…ŲØŲ±","ŲÆŁŠŲ³Ł…ŲØŲ±"];r.defineLocale("ar-ly",{months:vi,monthsShort:vi,weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų£Ų­ŲÆ_Ų„Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų£Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/ā€M/ā€YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/Ųµ|Ł…/,isPM:function(e){return"Ł…"===e},meridiem:function(e,t,n){return e<12?"Ųµ":"Ł…"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŁ‹Ų§ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŲØŲ¹ŲÆ %s",past:"Ł…Ł†Ų° %s",s:gi("s"),ss:gi("s"),m:gi("m"),mm:gi("m"),h:gi("h"),hh:gi("h"),d:gi("d"),dd:gi("d"),M:gi("M"),MM:gi("M"),y:gi("y"),yy:gi("y")},preparse:function(e){return e.replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return mi[e]})).replace(/,/g,"ŲŒ")},week:{dow:6,doy:12}}), -//! moment.js locale configuration -r.defineLocale("ar-ma",{months:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆŲ²_ŲŗŲ“ŲŖ_Ų“ŲŖŁ†ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁ†ŲØŲ±_ŲÆŲ¬Ł†ŲØŲ±".split("_"),monthsShort:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆŲ²_ŲŗŲ“ŲŖ_Ų“ŲŖŁ†ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁ†ŲØŲ±_ŲÆŲ¬Ł†ŲØŲ±".split("_"),weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų§Ų­ŲÆ_Ų§Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŲ§ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŁŁŠ %s",past:"Ł…Ł†Ų° %s",s:"Ų«ŁˆŲ§Ł†",ss:"%d Ų«Ų§Ł†ŁŠŲ©",m:"ŲÆŁ‚ŁŠŁ‚Ų©",mm:"%d ŲÆŁ‚Ų§Ų¦Ł‚",h:"Ų³Ų§Ų¹Ų©",hh:"%d Ų³Ų§Ų¹Ų§ŲŖ",d:"ŁŠŁˆŁ…",dd:"%d Ų£ŁŠŲ§Ł…",M:"Ų“Ł‡Ų±",MM:"%d Ų£Ų“Ł‡Ų±",y:"Ų³Ł†Ų©",yy:"%d Ų³Ł†ŁˆŲ§ŲŖ"},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var bi={1:"Ł”",2:"Ł¢",3:"Ł£",4:"Ł¤",5:"Ł„",6:"Ł¦",7:"Ł§",8:"ŁØ",9:"Ł©",0:"Ł "},Mi={"Ł”":"1","Ł¢":"2","Ł£":"3","Ł¤":"4","Ł„":"5","Ł¦":"6","Ł§":"7","ŁØ":"8","Ł©":"9","Ł ":"0"};r.defineLocale("ar-sa",{months:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠŁˆ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆ_Ų£ŲŗŲ³Ų·Ų³_Ų³ŲØŲŖŁ…ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁŁ…ŲØŲ±_ŲÆŁŠŲ³Ł…ŲØŲ±".split("_"),monthsShort:"ŁŠŁ†Ų§ŁŠŲ±_ŁŲØŲ±Ų§ŁŠŲ±_Ł…Ų§Ų±Ų³_Ų£ŲØŲ±ŁŠŁ„_Ł…Ų§ŁŠŁˆ_ŁŠŁˆŁ†ŁŠŁˆ_ŁŠŁˆŁ„ŁŠŁˆ_Ų£ŲŗŲ³Ų·Ų³_Ų³ŲØŲŖŁ…ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁŁ…ŲØŲ±_ŲÆŁŠŲ³Ł…ŲØŲ±".split("_"),weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų£Ų­ŲÆ_Ų„Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų£Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/Ųµ|Ł…/,isPM:function(e){return"Ł…"===e},meridiem:function(e,t,n){return e<12?"Ųµ":"Ł…"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŲ§ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŁŁŠ %s",past:"Ł…Ł†Ų° %s",s:"Ų«ŁˆŲ§Ł†",ss:"%d Ų«Ų§Ł†ŁŠŲ©",m:"ŲÆŁ‚ŁŠŁ‚Ų©",mm:"%d ŲÆŁ‚Ų§Ų¦Ł‚",h:"Ų³Ų§Ų¹Ų©",hh:"%d Ų³Ų§Ų¹Ų§ŲŖ",d:"ŁŠŁˆŁ…",dd:"%d Ų£ŁŠŲ§Ł…",M:"Ų“Ł‡Ų±",MM:"%d Ų£Ų“Ł‡Ų±",y:"Ų³Ł†Ų©",yy:"%d Ų³Ł†ŁˆŲ§ŲŖ"},preparse:function(e){return e.replace(/[Ł”Ł¢Ł£Ł¤Ł„Ł¦Ł§ŁØŁ©Ł ]/g,(function(e){return Mi[e]})).replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return bi[e]})).replace(/,/g,"ŲŒ")},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("ar-tn",{months:"Ų¬Ų§Ł†ŁŁŠ_ŁŁŠŁŲ±ŁŠ_Ł…Ų§Ų±Ų³_Ų£ŁŲ±ŁŠŁ„_Ł…Ų§ŁŠ_Ų¬ŁˆŲ§Ł†_Ų¬ŁˆŁŠŁ„ŁŠŲ©_Ų£ŁˆŲŖ_Ų³ŲØŲŖŁ…ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁŁ…ŲØŲ±_ŲÆŁŠŲ³Ł…ŲØŲ±".split("_"),monthsShort:"Ų¬Ų§Ł†ŁŁŠ_ŁŁŠŁŲ±ŁŠ_Ł…Ų§Ų±Ų³_Ų£ŁŲ±ŁŠŁ„_Ł…Ų§ŁŠ_Ų¬ŁˆŲ§Ł†_Ų¬ŁˆŁŠŁ„ŁŠŲ©_Ų£ŁˆŲŖ_Ų³ŲØŲŖŁ…ŲØŲ±_Ų£ŁƒŲŖŁˆŲØŲ±_Ł†ŁˆŁŁ…ŲØŲ±_ŲÆŁŠŲ³Ł…ŲØŲ±".split("_"),weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų£Ų­ŲÆ_Ų„Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų£Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŲ§ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł„Ł‰ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŁŁŠ %s",past:"Ł…Ł†Ų° %s",s:"Ų«ŁˆŲ§Ł†",ss:"%d Ų«Ų§Ł†ŁŠŲ©",m:"ŲÆŁ‚ŁŠŁ‚Ų©",mm:"%d ŲÆŁ‚Ų§Ų¦Ł‚",h:"Ų³Ų§Ų¹Ų©",hh:"%d Ų³Ų§Ų¹Ų§ŲŖ",d:"ŁŠŁˆŁ…",dd:"%d Ų£ŁŠŲ§Ł…",M:"Ų“Ł‡Ų±",MM:"%d Ų£Ų“Ł‡Ų±",y:"Ų³Ł†Ų©",yy:"%d Ų³Ł†ŁˆŲ§ŲŖ"},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var wi={1:"Ł”",2:"Ł¢",3:"Ł£",4:"Ł¤",5:"Ł„",6:"Ł¦",7:"Ł§",8:"ŁØ",9:"Ł©",0:"Ł "},ki={"Ł”":"1","Ł¢":"2","Ł£":"3","Ł¤":"4","Ł„":"5","Ł¦":"6","Ł§":"7","ŁØ":"8","Ł©":"9","Ł ":"0"},Li=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},Di={s:["Ų£Ł‚Ł„ Ł…Ł† Ų«Ų§Ł†ŁŠŲ©","Ų«Ų§Ł†ŁŠŲ© ŁˆŲ§Ų­ŲÆŲ©",["Ų«Ų§Ł†ŁŠŲŖŲ§Ł†","Ų«Ų§Ł†ŁŠŲŖŁŠŁ†"],"%d Ų«ŁˆŲ§Ł†","%d Ų«Ų§Ł†ŁŠŲ©","%d Ų«Ų§Ł†ŁŠŲ©"],m:["Ų£Ł‚Ł„ Ł…Ł† ŲÆŁ‚ŁŠŁ‚Ų©","ŲÆŁ‚ŁŠŁ‚Ų© ŁˆŲ§Ų­ŲÆŲ©",["ŲÆŁ‚ŁŠŁ‚ŲŖŲ§Ł†","ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†"],"%d ŲÆŁ‚Ų§Ų¦Ł‚","%d ŲÆŁ‚ŁŠŁ‚Ų©","%d ŲÆŁ‚ŁŠŁ‚Ų©"],h:["Ų£Ł‚Ł„ Ł…Ł† Ų³Ų§Ų¹Ų©","Ų³Ų§Ų¹Ų© ŁˆŲ§Ų­ŲÆŲ©",["Ų³Ų§Ų¹ŲŖŲ§Ł†","Ų³Ų§Ų¹ŲŖŁŠŁ†"],"%d Ų³Ų§Ų¹Ų§ŲŖ","%d Ų³Ų§Ų¹Ų©","%d Ų³Ų§Ų¹Ų©"],d:["Ų£Ł‚Ł„ Ł…Ł† ŁŠŁˆŁ…","ŁŠŁˆŁ… ŁˆŲ§Ų­ŲÆ",["ŁŠŁˆŁ…Ų§Ł†","ŁŠŁˆŁ…ŁŠŁ†"],"%d Ų£ŁŠŲ§Ł…","%d ŁŠŁˆŁ…Ł‹Ų§","%d ŁŠŁˆŁ…"],M:["Ų£Ł‚Ł„ Ł…Ł† Ų“Ł‡Ų±","Ų“Ł‡Ų± ŁˆŲ§Ų­ŲÆ",["Ų“Ł‡Ų±Ų§Ł†","Ų“Ł‡Ų±ŁŠŁ†"],"%d Ų£Ų“Ł‡Ų±","%d Ų“Ł‡Ų±Ų§","%d Ų“Ł‡Ų±"],y:["Ų£Ł‚Ł„ Ł…Ł† Ų¹Ų§Ł…","Ų¹Ų§Ł… ŁˆŲ§Ų­ŲÆ",["Ų¹Ų§Ł…Ų§Ł†","Ų¹Ų§Ł…ŁŠŁ†"],"%d Ų£Ų¹ŁˆŲ§Ł…","%d Ų¹Ų§Ł…Ł‹Ų§","%d Ų¹Ų§Ł…"]},Yi=function(e){return function(t,n,r,a){var o=Li(t),i=Di[e][Li(t)];return 2===o&&(i=i[n?0:1]),i.replace(/%d/i,t)}},Ti=["ŁŠŁ†Ų§ŁŠŲ±","ŁŲØŲ±Ų§ŁŠŲ±","Ł…Ų§Ų±Ų³","Ų£ŲØŲ±ŁŠŁ„","Ł…Ų§ŁŠŁˆ","ŁŠŁˆŁ†ŁŠŁˆ","ŁŠŁˆŁ„ŁŠŁˆ","Ų£ŲŗŲ³Ų·Ų³","Ų³ŲØŲŖŁ…ŲØŲ±","Ų£ŁƒŲŖŁˆŲØŲ±","Ł†ŁˆŁŁ…ŲØŲ±","ŲÆŁŠŲ³Ł…ŲØŲ±"];r.defineLocale("ar",{months:Ti,monthsShort:Ti,weekdays:"Ų§Ł„Ų£Ų­ŲÆ_Ų§Ł„Ų„Ų«Ł†ŁŠŁ†_Ų§Ł„Ų«Ł„Ų§Ų«Ų§Ų”_Ų§Ł„Ų£Ų±ŲØŲ¹Ų§Ų”_Ų§Ł„Ų®Ł…ŁŠŲ³_Ų§Ł„Ų¬Ł…Ų¹Ų©_Ų§Ł„Ų³ŲØŲŖ".split("_"),weekdaysShort:"Ų£Ų­ŲÆ_Ų„Ų«Ł†ŁŠŁ†_Ų«Ł„Ų§Ų«Ų§Ų”_Ų£Ų±ŲØŲ¹Ų§Ų”_Ų®Ł…ŁŠŲ³_Ų¬Ł…Ų¹Ų©_Ų³ŲØŲŖ".split("_"),weekdaysMin:"Ų­_Ł†_Ų«_Ų±_Ų®_Ų¬_Ų³".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/ā€M/ā€YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/Ųµ|Ł…/,isPM:function(e){return"Ł…"===e},meridiem:function(e,t,n){return e<12?"Ųµ":"Ł…"},calendar:{sameDay:"[Ų§Ł„ŁŠŁˆŁ… Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextDay:"[ŲŗŲÆŁ‹Ų§ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",nextWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastDay:"[Ų£Ł…Ų³ Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",lastWeek:"dddd [Ų¹Ł†ŲÆ Ų§Ł„Ų³Ų§Ų¹Ų©] LT",sameElse:"L"},relativeTime:{future:"ŲØŲ¹ŲÆ %s",past:"Ł…Ł†Ų° %s",s:Yi("s"),ss:Yi("s"),m:Yi("m"),mm:Yi("m"),h:Yi("h"),hh:Yi("h"),d:Yi("d"),dd:Yi("d"),M:Yi("M"),MM:Yi("M"),y:Yi("y"),yy:Yi("y")},preparse:function(e){return e.replace(/[Ł”Ł¢Ł£Ł¤Ł„Ł¦Ł§ŁØŁ©Ł ]/g,(function(e){return ki[e]})).replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return wi[e]})).replace(/,/g,"ŲŒ")},week:{dow:6,doy:12}}); -//! moment.js locale configuration -var Si={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-Ć¼ncĆ¼",4:"-Ć¼ncĆ¼",100:"-Ć¼ncĆ¼",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"}; -//! moment.js locale configuration -function xi(e,t){var n=e.split("_");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function Pi(e,t,n){return"m"===n?t?"хŠ²Ń–Š»Ń–Š½Š°":"хŠ²Ń–Š»Ń–Š½Ńƒ":"h"===n?t?"Š³Š°Š“Š·Ń–Š½Š°":"Š³Š°Š“Š·Ń–Š½Ńƒ":e+" "+xi({ss:t?"сŠµŠŗуŠ½Š“Š°_сŠµŠŗуŠ½Š“ы_сŠµŠŗуŠ½Š“":"сŠµŠŗуŠ½Š“у_сŠµŠŗуŠ½Š“ы_сŠµŠŗуŠ½Š“",mm:t?"хŠ²Ń–Š»Ń–Š½Š°_хŠ²Ń–Š»Ń–Š½Ń‹_хŠ²Ń–Š»Ń–Š½":"хŠ²Ń–Š»Ń–Š½Ńƒ_хŠ²Ń–Š»Ń–Š½Ń‹_хŠ²Ń–Š»Ń–Š½",hh:t?"Š³Š°Š“Š·Ń–Š½Š°_Š³Š°Š“Š·Ń–Š½Ń‹_Š³Š°Š“Š·Ń–Š½":"Š³Š°Š“Š·Ń–Š½Ńƒ_Š³Š°Š“Š·Ń–Š½Ń‹_Š³Š°Š“Š·Ń–Š½",dd:"Š“Š·ŠµŠ½ŃŒ_Š“Š½Ń–_Š“Š·Ń‘Š½",MM:"Š¼ŠµŃŃŃ†_Š¼ŠµŃŃŃ†Ń‹_Š¼ŠµŃŃŃ†Š°Ńž",yy:"Š³Š¾Š“_Š³Š°Š“ы_Š³Š°Š“Š¾Ńž"}[n],+e)}r.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertəsi_Ƈərşənbə axşamı_Ƈərşənbə_CĆ¼mə axşamı_CĆ¼mə_Şənbə".split("_"),weekdaysShort:"Baz_BzE_ƇAx_Ƈər_CAx_CĆ¼m_Şən".split("_"),weekdaysMin:"Bz_BE_ƇA_Ƈə_CA_CĆ¼_Şə".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugĆ¼n saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gələn həftə] dddd [saat] LT",lastDay:"[dĆ¼nən] LT",lastWeek:"[keƧən həftə] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s əvvəl",s:"bir neƧə saniyə",ss:"%d saniyə",m:"bir dəqiqə",mm:"%d dəqiqə",h:"bir saat",hh:"%d saat",d:"bir gĆ¼n",dd:"%d gĆ¼n",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecə|səhər|gĆ¼ndĆ¼z|axşam/,isPM:function(e){return/^(gĆ¼ndĆ¼z|axşam)$/.test(e)},meridiem:function(e,t,n){return e<4?"gecə":e<12?"səhər":e<17?"gĆ¼ndĆ¼z":"axşam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|Ć¼ncĆ¼|ncı|uncu)/,ordinal:function(e){if(0===e)return e+"-ıncı";var t=e%10,n=e%100-t,r=e>=100?100:null;return e+(Si[t]||Si[n]||Si[r])},week:{dow:1,doy:7}}),r.defineLocale("be",{months:{format:"стуŠ“Š·ŠµŠ½Ń_Š»ŃŽŃ‚Š°Š³Š°_сŠ°ŠŗŠ°Š²Ń–ŠŗŠ°_ŠŗрŠ°ŃŠ°Š²Ń–ŠŗŠ°_трŠ°ŃžŠ½Ń_чэрŠ²ŠµŠ½Ń_Š»Ń–ŠæŠµŠ½Ń_Š¶Š½Ń–ŃžŠ½Ń_Š²ŠµŃ€Š°ŃŠ½Ń_ŠŗŠ°ŃŃ‚рычŠ½Ń–ŠŗŠ°_Š»Ń–стŠ°ŠæŠ°Š“Š°_сŠ½ŠµŠ¶Š½Ń".split("_"),standalone:"стуŠ“Š·ŠµŠ½ŃŒ_Š»ŃŽŃ‚Ń‹_сŠ°ŠŗŠ°Š²Ń–Šŗ_ŠŗрŠ°ŃŠ°Š²Ń–Šŗ_трŠ°Š²ŠµŠ½ŃŒ_чэрŠ²ŠµŠ½ŃŒ_Š»Ń–ŠæŠµŠ½ŃŒ_Š¶Š½Ń–Š²ŠµŠ½ŃŒ_Š²ŠµŃ€Š°ŃŠµŠ½ŃŒ_ŠŗŠ°ŃŃ‚рычŠ½Ń–Šŗ_Š»Ń–стŠ°ŠæŠ°Š“_сŠ½ŠµŠ¶Š°Š½ŃŒ".split("_")},monthsShort:"стуŠ“_Š»ŃŽŃ‚_сŠ°Šŗ_ŠŗрŠ°Ń_трŠ°Š²_чэрŠ²_Š»Ń–Šæ_Š¶Š½Ń–Š²_Š²ŠµŃ€_ŠŗŠ°ŃŃ‚_Š»Ń–ст_сŠ½ŠµŠ¶".split("_"),weekdays:{format:"Š½ŃŠ“Š·ŠµŠ»ŃŽ_ŠæŠ°Š½ŃŠ“Š·ŠµŠ»Š°Šŗ_Š°ŃžŃ‚Š¾Ń€Š°Šŗ_сŠµŃ€Š°Š“у_чŠ°Ń†Š²ŠµŃ€_ŠæятŠ½Ń–Ń†Ńƒ_суŠ±Š¾Ń‚Ńƒ".split("_"),standalone:"Š½ŃŠ“Š·ŠµŠ»Ń_ŠæŠ°Š½ŃŠ“Š·ŠµŠ»Š°Šŗ_Š°ŃžŃ‚Š¾Ń€Š°Šŗ_сŠµŃ€Š°Š“Š°_чŠ°Ń†Š²ŠµŃ€_ŠæятŠ½Ń–цŠ°_суŠ±Š¾Ń‚Š°".split("_"),isFormat:/\[ ?[Š£ŃƒŃž] ?(?:Š¼Ń–Š½ŃƒŠ»ŃƒŃŽ|Š½Š°ŃŃ‚ŃƒŠæŠ½ŃƒŃŽ)? ?\] ?dddd/},weekdaysShort:"Š½Š“_ŠæŠ½_Š°Ń‚_ср_чц_Šæт_сŠ±".split("_"),weekdaysMin:"Š½Š“_ŠæŠ½_Š°Ń‚_ср_чц_Šæт_сŠ±".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Š³.",LLL:"D MMMM YYYY Š³., HH:mm",LLLL:"dddd, D MMMM YYYY Š³., HH:mm"},calendar:{sameDay:"[Š”ёŠ½Š½Ń ў] LT",nextDay:"[Š—Š°ŃžŃ‚Ń€Š° ў] LT",lastDay:"[Š£Ń‡Š¾Ń€Š° ў] LT",nextWeek:function(){return"[Š£] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[Š£ Š¼Ń–Š½ŃƒŠ»ŃƒŃŽ] dddd [ў] LT";case 1:case 2:case 4:return"[Š£ Š¼Ń–Š½ŃƒŠ»Ń‹] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"ŠæрŠ°Š· %s",past:"%s тŠ°Š¼Ńƒ",s:"Š½ŠµŠŗŠ°Š»ŃŒŠŗі сŠµŠŗуŠ½Š“",m:Pi,mm:Pi,h:Pi,hh:Pi,d:"Š“Š·ŠµŠ½ŃŒ",dd:Pi,M:"Š¼ŠµŃŃŃ†",MM:Pi,y:"Š³Š¾Š“",yy:Pi},meridiemParse:/Š½Š¾Ń‡Ń‹|рŠ°Š½Ń–цы|Š“Š½Ń|Š²ŠµŃ‡Š°Ń€Š°/,isPM:function(e){return/^(Š“Š½Ń|Š²ŠµŃ‡Š°Ń€Š°)$/.test(e)},meridiem:function(e,t,n){return e<4?"Š½Š¾Ń‡Ń‹":e<12?"рŠ°Š½Ń–цы":e<17?"Š“Š½Ń":"Š²ŠµŃ‡Š°Ń€Š°"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|Š³Š°)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+"-ы":e+"-і";case"D":return e+"-Š³Š°";default:return e}},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("bg",{months:"яŠ½ŃƒŠ°Ń€Šø_фŠµŠ²Ń€ŃƒŠ°Ń€Šø_Š¼Š°Ń€Ń‚_Š°ŠæрŠøŠ»_Š¼Š°Š¹_юŠ½Šø_юŠ»Šø_Š°Š²Š³ŃƒŃŃ‚_сŠµŠæтŠµŠ¼Š²Ń€Šø_Š¾ŠŗтŠ¾Š¼Š²Ń€Šø_Š½Š¾ŠµŠ¼Š²Ń€Šø_Š“ŠµŠŗŠµŠ¼Š²Ń€Šø".split("_"),monthsShort:"яŠ½Ńƒ_фŠµŠ²_Š¼Š°Ń€_Š°Šæр_Š¼Š°Š¹_юŠ½Šø_юŠ»Šø_Š°Š²Š³_сŠµŠæ_Š¾Šŗт_Š½Š¾Šµ_Š“ŠµŠŗ".split("_"),weekdays:"Š½ŠµŠ“ŠµŠ»Ń_ŠæŠ¾Š½ŠµŠ“ŠµŠ»Š½ŠøŠŗ_Š²Ń‚Š¾Ń€Š½ŠøŠŗ_сряŠ“Š°_чŠµŃ‚Š²ŃŠŃ€Ń‚ŃŠŠŗ_ŠæŠµŃ‚ŃŠŠŗ_съŠ±Š¾Ń‚Š°".split("_"),weekdaysShort:"Š½ŠµŠ“_ŠæŠ¾Š½_Š²Ń‚Š¾_сря_чŠµŃ‚_ŠæŠµŃ‚_съŠ±".split("_"),weekdaysMin:"Š½Š“_ŠæŠ½_Š²Ń‚_ср_чт_Šæт_сŠ±".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Š”Š½ŠµŃ Š²] LT",nextDay:"[Š£Ń‚Ń€Šµ Š²] LT",nextWeek:"dddd [Š²] LT",lastDay:"[Š’чŠµŃ€Š° Š²] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[ŠœŠøŠ½Š°Š»Š°Ń‚Š°] dddd [Š²] LT";case 1:case 2:case 4:case 5:return"[ŠœŠøŠ½Š°Š»Šøя] dddd [Š²] LT"}},sameElse:"L"},relativeTime:{future:"сŠ»ŠµŠ“ %s",past:"ŠæрŠµŠ“Šø %s",s:"Š½ŃŠŗŠ¾Š»ŠŗŠ¾ сŠµŠŗуŠ½Š“Šø",ss:"%d сŠµŠŗуŠ½Š“Šø",m:"Š¼ŠøŠ½ŃƒŃ‚Š°",mm:"%d Š¼ŠøŠ½ŃƒŃ‚Šø",h:"чŠ°Ń",hh:"%d чŠ°ŃŠ°",d:"Š“ŠµŠ½",dd:"%d Š“ŠµŠ½Š°",w:"сŠµŠ“Š¼ŠøцŠ°",ww:"%d сŠµŠ“Š¼ŠøцŠø",M:"Š¼ŠµŃŠµŃ†",MM:"%d Š¼ŠµŃŠµŃ†Š°",y:"Š³Š¾Š“ŠøŠ½Š°",yy:"%d Š³Š¾Š“ŠøŠ½Šø"},dayOfMonthOrdinalParse:/\d{1,2}-(ŠµŠ²|ŠµŠ½|тŠø|Š²Šø|рŠø|Š¼Šø)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ŠµŠ²":0===n?e+"-ŠµŠ½":n>10&&n<20?e+"-тŠø":1===t?e+"-Š²Šø":2===t?e+"-рŠø":7===t||8===t?e+"-Š¼Šø":e+"-тŠø"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des".split("_"),weekdays:"Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm"},calendar:{sameDay:"[Bi lɛrɛ] LT",nextDay:"[Sini lɛrɛ] LT",nextWeek:"dddd [don lɛrɛ] LT",lastDay:"[Kunu lɛrɛ] LT",lastWeek:"dddd [tɛmɛnen lɛrɛ] LT",sameElse:"L"},relativeTime:{future:"%s kɔnɔ",past:"a bɛ %s bɔ",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"lɛrɛ kelen",hh:"lɛrɛ %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Ci={1:"ą§§",2:"ą§Ø",3:"ą§©",4:"ą§Ŗ",5:"ą§«",6:"ą§¬",7:"ą§­",8:"ą§®",9:"ą§Æ",0:"ą§¦"},Oi={"ą§§":"1","ą§Ø":"2","ą§©":"3","ą§Ŗ":"4","ą§«":"5","ą§¬":"6","ą§­":"7","ą§®":"8","ą§Æ":"9","ą§¦":"0"};r.defineLocale("bn-bd",{months:"ą¦œą¦¾ą¦Øą§ą§Ÿą¦¾ą¦°ą¦æ_ą¦«ą§‡ą¦¬ą§ą¦°ą§ą§Ÿą¦¾ą¦°ą¦æ_ą¦®ą¦¾ą¦°ą§ą¦š_ą¦ą¦Ŗą§ą¦°ą¦æą¦²_ą¦®ą§‡_ą¦œą§ą¦Ø_ą¦œą§ą¦²ą¦¾ą¦‡_ą¦†ą¦—ą¦øą§ą¦Ÿ_ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°_ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°_ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°_ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°".split("_"),monthsShort:"ą¦œą¦¾ą¦Øą§_ą¦«ą§‡ą¦¬ą§ą¦°ą§_ą¦®ą¦¾ą¦°ą§ą¦š_ą¦ą¦Ŗą§ą¦°ą¦æą¦²_ą¦®ą§‡_ą¦œą§ą¦Ø_ą¦œą§ą¦²ą¦¾ą¦‡_ą¦†ą¦—ą¦øą§ą¦Ÿ_ą¦øą§‡ą¦Ŗą§ą¦Ÿ_ą¦…ą¦•ą§ą¦Ÿą§‹_ą¦Øą¦­ą§‡_ą¦”ą¦æą¦øą§‡".split("_"),weekdays:"ą¦°ą¦¬ą¦æą¦¬ą¦¾ą¦°_ą¦øą§‹ą¦®ą¦¬ą¦¾ą¦°_ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°_ą¦¬ą§ą¦§ą¦¬ą¦¾ą¦°_ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°_ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°_ą¦¶ą¦Øą¦æą¦¬ą¦¾ą¦°".split("_"),weekdaysShort:"ą¦°ą¦¬ą¦æ_ą¦øą§‹ą¦®_ą¦®ą¦™ą§ą¦—ą¦²_ą¦¬ą§ą¦§_ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æ_ą¦¶ą§ą¦•ą§ą¦°_ą¦¶ą¦Øą¦æ".split("_"),weekdaysMin:"ą¦°ą¦¬ą¦æ_ą¦øą§‹ą¦®_ą¦®ą¦™ą§ą¦—ą¦²_ą¦¬ą§ą¦§_ą¦¬ą§ƒą¦¹_ą¦¶ą§ą¦•ą§ą¦°_ą¦¶ą¦Øą¦æ".split("_"),longDateFormat:{LT:"A h:mm ą¦øą¦®ą§Ÿ",LTS:"A h:mm:ss ą¦øą¦®ą§Ÿ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ą¦øą¦®ą§Ÿ",LLLL:"dddd, D MMMM YYYY, A h:mm ą¦øą¦®ą§Ÿ"},calendar:{sameDay:"[ą¦†ą¦œ] LT",nextDay:"[ą¦†ą¦—ą¦¾ą¦®ą§€ą¦•ą¦¾ą¦²] LT",nextWeek:"dddd, LT",lastDay:"[ą¦—ą¦¤ą¦•ą¦¾ą¦²] LT",lastWeek:"[ą¦—ą¦¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą¦Ŗą¦°ą§‡",past:"%s ą¦†ą¦—ą§‡",s:"ą¦•ą§Ÿą§‡ą¦• ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”",ss:"%d ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”",m:"ą¦ą¦• ą¦®ą¦æą¦Øą¦æą¦Ÿ",mm:"%d ą¦®ą¦æą¦Øą¦æą¦Ÿ",h:"ą¦ą¦• ą¦˜ą¦Øą§ą¦Ÿą¦¾",hh:"%d ą¦˜ą¦Øą§ą¦Ÿą¦¾",d:"ą¦ą¦• ą¦¦ą¦æą¦Ø",dd:"%d ą¦¦ą¦æą¦Ø",M:"ą¦ą¦• ą¦®ą¦¾ą¦ø",MM:"%d ą¦®ą¦¾ą¦ø",y:"ą¦ą¦• ą¦¬ą¦›ą¦°",yy:"%d ą¦¬ą¦›ą¦°"},preparse:function(e){return e.replace(/[ą§§ą§Øą§©ą§Ŗą§«ą§¬ą§­ą§®ą§Æą§¦]/g,(function(e){return Oi[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Ci[e]}))},meridiemParse:/ą¦°ą¦¾ą¦¤|ą¦­ą§‹ą¦°|ą¦øą¦•ą¦¾ą¦²|ą¦¦ą§ą¦Ŗą§ą¦°|ą¦¬ą¦æą¦•ą¦¾ą¦²|ą¦øą¦Øą§ą¦§ą§ą¦Æą¦¾|ą¦°ą¦¾ą¦¤/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¦°ą¦¾ą¦¤"===t?e<4?e:e+12:"ą¦­ą§‹ą¦°"===t||"ą¦øą¦•ą¦¾ą¦²"===t?e:"ą¦¦ą§ą¦Ŗą§ą¦°"===t?e>=3?e:e+12:"ą¦¬ą¦æą¦•ą¦¾ą¦²"===t||"ą¦øą¦Øą§ą¦§ą§ą¦Æą¦¾"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ą¦°ą¦¾ą¦¤":e<6?"ą¦­ą§‹ą¦°":e<12?"ą¦øą¦•ą¦¾ą¦²":e<15?"ą¦¦ą§ą¦Ŗą§ą¦°":e<18?"ą¦¬ą¦æą¦•ą¦¾ą¦²":e<20?"ą¦øą¦Øą§ą¦§ą§ą¦Æą¦¾":"ą¦°ą¦¾ą¦¤"},week:{dow:0,doy:6}}); -//! moment.js locale configuration -var Ei={1:"ą§§",2:"ą§Ø",3:"ą§©",4:"ą§Ŗ",5:"ą§«",6:"ą§¬",7:"ą§­",8:"ą§®",9:"ą§Æ",0:"ą§¦"},ji={"ą§§":"1","ą§Ø":"2","ą§©":"3","ą§Ŗ":"4","ą§«":"5","ą§¬":"6","ą§­":"7","ą§®":"8","ą§Æ":"9","ą§¦":"0"};r.defineLocale("bn",{months:"ą¦œą¦¾ą¦Øą§ą§Ÿą¦¾ą¦°ą¦æ_ą¦«ą§‡ą¦¬ą§ą¦°ą§ą§Ÿą¦¾ą¦°ą¦æ_ą¦®ą¦¾ą¦°ą§ą¦š_ą¦ą¦Ŗą§ą¦°ą¦æą¦²_ą¦®ą§‡_ą¦œą§ą¦Ø_ą¦œą§ą¦²ą¦¾ą¦‡_ą¦†ą¦—ą¦øą§ą¦Ÿ_ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°_ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°_ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°_ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°".split("_"),monthsShort:"ą¦œą¦¾ą¦Øą§_ą¦«ą§‡ą¦¬ą§ą¦°ą§_ą¦®ą¦¾ą¦°ą§ą¦š_ą¦ą¦Ŗą§ą¦°ą¦æą¦²_ą¦®ą§‡_ą¦œą§ą¦Ø_ą¦œą§ą¦²ą¦¾ą¦‡_ą¦†ą¦—ą¦øą§ą¦Ÿ_ą¦øą§‡ą¦Ŗą§ą¦Ÿ_ą¦…ą¦•ą§ą¦Ÿą§‹_ą¦Øą¦­ą§‡_ą¦”ą¦æą¦øą§‡".split("_"),weekdays:"ą¦°ą¦¬ą¦æą¦¬ą¦¾ą¦°_ą¦øą§‹ą¦®ą¦¬ą¦¾ą¦°_ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°_ą¦¬ą§ą¦§ą¦¬ą¦¾ą¦°_ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°_ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°_ą¦¶ą¦Øą¦æą¦¬ą¦¾ą¦°".split("_"),weekdaysShort:"ą¦°ą¦¬ą¦æ_ą¦øą§‹ą¦®_ą¦®ą¦™ą§ą¦—ą¦²_ą¦¬ą§ą¦§_ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æ_ą¦¶ą§ą¦•ą§ą¦°_ą¦¶ą¦Øą¦æ".split("_"),weekdaysMin:"ą¦°ą¦¬ą¦æ_ą¦øą§‹ą¦®_ą¦®ą¦™ą§ą¦—ą¦²_ą¦¬ą§ą¦§_ą¦¬ą§ƒą¦¹_ą¦¶ą§ą¦•ą§ą¦°_ą¦¶ą¦Øą¦æ".split("_"),longDateFormat:{LT:"A h:mm ą¦øą¦®ą§Ÿ",LTS:"A h:mm:ss ą¦øą¦®ą§Ÿ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ą¦øą¦®ą§Ÿ",LLLL:"dddd, D MMMM YYYY, A h:mm ą¦øą¦®ą§Ÿ"},calendar:{sameDay:"[ą¦†ą¦œ] LT",nextDay:"[ą¦†ą¦—ą¦¾ą¦®ą§€ą¦•ą¦¾ą¦²] LT",nextWeek:"dddd, LT",lastDay:"[ą¦—ą¦¤ą¦•ą¦¾ą¦²] LT",lastWeek:"[ą¦—ą¦¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą¦Ŗą¦°ą§‡",past:"%s ą¦†ą¦—ą§‡",s:"ą¦•ą§Ÿą§‡ą¦• ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”",ss:"%d ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”",m:"ą¦ą¦• ą¦®ą¦æą¦Øą¦æą¦Ÿ",mm:"%d ą¦®ą¦æą¦Øą¦æą¦Ÿ",h:"ą¦ą¦• ą¦˜ą¦Øą§ą¦Ÿą¦¾",hh:"%d ą¦˜ą¦Øą§ą¦Ÿą¦¾",d:"ą¦ą¦• ą¦¦ą¦æą¦Ø",dd:"%d ą¦¦ą¦æą¦Ø",M:"ą¦ą¦• ą¦®ą¦¾ą¦ø",MM:"%d ą¦®ą¦¾ą¦ø",y:"ą¦ą¦• ą¦¬ą¦›ą¦°",yy:"%d ą¦¬ą¦›ą¦°"},preparse:function(e){return e.replace(/[ą§§ą§Øą§©ą§Ŗą§«ą§¬ą§­ą§®ą§Æą§¦]/g,(function(e){return ji[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Ei[e]}))},meridiemParse:/ą¦°ą¦¾ą¦¤|ą¦øą¦•ą¦¾ą¦²|ą¦¦ą§ą¦Ŗą§ą¦°|ą¦¬ą¦æą¦•ą¦¾ą¦²|ą¦°ą¦¾ą¦¤/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¦°ą¦¾ą¦¤"===t&&e>=4||"ą¦¦ą§ą¦Ŗą§ą¦°"===t&&e<5||"ą¦¬ą¦æą¦•ą¦¾ą¦²"===t?e+12:e},meridiem:function(e,t,n){return e<4?"ą¦°ą¦¾ą¦¤":e<10?"ą¦øą¦•ą¦¾ą¦²":e<17?"ą¦¦ą§ą¦Ŗą§ą¦°":e<20?"ą¦¬ą¦æą¦•ą¦¾ą¦²":"ą¦°ą¦¾ą¦¤"},week:{dow:0,doy:6}}); -//! moment.js locale configuration -var Hi={1:"ą¼”",2:"ą¼¢",3:"ą¼£",4:"ą¼¤",5:"ą¼„",6:"ą¼¦",7:"ą¼§",8:"ą¼Ø",9:"ą¼©",0:"ą¼ "},Ni={"ą¼”":"1","ą¼¢":"2","ą¼£":"3","ą¼¤":"4","ą¼„":"5","ą¼¦":"6","ą¼§":"7","ą¼Ø":"8","ą¼©":"9","ą¼ ":"0"}; -//! moment.js locale configuration -function Ai(e,t,n){return e+" "+Wi({mm:"munutenn",MM:"miz",dd:"devezh"}[n],e)}function Ri(e){switch(Fi(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}function Fi(e){return e>9?Fi(e%10):e}function Wi(e,t){return 2===t?Ii(e):e}function Ii(e){var t={m:"v",b:"v",d:"z"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}r.defineLocale("bo",{months:"ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”_ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”".split("_"),monthsShort:"ą½Ÿą¾³ą¼‹1_ą½Ÿą¾³ą¼‹2_ą½Ÿą¾³ą¼‹3_ą½Ÿą¾³ą¼‹4_ą½Ÿą¾³ą¼‹5_ą½Ÿą¾³ą¼‹6_ą½Ÿą¾³ą¼‹7_ą½Ÿą¾³ą¼‹8_ą½Ÿą¾³ą¼‹9_ą½Ÿą¾³ą¼‹10_ą½Ÿą¾³ą¼‹11_ą½Ÿą¾³ą¼‹12".split("_"),monthsShortRegex:/^(ą½Ÿą¾³ą¼‹\d{1,2})/,monthsParseExact:!0,weekdays:"ą½‚ą½Ÿą½ ą¼‹ą½‰ą½²ą¼‹ą½˜ą¼‹_ą½‚ą½Ÿą½ ą¼‹ą½Ÿą¾³ą¼‹ą½–ą¼‹_ą½‚ą½Ÿą½ ą¼‹ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹_ą½‚ą½Ÿą½ ą¼‹ą½£ą¾·ą½‚ą¼‹ą½”ą¼‹_ą½‚ą½Ÿą½ ą¼‹ą½•ą½“ą½¢ą¼‹ą½–ą½“_ą½‚ą½Ÿą½ ą¼‹ą½”ą¼‹ą½¦ą½„ą½¦ą¼‹_ą½‚ą½Ÿą½ ą¼‹ą½¦ą¾¤ą½ŗą½“ą¼‹ą½”ą¼‹".split("_"),weekdaysShort:"ą½‰ą½²ą¼‹ą½˜ą¼‹_ą½Ÿą¾³ą¼‹ą½–ą¼‹_ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹_ą½£ą¾·ą½‚ą¼‹ą½”ą¼‹_ą½•ą½“ą½¢ą¼‹ą½–ą½“_ą½”ą¼‹ą½¦ą½„ą½¦ą¼‹_ą½¦ą¾¤ą½ŗą½“ą¼‹ą½”ą¼‹".split("_"),weekdaysMin:"ą½‰ą½²_ą½Ÿą¾³_ą½˜ą½²ą½‚_ą½£ą¾·ą½‚_ą½•ą½“ą½¢_ą½¦ą½„ą½¦_ą½¦ą¾¤ą½ŗą½“".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ą½‘ą½²ą¼‹ą½¢ą½²ą½„] LT",nextDay:"[ą½¦ą½„ą¼‹ą½‰ą½²ą½“] LT",nextWeek:"[ą½–ą½‘ą½“ą½“ą¼‹ą½•ą¾²ą½‚ą¼‹ą½¢ą¾—ą½ŗą½¦ą¼‹ą½˜], LT",lastDay:"[ą½ą¼‹ą½¦ą½„] LT",lastWeek:"[ą½–ą½‘ą½“ą½“ą¼‹ą½•ą¾²ą½‚ą¼‹ą½˜ą½ą½ ą¼‹ą½˜] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą½£ą¼‹",past:"%s ą½¦ą¾”ą½“ą¼‹ą½£",s:"ą½£ą½˜ą¼‹ą½¦ą½„",ss:"%d ą½¦ą¾ą½¢ą¼‹ą½†ą¼",m:"ą½¦ą¾ą½¢ą¼‹ą½˜ą¼‹ą½‚ą½…ą½²ą½‚",mm:"%d ą½¦ą¾ą½¢ą¼‹ą½˜",h:"ą½†ą½“ą¼‹ą½šą½¼ą½‘ą¼‹ą½‚ą½…ą½²ą½‚",hh:"%d ą½†ą½“ą¼‹ą½šą½¼ą½‘",d:"ą½‰ą½²ą½“ą¼‹ą½‚ą½…ą½²ą½‚",dd:"%d ą½‰ą½²ą½“ą¼‹",M:"ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½…ą½²ą½‚",MM:"%d ą½Ÿą¾³ą¼‹ą½–",y:"ą½£ą½¼ą¼‹ą½‚ą½…ą½²ą½‚",yy:"%d ą½£ą½¼"},preparse:function(e){return e.replace(/[ą¼”ą¼¢ą¼£ą¼¤ą¼„ą¼¦ą¼§ą¼Øą¼©ą¼ ]/g,(function(e){return Ni[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Hi[e]}))},meridiemParse:/ą½˜ą½šą½“ą¼‹ą½˜ą½¼|ą½žą½¼ą½‚ą½¦ą¼‹ą½€ą½¦|ą½‰ą½²ą½“ą¼‹ą½‚ą½“ą½„|ą½‘ą½‚ą½¼ą½„ą¼‹ą½‘ą½‚|ą½˜ą½šą½“ą¼‹ą½˜ą½¼/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą½˜ą½šą½“ą¼‹ą½˜ą½¼"===t&&e>=4||"ą½‰ą½²ą½“ą¼‹ą½‚ą½“ą½„"===t&&e<5||"ą½‘ą½‚ą½¼ą½„ą¼‹ą½‘ą½‚"===t?e+12:e},meridiem:function(e,t,n){return e<4?"ą½˜ą½šą½“ą¼‹ą½˜ą½¼":e<10?"ą½žą½¼ą½‚ą½¦ą¼‹ą½€ą½¦":e<17?"ą½‰ą½²ą½“ą¼‹ą½‚ą½“ą½„":e<20?"ą½‘ą½‚ą½¼ą½„ą¼‹ą½‘ą½‚":"ą½˜ą½šą½“ą¼‹ą½˜ą½¼"},week:{dow:0,doy:6}});var zi=[/^gen/i,/^c[Ź¼\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],Ui=/^(genver|c[Ź¼\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[Ź¼\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,$i=/^(genver|c[Ź¼\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,Bi=/^(gen|c[Ź¼\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,qi=[/^sul/i,/^lun/i,/^meurzh/i,/^merc[Ź¼\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],Vi=[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],Ji=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i]; -//! moment.js locale configuration -function Gi(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return r+=1===e?"dan":"dana";case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}r.defineLocale("br",{months:"Genver_CŹ¼hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_CŹ¼hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_MercŹ¼her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParse:Ji,fullWeekdaysParse:qi,shortWeekdaysParse:Vi,minWeekdaysParse:Ji,monthsRegex:Ui,monthsShortRegex:Ui,monthsStrictRegex:$i,monthsShortStrictRegex:Bi,monthsParse:zi,longMonthsParse:zi,shortMonthsParse:zi,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[WarcŹ¼hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[DecŹ¼h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s Ź¼zo",s:"un nebeud segondennoĆ¹",ss:"%d eilenn",m:"ur vunutenn",mm:Ai,h:"un eur",hh:"%d eur",d:"un devezh",dd:Ai,M:"ur miz",MM:Ai,y:"ur bloaz",yy:Ri},dayOfMonthOrdinalParse:/\d{1,2}(aƱ|vet)/,ordinal:function(e){return e+(1===e?"aƱ":"vet")},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(e){return"g.m."===e},meridiem:function(e,t,n){return e<12?"a.m.":"g.m."}}),r.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[proÅ”lu] dddd [u] LT";case 6:return"[proÅ”le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[proÅ”li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:Gi,m:Gi,mm:Gi,h:Gi,hh:Gi,d:"dan",dd:Gi,M:"mjesec",MM:Gi,y:"godinu",yy:Gi},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("ca",{months:{standalone:"gener_febrer_marƧ_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de marƧ_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._marƧ_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demĆ  a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquĆ­ %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|ĆØ|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"ĆØ";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Qi={format:"leden_Ćŗnor_březen_duben_květen_červen_červenec_srpen_zĆ”Å™Ć­_Å™Ć­jen_listopad_prosinec".split("_"),standalone:"ledna_Ćŗnora_března_dubna_května_června_července_srpna_zĆ”Å™Ć­_Å™Ć­jna_listopadu_prosince".split("_")},Ki="led_Ćŗno_bře_dub_kvě_čvn_čvc_srp_zĆ”Å™_Å™Ć­j_lis_pro".split("_"),Xi=[/^led/i,/^Ćŗno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zĆ”Å™/i,/^Å™Ć­j/i,/^lis/i,/^pro/i],Zi=/^(leden|Ćŗnor|březen|duben|květen|červenec|července|červen|června|srpen|zĆ”Å™Ć­|Å™Ć­jen|listopad|prosinec|led|Ćŗno|bře|dub|kvě|čvn|čvc|srp|zĆ”Å™|Å™Ć­j|lis|pro)/i;function es(e){return e>1&&e<5&&1!=~~(e/10)}function ts(e,t,n,r){var a=e+" ";switch(n){case"s":return t||r?"pĆ”r sekund":"pĆ”r sekundami";case"ss":return t||r?a+(es(e)?"sekundy":"sekund"):a+"sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?a+(es(e)?"minuty":"minut"):a+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?a+(es(e)?"hodiny":"hodin"):a+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?a+(es(e)?"dny":"dnĆ­"):a+"dny";case"M":return t||r?"měsĆ­c":"měsĆ­cem";case"MM":return t||r?a+(es(e)?"měsĆ­ce":"měsĆ­cÅÆ"):a+"měsĆ­ci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?a+(es(e)?"roky":"let"):a+"lety"}} -//! moment.js locale configuration -function ns(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]} -//! moment.js locale configuration -function rs(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]} -//! moment.js locale configuration -function as(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]}r.defineLocale("cs",{months:Qi,monthsShort:Ki,monthsRegex:Zi,monthsShortRegex:Zi,monthsStrictRegex:/^(leden|ledna|Ćŗnora|Ćŗnor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|zĆ”Å™Ć­|Å™Ć­jen|Å™Ć­jna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|Ćŗno|bře|dub|kvě|čvn|čvc|srp|zĆ”Å™|Å™Ć­j|lis|pro)/i,monthsParse:Xi,longMonthsParse:Xi,shortMonthsParse:Xi,weekdays:"neděle_pondělĆ­_ĆŗterĆ½_středa_čtvrtek_pĆ”tek_sobota".split("_"),weekdaysShort:"ne_po_Ćŗt_st_čt_pĆ”_so".split("_"),weekdaysMin:"ne_po_Ćŗt_st_čt_pĆ”_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zĆ­tra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pĆ”tek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulĆ©] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulĆ½] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:ts,ss:ts,m:ts,mm:ts,h:ts,hh:ts,d:ts,dd:ts,M:ts,MM:ts,y:ts,yy:ts},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("cv",{months:"ŠŗӑрŠ»Š°Ń‡_Š½Š°Ń€Ó‘с_Šæуш_Š°ŠŗŠ°_Š¼Š°Š¹_Ņ«Ó—ртŠ¼Šµ_утӑ_Ņ«ŃƒŃ€Š»Š°_Š°Š²Ó‘Š½_юŠæŠ°_Ń‡Ó³Šŗ_рŠ°ŃˆŃ‚Š°Š²".split("_"),monthsShort:"Šŗӑр_Š½Š°Ń€_Šæуш_Š°ŠŗŠ°_Š¼Š°Š¹_Ņ«Ó—Ń€_утӑ_Ņ«ŃƒŃ€_Š°Š²Š½_юŠæŠ°_Ń‡Ó³Šŗ_рŠ°Ńˆ".split("_"),weekdays:"Š²Ń‹Ń€ŃŠ°Ń€Š½ŠøŠŗуŠ½_туŠ½Ń‚ŠøŠŗуŠ½_ытŠ»Š°Ń€ŠøŠŗуŠ½_юŠ½ŠŗуŠ½_ŠŗӗŅ«Š½ŠµŃ€Š½ŠøŠŗуŠ½_эрŠ½ŠµŠŗуŠ½_шӑŠ¼Š°Ń‚ŠŗуŠ½".split("_"),weekdaysShort:"Š²Ń‹Ń€_туŠ½_ытŠ»_юŠ½_ŠŗӗŅ«_эрŠ½_шӑŠ¼".split("_"),weekdaysMin:"Š²Ń€_тŠ½_ыт_юŠ½_ŠŗŅ«_эр_шŠ¼".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [уŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—]",LLL:"YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [уŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—], HH:mm",LLLL:"dddd, YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [уŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—], HH:mm"},calendar:{sameDay:"[ŠŸŠ°ŃŠ½] LT [сŠµŃ…ŠµŃ‚Ń€Šµ]",nextDay:"[Š«Ń€Š°Š½] LT [сŠµŃ…ŠµŃ‚Ń€Šµ]",lastDay:"[ӖŠ½ŠµŃ€] LT [сŠµŃ…ŠµŃ‚Ń€Šµ]",nextWeek:"[ŅŖŠøтŠµŃ] dddd LT [сŠµŃ…ŠµŃ‚Ń€Šµ]",lastWeek:"[Š˜Ń€Ń‚Š½Ó—] dddd LT [сŠµŃ…ŠµŃ‚Ń€Šµ]",sameElse:"L"},relativeTime:{future:function(e){return e+(/сŠµŃ…ŠµŃ‚$/i.exec(e)?"рŠµŠ½":/Ņ«ŃƒŠ»$/i.exec(e)?"тŠ°Š½":"рŠ°Š½")},past:"%s ŠŗŠ°ŃŠ»Š»Š°",s:"Šæӗр-ŠøŠŗ Ņ«ŠµŠŗŠŗуŠ½Ń‚",ss:"%d Ņ«ŠµŠŗŠŗуŠ½Ń‚",m:"Šæӗр Š¼ŠøŠ½ŃƒŃ‚",mm:"%d Š¼ŠøŠ½ŃƒŃ‚",h:"Šæӗр сŠµŃ…ŠµŃ‚",hh:"%d сŠµŃ…ŠµŃ‚",d:"Šæӗр ŠŗуŠ½",dd:"%d ŠŗуŠ½",M:"Šæӗр уŠ¹Ó‘Ń…",MM:"%d уŠ¹Ó‘Ń…",y:"Šæӗр Ņ«ŃƒŠ»",yy:"%d Ņ«ŃƒŠ»"},dayOfMonthOrdinalParse:/\d{1,2}-Š¼Ó—Ńˆ/,ordinal:"%d-Š¼Ó—Ńˆ",week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn Ć“l",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t="";return e>20?t=40===e||50===e||60===e||80===e||100===e?"fed":"ain":e>0&&(t=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"][e]),e+t},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"sĆøndag_mandag_tirsdag_onsdag_torsdag_fredag_lĆørdag".split("_"),weekdaysShort:"sĆøn_man_tir_ons_tor_fre_lĆør".split("_"),weekdaysMin:"sĆø_ma_ti_on_to_fr_lĆø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"pĆ„ dddd [kl.] LT",lastDay:"[i gĆ„r kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"fĆ„ sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en mĆ„ned",MM:"%d mĆ„neder",y:"et Ć„r",yy:"%d Ć„r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),r.defineLocale("de-at",{months:"JƤnner_Februar_MƤrz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"JƤn._Feb._MƤrz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:ns,mm:"%d Minuten",h:ns,hh:"%d Stunden",d:ns,dd:ns,w:ns,ww:"%d Wochen",M:ns,MM:ns,y:ns,yy:ns},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),r.defineLocale("de-ch",{months:"Januar_Februar_MƤrz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._MƤrz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:rs,mm:"%d Minuten",h:rs,hh:"%d Stunden",d:rs,dd:rs,w:rs,ww:"%d Wochen",M:rs,MM:rs,y:rs,yy:rs},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),r.defineLocale("de",{months:"Januar_Februar_MƤrz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._MƤrz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:as,mm:"%d Minuten",h:as,hh:"%d Stunden",d:as,dd:as,w:as,ww:"%d Wochen",M:as,MM:as,y:as,yy:as},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var os=["Ž–Ž¬Ž‚ŽŖŽ‡Ž¦ŽƒŽ©","ŽŠŽ¬Ž„Ž°ŽƒŽŖŽ‡Ž¦ŽƒŽ©","Ž‰Ž§ŽƒŽØŽ—ŽŖ","Ž‡Ž­Ž•Ž°ŽƒŽ©ŽŽŖ","Ž‰Ž­","Ž–Ž«Ž‚Ž°","Ž–ŽŖŽŽ¦Ž‡ŽØ","Ž‡ŽÆŽŽŽ¦ŽŽ°Ž“ŽŖ","ŽŽ¬Ž•Ž°Ž“Ž¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ","Ž‡Ž®Ž†Ž°Ž“ŽÆŽ„Ž¦ŽƒŽŖ","Ž‚Ž®ŽˆŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ","Ž‘ŽØŽŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ"],is=["Ž‡Ž§Ž‹ŽØŽ‡Ž°ŽŒŽ¦","Ž€ŽÆŽ‰Ž¦","Ž‡Ž¦Ž‚Ž°ŽŽŽ§ŽƒŽ¦","Ž„ŽŖŽ‹Ž¦","Ž„ŽŖŽƒŽ§ŽŽ°ŽŠŽ¦ŽŒŽØ","Ž€ŽŖŽ†ŽŖŽƒŽŖ","Ž€Ž®Ž‚ŽØŽ€ŽØŽƒŽŖ"]; -//! moment.js locale configuration -function ss(e){return"undefined"!=typeof Function&&e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}r.defineLocale("dv",{months:os,monthsShort:os,weekdays:is,weekdaysShort:is,weekdaysMin:"Ž‡Ž§Ž‹ŽØ_Ž€ŽÆŽ‰Ž¦_Ž‡Ž¦Ž‚Ž°_Ž„ŽŖŽ‹Ž¦_Ž„ŽŖŽƒŽ§_Ž€ŽŖŽ†ŽŖ_Ž€Ž®Ž‚ŽØ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/Ž‰Ž†|Ž‰ŽŠ/,isPM:function(e){return"Ž‰ŽŠ"===e},meridiem:function(e,t,n){return e<12?"Ž‰Ž†":"Ž‰ŽŠ"},calendar:{sameDay:"[Ž‰ŽØŽ‡Ž¦Ž‹ŽŖ] LT",nextDay:"[Ž‰Ž§Ž‹Ž¦Ž‰Ž§] LT",nextWeek:"dddd LT",lastDay:"[Ž‡ŽØŽ‡Ž°Ž”Ž¬] LT",lastWeek:"[ŽŠŽ§Ž‡ŽØŽŒŽŖŽˆŽØ] dddd LT",sameElse:"L"},relativeTime:{future:"ŽŒŽ¬ŽƒŽ­ŽŽŽ¦Ž‡ŽØ %s",past:"Ž†ŽŖŽƒŽØŽ‚Ž° %s",s:"ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖŽ†Ž®Ž…Ž¬Ž‡Ž°",ss:"d% ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖ",m:"Ž‰ŽØŽ‚ŽØŽ“Ž¬Ž‡Ž°",mm:"Ž‰ŽØŽ‚ŽØŽ“ŽŖ %d",h:"ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽ¬Ž‡Ž°",hh:"ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽŖ %d",d:"Ž‹ŽŖŽˆŽ¦Ž€Ž¬Ž‡Ž°",dd:"Ž‹ŽŖŽˆŽ¦ŽŽ° %d",M:"Ž‰Ž¦Ž€Ž¬Ž‡Ž°",MM:"Ž‰Ž¦ŽŽ° %d",y:"Ž‡Ž¦Ž€Ž¦ŽƒŽ¬Ž‡Ž°",yy:"Ž‡Ž¦Ž€Ž¦ŽƒŽŖ %d"},preparse:function(e){return e.replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/,/g,"ŲŒ")},week:{dow:7,doy:12}}),r.defineLocale("el",{monthsNominativeEl:"Ī™Ī±Ī½ĪæĻ…Ī¬ĻĪ¹ĪæĻ‚_Ī¦ĪµĪ²ĻĪæĻ…Ī¬ĻĪ¹ĪæĻ‚_ĪœĪ¬ĻĻ„Ī¹ĪæĻ‚_Ī‘Ļ€ĻĪÆĪ»Ī¹ĪæĻ‚_ĪœĪ¬Ī¹ĪæĻ‚_Ī™ĪæĻĪ½Ī¹ĪæĻ‚_Ī™ĪæĻĪ»Ī¹ĪæĻ‚_Ī‘ĻĪ³ĪæĻ…ĻƒĻ„ĪæĻ‚_Ī£ĪµĻ€Ļ„Ī­Ī¼Ī²ĻĪ¹ĪæĻ‚_ĪŸĪŗĻ„ĻŽĪ²ĻĪ¹ĪæĻ‚_ĪĪæĪ­Ī¼Ī²ĻĪ¹ĪæĻ‚_Ī”ĪµĪŗĪ­Ī¼Ī²ĻĪ¹ĪæĻ‚".split("_"),monthsGenitiveEl:"Ī™Ī±Ī½ĪæĻ…Ī±ĻĪÆĪæĻ…_Ī¦ĪµĪ²ĻĪæĻ…Ī±ĻĪÆĪæĻ…_ĪœĪ±ĻĻ„ĪÆĪæĻ…_Ī‘Ļ€ĻĪ¹Ī»ĪÆĪæĻ…_ĪœĪ±ĪĪæĻ…_Ī™ĪæĻ…Ī½ĪÆĪæĻ…_Ī™ĪæĻ…Ī»ĪÆĪæĻ…_Ī‘Ļ…Ī³ĪæĻĻƒĻ„ĪæĻ…_Ī£ĪµĻ€Ļ„ĪµĪ¼Ī²ĻĪÆĪæĻ…_ĪŸĪŗĻ„Ļ‰Ī²ĻĪÆĪæĻ…_ĪĪæĪµĪ¼Ī²ĻĪÆĪæĻ…_Ī”ĪµĪŗĪµĪ¼Ī²ĻĪÆĪæĻ…".split("_"),months:function(e,t){return e?"string"==typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ī™Ī±Ī½_Ī¦ĪµĪ²_ĪœĪ±Ļ_Ī‘Ļ€Ļ_ĪœĪ±ĻŠ_Ī™ĪæĻ…Ī½_Ī™ĪæĻ…Ī»_Ī‘Ļ…Ī³_Ī£ĪµĻ€_ĪŸĪŗĻ„_ĪĪæĪµ_Ī”ĪµĪŗ".split("_"),weekdays:"ĪšĻ…ĻĪ¹Ī±ĪŗĪ®_Ī”ĪµĻ…Ļ„Ī­ĻĪ±_Ī¤ĻĪÆĻ„Ī·_Ī¤ĪµĻ„Ī¬ĻĻ„Ī·_Ī Ī­Ī¼Ļ€Ļ„Ī·_Ī Ī±ĻĪ±ĻƒĪŗĪµĻ…Ī®_Ī£Ī¬Ī²Ī²Ī±Ļ„Īæ".split("_"),weekdaysShort:"ĪšĻ…Ļ_Ī”ĪµĻ…_Ī¤ĻĪ¹_Ī¤ĪµĻ„_Ī ĪµĪ¼_Ī Ī±Ļ_Ī£Ī±Ī²".split("_"),weekdaysMin:"ĪšĻ…_Ī”Īµ_Ī¤Ļ_Ī¤Īµ_Ī Īµ_Ī Ī±_Ī£Ī±".split("_"),meridiem:function(e,t,n){return e>11?n?"Ī¼Ī¼":"ĪœĪœ":n?"Ļ€Ī¼":"Ī Īœ"},isPM:function(e){return"Ī¼"===(e+"").toLowerCase()[0]},meridiemParse:/[Ī Īœ]\.?Īœ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Ī£Ī®Ī¼ĪµĻĪ± {}] LT",nextDay:"[Ī‘ĻĻĪ¹Īæ {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Ī§ĪøĪµĻ‚ {}] LT",lastWeek:function(){return 6===this.day()?"[Ļ„Īæ Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Īæ] dddd [{}] LT":"[Ļ„Ī·Ī½ Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Ī·] dddd [{}] LT"},sameElse:"L"},calendar:function(e,t){var n=this._calendarEl[e],r=t&&t.hours();return ss(n)&&(n=n.apply(t)),n.replace("{}",r%12==1?"ĻƒĻ„Ī·":"ĻƒĻ„Ī¹Ļ‚")},relativeTime:{future:"ĻƒĪµ %s",past:"%s Ļ€ĻĪ¹Ī½",s:"Ī»ĪÆĪ³Ī± Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī±",ss:"%d Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī±",m:"Ī­Ī½Ī± Ī»ĪµĻ€Ļ„ĻŒ",mm:"%d Ī»ĪµĻ€Ļ„Ī¬",h:"Ī¼ĪÆĪ± ĻŽĻĪ±",hh:"%d ĻŽĻĪµĻ‚",d:"Ī¼ĪÆĪ± Ī¼Ī­ĻĪ±",dd:"%d Ī¼Ī­ĻĪµĻ‚",M:"Ī­Ī½Ī±Ļ‚ Ī¼Ī®Ī½Ī±Ļ‚",MM:"%d Ī¼Ī®Ī½ĪµĻ‚",y:"Ī­Ī½Ī±Ļ‚ Ļ‡ĻĻŒĪ½ĪæĻ‚",yy:"%d Ļ‡ĻĻŒĪ½Ī¹Ī±"},dayOfMonthOrdinalParse:/\d{1,2}Ī·/,ordinal:"%dĪ·",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:0,doy:4}}), -//! moment.js locale configuration -r.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}), -//! moment.js locale configuration -r.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}), -//! moment.js locale configuration -r.defineLocale("en-in",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("en-sg",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aÅ­gusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_aÅ­g_sept_okt_nov_dec".split("_"),weekdays:"dimanĉo_lundo_mardo_merkredo_ĵaÅ­do_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaÅ­_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return"p"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?"p.t.m.":"P.T.M.":n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[HodiaÅ­ je] LT",nextDay:"[MorgaÅ­ je] LT",nextWeek:"dddd[n je] LT",lastDay:"[HieraÅ­ je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaÅ­ %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}}); -//! moment.js locale configuration -var ls="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),us="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),ds=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],cs=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;r.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?us[e.month()]:ls[e.month()]:ls},monthsRegex:cs,monthsShortRegex:cs,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:ds,longMonthsParse:ds,shortMonthsParse:ds,weekdays:"domingo_lunes_martes_miĆ©rcoles_jueves_viernes_sĆ”bado".split("_"),weekdaysShort:"dom._lun._mar._miĆ©._jue._vie._sĆ”b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[maƱana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĆ­a",dd:"%d dĆ­as",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un aƱo",yy:"%d aƱos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var fs="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),ps="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),hs=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],ms=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;r.defineLocale("es-mx",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?ps[e.month()]:fs[e.month()]:fs},monthsRegex:ms,monthsShortRegex:ms,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:hs,longMonthsParse:hs,shortMonthsParse:hs,weekdays:"domingo_lunes_martes_miĆ©rcoles_jueves_viernes_sĆ”bado".split("_"),weekdaysShort:"dom._lun._mar._miĆ©._jue._vie._sĆ”b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[maƱana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĆ­a",dd:"%d dĆ­as",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un aƱo",yy:"%d aƱos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:0,doy:4},invalidDate:"Fecha invĆ”lida"}); -//! moment.js locale configuration -var _s="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),ys="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),gs=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],vs=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;r.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?ys[e.month()]:_s[e.month()]:_s},monthsRegex:vs,monthsShortRegex:vs,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:gs,longMonthsParse:gs,shortMonthsParse:gs,weekdays:"domingo_lunes_martes_miĆ©rcoles_jueves_viernes_sĆ”bado".split("_"),weekdaysShort:"dom._lun._mar._miĆ©._jue._vie._sĆ”b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[maƱana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĆ­a",dd:"%d dĆ­as",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un aƱo",yy:"%d aƱos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:0,doy:6}}); -//! moment.js locale configuration -var bs="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),Ms="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),ws=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],ks=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i; -//! moment.js locale configuration -function Ls(e,t,n,r){var a={s:["mƵne sekundi","mƵni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["Ć¼he minuti","Ć¼ks minut"],mm:[e+" minuti",e+" minutit"],h:["Ć¼he tunni","tund aega","Ć¼ks tund"],hh:[e+" tunni",e+" tundi"],d:["Ć¼he pƤeva","Ć¼ks pƤev"],M:["kuu aja","kuu aega","Ć¼ks kuu"],MM:[e+" kuu",e+" kuud"],y:["Ć¼he aasta","aasta","Ć¼ks aasta"],yy:[e+" aasta",e+" aastat"]};return t?a[n][2]?a[n][2]:a[n][1]:r?a[n][0]:a[n][1]}r.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?Ms[e.month()]:bs[e.month()]:bs},monthsRegex:ks,monthsShortRegex:ks,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:ws,longMonthsParse:ws,shortMonthsParse:ws,weekdays:"domingo_lunes_martes_miĆ©rcoles_jueves_viernes_sĆ”bado".split("_"),weekdaysShort:"dom._lun._mar._miĆ©._jue._vie._sĆ”b.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[maƱana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĆ­a",dd:"%d dĆ­as",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un aƱo",yy:"%d aƱos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4},invalidDate:"Fecha invĆ”lida"}),r.defineLocale("et",{months:"jaanuar_veebruar_mƤrts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_mƤrts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pĆ¼hapƤev_esmaspƤev_teisipƤev_kolmapƤev_neljapƤev_reede_laupƤev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[TƤna,] LT",nextDay:"[Homme,] LT",nextWeek:"[JƤrgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pƤrast",past:"%s tagasi",s:Ls,ss:Ls,m:Ls,mm:Ls,h:Ls,hh:Ls,d:Ls,dd:"%d pƤeva",M:Ls,MM:Ls,y:Ls,yy:Ls},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}); -//! moment.js locale configuration -var Ds={1:"Ū±",2:"Ū²",3:"Ū³",4:"Ū“",5:"Ūµ",6:"Ū¶",7:"Ū·",8:"Ūø",9:"Ū¹",0:"Ū°"},Ys={"Ū±":"1","Ū²":"2","Ū³":"3","Ū“":"4","Ūµ":"5","Ū¶":"6","Ū·":"7","Ūø":"8","Ū¹":"9","Ū°":"0"};r.defineLocale("fa",{months:"Ś˜Ų§Ł†ŁˆŪŒŁ‡_ŁŁˆŲ±ŪŒŁ‡_Ł…Ų§Ų±Ų³_Ų¢ŁˆŲ±ŪŒŁ„_Ł…Ł‡_Ś˜ŁˆŲ¦Ł†_Ś˜ŁˆŲ¦ŪŒŁ‡_Ų§ŁˆŲŖ_Ų³Ł¾ŲŖŲ§Ł…ŲØŲ±_Ų§Ś©ŲŖŲØŲ±_Ł†ŁˆŲ§Ł…ŲØŲ±_ŲÆŲ³Ų§Ł…ŲØŲ±".split("_"),monthsShort:"Ś˜Ų§Ł†ŁˆŪŒŁ‡_ŁŁˆŲ±ŪŒŁ‡_Ł…Ų§Ų±Ų³_Ų¢ŁˆŲ±ŪŒŁ„_Ł…Ł‡_Ś˜ŁˆŲ¦Ł†_Ś˜ŁˆŲ¦ŪŒŁ‡_Ų§ŁˆŲŖ_Ų³Ł¾ŲŖŲ§Ł…ŲØŲ±_Ų§Ś©ŲŖŲØŲ±_Ł†ŁˆŲ§Ł…ŲØŲ±_ŲÆŲ³Ų§Ł…ŲØŲ±".split("_"),weekdays:"ŪŒŚ©ā€ŒŲ“Ł†ŲØŁ‡_ŲÆŁˆŲ“Ł†ŲØŁ‡_Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡_Ś†Ł‡Ų§Ų±Ų“Ł†ŲØŁ‡_Ł¾Ł†Ų¬ā€ŒŲ“Ł†ŲØŁ‡_Ų¬Ł…Ų¹Ł‡_Ų“Ł†ŲØŁ‡".split("_"),weekdaysShort:"ŪŒŚ©ā€ŒŲ“Ł†ŲØŁ‡_ŲÆŁˆŲ“Ł†ŲØŁ‡_Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡_Ś†Ł‡Ų§Ų±Ų“Ł†ŲØŁ‡_Ł¾Ł†Ų¬ā€ŒŲ“Ł†ŲØŁ‡_Ų¬Ł…Ų¹Ł‡_Ų“Ł†ŲØŁ‡".split("_"),weekdaysMin:"ŪŒ_ŲÆ_Ų³_Ś†_Ł¾_Ų¬_Ų“".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/Ł‚ŲØŁ„ Ų§Ų² ŲøŁ‡Ų±|ŲØŲ¹ŲÆ Ų§Ų² ŲøŁ‡Ų±/,isPM:function(e){return/ŲØŲ¹ŲÆ Ų§Ų² ŲøŁ‡Ų±/.test(e)},meridiem:function(e,t,n){return e<12?"Ł‚ŲØŁ„ Ų§Ų² ŲøŁ‡Ų±":"ŲØŲ¹ŲÆ Ų§Ų² ŲøŁ‡Ų±"},calendar:{sameDay:"[Ų§Ł…Ų±ŁˆŲ² Ų³Ų§Ų¹ŲŖ] LT",nextDay:"[ŁŲ±ŲÆŲ§ Ų³Ų§Ų¹ŲŖ] LT",nextWeek:"dddd [Ų³Ų§Ų¹ŲŖ] LT",lastDay:"[ŲÆŪŒŲ±ŁˆŲ² Ų³Ų§Ų¹ŲŖ] LT",lastWeek:"dddd [Ł¾ŪŒŲ“] [Ų³Ų§Ų¹ŲŖ] LT",sameElse:"L"},relativeTime:{future:"ŲÆŲ± %s",past:"%s Ł¾ŪŒŲ“",s:"Ś†Ł†ŲÆ Ų«Ų§Ł†ŪŒŁ‡",ss:"%d Ų«Ų§Ł†ŪŒŁ‡",m:"ŪŒŚ© ŲÆŁ‚ŪŒŁ‚Ł‡",mm:"%d ŲÆŁ‚ŪŒŁ‚Ł‡",h:"ŪŒŚ© Ų³Ų§Ų¹ŲŖ",hh:"%d Ų³Ų§Ų¹ŲŖ",d:"ŪŒŚ© Ų±ŁˆŲ²",dd:"%d Ų±ŁˆŲ²",M:"ŪŒŚ© Ł…Ų§Ł‡",MM:"%d Ł…Ų§Ł‡",y:"ŪŒŚ© Ų³Ų§Ł„",yy:"%d Ų³Ų§Ł„"},preparse:function(e){return e.replace(/[Ū°-Ū¹]/g,(function(e){return Ys[e]})).replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return Ds[e]})).replace(/,/g,"ŲŒ")},dayOfMonthOrdinalParse:/\d{1,2}Ł…/,ordinal:"%dŁ…",week:{dow:6,doy:12}}); -//! moment.js locale configuration -var Ts="nolla yksi kaksi kolme neljƤ viisi kuusi seitsemƤn kahdeksan yhdeksƤn".split(" "),Ss=["nolla","yhden","kahden","kolmen","neljƤn","viiden","kuuden",Ts[7],Ts[8],Ts[9]];function xs(e,t,n,r){var a="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"ss":a=r?"sekunnin":"sekuntia";break;case"m":return r?"minuutin":"minuutti";case"mm":a=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":a=r?"tunnin":"tuntia";break;case"d":return r?"pƤivƤn":"pƤivƤ";case"dd":a=r?"pƤivƤn":"pƤivƤƤ";break;case"M":return r?"kuukauden":"kuukausi";case"MM":a=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":a=r?"vuoden":"vuotta"}return a=Ps(e,r)+" "+a}function Ps(e,t){return e<10?t?Ss[e]:Ts[e]:e}r.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesƤkuu_heinƤkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesƤ_heinƤ_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tƤnƤƤn] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s pƤƤstƤ",past:"%s sitten",s:xs,ss:xs,m:xs,mm:xs,h:xs,hh:xs,d:xs,dd:xs,M:xs,MM:xs,y:xs,yy:xs},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("fil",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("fo",{months:"januar_februar_mars_aprĆ­l_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mĆ”nadagur_tĆ½sdagur_mikudagur_hĆ³sdagur_frĆ­ggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mĆ”n_tĆ½s_mik_hĆ³s_frĆ­_ley".split("_"),weekdaysMin:"su_mĆ”_tĆ½_mi_hĆ³_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[ƍ dag kl.] LT",nextDay:"[ƍ morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[ƍ gjĆ”r kl.] LT",lastWeek:"[sĆ­Ć°stu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s sĆ­Ć°ani",s:"fĆ” sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tĆ­mi",hh:"%d tĆ­mar",d:"ein dagur",dd:"%d dagar",M:"ein mĆ”naĆ°ur",MM:"%d mĆ”naĆ°ir",y:"eitt Ć”r",yy:"%d Ć”r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("fr-ca",{months:"janvier_fĆ©vrier_mars_avril_mai_juin_juillet_aoĆ»t_septembre_octobre_novembre_dĆ©cembre".split("_"),monthsShort:"janv._fĆ©vr._mars_avr._mai_juin_juil._aoĆ»t_sept._oct._nov._dĆ©c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdā€™hui Ć ] LT",nextDay:"[Demain Ć ] LT",nextWeek:"dddd [Ć ] LT",lastDay:"[Hier Ć ] LT",lastWeek:"dddd [dernier Ć ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}}), -//! moment.js locale configuration -r.defineLocale("fr-ch",{months:"janvier_fĆ©vrier_mars_avril_mai_juin_juillet_aoĆ»t_septembre_octobre_novembre_dĆ©cembre".split("_"),monthsShort:"janv._fĆ©vr._mars_avr._mai_juin_juil._aoĆ»t_sept._oct._nov._dĆ©c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdā€™hui Ć ] LT",nextDay:"[Demain Ć ] LT",nextWeek:"dddd [Ć ] LT",lastDay:"[Hier Ć ] LT",lastWeek:"dddd [dernier Ć ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Cs=/^(janvier|fĆ©vrier|mars|avril|mai|juin|juillet|aoĆ»t|septembre|octobre|novembre|dĆ©cembre)/i,Os=/(janv\.?|fĆ©vr\.?|mars|avr\.?|mai|juin|juil\.?|aoĆ»t|sept\.?|oct\.?|nov\.?|dĆ©c\.?)/i,Es=/(janv\.?|fĆ©vr\.?|mars|avr\.?|mai|juin|juil\.?|aoĆ»t|sept\.?|oct\.?|nov\.?|dĆ©c\.?|janvier|fĆ©vrier|mars|avril|mai|juin|juillet|aoĆ»t|septembre|octobre|novembre|dĆ©cembre)/i,js=[/^janv/i,/^fĆ©vr/i,/^mars/i,/^avr/i,/^mai/i,/^juin/i,/^juil/i,/^aoĆ»t/i,/^sept/i,/^oct/i,/^nov/i,/^dĆ©c/i];r.defineLocale("fr",{months:"janvier_fĆ©vrier_mars_avril_mai_juin_juillet_aoĆ»t_septembre_octobre_novembre_dĆ©cembre".split("_"),monthsShort:"janv._fĆ©vr._mars_avr._mai_juin_juil._aoĆ»t_sept._oct._nov._dĆ©c.".split("_"),monthsRegex:Es,monthsShortRegex:Es,monthsStrictRegex:Cs,monthsShortStrictRegex:Os,monthsParse:js,longMonthsParse:js,shortMonthsParse:js,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdā€™hui Ć ] LT",nextDay:"[Demain Ć ] LT",nextWeek:"dddd [Ć ] LT",lastDay:"[Hier Ć ] LT",lastWeek:"dddd [dernier Ć ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",w:"une semaine",ww:"%d semaines",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Hs="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),Ns="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");r.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?Ns[e.month()]:Hs[e.month()]:Hs},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[Ć“frĆ»ne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minĆŗt",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var As=["EanĆ”ir","Feabhra","MĆ”rta","AibreĆ”n","Bealtaine","Meitheamh","IĆŗil","LĆŗnasa","MeĆ”n FĆ³mhair","Deireadh FĆ³mhair","Samhain","Nollaig"],Rs=["Ean","Feabh","MĆ”rt","Aib","Beal","Meith","IĆŗil","LĆŗn","M.F.","D.F.","Samh","Noll"],Fs=["DĆ© Domhnaigh","DĆ© Luain","DĆ© MĆ”irt","DĆ© CĆ©adaoin","DĆ©ardaoin","DĆ© hAoine","DĆ© Sathairn"],Ws=["Domh","Luan","MĆ”irt","CĆ©ad","DĆ©ar","Aoine","Sath"],Is=["Do","Lu","MĆ”","CĆ©","DĆ©","A","Sa"];r.defineLocale("ga",{months:As,monthsShort:Rs,monthsParseExact:!0,weekdays:Fs,weekdaysShort:Ws,weekdaysMin:Is,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[AmĆ”rach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[InnĆ© ag] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s Ć³ shin",s:"cĆŗpla soicind",ss:"%d soicind",m:"nĆ³imĆ©ad",mm:"%d nĆ³imĆ©ad",h:"uair an chloig",hh:"%d uair an chloig",d:"lĆ”",dd:"%d lĆ”",M:"mĆ­",MM:"%d mĆ­onna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var zs=["Am Faoilleach","An Gearran","Am MĆ rt","An Giblean","An CĆØitean","An t-ƒgmhios","An t-Iuchar","An LĆ¹nastal","An t-Sultain","An DĆ mhair","An t-Samhain","An DĆ¹bhlachd"],Us=["Faoi","Gear","MĆ rt","Gibl","CĆØit","ƒgmh","Iuch","LĆ¹n","Sult","DĆ mh","Samh","DĆ¹bh"],$s=["DidĆ²mhnaich","Diluain","DimĆ irt","Diciadain","Diardaoin","Dihaoine","Disathairne"],Bs=["Did","Dil","Dim","Dic","Dia","Dih","Dis"],qs=["DĆ²","Lu","MĆ ","Ci","Ar","Ha","Sa"]; -//! moment.js locale configuration -function Vs(e,t,n,r){var a={s:["ą¤„ą„‹ą¤”ą¤Æą¤¾ ą¤øą„…ą¤•ą¤‚ą¤”ą¤¾ą¤‚ą¤Øą„€","ą¤„ą„‹ą¤”ą„‡ ą¤øą„…ą¤•ą¤‚ą¤”"],ss:[e+" ą¤øą„…ą¤•ą¤‚ą¤”ą¤¾ą¤‚ą¤Øą„€",e+" ą¤øą„…ą¤•ą¤‚ą¤”"],m:["ą¤ą¤•ą¤¾ ą¤®ą¤æą¤£ą¤Ÿą¤¾ą¤Ø","ą¤ą¤• ą¤®ą¤æą¤Øą„‚ą¤Ÿ"],mm:[e+" ą¤®ą¤æą¤£ą¤Ÿą¤¾ą¤‚ą¤Øą„€",e+" ą¤®ą¤æą¤£ą¤Ÿą¤¾ą¤‚"],h:["ą¤ą¤•ą¤¾ ą¤µą¤°ą¤¾ą¤Ø","ą¤ą¤• ą¤µą¤°"],hh:[e+" ą¤µą¤°ą¤¾ą¤‚ą¤Øą„€",e+" ą¤µą¤°ą¤¾ą¤‚"],d:["ą¤ą¤•ą¤¾ ą¤¦ą¤æą¤øą¤¾ą¤Ø","ą¤ą¤• ą¤¦ą„€ą¤ø"],dd:[e+" ą¤¦ą¤æą¤øą¤¾ą¤‚ą¤Øą„€",e+" ą¤¦ą„€ą¤ø"],M:["ą¤ą¤•ą¤¾ ą¤®ą„ą¤¹ą¤Æą¤Øą„ą¤Æą¤¾ą¤Ø","ą¤ą¤• ą¤®ą„ą¤¹ą¤Æą¤Øą„‹"],MM:[e+" ą¤®ą„ą¤¹ą¤Æą¤Øą„ą¤Æą¤¾ą¤Øą„€",e+" ą¤®ą„ą¤¹ą¤Æą¤Øą„‡"],y:["ą¤ą¤•ą¤¾ ą¤µą¤°ą„ą¤øą¤¾ą¤Ø","ą¤ą¤• ą¤µą¤°ą„ą¤ø"],yy:[e+" ą¤µą¤°ą„ą¤øą¤¾ą¤‚ą¤Øą„€",e+" ą¤µą¤°ą„ą¤øą¤¾ą¤‚"]};return r?a[n][0]:a[n][1]} -//! moment.js locale configuration -function Js(e,t,n,r){var a={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return r?a[n][0]:a[n][1]}r.defineLocale("gd",{months:zs,monthsShort:Us,monthsParseExact:!0,weekdays:$s,weekdaysShort:Bs,weekdaysMin:qs,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-mĆ ireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-dĆØ aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"mƬos",MM:"%d mƬosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuƱo_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuƱ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mĆ©rcores_xoves_venres_sĆ”bado".split("_"),weekdaysShort:"dom._lun._mar._mĆ©r._xov._ven._sĆ”b.".split("_"),weekdaysMin:"do_lu_ma_mĆ©_xo_ve_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"Ć”s":"Ć”")+"] LT"},nextDay:function(){return"[maƱƔ "+(1!==this.hours()?"Ć”s":"Ć”")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"Ć”s":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"Ć”":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"Ć”s":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un dĆ­a",dd:"%d dĆ­as",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}),r.defineLocale("gom-deva",{months:{standalone:"ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€_ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€_ą¤®ą¤¾ą¤°ą„ą¤š_ą¤ą¤Ŗą„ą¤°ą„€ą¤²_ą¤®ą„‡_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²ą¤Æ_ą¤‘ą¤—ą¤øą„ą¤Ÿ_ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°_ą¤‘ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°_ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°_ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°".split("_"),format:"ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€ą¤šą„ą¤Æą¤¾_ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€ą¤šą„ą¤Æą¤¾_ą¤®ą¤¾ą¤°ą„ą¤šą¤¾ą¤šą„ą¤Æą¤¾_ą¤ą¤Ŗą„ą¤°ą„€ą¤²ą¤¾ą¤šą„ą¤Æą¤¾_ą¤®ą„‡ą¤Æą¤¾ą¤šą„ą¤Æą¤¾_ą¤œą„‚ą¤Øą¤¾ą¤šą„ą¤Æą¤¾_ą¤œą„ą¤²ą¤Æą¤¾ą¤šą„ą¤Æą¤¾_ą¤‘ą¤—ą¤øą„ą¤Ÿą¤¾ą¤šą„ą¤Æą¤¾_ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°ą¤¾ą¤šą„ą¤Æą¤¾_ą¤‘ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°ą¤¾ą¤šą„ą¤Æą¤¾_ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°ą¤¾ą¤šą„ą¤Æą¤¾_ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°ą¤¾ą¤šą„ą¤Æą¤¾".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"ą¤œą¤¾ą¤Øą„‡._ą¤«ą„‡ą¤¬ą„ą¤°ą„._ą¤®ą¤¾ą¤°ą„ą¤š_ą¤ą¤Ŗą„ą¤°ą„€._ą¤®ą„‡_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²._ą¤‘ą¤—._ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚._ą¤‘ą¤•ą„ą¤Ÿą„‹._ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚._ą¤”ą¤æą¤øą„‡ą¤‚.".split("_"),monthsParseExact:!0,weekdays:"ą¤†ą¤Æą¤¤ą¤¾ą¤°_ą¤øą„‹ą¤®ą¤¾ą¤°_ą¤®ą¤‚ą¤—ą¤³ą¤¾ą¤°_ą¤¬ą„ą¤§ą¤µą¤¾ą¤°_ą¤¬ą¤æą¤°ą„‡ą¤øą„ą¤¤ą¤¾ą¤°_ą¤øą„ą¤•ą„ą¤°ą¤¾ą¤°_ą¤¶ą„‡ą¤Øą¤µą¤¾ą¤°".split("_"),weekdaysShort:"ą¤†ą¤Æą¤¤._ą¤øą„‹ą¤®._ą¤®ą¤‚ą¤—ą¤³._ą¤¬ą„ą¤§._ą¤¬ą„ą¤°ą„‡ą¤øą„ą¤¤._ą¤øą„ą¤•ą„ą¤°._ą¤¶ą„‡ą¤Ø.".split("_"),weekdaysMin:"ą¤†_ą¤øą„‹_ą¤®ą¤‚_ą¤¬ą„_ą¤¬ą„ą¤°ą„‡_ą¤øą„_ą¤¶ą„‡".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [ą¤µą¤¾ą¤œą¤¤ą¤¾ą¤‚]",LTS:"A h:mm:ss [ą¤µą¤¾ą¤œą¤¤ą¤¾ą¤‚]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [ą¤µą¤¾ą¤œą¤¤ą¤¾ą¤‚]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [ą¤µą¤¾ą¤œą¤¤ą¤¾ą¤‚]",llll:"ddd, D MMM YYYY, A h:mm [ą¤µą¤¾ą¤œą¤¤ą¤¾ą¤‚]"},calendar:{sameDay:"[ą¤†ą¤Æą¤œ] LT",nextDay:"[ą¤«ą¤¾ą¤²ą„ą¤Æą¤¾ą¤‚] LT",nextWeek:"[ą¤«ą„ą¤”ą¤²ą„‹] dddd[,] LT",lastDay:"[ą¤•ą¤¾ą¤²] LT",lastWeek:"[ą¤«ą¤¾ą¤Ÿą¤²ą„‹] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s ą¤†ą¤¦ą„€ą¤‚",s:Vs,ss:Vs,m:Vs,mm:Vs,h:Vs,hh:Vs,d:Vs,dd:Vs,M:Vs,MM:Vs,y:Vs,yy:Vs},dayOfMonthOrdinalParse:/\d{1,2}(ą¤µą„‡ą¤°)/,ordinal:function(e,t){return"D"===t?e+"ą¤µą„‡ą¤°":e},week:{dow:0,doy:3},meridiemParse:/ą¤°ą¤¾ą¤¤ą„€|ą¤øą¤•ą¤¾ą¤³ą„€ą¤‚|ą¤¦ą¤Øą¤Ŗą¤¾ą¤°ą¤¾ą¤‚|ą¤øą¤¾ą¤‚ą¤œą„‡/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¤°ą¤¾ą¤¤ą„€"===t?e<4?e:e+12:"ą¤øą¤•ą¤¾ą¤³ą„€ą¤‚"===t?e:"ą¤¦ą¤Øą¤Ŗą¤¾ą¤°ą¤¾ą¤‚"===t?e>12?e:e+12:"ą¤øą¤¾ą¤‚ą¤œą„‡"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ą¤°ą¤¾ą¤¤ą„€":e<12?"ą¤øą¤•ą¤¾ą¤³ą„€ą¤‚":e<16?"ą¤¦ą¤Øą¤Ŗą¤¾ą¤°ą¤¾ą¤‚":e<20?"ą¤øą¤¾ą¤‚ą¤œą„‡":"ą¤°ą¤¾ą¤¤ą„€"}}),r.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:Js,ss:Js,m:Js,mm:Js,h:Js,hh:Js,d:Js,dd:Js,M:Js,MM:Js,y:Js,yy:Js},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){return"D"===t?e+"er":e},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokallim"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"rati":e<12?"sokallim":e<16?"donparam":e<20?"sanje":"rati"}}); -//! moment.js locale configuration -var Gs={1:"ą«§",2:"ą«Ø",3:"ą«©",4:"ą«Ŗ",5:"ą««",6:"ą«¬",7:"ą«­",8:"ą«®",9:"ą«Æ",0:"ą«¦"},Qs={"ą«§":"1","ą«Ø":"2","ą«©":"3","ą«Ŗ":"4","ą««":"5","ą«¬":"6","ą«­":"7","ą«®":"8","ą«Æ":"9","ą«¦":"0"};r.defineLocale("gu",{months:"ąŖœąŖ¾ąŖØą«ąŖÆą«ąŖ†ąŖ°ą«€_ąŖ«ą«‡ąŖ¬ą«ąŖ°ą«ąŖ†ąŖ°ą«€_ąŖ®ąŖ¾ąŖ°ą«ąŖš_ąŖąŖŖą«ąŖ°ąŖæąŖ²_ąŖ®ą«‡_ąŖœą«‚ąŖØ_ąŖœą«ąŖ²ąŖ¾ąŖˆ_ąŖ‘ąŖ—ąŖøą«ąŖŸ_ąŖøąŖŖą«ąŖŸą«‡ąŖ®ą«ąŖ¬ąŖ°_ąŖ‘ąŖ•ą«ąŖŸą«ąŖ¬ąŖ°_ąŖØąŖµą«‡ąŖ®ą«ąŖ¬ąŖ°_ąŖ”ąŖæąŖøą«‡ąŖ®ą«ąŖ¬ąŖ°".split("_"),monthsShort:"ąŖœąŖ¾ąŖØą«ąŖÆą«._ąŖ«ą«‡ąŖ¬ą«ąŖ°ą«._ąŖ®ąŖ¾ąŖ°ą«ąŖš_ąŖąŖŖą«ąŖ°ąŖæ._ąŖ®ą«‡_ąŖœą«‚ąŖØ_ąŖœą«ąŖ²ąŖ¾._ąŖ‘ąŖ—._ąŖøąŖŖą«ąŖŸą«‡._ąŖ‘ąŖ•ą«ąŖŸą«._ąŖØąŖµą«‡._ąŖ”ąŖæąŖøą«‡.".split("_"),monthsParseExact:!0,weekdays:"ąŖ°ąŖµąŖæąŖµąŖ¾ąŖ°_ąŖøą«‹ąŖ®ąŖµąŖ¾ąŖ°_ąŖ®ąŖ‚ąŖ—ąŖ³ąŖµąŖ¾ąŖ°_ąŖ¬ą«ąŖ§ą«ąŖµąŖ¾ąŖ°_ąŖ—ą«ąŖ°ą«ąŖµąŖ¾ąŖ°_ąŖ¶ą«ąŖ•ą«ąŖ°ąŖµąŖ¾ąŖ°_ąŖ¶ąŖØąŖæąŖµąŖ¾ąŖ°".split("_"),weekdaysShort:"ąŖ°ąŖµąŖæ_ąŖøą«‹ąŖ®_ąŖ®ąŖ‚ąŖ—ąŖ³_ąŖ¬ą«ąŖ§ą«_ąŖ—ą«ąŖ°ą«_ąŖ¶ą«ąŖ•ą«ąŖ°_ąŖ¶ąŖØąŖæ".split("_"),weekdaysMin:"ąŖ°_ąŖøą«‹_ąŖ®ąŖ‚_ąŖ¬ą«_ąŖ—ą«_ąŖ¶ą«_ąŖ¶".split("_"),longDateFormat:{LT:"A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡",LTS:"A h:mm:ss ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡",LLLL:"dddd, D MMMM YYYY, A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡"},calendar:{sameDay:"[ąŖ†ąŖœ] LT",nextDay:"[ąŖ•ąŖ¾ąŖ²ą«‡] LT",nextWeek:"dddd, LT",lastDay:"[ąŖ—ąŖ‡ąŖ•ąŖ¾ąŖ²ą«‡] LT",lastWeek:"[ąŖŖąŖ¾ąŖ›ąŖ²ąŖ¾] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ąŖ®ąŖ¾",past:"%s ąŖŖąŖ¹ą«‡ąŖ²ąŖ¾",s:"ąŖ…ąŖ®ą«ąŖ• ąŖŖąŖ³ą«‹",ss:"%d ąŖøą«‡ąŖ•ąŖ‚ąŖ”",m:"ąŖąŖ• ąŖ®ąŖæąŖØąŖæąŖŸ",mm:"%d ąŖ®ąŖæąŖØąŖæąŖŸ",h:"ąŖąŖ• ąŖ•ąŖ²ąŖ¾ąŖ•",hh:"%d ąŖ•ąŖ²ąŖ¾ąŖ•",d:"ąŖąŖ• ąŖ¦ąŖæąŖµąŖø",dd:"%d ąŖ¦ąŖæąŖµąŖø",M:"ąŖąŖ• ąŖ®ąŖ¹ąŖæąŖØą«‹",MM:"%d ąŖ®ąŖ¹ąŖæąŖØą«‹",y:"ąŖąŖ• ąŖµąŖ°ą«ąŖ·",yy:"%d ąŖµąŖ°ą«ąŖ·"},preparse:function(e){return e.replace(/[ą«§ą«Øą«©ą«Ŗą««ą«¬ą«­ą«®ą«Æą«¦]/g,(function(e){return Qs[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Gs[e]}))},meridiemParse:/ąŖ°ąŖ¾ąŖ¤|ąŖ¬ąŖŖą«‹ąŖ°|ąŖøąŖµąŖ¾ąŖ°|ąŖøąŖ¾ąŖ‚ąŖœ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ąŖ°ąŖ¾ąŖ¤"===t?e<4?e:e+12:"ąŖøąŖµąŖ¾ąŖ°"===t?e:"ąŖ¬ąŖŖą«‹ąŖ°"===t?e>=10?e:e+12:"ąŖøąŖ¾ąŖ‚ąŖœ"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ąŖ°ąŖ¾ąŖ¤":e<10?"ąŖøąŖµąŖ¾ąŖ°":e<17?"ąŖ¬ąŖŖą«‹ąŖ°":e<20?"ąŖøąŖ¾ąŖ‚ąŖœ":"ąŖ°ąŖ¾ąŖ¤"},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("he",{months:"ינוא×Ø_פב×Øוא×Ø_מ×Øׄ_אפ×Øיל_מאי_יוני_יולי_אוגוהט_הפטמב×Ø_אוקטוב×Ø_נובמב×Ø_דצמב×Ø".split("_"),monthsShort:"ינו׳_פב×Ø׳_מ×Øׄ_אפ×Ø׳_מאי_יוני_יולי_אוג׳_הפט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"×Øאשון_שני_שלישי_×Øביעי_חמישי_שישי_שב×Ŗ".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מח×Ø ×‘Ö¾]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[א×Ŗמול ב־]LT",lastWeek:"[ביום] dddd [האח×Øון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מהפ×Ø ×©× ×™×•×Ŗ",ss:"%d שניו×Ŗ",m:"דקה",mm:"%d דקו×Ŗ",h:"שעה",hh:function(e){return 2===e?"שע×Ŗיים":e+" שעו×Ŗ"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנ×Ŗיים":e%10==0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אח×Øי הצה×Øיים|לפני הצה×Øיים|לפנו×Ŗ בוק×Ø|בבוק×Ø|בע×Øב/i,isPM:function(e){return/^(אחה"צ|אח×Øי הצה×Øיים|בע×Øב)$/.test(e)},meridiem:function(e,t,n){return e<5?"לפנו×Ŗ בוק×Ø":e<10?"בבוק×Ø":e<12?n?'לפנה"צ':"לפני הצה×Øיים":e<18?n?'אחה"צ':"אח×Øי הצה×Øיים":"בע×Øב"}}); -//! moment.js locale configuration -var Ks={1:"ą„§",2:"ą„Ø",3:"ą„©",4:"ą„Ŗ",5:"ą„«",6:"ą„¬",7:"ą„­",8:"ą„®",9:"ą„Æ",0:"ą„¦"},Xs={"ą„§":"1","ą„Ø":"2","ą„©":"3","ą„Ŗ":"4","ą„«":"5","ą„¬":"6","ą„­":"7","ą„®":"8","ą„Æ":"9","ą„¦":"0"},Zs=[/^ą¤œą¤Ø/i,/^ą¤«ą¤¼ą¤°|ą¤«ą¤°/i,/^ą¤®ą¤¾ą¤°ą„ą¤š/i,/^ą¤…ą¤Ŗą„ą¤°ą„ˆ/i,/^ą¤®ą¤ˆ/i,/^ą¤œą„‚ą¤Ø/i,/^ą¤œą„ą¤²/i,/^ą¤…ą¤—/i,/^ą¤øą¤æą¤¤ą¤‚|ą¤øą¤æą¤¤/i,/^ą¤…ą¤•ą„ą¤Ÿą„‚/i,/^ą¤Øą¤µ|ą¤Øą¤µą¤‚/i,/^ą¤¦ą¤æą¤øą¤‚|ą¤¦ą¤æą¤ø/i],el=[/^ą¤œą¤Ø/i,/^ą¤«ą¤¼ą¤°/i,/^ą¤®ą¤¾ą¤°ą„ą¤š/i,/^ą¤…ą¤Ŗą„ą¤°ą„ˆ/i,/^ą¤®ą¤ˆ/i,/^ą¤œą„‚ą¤Ø/i,/^ą¤œą„ą¤²/i,/^ą¤…ą¤—/i,/^ą¤øą¤æą¤¤/i,/^ą¤…ą¤•ą„ą¤Ÿą„‚/i,/^ą¤Øą¤µ/i,/^ą¤¦ą¤æą¤ø/i]; -//! moment.js locale configuration -function tl(e,t,n){var r=e+" ";switch(n){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return r+=1===e?"dan":"dana";case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}r.defineLocale("hi",{months:{format:"ą¤œą¤Øą¤µą¤°ą„€_ą¤«ą¤¼ą¤°ą¤µą¤°ą„€_ą¤®ą¤¾ą¤°ą„ą¤š_ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²_ą¤®ą¤ˆ_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²ą¤¾ą¤ˆ_ą¤…ą¤—ą¤øą„ą¤¤_ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°_ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°_ą¤Øą¤µą¤®ą„ą¤¬ą¤°_ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°".split("_"),standalone:"ą¤œą¤Øą¤µą¤°ą„€_ą¤«ą¤°ą¤µą¤°ą„€_ą¤®ą¤¾ą¤°ą„ą¤š_ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²_ą¤®ą¤ˆ_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²ą¤¾ą¤ˆ_ą¤…ą¤—ą¤øą„ą¤¤_ą¤øą¤æą¤¤ą¤‚ą¤¬ą¤°_ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°_ą¤Øą¤µą¤‚ą¤¬ą¤°_ą¤¦ą¤æą¤øą¤‚ą¤¬ą¤°".split("_")},monthsShort:"ą¤œą¤Ø._ą¤«ą¤¼ą¤°._ą¤®ą¤¾ą¤°ą„ą¤š_ą¤…ą¤Ŗą„ą¤°ą„ˆ._ą¤®ą¤ˆ_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²._ą¤…ą¤—._ą¤øą¤æą¤¤._ą¤…ą¤•ą„ą¤Ÿą„‚._ą¤Øą¤µ._ą¤¦ą¤æą¤ø.".split("_"),weekdays:"ą¤°ą¤µą¤æą¤µą¤¾ą¤°_ą¤øą„‹ą¤®ą¤µą¤¾ą¤°_ą¤®ą¤‚ą¤—ą¤²ą¤µą¤¾ą¤°_ą¤¬ą„ą¤§ą¤µą¤¾ą¤°_ą¤—ą„ą¤°ą„‚ą¤µą¤¾ą¤°_ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°_ą¤¶ą¤Øą¤æą¤µą¤¾ą¤°".split("_"),weekdaysShort:"ą¤°ą¤µą¤æ_ą¤øą„‹ą¤®_ą¤®ą¤‚ą¤—ą¤²_ą¤¬ą„ą¤§_ą¤—ą„ą¤°ą„‚_ą¤¶ą„ą¤•ą„ą¤°_ą¤¶ą¤Øą¤æ".split("_"),weekdaysMin:"ą¤°_ą¤øą„‹_ą¤®ą¤‚_ą¤¬ą„_ą¤—ą„_ą¤¶ą„_ą¤¶".split("_"),longDateFormat:{LT:"A h:mm ą¤¬ą¤œą„‡",LTS:"A h:mm:ss ą¤¬ą¤œą„‡",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ą¤¬ą¤œą„‡",LLLL:"dddd, D MMMM YYYY, A h:mm ą¤¬ą¤œą„‡"},monthsParse:Zs,longMonthsParse:Zs,shortMonthsParse:el,monthsRegex:/^(ą¤œą¤Øą¤µą¤°ą„€|ą¤œą¤Ø\.?|ą¤«ą¤¼ą¤°ą¤µą¤°ą„€|ą¤«ą¤°ą¤µą¤°ą„€|ą¤«ą¤¼ą¤°\.?|ą¤®ą¤¾ą¤°ą„ą¤š?|ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²|ą¤…ą¤Ŗą„ą¤°ą„ˆ\.?|ą¤®ą¤ˆ?|ą¤œą„‚ą¤Ø?|ą¤œą„ą¤²ą¤¾ą¤ˆ|ą¤œą„ą¤²\.?|ą¤…ą¤—ą¤øą„ą¤¤|ą¤…ą¤—\.?|ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°|ą¤øą¤æą¤¤ą¤‚ą¤¬ą¤°|ą¤øą¤æą¤¤\.?|ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°|ą¤…ą¤•ą„ą¤Ÿą„‚\.?|ą¤Øą¤µą¤®ą„ą¤¬ą¤°|ą¤Øą¤µą¤‚ą¤¬ą¤°|ą¤Øą¤µ\.?|ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°|ą¤¦ą¤æą¤øą¤‚ą¤¬ą¤°|ą¤¦ą¤æą¤ø\.?)/i,monthsShortRegex:/^(ą¤œą¤Øą¤µą¤°ą„€|ą¤œą¤Ø\.?|ą¤«ą¤¼ą¤°ą¤µą¤°ą„€|ą¤«ą¤°ą¤µą¤°ą„€|ą¤«ą¤¼ą¤°\.?|ą¤®ą¤¾ą¤°ą„ą¤š?|ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²|ą¤…ą¤Ŗą„ą¤°ą„ˆ\.?|ą¤®ą¤ˆ?|ą¤œą„‚ą¤Ø?|ą¤œą„ą¤²ą¤¾ą¤ˆ|ą¤œą„ą¤²\.?|ą¤…ą¤—ą¤øą„ą¤¤|ą¤…ą¤—\.?|ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°|ą¤øą¤æą¤¤ą¤‚ą¤¬ą¤°|ą¤øą¤æą¤¤\.?|ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°|ą¤…ą¤•ą„ą¤Ÿą„‚\.?|ą¤Øą¤µą¤®ą„ą¤¬ą¤°|ą¤Øą¤µą¤‚ą¤¬ą¤°|ą¤Øą¤µ\.?|ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°|ą¤¦ą¤æą¤øą¤‚ą¤¬ą¤°|ą¤¦ą¤æą¤ø\.?)/i,monthsStrictRegex:/^(ą¤œą¤Øą¤µą¤°ą„€?|ą¤«ą¤¼ą¤°ą¤µą¤°ą„€|ą¤«ą¤°ą¤µą¤°ą„€?|ą¤®ą¤¾ą¤°ą„ą¤š?|ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²?|ą¤®ą¤ˆ?|ą¤œą„‚ą¤Ø?|ą¤œą„ą¤²ą¤¾ą¤ˆ?|ą¤…ą¤—ą¤øą„ą¤¤?|ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°|ą¤øą¤æą¤¤ą¤‚ą¤¬ą¤°|ą¤øą¤æą¤¤?\.?|ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°|ą¤…ą¤•ą„ą¤Ÿą„‚\.?|ą¤Øą¤µą¤®ą„ą¤¬ą¤°|ą¤Øą¤µą¤‚ą¤¬ą¤°?|ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°|ą¤¦ą¤æą¤øą¤‚ą¤¬ą¤°?)/i,monthsShortStrictRegex:/^(ą¤œą¤Ø\.?|ą¤«ą¤¼ą¤°\.?|ą¤®ą¤¾ą¤°ą„ą¤š?|ą¤…ą¤Ŗą„ą¤°ą„ˆ\.?|ą¤®ą¤ˆ?|ą¤œą„‚ą¤Ø?|ą¤œą„ą¤²\.?|ą¤…ą¤—\.?|ą¤øą¤æą¤¤\.?|ą¤…ą¤•ą„ą¤Ÿą„‚\.?|ą¤Øą¤µ\.?|ą¤¦ą¤æą¤ø\.?)/i,calendar:{sameDay:"[ą¤†ą¤œ] LT",nextDay:"[ą¤•ą¤²] LT",nextWeek:"dddd, LT",lastDay:"[ą¤•ą¤²] LT",lastWeek:"[ą¤Ŗą¤æą¤›ą¤²ą„‡] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą¤®ą„‡ą¤‚",past:"%s ą¤Ŗą¤¹ą¤²ą„‡",s:"ą¤•ą„ą¤› ą¤¹ą„€ ą¤•ą„ą¤·ą¤£",ss:"%d ą¤øą„‡ą¤•ą¤‚ą¤”",m:"ą¤ą¤• ą¤®ą¤æą¤Øą¤Ÿ",mm:"%d ą¤®ą¤æą¤Øą¤Ÿ",h:"ą¤ą¤• ą¤˜ą¤‚ą¤Ÿą¤¾",hh:"%d ą¤˜ą¤‚ą¤Ÿą„‡",d:"ą¤ą¤• ą¤¦ą¤æą¤Ø",dd:"%d ą¤¦ą¤æą¤Ø",M:"ą¤ą¤• ą¤®ą¤¹ą„€ą¤Øą„‡",MM:"%d ą¤®ą¤¹ą„€ą¤Øą„‡",y:"ą¤ą¤• ą¤µą¤°ą„ą¤·",yy:"%d ą¤µą¤°ą„ą¤·"},preparse:function(e){return e.replace(/[ą„§ą„Øą„©ą„Ŗą„«ą„¬ą„­ą„®ą„Æą„¦]/g,(function(e){return Xs[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Ks[e]}))},meridiemParse:/ą¤°ą¤¾ą¤¤|ą¤øą„ą¤¬ą¤¹|ą¤¦ą„‹ą¤Ŗą¤¹ą¤°|ą¤¶ą¤¾ą¤®/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¤°ą¤¾ą¤¤"===t?e<4?e:e+12:"ą¤øą„ą¤¬ą¤¹"===t?e:"ą¤¦ą„‹ą¤Ŗą¤¹ą¤°"===t?e>=10?e:e+12:"ą¤¶ą¤¾ą¤®"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ą¤°ą¤¾ą¤¤":e<10?"ą¤øą„ą¤¬ą¤¹":e<17?"ą¤¦ą„‹ą¤Ŗą¤¹ą¤°":e<20?"ą¤¶ą¤¾ą¤®":"ą¤°ą¤¾ą¤¤"},week:{dow:0,doy:6}}),r.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[proÅ”lu] [nedjelju] [u] LT";case 3:return"[proÅ”lu] [srijedu] [u] LT";case 6:return"[proÅ”le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[proÅ”li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:tl,m:tl,mm:tl,h:tl,hh:tl,d:"dan",dd:tl,M:"mjesec",MM:tl,y:"godinu",yy:tl},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}); -//! moment.js locale configuration -var nl="vasĆ”rnap hĆ©tfőn kedden szerdĆ”n csĆ¼tƶrtƶkƶn pĆ©nteken szombaton".split(" ");function rl(e,t,n,r){var a=e;switch(n){case"s":return r||t?"nĆ©hĆ”ny mĆ”sodperc":"nĆ©hĆ”ny mĆ”sodperce";case"ss":return a+(r||t)?" mĆ”sodperc":" mĆ”sodperce";case"m":return"egy"+(r||t?" perc":" perce");case"mm":return a+(r||t?" perc":" perce");case"h":return"egy"+(r||t?" Ć³ra":" Ć³rĆ”ja");case"hh":return a+(r||t?" Ć³ra":" Ć³rĆ”ja");case"d":return"egy"+(r||t?" nap":" napja");case"dd":return a+(r||t?" nap":" napja");case"M":return"egy"+(r||t?" hĆ³nap":" hĆ³napja");case"MM":return a+(r||t?" hĆ³nap":" hĆ³napja");case"y":return"egy"+(r||t?" Ć©v":" Ć©ve");case"yy":return a+(r||t?" Ć©v":" Ć©ve")}return""}function al(e){return(e?"":"[mĆŗlt] ")+"["+nl[this.day()]+"] LT[-kor]"} -//! moment.js locale configuration -function ol(e){return e%100==11||e%10!=1}function il(e,t,n,r){var a=e+" ";switch(n){case"s":return t||r?"nokkrar sekĆŗndur":"nokkrum sekĆŗndum";case"ss":return ol(e)?a+(t||r?"sekĆŗndur":"sekĆŗndum"):a+"sekĆŗnda";case"m":return t?"mĆ­nĆŗta":"mĆ­nĆŗtu";case"mm":return ol(e)?a+(t||r?"mĆ­nĆŗtur":"mĆ­nĆŗtum"):t?a+"mĆ­nĆŗta":a+"mĆ­nĆŗtu";case"hh":return ol(e)?a+(t||r?"klukkustundir":"klukkustundum"):a+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return ol(e)?t?a+"dagar":a+(r?"daga":"dƶgum"):t?a+"dagur":a+(r?"dag":"degi");case"M":return t?"mĆ”nuĆ°ur":r?"mĆ”nuĆ°":"mĆ”nuĆ°i";case"MM":return ol(e)?t?a+"mĆ”nuĆ°ir":a+(r?"mĆ”nuĆ°i":"mĆ”nuĆ°um"):t?a+"mĆ”nuĆ°ur":a+(r?"mĆ”nuĆ°":"mĆ”nuĆ°i");case"y":return t||r?"Ć”r":"Ć”ri";case"yy":return ol(e)?a+(t||r?"Ć”r":"Ć”rum"):a+(t||r?"Ć”r":"Ć”ri")}}r.defineLocale("hu",{months:"januĆ”r_februĆ”r_mĆ”rcius_Ć”prilis_mĆ”jus_jĆŗnius_jĆŗlius_augusztus_szeptember_oktĆ³ber_november_december".split("_"),monthsShort:"jan._feb._mĆ”rc._Ć”pr._mĆ”j._jĆŗn._jĆŗl._aug._szept._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"vasĆ”rnap_hĆ©tfő_kedd_szerda_csĆ¼tƶrtƶk_pĆ©ntek_szombat".split("_"),weekdaysShort:"vas_hĆ©t_kedd_sze_csĆ¼t_pĆ©n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?"de":"DE":!0===n?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return al.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return al.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s mĆŗlva",past:"%s",s:rl,ss:rl,m:rl,mm:rl,h:rl,hh:rl,d:rl,dd:rl,M:rl,MM:rl,y:rl,yy:rl},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("hy-am",{months:{format:"Õ°ÕøÖ‚Õ¶Õ¾Õ”Ö€Õ«_ÖƒÕ„ÕæÖ€Õ¾Õ”Ö€Õ«_Õ“Õ”Ö€ÕæÕ«_Õ”Õŗրիլի_Õ“Õ”ÕµÕ«Õ½Õ«_Õ°Õøւնիսի_Õ°Õøւլիսի_օգÕøÕ½ÕæÕøÕ½Õ«_Õ½Õ„ÕŗÕæÕ„Õ“Õ¢Õ„Ö€Õ«_Õ°ÕøÕÆÕæÕ„Õ“Õ¢Õ„Ö€Õ«_Õ¶ÕøÕµÕ„Õ“Õ¢Õ„Ö€Õ«_Õ¤Õ„ÕÆÕæÕ„Õ“Õ¢Õ„Ö€Õ«".split("_"),standalone:"Õ°ÕøÖ‚Õ¶Õ¾Õ”Ö€_ÖƒÕ„ÕæÖ€Õ¾Õ”Ö€_Õ“Õ”Ö€Õæ_Õ”Õŗրիլ_Õ“Õ”ÕµÕ«Õ½_Õ°Õøւնիս_Õ°Õøւլիս_օգÕøÕ½ÕæÕøÕ½_Õ½Õ„ÕŗÕæÕ„Õ“Õ¢Õ„Ö€_Õ°ÕøÕÆÕæÕ„Õ“Õ¢Õ„Ö€_Õ¶ÕøÕµÕ„Õ“Õ¢Õ„Ö€_Õ¤Õ„ÕÆÕæÕ„Õ“Õ¢Õ„Ö€".split("_")},monthsShort:"Õ°Õ¶Õ¾_փÕæր_Õ“Ö€Õæ_Õ”Õŗր_Õ“ÕµÕ½_Õ°Õ¶Õ½_Õ°Õ¬Õ½_օգս_Õ½ÕŗÕæ_Õ°ÕÆÕæ_Õ¶Õ“Õ¢_Õ¤ÕÆÕæ".split("_"),weekdays:"ÕÆÕ«Ö€Õ”ÕÆÕ«_Õ„Ö€ÕÆÕøÖ‚Õ·Õ”Õ¢Õ©Õ«_Õ„Ö€Õ„Ö„Õ·Õ”Õ¢Õ©Õ«_Õ¹ÕøÖ€Õ„Ö„Õ·Õ”Õ¢Õ©Õ«_Õ°Õ«Õ¶Õ£Õ·Õ”Õ¢Õ©Õ«_ÕøÖ‚Ö€Õ¢Õ”Õ©_Õ·Õ”Õ¢Õ”Õ©".split("_"),weekdaysShort:"ÕÆրÕÆ_Õ„Ö€ÕÆ_Õ„Ö€Ö„_չրք_Õ°Õ¶Õ£_Õøւրբ_Õ·Õ¢Õ©".split("_"),weekdaysMin:"ÕÆրÕÆ_Õ„Ö€ÕÆ_Õ„Ö€Ö„_չրք_Õ°Õ¶Õ£_Õøւրբ_Õ·Õ¢Õ©".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Õ©.",LLL:"D MMMM YYYY Õ©., HH:mm",LLLL:"dddd, D MMMM YYYY Õ©., HH:mm"},calendar:{sameDay:"[Õ”ÕµÕ½Ö…Ö€] LT",nextDay:"[Õ¾Õ”Õ²ÕØ] LT",lastDay:"[Õ„Ö€Õ„ÕÆ] LT",nextWeek:function(){return"dddd [օրÕØ ÕŖÕ”Õ“ÕØ] LT"},lastWeek:function(){return"[ՔնցՔծ] dddd [օրÕØ ÕŖÕ”Õ“ÕØ] LT"},sameElse:"L"},relativeTime:{future:"%s Õ°Õ„ÕæÕø",past:"%s Õ”Õ¼Õ”Õ»",s:"Õ“Õ« Ö„Õ”Õ¶Õ« Õ¾Õ”ÕµÖ€ÕÆÕµÕ”Õ¶",ss:"%d Õ¾Õ”ÕµÖ€ÕÆÕµÕ”Õ¶",m:"րÕøÕŗÕ„",mm:"%d րÕøÕŗÕ„",h:"ÕŖÕ”Õ“",hh:"%d ÕŖÕ”Õ“",d:"օր",dd:"%d օր",M:"Õ”Õ“Õ«Õ½",MM:"%d Õ”Õ“Õ«Õ½",y:"ÕæÕ”Ö€Õ«",yy:"%d ÕæÕ”Ö€Õ«"},meridiemParse:/Õ£Õ«Õ·Õ„Ö€Õ¾Õ”|Õ”Õ¼Õ”Õ¾ÕøÕæÕ¾Õ”|ցՄրՄÕÆÕ¾Õ”|Õ„Ö€Õ„ÕÆÕøÕµÕ”Õ¶/,isPM:function(e){return/^(ցՄրՄÕÆÕ¾Õ”|Õ„Ö€Õ„ÕÆÕøÕµÕ”Õ¶)$/.test(e)},meridiem:function(e){return e<4?"Õ£Õ«Õ·Õ„Ö€Õ¾Õ”":e<12?"Õ”Õ¼Õ”Õ¾ÕøÕæÕ¾Õ”":e<17?"ցՄրՄÕÆÕ¾Õ”":"Õ„Ö€Õ„ÕÆÕøÕµÕ”Õ¶"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(Õ«Õ¶|րդ)/,ordinal:function(e,t){switch(t){case"DDD":case"w":case"W":case"DDDo":return 1===e?e+"-Õ«Õ¶":e+"-րդ";default:return e}},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:0,doy:6}}),r.defineLocale("is",{months:"janĆŗar_febrĆŗar_mars_aprĆ­l_maĆ­_jĆŗnĆ­_jĆŗlĆ­_Ć”gĆŗst_september_oktĆ³ber_nĆ³vember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maĆ­_jĆŗn_jĆŗl_Ć”gĆŗ_sep_okt_nĆ³v_des".split("_"),weekdays:"sunnudagur_mĆ”nudagur_Ć¾riĆ°judagur_miĆ°vikudagur_fimmtudagur_fƶstudagur_laugardagur".split("_"),weekdaysShort:"sun_mĆ”n_Ć¾ri_miĆ°_fim_fƶs_lau".split("_"),weekdaysMin:"Su_MĆ”_ƞr_Mi_Fi_Fƶ_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[Ć­ dag kl.] LT",nextDay:"[Ć” morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Ć­ gƦr kl.] LT",lastWeek:"[sĆ­Ć°asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s sĆ­Ć°an",s:il,ss:il,m:il,mm:il,h:"klukkustund",hh:il,d:il,dd:il,M:il,MM:il,y:il,yy:il},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedƬ_martedƬ_mercoledƬ_giovedƬ_venerdƬ_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){return 0===this.day()?"[la scorsa] dddd [alle] LT":"[lo scorso] dddd [alle] LT"},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedƬ_martedƬ_mercoledƬ_giovedƬ_venerdƬ_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:function(){return"[Oggi a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},lastWeek:function(){return 0===this.day()?"[La scorsa] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT":"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":0===this.hours()?" ":"ll'")+"]LT"},sameElse:"L"},relativeTime:{future:"tra %s",past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",w:"una settimana",ww:"%d settimane",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"令和",narrow:"ć‹æ",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"å¹³ęˆ",narrow:"ć»",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"ę˜­å’Œ",narrow:"ć¼",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"å¤§ę­£",narrow:"ć½",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"ę˜Žę²»",narrow:"ć¾",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"č„æꚦ",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"ē“€å…ƒå‰",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(元|\d+)幓/,eraYearOrdinalParse:function(e,t){return"元"===t[1]?1:parseInt(t[1]||e,10)},months:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),monthsShort:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),weekdays:"ę—„ę›œę—„_ęœˆę›œę—„_ē«ę›œę—„_ę°“ę›œę—„_ęœØę›œę—„_é‡‘ę›œę—„_åœŸę›œę—„".split("_"),weekdaysShort:"ę—„_꜈_ē«_ę°“_ęœØ_金_土".split("_"),weekdaysMin:"ę—„_꜈_ē«_ę°“_ęœØ_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY幓M꜈Dę—„",LLL:"YYYY幓M꜈Dę—„ HH:mm",LLLL:"YYYY幓M꜈Dę—„ dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY幓M꜈Dę—„",lll:"YYYY幓M꜈Dę—„ HH:mm",llll:"YYYY幓M꜈Dę—„(ddd) HH:mm"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,t,n){return e<12?"午前":"午後"},calendar:{sameDay:"[今ꗄ] LT",nextDay:"[ę˜Žę—„] LT",nextWeek:function(e){return e.week()!==this.week()?"[ę„é€±]dddd LT":"dddd LT"},lastDay:"[ę˜Øę—„] LT",lastWeek:function(e){return this.week()!==e.week()?"[先週]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}ę—„/,ordinal:function(e,t){switch(t){case"y":return 1===e?"元幓":e+"幓";case"d":case"D":case"DDD":return e+"ę—„";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"ꕰē§’",ss:"%dē§’",m:"1分",mm:"%d分",h:"1Ꙃ間",hh:"%dꙂ間",d:"1ę—„",dd:"%dę—„",M:"1ćƒ¶ęœˆ",MM:"%dćƒ¶ęœˆ",y:"1幓",yy:"%d幓"}}), -//! moment.js locale configuration -r.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"enjing":e<15?"siyang":e<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("ka",{months:"įƒ˜įƒįƒœįƒ•įƒįƒ įƒ˜_įƒ—įƒ”įƒ‘įƒ”įƒ įƒ•įƒįƒšįƒ˜_įƒ›įƒįƒ įƒ¢įƒ˜_įƒįƒžįƒ įƒ˜įƒšįƒ˜_įƒ›įƒįƒ˜įƒ”įƒ˜_įƒ˜įƒ•įƒœįƒ˜įƒ”įƒ˜_įƒ˜įƒ•įƒšįƒ˜įƒ”įƒ˜_įƒįƒ’įƒ•įƒ˜įƒ”įƒ¢įƒ_įƒ”įƒ”įƒ„įƒ¢įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜_įƒįƒ„įƒ¢įƒįƒ›įƒ‘įƒ”įƒ įƒ˜_įƒœįƒįƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜_įƒ“įƒ”įƒ™įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜".split("_"),monthsShort:"įƒ˜įƒįƒœ_įƒ—įƒ”įƒ‘_įƒ›įƒįƒ _įƒįƒžįƒ _įƒ›įƒįƒ˜_įƒ˜įƒ•įƒœ_įƒ˜įƒ•įƒš_įƒįƒ’įƒ•_įƒ”įƒ”įƒ„_įƒįƒ„įƒ¢_įƒœįƒįƒ”_įƒ“įƒ”įƒ™".split("_"),weekdays:{standalone:"įƒ™įƒ•įƒ˜įƒ įƒ_įƒįƒ įƒØįƒįƒ‘įƒįƒ—įƒ˜_įƒ”įƒįƒ›įƒØįƒįƒ‘įƒįƒ—įƒ˜_įƒįƒ—įƒ®įƒØįƒįƒ‘įƒįƒ—įƒ˜_įƒ®įƒ£įƒ—įƒØįƒįƒ‘įƒįƒ—įƒ˜_įƒžįƒįƒ įƒįƒ”įƒ™įƒ”įƒ•įƒ˜_įƒØįƒįƒ‘įƒįƒ—įƒ˜".split("_"),format:"įƒ™įƒ•įƒ˜įƒ įƒįƒ”_įƒįƒ įƒØįƒįƒ‘įƒįƒ—įƒ”_įƒ”įƒįƒ›įƒØįƒįƒ‘įƒįƒ—įƒ”_įƒįƒ—įƒ®įƒØįƒįƒ‘įƒįƒ—įƒ”_įƒ®įƒ£įƒ—įƒØįƒįƒ‘įƒįƒ—įƒ”_įƒžįƒįƒ įƒįƒ”įƒ™įƒ”įƒ•įƒ”_įƒØįƒįƒ‘įƒįƒ—įƒ”".split("_"),isFormat:/(įƒ¬įƒ˜įƒœįƒ|įƒØįƒ”įƒ›įƒ“įƒ”įƒ’)/},weekdaysShort:"įƒ™įƒ•įƒ˜_įƒįƒ įƒØ_įƒ”įƒįƒ›_įƒįƒ—įƒ®_įƒ®įƒ£įƒ—_įƒžįƒįƒ _įƒØįƒįƒ‘".split("_"),weekdaysMin:"įƒ™įƒ•_įƒįƒ _įƒ”įƒ_įƒįƒ—_įƒ®įƒ£_įƒžįƒ_įƒØįƒ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[įƒ“įƒ¦įƒ”įƒ”] LT[-įƒ–įƒ”]",nextDay:"[įƒ®įƒ•įƒįƒš] LT[-įƒ–įƒ”]",lastDay:"[įƒ’įƒ£įƒØįƒ˜įƒœ] LT[-įƒ–įƒ”]",nextWeek:"[įƒØįƒ”įƒ›įƒ“įƒ”įƒ’] dddd LT[-įƒ–įƒ”]",lastWeek:"[įƒ¬įƒ˜įƒœįƒ] dddd LT-įƒ–įƒ”",sameElse:"L"},relativeTime:{future:function(e){return e.replace(/(įƒ¬įƒįƒ›|įƒ¬įƒ£įƒ—|įƒ”įƒįƒįƒ—|įƒ¬įƒ”įƒš|įƒ“įƒ¦|įƒ—įƒ•)(įƒ˜|įƒ”)/,(function(e,t,n){return"įƒ˜"===n?t+"įƒØįƒ˜":t+n+"įƒØįƒ˜"}))},past:function(e){return/(įƒ¬įƒįƒ›įƒ˜|įƒ¬įƒ£įƒ—įƒ˜|įƒ”įƒįƒįƒ—įƒ˜|įƒ“įƒ¦įƒ”|įƒ—įƒ•įƒ”)/.test(e)?e.replace(/(įƒ˜|įƒ”)$/,"įƒ˜įƒ” įƒ¬įƒ˜įƒœ"):/įƒ¬įƒ”įƒšįƒ˜/.test(e)?e.replace(/įƒ¬įƒ”įƒšįƒ˜$/,"įƒ¬įƒšįƒ˜įƒ” įƒ¬įƒ˜įƒœ"):e},s:"įƒ įƒįƒ›įƒ“įƒ”įƒœįƒ˜įƒ›įƒ” įƒ¬įƒįƒ›įƒ˜",ss:"%d įƒ¬įƒįƒ›įƒ˜",m:"įƒ¬įƒ£įƒ—įƒ˜",mm:"%d įƒ¬įƒ£įƒ—įƒ˜",h:"įƒ”įƒįƒįƒ—įƒ˜",hh:"%d įƒ”įƒįƒįƒ—įƒ˜",d:"įƒ“įƒ¦įƒ”",dd:"%d įƒ“įƒ¦įƒ”",M:"įƒ—įƒ•įƒ”",MM:"%d įƒ—įƒ•įƒ”",y:"įƒ¬įƒ”įƒšįƒ˜",yy:"%d įƒ¬įƒ”įƒšįƒ˜"},dayOfMonthOrdinalParse:/0|1-įƒšįƒ˜|įƒ›įƒ”-\d{1,2}|\d{1,2}-įƒ”/,ordinal:function(e){return 0===e?e:1===e?e+"-įƒšįƒ˜":e<20||e<=100&&e%20==0||e%100==0?"įƒ›įƒ”-"+e:e+"-įƒ”"},week:{dow:1,doy:7}}); -//! moment.js locale configuration -var sl={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"};r.defineLocale("kk",{months:"Ņ›Š°Ņ£Ń‚Š°Ń€_Š°Ņ›ŠæŠ°Š½_Š½Š°ŃƒŃ€Ń‹Š·_сәуір_Š¼Š°Š¼Ń‹Ń€_Š¼Š°ŃƒŃŃ‹Š¼_шіŠ»Š“Šµ_тŠ°Š¼Ń‹Š·_Ņ›Ń‹Ń€ŠŗŅÆŠ¹ŠµŠŗ_Ņ›Š°Š·Š°Š½_Ņ›Š°Ń€Š°ŃˆŠ°_Š¶ŠµŠ»Ń‚Š¾Ņ›ŃŠ°Š½".split("_"),monthsShort:"Ņ›Š°Ņ£_Š°Ņ›Šæ_Š½Š°Ńƒ_сәу_Š¼Š°Š¼_Š¼Š°Ńƒ_шіŠ»_тŠ°Š¼_Ņ›Ń‹Ń€_Ņ›Š°Š·_Ņ›Š°Ń€_Š¶ŠµŠ»".split("_"),weekdays:"Š¶ŠµŠŗсŠµŠ½Š±Ń–_Š“ŅÆŠ¹ŃŠµŠ½Š±Ń–_сŠµŠ¹ŃŠµŠ½Š±Ń–_сәрсŠµŠ½Š±Ń–_Š±ŠµŠ¹ŃŠµŠ½Š±Ń–_Š¶Ņ±Š¼Š°_сŠµŠ½Š±Ń–".split("_"),weekdaysShort:"Š¶ŠµŠŗ_Š“ŅÆŠ¹_сŠµŠ¹_сәр_Š±ŠµŠ¹_Š¶Ņ±Š¼_сŠµŠ½".split("_"),weekdaysMin:"Š¶Šŗ_Š“Š¹_сŠ¹_ср_Š±Š¹_Š¶Š¼_сŠ½".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Š‘ŅÆŠ³Ń–Š½ сŠ°Ņ“Š°Ń‚] LT",nextDay:"[Š•Ń€Ń‚ŠµŅ£ сŠ°Ņ“Š°Ń‚] LT",nextWeek:"dddd [сŠ°Ņ“Š°Ń‚] LT",lastDay:"[ŠšŠµŃˆŠµ сŠ°Ņ“Š°Ń‚] LT",lastWeek:"[ÓØтŠŗŠµŠ½ Š°ŠæтŠ°Š½Ń‹Ņ£] dddd [сŠ°Ņ“Š°Ń‚] LT",sameElse:"L"},relativeTime:{future:"%s ішіŠ½Š“Šµ",past:"%s Š±Ņ±Ń€Ń‹Š½",s:"Š±Ń–Ń€Š½ŠµŃˆŠµ сŠµŠŗуŠ½Š“",ss:"%d сŠµŠŗуŠ½Š“",m:"Š±Ń–Ń€ Š¼ŠøŠ½ŃƒŃ‚",mm:"%d Š¼ŠøŠ½ŃƒŃ‚",h:"Š±Ń–Ń€ сŠ°Ņ“Š°Ń‚",hh:"%d сŠ°Ņ“Š°Ń‚",d:"Š±Ń–Ń€ ŠŗŅÆŠ½",dd:"%d ŠŗŅÆŠ½",M:"Š±Ń–Ń€ Š°Š¹",MM:"%d Š°Š¹",y:"Š±Ń–Ń€ Š¶Ń‹Š»",yy:"%d Š¶Ń‹Š»"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(sl[e]||sl[t]||sl[n])},week:{dow:1,doy:7}}); -//! moment.js locale configuration -var ll={1:"įŸ”",2:"įŸ¢",3:"įŸ£",4:"įŸ¤",5:"įŸ„",6:"įŸ¦",7:"įŸ§",8:"įŸØ",9:"įŸ©",0:"įŸ "},ul={"įŸ”":"1","įŸ¢":"2","įŸ£":"3","įŸ¤":"4","įŸ„":"5","įŸ¦":"6","įŸ§":"7","įŸØ":"8","įŸ©":"9","įŸ ":"0"};r.defineLocale("km",{months:"įž˜įž€įžšįž¶_įž€įž»įž˜įŸ’įž—įŸˆ_įž˜įžøįž“įž¶_įž˜įŸįžŸįž¶_įž§įžŸįž—įž¶_įž˜įž·įžįž»įž“įž¶_įž€įž€įŸ’įž€įžŠįž¶_įžŸįžøįž įž¶_įž€įž‰įŸ’įž‰įž¶_įžįž»įž›įž¶_įžœįž·įž…įŸ’įž†įž·įž€įž¶_įž’įŸ’įž“įž¼".split("_"),monthsShort:"įž˜įž€įžšįž¶_įž€įž»įž˜įŸ’įž—įŸˆ_įž˜įžøįž“įž¶_įž˜įŸįžŸįž¶_įž§įžŸįž—įž¶_įž˜įž·įžįž»įž“įž¶_įž€įž€įŸ’įž€įžŠįž¶_įžŸįžøįž įž¶_įž€įž‰įŸ’įž‰įž¶_įžįž»įž›įž¶_įžœįž·įž…įŸ’įž†įž·įž€įž¶_įž’įŸ’įž“įž¼".split("_"),weekdays:"įž¢įž¶įž‘įž·įžįŸ’įž™_įž…įŸįž“įŸ’įž‘_įž¢įž„įŸ’įž‚įž¶įžš_įž–įž»įž’_įž–įŸ’įžšįž įžŸįŸ’įž”įžįž·įŸ_įžŸįž»įž€įŸ’įžš_įžŸįŸ…įžšįŸ".split("_"),weekdaysShort:"įž¢įž¶_įž…_įž¢_įž–_įž–įŸ’įžš_įžŸįž»_įžŸ".split("_"),weekdaysMin:"įž¢įž¶_įž…_įž¢_įž–_įž–įŸ’įžš_įžŸįž»_įžŸ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/įž–įŸ’įžšįž¹įž€|įž›įŸ’įž„įž¶įž…/,isPM:function(e){return"įž›įŸ’įž„įž¶įž…"===e},meridiem:function(e,t,n){return e<12?"įž–įŸ’įžšįž¹įž€":"įž›įŸ’įž„įž¶įž…"},calendar:{sameDay:"[įžįŸ’įž„įŸƒįž“įŸįŸ‡ įž˜įŸ‰įŸ„įž„] LT",nextDay:"[įžŸįŸ’įž¢įŸ‚įž€ įž˜įŸ‰įŸ„įž„] LT",nextWeek:"dddd [įž˜įŸ‰įŸ„įž„] LT",lastDay:"[įž˜įŸ’įžŸįž·įž›įž˜įž·įž‰ įž˜įŸ‰įŸ„įž„] LT",lastWeek:"dddd [įžŸįž”įŸ’įžįž¶įž įŸįž˜įž»įž“] [įž˜įŸ‰įŸ„įž„] LT",sameElse:"L"},relativeTime:{future:"%sįž‘įŸ€įž",past:"%sįž˜įž»įž“",s:"įž”įŸ‰įž»įž“įŸ’įž˜įž¶įž“įžœįž·įž“įž¶įž‘įžø",ss:"%d įžœįž·įž“įž¶įž‘įžø",m:"įž˜įž½įž™įž“įž¶įž‘įžø",mm:"%d įž“įž¶įž‘įžø",h:"įž˜įž½įž™įž˜įŸ‰įŸ„įž„",hh:"%d įž˜įŸ‰įŸ„įž„",d:"įž˜įž½įž™įžįŸ’įž„įŸƒ",dd:"%d įžįŸ’įž„įŸƒ",M:"įž˜įž½įž™įžįŸ‚",MM:"%d įžįŸ‚",y:"įž˜įž½įž™įž†įŸ’įž“įž¶įŸ†",yy:"%d įž†įŸ’įž“įž¶įŸ†"},dayOfMonthOrdinalParse:/įž‘įžø\d{1,2}/,ordinal:"įž‘įžø%d",preparse:function(e){return e.replace(/[įŸ”įŸ¢įŸ£įŸ¤įŸ„įŸ¦įŸ§įŸØįŸ©įŸ ]/g,(function(e){return ul[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return ll[e]}))},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var dl={1:"ą³§",2:"ą³Ø",3:"ą³©",4:"ą³Ŗ",5:"ą³«",6:"ą³¬",7:"ą³­",8:"ą³®",9:"ą³Æ",0:"ą³¦"},cl={"ą³§":"1","ą³Ø":"2","ą³©":"3","ą³Ŗ":"4","ą³«":"5","ą³¬":"6","ą³­":"7","ą³®":"8","ą³Æ":"9","ą³¦":"0"};r.defineLocale("kn",{months:"ą²œą²Øą²µą²°ą²æ_ą²«ą³†ą²¬ą³ą²°ą²µą²°ą²æ_ą²®ą²¾ą²°ą³ą²šą³_ą²ą²Ŗą³ą²°ą²æą²²ą³_ą²®ą³†ą³•_ą²œą³‚ą²Øą³_ą²œą³ą²²ą³†ą³–_ą²†ą²—ą²øą³ą²Ÿą³_ą²øą³†ą²Ŗą³ą²Ÿą³†ą²‚ą²¬ą²°ą³_ą²…ą²•ą³ą²Ÿą³†ą³‚ą³•ą²¬ą²°ą³_ą²Øą²µą³†ą²‚ą²¬ą²°ą³_ą²”ą²æą²øą³†ą²‚ą²¬ą²°ą³".split("_"),monthsShort:"ą²œą²Ø_ą²«ą³†ą²¬ą³ą²°_ą²®ą²¾ą²°ą³ą²šą³_ą²ą²Ŗą³ą²°ą²æą²²ą³_ą²®ą³†ą³•_ą²œą³‚ą²Øą³_ą²œą³ą²²ą³†ą³–_ą²†ą²—ą²øą³ą²Ÿą³_ą²øą³†ą²Ŗą³ą²Ÿą³†ą²‚_ą²…ą²•ą³ą²Ÿą³†ą³‚ą³•_ą²Øą²µą³†ą²‚_ą²”ą²æą²øą³†ą²‚".split("_"),monthsParseExact:!0,weekdays:"ą²­ą²¾ą²Øą³ą²µą²¾ą²°_ą²øą³†ą³‚ą³•ą²®ą²µą²¾ą²°_ą²®ą²‚ą²—ą²³ą²µą²¾ą²°_ą²¬ą³ą²§ą²µą²¾ą²°_ą²—ą³ą²°ą³ą²µą²¾ą²°_ą²¶ą³ą²•ą³ą²°ą²µą²¾ą²°_ą²¶ą²Øą²æą²µą²¾ą²°".split("_"),weekdaysShort:"ą²­ą²¾ą²Øą³_ą²øą³†ą³‚ą³•ą²®_ą²®ą²‚ą²—ą²³_ą²¬ą³ą²§_ą²—ą³ą²°ą³_ą²¶ą³ą²•ą³ą²°_ą²¶ą²Øą²æ".split("_"),weekdaysMin:"ą²­ą²¾_ą²øą³†ą³‚ą³•_ą²®ą²‚_ą²¬ą³_ą²—ą³_ą²¶ą³_ą²¶".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ą²‡ą²‚ą²¦ą³] LT",nextDay:"[ą²Øą²¾ą²³ą³†] LT",nextWeek:"dddd, LT",lastDay:"[ą²Øą²æą²Øą³ą²Øą³†] LT",lastWeek:"[ą²•ą³†ą³‚ą²Øą³†ą²Æ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą²Øą²‚ą²¤ą²°",past:"%s ą²¹ą²æą²‚ą²¦ą³†",s:"ą²•ą³†ą²²ą²µą³ ą²•ą³ą²·ą²£ą²—ą²³ą³",ss:"%d ą²øą³†ą²•ą³†ą²‚ą²”ą³ą²—ą²³ą³",m:"ą²’ą²‚ą²¦ą³ ą²Øą²æą²®ą²æą²·",mm:"%d ą²Øą²æą²®ą²æą²·",h:"ą²’ą²‚ą²¦ą³ ą²—ą²‚ą²Ÿą³†",hh:"%d ą²—ą²‚ą²Ÿą³†",d:"ą²’ą²‚ą²¦ą³ ą²¦ą²æą²Ø",dd:"%d ą²¦ą²æą²Ø",M:"ą²’ą²‚ą²¦ą³ ą²¤ą²æą²‚ą²—ą²³ą³",MM:"%d ą²¤ą²æą²‚ą²—ą²³ą³",y:"ą²’ą²‚ą²¦ą³ ą²µą²°ą³ą²·",yy:"%d ą²µą²°ą³ą²·"},preparse:function(e){return e.replace(/[ą³§ą³Øą³©ą³Ŗą³«ą³¬ą³­ą³®ą³Æą³¦]/g,(function(e){return cl[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return dl[e]}))},meridiemParse:/ą²°ą²¾ą²¤ą³ą²°ą²æ|ą²¬ą³†ą²³ą²æą²—ą³ą²—ą³†|ą²®ą²§ą³ą²Æą²¾ą²¹ą³ą²Ø|ą²øą²‚ą²œą³†/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą²°ą²¾ą²¤ą³ą²°ą²æ"===t?e<4?e:e+12:"ą²¬ą³†ą²³ą²æą²—ą³ą²—ą³†"===t?e:"ą²®ą²§ą³ą²Æą²¾ą²¹ą³ą²Ø"===t?e>=10?e:e+12:"ą²øą²‚ą²œą³†"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ą²°ą²¾ą²¤ą³ą²°ą²æ":e<10?"ą²¬ą³†ą²³ą²æą²—ą³ą²—ą³†":e<17?"ą²®ą²§ą³ą²Æą²¾ą²¹ą³ą²Ø":e<20?"ą²øą²‚ą²œą³†":"ą²°ą²¾ą²¤ą³ą²°ą²æ"},dayOfMonthOrdinalParse:/\d{1,2}(ą²Øą³†ą³•)/,ordinal:function(e){return e+"ą²Øą³†ą³•"},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("ko",{months:"1ģ›”_2ģ›”_3ģ›”_4ģ›”_5ģ›”_6ģ›”_7ģ›”_8ģ›”_9ģ›”_10ģ›”_11ģ›”_12ģ›”".split("_"),monthsShort:"1ģ›”_2ģ›”_3ģ›”_4ģ›”_5ģ›”_6ģ›”_7ģ›”_8ģ›”_9ģ›”_10ģ›”_11ģ›”_12ģ›”".split("_"),weekdays:"ģ¼ģš”ģ¼_ģ›”ģš”ģ¼_ķ™”ģš”ģ¼_ģˆ˜ģš”ģ¼_ėŖ©ģš”ģ¼_źøˆģš”ģ¼_ķ† ģš”ģ¼".split("_"),weekdaysShort:"ģ¼_ģ›”_ķ™”_ģˆ˜_ėŖ©_źøˆ_ķ† ".split("_"),weekdaysMin:"ģ¼_ģ›”_ķ™”_ģˆ˜_ėŖ©_źøˆ_ķ† ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYYė…„ MMMM Dģ¼",LLL:"YYYYė…„ MMMM Dģ¼ A h:mm",LLLL:"YYYYė…„ MMMM Dģ¼ dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYYė…„ MMMM Dģ¼",lll:"YYYYė…„ MMMM Dģ¼ A h:mm",llll:"YYYYė…„ MMMM Dģ¼ dddd A h:mm"},calendar:{sameDay:"ģ˜¤ėŠ˜ LT",nextDay:"ė‚“ģ¼ LT",nextWeek:"dddd LT",lastDay:"ģ–“ģ œ LT",lastWeek:"ģ§€ė‚œģ£¼ dddd LT",sameElse:"L"},relativeTime:{future:"%s ķ›„",past:"%s ģ „",s:"ėŖ‡ ģ“ˆ",ss:"%dģ“ˆ",m:"1ė¶„",mm:"%dė¶„",h:"ķ•œ ģ‹œź°„",hh:"%dģ‹œź°„",d:"ķ•˜ė£Ø",dd:"%dģ¼",M:"ķ•œ ė‹¬",MM:"%dė‹¬",y:"ģ¼ ė…„",yy:"%dė…„"},dayOfMonthOrdinalParse:/\d{1,2}(ģ¼|ģ›”|ģ£¼)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ģ¼";case"M":return e+"ģ›”";case"w":case"W":return e+"ģ£¼";default:return e}},meridiemParse:/ģ˜¤ģ „|ģ˜¤ķ›„/,isPM:function(e){return"ģ˜¤ķ›„"===e},meridiem:function(e,t,n){return e<12?"ģ˜¤ģ „":"ģ˜¤ķ›„"}}); -//! moment.js locale configuration -var fl={1:"Ł”",2:"Ł¢",3:"Ł£",4:"Ł¤",5:"Ł„",6:"Ł¦",7:"Ł§",8:"ŁØ",9:"Ł©",0:"Ł "},pl={"Ł”":"1","Ł¢":"2","Ł£":"3","Ł¤":"4","Ł„":"5","Ł¦":"6","Ł§":"7","ŁØ":"8","Ł©":"9","Ł ":"0"},hl=["Ś©Ų§Ł†ŁˆŁ†ŪŒ ŲÆŁˆŁˆŪ•Ł…","Ų“ŁˆŲØŲ§ŲŖ","Ų¦Ų§Ų²Ų§Ų±","Ł†ŪŒŲ³Ų§Ł†","Ų¦Ų§ŪŒŲ§Ų±","Ų­ŁˆŲ²Ū•ŪŒŲ±Ų§Ł†","ŲŖŪ•Ł…Ł…ŁˆŲ²","Ų¦Ų§ŲØ","Ų¦Ū•ŪŒŁ„ŁˆŁˆŁ„","ŲŖŲ“Ų±ŪŒŁ†ŪŒ ŪŒŪ•ŁƒŪ•Ł…","ŲŖŲ“Ų±ŪŒŁ†ŪŒ ŲÆŁˆŁˆŪ•Ł…","ŁƒŲ§Ł†ŁˆŁ†ŪŒ ŪŒŪ•Ś©Ū•Ł…"];r.defineLocale("ku",{months:hl,monthsShort:hl,weekdays:"ŪŒŁ‡ā€ŒŁƒŲ“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ_ŲÆŁˆŁˆŲ“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ_Ų³ŪŽŲ“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ_Ś†ŁˆŲ§Ų±Ų“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ_Ł¾ŪŽŁ†Ų¬Ų“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ_Ł‡Ł‡ā€ŒŪŒŁ†ŪŒ_Ų“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ".split("_"),weekdaysShort:"ŪŒŁ‡ā€ŒŁƒŲ“Ł‡ā€ŒŁ…_ŲÆŁˆŁˆŲ“Ł‡ā€ŒŁ…_Ų³ŪŽŲ“Ł‡ā€ŒŁ…_Ś†ŁˆŲ§Ų±Ų“Ł‡ā€ŒŁ…_Ł¾ŪŽŁ†Ų¬Ų“Ł‡ā€ŒŁ…_Ł‡Ł‡ā€ŒŪŒŁ†ŪŒ_Ų“Ł‡ā€ŒŁ…Ł…Ł‡ā€Œ".split("_"),weekdaysMin:"ŪŒ_ŲÆ_Ų³_Ś†_Ł¾_Ł‡_Ų“".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/Ų¦ŪŽŁˆŲ§Ų±Ł‡ā€Œ|ŲØŁ‡ā€ŒŪŒŲ§Ł†ŪŒ/,isPM:function(e){return/Ų¦ŪŽŁˆŲ§Ų±Ł‡ā€Œ/.test(e)},meridiem:function(e,t,n){return e<12?"ŲØŁ‡ā€ŒŪŒŲ§Ł†ŪŒ":"Ų¦ŪŽŁˆŲ§Ų±Ł‡ā€Œ"},calendar:{sameDay:"[Ų¦Ł‡ā€ŒŁ…Ų±Ū† ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±] LT",nextDay:"[ŲØŁ‡ā€ŒŪŒŲ§Ł†ŪŒ ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±] LT",nextWeek:"dddd [ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±] LT",lastDay:"[ŲÆŁˆŪŽŁ†ŪŽ ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±] LT",lastWeek:"dddd [ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±] LT",sameElse:"L"},relativeTime:{future:"Ł„Ł‡ā€Œ %s",past:"%s",s:"Ś†Ł‡ā€ŒŁ†ŲÆ Ś†Ų±ŁƒŁ‡ā€ŒŪŒŁ‡ā€ŒŁƒ",ss:"Ś†Ų±ŁƒŁ‡ā€Œ %d",m:"ŪŒŁ‡ā€ŒŁƒ Ų®ŁˆŁ„Ł‡ā€ŒŁƒ",mm:"%d Ų®ŁˆŁ„Ł‡ā€ŒŁƒ",h:"ŪŒŁ‡ā€ŒŁƒ ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±",hh:"%d ŁƒŲ§ŲŖŚ˜Ł…ŪŽŲ±",d:"ŪŒŁ‡ā€ŒŁƒ Ś•Ū†Ś˜",dd:"%d Ś•Ū†Ś˜",M:"ŪŒŁ‡ā€ŒŁƒ Ł…Ų§Ł†ŚÆ",MM:"%d Ł…Ų§Ł†ŚÆ",y:"ŪŒŁ‡ā€ŒŁƒ Ų³Ų§Śµ",yy:"%d Ų³Ų§Śµ"},preparse:function(e){return e.replace(/[Ł”Ł¢Ł£Ł¤Ł„Ł¦Ł§ŁØŁ©Ł ]/g,(function(e){return pl[e]})).replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/\d/g,(function(e){return fl[e]})).replace(/,/g,"ŲŒ")},week:{dow:6,doy:12}}); -//! moment.js locale configuration -var ml={0:"-чŅÆ",1:"-чŠø",2:"-чŠø",3:"-чŅÆ",4:"-чŅÆ",5:"-чŠø",6:"-чы",7:"-чŠø",8:"-чŠø",9:"-чу",10:"-чу",20:"-чы",30:"-чу",40:"-чы",50:"-чŅÆ",60:"-чы",70:"-чŠø",80:"-чŠø",90:"-чу",100:"-чŅÆ"}; -//! moment.js locale configuration -function _l(e,t,n,r){var a={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?a[n][0]:a[n][1]}function yl(e){return vl(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e}function gl(e){return vl(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e}function vl(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return vl(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return vl(e)}return vl(e/=1e3)}r.defineLocale("ky",{months:"яŠ½Š²Š°Ń€ŃŒ_фŠµŠ²Ń€Š°Š»ŃŒ_Š¼Š°Ń€Ń‚_Š°ŠæрŠµŠ»ŃŒ_Š¼Š°Š¹_ŠøюŠ½ŃŒ_ŠøюŠ»ŃŒ_Š°Š²Š³ŃƒŃŃ‚_сŠµŠ½Ń‚яŠ±Ń€ŃŒ_Š¾ŠŗтяŠ±Ń€ŃŒ_Š½Š¾ŃŠ±Ń€ŃŒ_Š“ŠµŠŗŠ°Š±Ń€ŃŒ".split("_"),monthsShort:"яŠ½Š²_фŠµŠ²_Š¼Š°Ń€Ń‚_Š°Šæр_Š¼Š°Š¹_ŠøюŠ½ŃŒ_ŠøюŠ»ŃŒ_Š°Š²Š³_сŠµŠ½_Š¾Šŗт_Š½Š¾Ń_Š“ŠµŠŗ".split("_"),weekdays:"Š–ŠµŠŗшŠµŠ¼Š±Šø_Š”ŅÆŠ¹ŃˆÓ©Š¼Š±ŅÆ_ŠØŠµŠ¹ŃˆŠµŠ¼Š±Šø_ŠØŠ°Ń€ŃˆŠµŠ¼Š±Šø_Š‘ŠµŠ¹ŃˆŠµŠ¼Š±Šø_Š–ŃƒŠ¼Š°_Š˜ŃˆŠµŠ¼Š±Šø".split("_"),weekdaysShort:"Š–ŠµŠŗ_Š”ŅÆŠ¹_ŠØŠµŠ¹_ŠØŠ°Ń€_Š‘ŠµŠ¹_Š–ŃƒŠ¼_Š˜ŃˆŠµ".split("_"),weekdaysMin:"Š–Šŗ_Š”Š¹_ŠØŠ¹_ŠØр_Š‘Š¹_Š–Š¼_Š˜Ńˆ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Š‘ŅÆŠ³ŅÆŠ½ сŠ°Š°Ń‚] LT",nextDay:"[Š­Ń€Ń‚ŠµŅ£ сŠ°Š°Ń‚] LT",nextWeek:"dddd [сŠ°Š°Ń‚] LT",lastDay:"[ŠšŠµŃ‡ŃŃ сŠ°Š°Ń‚] LT",lastWeek:"[ÓØтŠŗÓ©Š½ Š°ŠæтŠ°Š½Ń‹Š½] dddd [ŠŗŅÆŠ½ŅÆ] [сŠ°Š°Ń‚] LT",sameElse:"L"},relativeTime:{future:"%s ŠøчŠøŠ½Š“Šµ",past:"%s Š¼ŃƒŃ€ŃƒŠ½",s:"Š±ŠøрŠ½ŠµŃ‡Šµ сŠµŠŗуŠ½Š“",ss:"%d сŠµŠŗуŠ½Š“",m:"Š±Šøр Š¼ŅÆŠ½Ó©Ń‚",mm:"%d Š¼ŅÆŠ½Ó©Ń‚",h:"Š±Šøр сŠ°Š°Ń‚",hh:"%d сŠ°Š°Ń‚",d:"Š±Šøр ŠŗŅÆŠ½",dd:"%d ŠŗŅÆŠ½",M:"Š±Šøр Š°Š¹",MM:"%d Š°Š¹",y:"Š±Šøр Š¶Ń‹Š»",yy:"%d Š¶Ń‹Š»"},dayOfMonthOrdinalParse:/\d{1,2}-(чŠø|чы|чŅÆ|чу)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(ml[e]||ml[t]||ml[n])},week:{dow:1,doy:7}}),r.defineLocale("lb",{months:"Januar_Februar_MƤerz_AbrĆ«ll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_MĆ©indeg_DĆ«nschdeg_MĆ«ttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._MĆ©._DĆ«._MĆ«._Do._Fr._Sa.".split("_"),weekdaysMin:"So_MĆ©_DĆ«_MĆ«_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[GĆ«schter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:yl,past:gl,s:"e puer Sekonnen",ss:"%d Sekonnen",m:_l,mm:"%d Minutten",h:_l,hh:"%d Stonnen",d:_l,dd:"%d Deeg",M:_l,MM:"%d MĆ©int",y:_l,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("lo",{months:"ąŗ”ąŗ±ąŗ‡ąŗąŗ­ąŗ™_ąŗąŗøąŗ”ąŗžąŗ²_ąŗ”ąŗµąŗ™ąŗ²_ą»€ąŗ”ąŗŖąŗ²_ąŗžąŗ¶ąŗ”ąŗŖąŗ°ąŗžąŗ²_ąŗ”ąŗ“ąŗ–ąŗøąŗ™ąŗ²_ąŗą»ąŗ„ąŗ°ąŗąŗ»ąŗ”_ąŗŖąŗ“ąŗ‡ąŗ«ąŗ²_ąŗąŗ±ąŗ™ąŗąŗ²_ąŗ•ąŗøąŗ„ąŗ²_ąŗžąŗ°ąŗˆąŗ“ąŗ_ąŗ—ąŗ±ąŗ™ąŗ§ąŗ²".split("_"),monthsShort:"ąŗ”ąŗ±ąŗ‡ąŗąŗ­ąŗ™_ąŗąŗøąŗ”ąŗžąŗ²_ąŗ”ąŗµąŗ™ąŗ²_ą»€ąŗ”ąŗŖąŗ²_ąŗžąŗ¶ąŗ”ąŗŖąŗ°ąŗžąŗ²_ąŗ”ąŗ“ąŗ–ąŗøąŗ™ąŗ²_ąŗą»ąŗ„ąŗ°ąŗąŗ»ąŗ”_ąŗŖąŗ“ąŗ‡ąŗ«ąŗ²_ąŗąŗ±ąŗ™ąŗąŗ²_ąŗ•ąŗøąŗ„ąŗ²_ąŗžąŗ°ąŗˆąŗ“ąŗ_ąŗ—ąŗ±ąŗ™ąŗ§ąŗ²".split("_"),weekdays:"ąŗ­ąŗ²ąŗ—ąŗ“ąŗ”_ąŗˆąŗ±ąŗ™_ąŗ­ąŗ±ąŗ‡ąŗ„ąŗ²ąŗ™_ąŗžąŗøąŗ”_ąŗžąŗ°ąŗ«ąŗ±ąŗ”_ąŗŖąŗøąŗ_ą»€ąŗŖąŗ»ąŗ²".split("_"),weekdaysShort:"ąŗ—ąŗ“ąŗ”_ąŗˆąŗ±ąŗ™_ąŗ­ąŗ±ąŗ‡ąŗ„ąŗ²ąŗ™_ąŗžąŗøąŗ”_ąŗžąŗ°ąŗ«ąŗ±ąŗ”_ąŗŖąŗøąŗ_ą»€ąŗŖąŗ»ąŗ²".split("_"),weekdaysMin:"ąŗ—_ąŗˆ_ąŗ­ąŗ„_ąŗž_ąŗžąŗ«_ąŗŖąŗ_ąŗŖ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ąŗ§ąŗ±ąŗ™dddd D MMMM YYYY HH:mm"},meridiemParse:/ąŗ•ąŗ­ąŗ™ą»€ąŗŠąŗ»ą»‰ąŗ²|ąŗ•ąŗ­ąŗ™ą»ąŗ„ąŗ‡/,isPM:function(e){return"ąŗ•ąŗ­ąŗ™ą»ąŗ„ąŗ‡"===e},meridiem:function(e,t,n){return e<12?"ąŗ•ąŗ­ąŗ™ą»€ąŗŠąŗ»ą»‰ąŗ²":"ąŗ•ąŗ­ąŗ™ą»ąŗ„ąŗ‡"},calendar:{sameDay:"[ąŗ”ąŗ·ą»‰ąŗ™ąŗµą»‰ą»€ąŗ§ąŗ„ąŗ²] LT",nextDay:"[ąŗ”ąŗ·ą»‰ąŗ­ąŗ·ą»ˆąŗ™ą»€ąŗ§ąŗ„ąŗ²] LT",nextWeek:"[ąŗ§ąŗ±ąŗ™]dddd[ą»œą»‰ąŗ²ą»€ąŗ§ąŗ„ąŗ²] LT",lastDay:"[ąŗ”ąŗ·ą»‰ąŗ§ąŗ²ąŗ™ąŗ™ąŗµą»‰ą»€ąŗ§ąŗ„ąŗ²] LT",lastWeek:"[ąŗ§ąŗ±ąŗ™]dddd[ą»ąŗ„ą»‰ąŗ§ąŗ™ąŗµą»‰ą»€ąŗ§ąŗ„ąŗ²] LT",sameElse:"L"},relativeTime:{future:"ąŗ­ąŗµąŗ %s",past:"%sąŗœą»ˆąŗ²ąŗ™ąŗ”ąŗ²",s:"ąŗšą»ą»ˆą»€ąŗ—ąŗ»ą»ˆąŗ²ą»ƒąŗ”ąŗ§ąŗ“ąŗ™ąŗ²ąŗ—ąŗµ",ss:"%d ąŗ§ąŗ“ąŗ™ąŗ²ąŗ—ąŗµ",m:"1 ąŗ™ąŗ²ąŗ—ąŗµ",mm:"%d ąŗ™ąŗ²ąŗ—ąŗµ",h:"1 ąŗŠąŗ»ą»ˆąŗ§ą»‚ąŗ”ąŗ‡",hh:"%d ąŗŠąŗ»ą»ˆąŗ§ą»‚ąŗ”ąŗ‡",d:"1 ąŗ”ąŗ·ą»‰",dd:"%d ąŗ”ąŗ·ą»‰",M:"1 ą»€ąŗ”ąŗ·ąŗ­ąŗ™",MM:"%d ą»€ąŗ”ąŗ·ąŗ­ąŗ™",y:"1 ąŗ›ąŗµ",yy:"%d ąŗ›ąŗµ"},dayOfMonthOrdinalParse:/(ąŗ—ąŗµą»ˆ)\d{1,2}/,ordinal:function(e){return"ąŗ—ąŗµą»ˆ"+e}}); -//! moment.js locale configuration -var bl={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesÄÆ",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};function Ml(e,t,n,r){return t?"kelios sekundės":r?"kelių sekundžių":"kelias sekundes"}function wl(e,t,n,r){return t?Ll(n)[0]:r?Ll(n)[1]:Ll(n)[2]}function kl(e){return e%10==0||e>10&&e<20}function Ll(e){return bl[e].split("_")}function Dl(e,t,n,r){var a=e+" ";return 1===e?a+wl(e,t,n[0],r):t?a+(kl(e)?Ll(n)[1]:Ll(n)[0]):r?a+Ll(n)[1]:a+(kl(e)?Ll(n)[1]:Ll(n)[2])}r.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjÅ«tis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienÄÆ_pirmadienÄÆ_antradienÄÆ_trečiadienÄÆ_ketvirtadienÄÆ_penktadienÄÆ_Å”eÅ”tadienÄÆ".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_Å”eÅ”tadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Å eÅ”".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Å ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Å iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[PraėjusÄÆ] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieÅ” %s",s:Ml,ss:Dl,m:wl,mm:Dl,h:wl,hh:Dl,d:wl,dd:Dl,M:wl,MM:Dl,y:wl,yy:Dl},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Yl={ss:"sekundes_sekundēm_sekunde_sekundes".split("_"),m:"minÅ«tes_minÅ«tēm_minÅ«te_minÅ«tes".split("_"),mm:"minÅ«tes_minÅ«tēm_minÅ«te_minÅ«tes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneÅ”a_mēneÅ”iem_mēnesis_mēneÅ”i".split("_"),MM:"mēneÅ”a_mēneÅ”iem_mēnesis_mēneÅ”i".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};function Tl(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function Sl(e,t,n){return e+" "+Tl(Yl[n],e,t)}function xl(e,t,n){return Tl(Yl[n],e,t)}function Pl(e,t){return t?"dažas sekundes":"dažām sekundēm"}r.defineLocale("lv",{months:"janvāris_februāris_marts_aprÄ«lis_maijs_jÅ«nijs_jÅ«lijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jÅ«n_jÅ«l_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_treÅ”diena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Å odien pulksten] LT",nextDay:"[RÄ«t pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[PagājuŔā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:Pl,ss:Sl,m:xl,mm:Sl,h:xl,hh:Sl,d:xl,dd:Sl,M:xl,MM:Sl,y:xl,yy:Sl},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Cl={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,t,n){var r=Cl.words[n];return 1===n.length?t?r[0]:r[1]:e+" "+Cl.correctGrammaticalCase(e,r)}}; -//! moment.js locale configuration -function Ol(e,t,n,r){switch(n){case"s":return t?"хэŠ“хэŠ½ сŠµŠŗуŠ½Š“":"хэŠ“хэŠ½ сŠµŠŗуŠ½Š“ыŠ½";case"ss":return e+(t?" сŠµŠŗуŠ½Š“":" сŠµŠŗуŠ½Š“ыŠ½");case"m":case"mm":return e+(t?" Š¼ŠøŠ½ŃƒŃ‚":" Š¼ŠøŠ½ŃƒŃ‚Ń‹Š½");case"h":case"hh":return e+(t?" цŠ°Š³":" цŠ°Š³ŠøŠ¹Š½");case"d":case"dd":return e+(t?" Ó©Š“Ó©Ń€":" Ó©Š“рŠøŠ¹Š½");case"M":case"MM":return e+(t?" сŠ°Ń€":" сŠ°Ń€Ń‹Š½");case"y":case"yy":return e+(t?" Š¶ŠøŠ»":" Š¶ŠøŠ»ŠøŠ¹Š½");default:return e}}r.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[proÅ”le] [nedjelje] [u] LT","[proÅ”log] [ponedjeljka] [u] LT","[proÅ”log] [utorka] [u] LT","[proÅ”le] [srijede] [u] LT","[proÅ”log] [četvrtka] [u] LT","[proÅ”log] [petka] [u] LT","[proÅ”le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:Cl.translate,m:Cl.translate,mm:Cl.translate,h:Cl.translate,hh:Cl.translate,d:"dan",dd:Cl.translate,M:"mjesec",MM:Cl.translate,y:"godinu",yy:Cl.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("mi",{months:"Kohi-tāte_Hui-tanguru_PoutÅ«-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"Rātapu_Mane_TÅ«rei_Wenerei_Tāite_Paraire_Hātarei".split("_"),weekdaysShort:"Ta_Ma_TÅ«_We_Tāi_Pa_Hā".split("_"),weekdaysMin:"Ta_Ma_TÅ«_We_Tāi_Pa_Hā".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hēkona ruarua",ss:"%d hēkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("mk",{months:"јŠ°Š½ŃƒŠ°Ń€Šø_фŠµŠ²Ń€ŃƒŠ°Ń€Šø_Š¼Š°Ń€Ń‚_Š°ŠæрŠøŠ»_Š¼Š°Ń˜_јуŠ½Šø_јуŠ»Šø_Š°Š²Š³ŃƒŃŃ‚_сŠµŠæтŠµŠ¼Š²Ń€Šø_Š¾ŠŗтŠ¾Š¼Š²Ń€Šø_Š½Š¾ŠµŠ¼Š²Ń€Šø_Š“ŠµŠŗŠµŠ¼Š²Ń€Šø".split("_"),monthsShort:"јŠ°Š½_фŠµŠ²_Š¼Š°Ń€_Š°Šæр_Š¼Š°Ń˜_јуŠ½_јуŠ»_Š°Š²Š³_сŠµŠæ_Š¾Šŗт_Š½Š¾Šµ_Š“ŠµŠŗ".split("_"),weekdays:"Š½ŠµŠ“ŠµŠ»Š°_ŠæŠ¾Š½ŠµŠ“ŠµŠ»Š½ŠøŠŗ_Š²Ń‚Š¾Ń€Š½ŠøŠŗ_срŠµŠ“Š°_чŠµŃ‚Š²Ń€Ń‚Š¾Šŗ_ŠæŠµŃ‚Š¾Šŗ_сŠ°Š±Š¾Ń‚Š°".split("_"),weekdaysShort:"Š½ŠµŠ“_ŠæŠ¾Š½_Š²Ń‚Š¾_срŠµ_чŠµŃ‚_ŠæŠµŃ‚_сŠ°Š±".split("_"),weekdaysMin:"Š½e_Šæo_Š²Ń‚_ср_чŠµ_ŠæŠµ_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Š”ŠµŠ½ŠµŃ Š²Š¾] LT",nextDay:"[Š£Ń‚Ń€Šµ Š²Š¾] LT",nextWeek:"[Š’Š¾] dddd [Š²Š¾] LT",lastDay:"[Š’чŠµŃ€Š° Š²Š¾] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Š˜Š·Š¼ŠøŠ½Š°Ń‚Š°Ń‚Š°] dddd [Š²Š¾] LT";case 1:case 2:case 4:case 5:return"[Š˜Š·Š¼ŠøŠ½Š°Ń‚ŠøŠ¾Ń‚] dddd [Š²Š¾] LT"}},sameElse:"L"},relativeTime:{future:"Š·Š° %s",past:"ŠæрŠµŠ“ %s",s:"Š½ŠµŠŗŠ¾Š»Šŗу сŠµŠŗуŠ½Š“Šø",ss:"%d сŠµŠŗуŠ½Š“Šø",m:"ŠµŠ“Š½Š° Š¼ŠøŠ½ŃƒŃ‚Š°",mm:"%d Š¼ŠøŠ½ŃƒŃ‚Šø",h:"ŠµŠ“ŠµŠ½ чŠ°Ń",hh:"%d чŠ°ŃŠ°",d:"ŠµŠ“ŠµŠ½ Š“ŠµŠ½",dd:"%d Š“ŠµŠ½Š°",M:"ŠµŠ“ŠµŠ½ Š¼ŠµŃŠµŃ†",MM:"%d Š¼ŠµŃŠµŃ†Šø",y:"ŠµŠ“Š½Š° Š³Š¾Š“ŠøŠ½Š°",yy:"%d Š³Š¾Š“ŠøŠ½Šø"},dayOfMonthOrdinalParse:/\d{1,2}-(ŠµŠ²|ŠµŠ½|тŠø|Š²Šø|рŠø|Š¼Šø)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ŠµŠ²":0===n?e+"-ŠµŠ½":n>10&&n<20?e+"-тŠø":1===t?e+"-Š²Šø":2===t?e+"-рŠø":7===t||8===t?e+"-Š¼Šø":e+"-тŠø"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("ml",{months:"ą“œą“Øąµą“µą“°ą“æ_ą“«ąµ†ą“¬ąµą“°ąµą“µą“°ą“æ_ą“®ą“¾ąµ¼ą“šąµą“šąµ_ą“ą“Ŗąµą“°ą“æąµ½_ą“®ąµ‡ą“Æąµ_ą“œąµ‚ąµŗ_ą“œąµ‚ą“²ąµˆ_ą““ą“—ą“øąµą“±ąµą“±ąµ_ą“øąµ†ą“Ŗąµą“±ąµą“±ą“‚ą“¬ąµ¼_ą“’ą“•ąµą“Ÿąµ‹ą“¬ąµ¼_ą“Øą“µą“‚ą“¬ąµ¼_ą“”ą“æą“øą“‚ą“¬ąµ¼".split("_"),monthsShort:"ą“œą“Øąµ._ą“«ąµ†ą“¬ąµą“°ąµ._ą“®ą“¾ąµ¼._ą“ą“Ŗąµą“°ą“æ._ą“®ąµ‡ą“Æąµ_ą“œąµ‚ąµŗ_ą“œąµ‚ą“²ąµˆ._ą““ą“—._ą“øąµ†ą“Ŗąµą“±ąµą“±._ą“’ą“•ąµą“Ÿąµ‹._ą“Øą“µą“‚._ą“”ą“æą“øą“‚.".split("_"),monthsParseExact:!0,weekdays:"ą“žą“¾ą“Æą“±ą“¾ą““ąµą“š_ą“¤ą“æą“™ąµą“•ą“³ą“¾ą““ąµą“š_ą“šąµŠą“µąµą“µą“¾ą““ąµą“š_ą“¬ąµą“§ą“Øą“¾ą““ąµą“š_ą“µąµą“Æą“¾ą““ą“¾ą““ąµą“š_ą“µąµ†ą“³ąµą“³ą“æą“Æą“¾ą““ąµą“š_ą“¶ą“Øą“æą“Æą“¾ą““ąµą“š".split("_"),weekdaysShort:"ą“žą“¾ą“Æąµ¼_ą“¤ą“æą“™ąµą“•ąµ¾_ą“šąµŠą“µąµą“µ_ą“¬ąµą“§ąµ»_ą“µąµą“Æą“¾ą““ą“‚_ą“µąµ†ą“³ąµą“³ą“æ_ą“¶ą“Øą“æ".split("_"),weekdaysMin:"ą“žą“¾_ą“¤ą“æ_ą“šąµŠ_ą“¬ąµ_ą“µąµą“Æą“¾_ą“µąµ†_ą“¶".split("_"),longDateFormat:{LT:"A h:mm -ą“Øąµ",LTS:"A h:mm:ss -ą“Øąµ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -ą“Øąµ",LLLL:"dddd, D MMMM YYYY, A h:mm -ą“Øąµ"},calendar:{sameDay:"[ą“‡ą“Øąµą“Øąµ] LT",nextDay:"[ą“Øą“¾ą“³ąµ†] LT",nextWeek:"dddd, LT",lastDay:"[ą“‡ą“Øąµą“Øą“²ąµ†] LT",lastWeek:"[ą“•ą““ą“æą“žąµą“ž] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą“•ą““ą“æą“žąµą“žąµ",past:"%s ą“®ąµąµ»ą“Ŗąµ",s:"ą“…ąµ½ą“Ŗ ą“Øą“æą“®ą“æą“·ą“™ąµą“™ąµ¾",ss:"%d ą“øąµ†ą“•ąµą“•ąµ»ą“”ąµ",m:"ą“’ą“°ąµ ą“®ą“æą“Øą“æą“±ąµą“±ąµ",mm:"%d ą“®ą“æą“Øą“æą“±ąµą“±ąµ",h:"ą“’ą“°ąµ ą“®ą“£ą“æą“•ąµą“•ąµ‚ąµ¼",hh:"%d ą“®ą“£ą“æą“•ąµą“•ąµ‚ąµ¼",d:"ą“’ą“°ąµ ą“¦ą“æą“µą“øą“‚",dd:"%d ą“¦ą“æą“µą“øą“‚",M:"ą“’ą“°ąµ ą“®ą“¾ą“øą“‚",MM:"%d ą“®ą“¾ą“øą“‚",y:"ą“’ą“°ąµ ą“µąµ¼ą“·ą“‚",yy:"%d ą“µąµ¼ą“·ą“‚"},meridiemParse:/ą“°ą“¾ą“¤ąµą“°ą“æ|ą“°ą“¾ą“µą“æą“²ąµ†|ą“‰ą“šąµą“š ą“•ą““ą“æą“žąµą“žąµ|ą“µąµˆą“•ąµą“Øąµą“Øąµ‡ą“°ą“‚|ą“°ą“¾ą“¤ąµą“°ą“æ/i,meridiemHour:function(e,t){return 12===e&&(e=0),"ą“°ą“¾ą“¤ąµą“°ą“æ"===t&&e>=4||"ą“‰ą“šąµą“š ą“•ą““ą“æą“žąµą“žąµ"===t||"ą“µąµˆą“•ąµą“Øąµą“Øąµ‡ą“°ą“‚"===t?e+12:e},meridiem:function(e,t,n){return e<4?"ą“°ą“¾ą“¤ąµą“°ą“æ":e<12?"ą“°ą“¾ą“µą“æą“²ąµ†":e<17?"ą“‰ą“šąµą“š ą“•ą““ą“æą“žąµą“žąµ":e<20?"ą“µąµˆą“•ąµą“Øąµą“Øąµ‡ą“°ą“‚":"ą“°ą“¾ą“¤ąµą“°ą“æ"}}),r.defineLocale("mn",{months:"ŠŃŠ³Š“ŅÆŠ³ŃŃŃ€ сŠ°Ń€_Š„Š¾Ń‘Ń€Š“уŠ³Š°Š°Ń€ сŠ°Ń€_Š“ŃƒŃ€Š°Š²Š“уŠ³Š°Š°Ń€ сŠ°Ń€_Š”Ó©Ń€Ó©Š²Š“ŅÆŠ³ŃŃŃ€ сŠ°Ń€_Š¢Š°Š²Š“уŠ³Š°Š°Ń€ сŠ°Ń€_Š—ŃƒŃ€Š³Š°Š“уŠ³Š°Š°Ń€ сŠ°Ń€_Š”Š¾Š»Š“уŠ³Š°Š°Ń€ сŠ°Ń€_ŠŠ°Š¹Š¼Š“уŠ³Š°Š°Ń€ сŠ°Ń€_Š•ŃŠ“ŅÆŠ³ŃŃŃ€ сŠ°Ń€_ŠŃ€Š°Š²Š“уŠ³Š°Š°Ń€ сŠ°Ń€_ŠŃ€Š²Š°Š½ Š½ŃŠ³Š“ŅÆŠ³ŃŃŃ€ сŠ°Ń€_ŠŃ€Š²Š°Š½ хŠ¾Ń‘Ń€Š“уŠ³Š°Š°Ń€ сŠ°Ń€".split("_"),monthsShort:"1 сŠ°Ń€_2 сŠ°Ń€_3 сŠ°Ń€_4 сŠ°Ń€_5 сŠ°Ń€_6 сŠ°Ń€_7 сŠ°Ń€_8 сŠ°Ń€_9 сŠ°Ń€_10 сŠ°Ń€_11 сŠ°Ń€_12 сŠ°Ń€".split("_"),monthsParseExact:!0,weekdays:"ŠŃŠ¼_Š”Š°Š²Š°Š°_ŠœŃŠ³Š¼Š°Ń€_Š›Ń…Š°Š³Š²Š°_ŠŸŅÆрэŠ²_Š‘Š°Š°ŃŠ°Š½_Š‘яŠ¼Š±Š°".split("_"),weekdaysShort:"ŠŃŠ¼_Š”Š°Š²_ŠœŃŠ³_Š›Ń…Š°_ŠŸŅÆр_Š‘Š°Š°_Š‘яŠ¼".split("_"),weekdaysMin:"ŠŃ_Š”Š°_ŠœŃ_Š›Ń…_ŠŸŅÆ_Š‘Š°_Š‘я".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY Š¾Š½Ń‹ MMMMыŠ½ D",LLL:"YYYY Š¾Š½Ń‹ MMMMыŠ½ D HH:mm",LLLL:"dddd, YYYY Š¾Š½Ń‹ MMMMыŠ½ D HH:mm"},meridiemParse:/Ņ®ÓØ|Ņ®Š„/i,isPM:function(e){return"Ņ®Š„"===e},meridiem:function(e,t,n){return e<12?"Ņ®ÓØ":"Ņ®Š„"},calendar:{sameDay:"[ÓØŠ½Ó©Ó©Š“Ó©Ń€] LT",nextDay:"[ŠœŠ°Ń€Š³Š°Š°Ńˆ] LT",nextWeek:"[Š˜Ń€ŃŃ…] dddd LT",lastDay:"[ÓØчŠøŠ³Š“Ó©Ń€] LT",lastWeek:"[ÓØŠ½Š³Ó©Ń€ŃÓ©Š½] dddd LT",sameElse:"L"},relativeTime:{future:"%s Š“Š°Ń€Š°Š°",past:"%s Ó©Š¼Š½Ó©",s:Ol,ss:Ol,m:Ol,mm:Ol,h:Ol,hh:Ol,d:Ol,dd:Ol,M:Ol,MM:Ol,y:Ol,yy:Ol},dayOfMonthOrdinalParse:/\d{1,2} Ó©Š“Ó©Ń€/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+" Ó©Š“Ó©Ń€";default:return e}}}); -//! moment.js locale configuration -var El={1:"ą„§",2:"ą„Ø",3:"ą„©",4:"ą„Ŗ",5:"ą„«",6:"ą„¬",7:"ą„­",8:"ą„®",9:"ą„Æ",0:"ą„¦"},jl={"ą„§":"1","ą„Ø":"2","ą„©":"3","ą„Ŗ":"4","ą„«":"5","ą„¬":"6","ą„­":"7","ą„®":"8","ą„Æ":"9","ą„¦":"0"};function Hl(e,t,n,r){var a="";if(t)switch(n){case"s":a="ą¤•ą¤¾ą¤¹ą„€ ą¤øą„‡ą¤•ą¤‚ą¤¦";break;case"ss":a="%d ą¤øą„‡ą¤•ą¤‚ą¤¦";break;case"m":a="ą¤ą¤• ą¤®ą¤æą¤Øą¤æą¤Ÿ";break;case"mm":a="%d ą¤®ą¤æą¤Øą¤æą¤Ÿą„‡";break;case"h":a="ą¤ą¤• ą¤¤ą¤¾ą¤ø";break;case"hh":a="%d ą¤¤ą¤¾ą¤ø";break;case"d":a="ą¤ą¤• ą¤¦ą¤æą¤µą¤ø";break;case"dd":a="%d ą¤¦ą¤æą¤µą¤ø";break;case"M":a="ą¤ą¤• ą¤®ą¤¹ą¤æą¤Øą¤¾";break;case"MM":a="%d ą¤®ą¤¹ą¤æą¤Øą„‡";break;case"y":a="ą¤ą¤• ą¤µą¤°ą„ą¤·";break;case"yy":a="%d ą¤µą¤°ą„ą¤·ą„‡"}else switch(n){case"s":a="ą¤•ą¤¾ą¤¹ą„€ ą¤øą„‡ą¤•ą¤‚ą¤¦ą¤¾ą¤‚";break;case"ss":a="%d ą¤øą„‡ą¤•ą¤‚ą¤¦ą¤¾ą¤‚";break;case"m":a="ą¤ą¤•ą¤¾ ą¤®ą¤æą¤Øą¤æą¤Ÿą¤¾";break;case"mm":a="%d ą¤®ą¤æą¤Øą¤æą¤Ÿą¤¾ą¤‚";break;case"h":a="ą¤ą¤•ą¤¾ ą¤¤ą¤¾ą¤øą¤¾";break;case"hh":a="%d ą¤¤ą¤¾ą¤øą¤¾ą¤‚";break;case"d":a="ą¤ą¤•ą¤¾ ą¤¦ą¤æą¤µą¤øą¤¾";break;case"dd":a="%d ą¤¦ą¤æą¤µą¤øą¤¾ą¤‚";break;case"M":a="ą¤ą¤•ą¤¾ ą¤®ą¤¹ą¤æą¤Øą„ą¤Æą¤¾";break;case"MM":a="%d ą¤®ą¤¹ą¤æą¤Øą„ą¤Æą¤¾ą¤‚";break;case"y":a="ą¤ą¤•ą¤¾ ą¤µą¤°ą„ą¤·ą¤¾";break;case"yy":a="%d ą¤µą¤°ą„ą¤·ą¤¾ą¤‚"}return a.replace(/%d/i,e)}r.defineLocale("mr",{months:"ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€_ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€_ą¤®ą¤¾ą¤°ą„ą¤š_ą¤ą¤Ŗą„ą¤°ą¤æą¤²_ą¤®ą„‡_ą¤œą„‚ą¤Ø_ą¤œą„ą¤²ą„ˆ_ą¤‘ą¤—ą¤øą„ą¤Ÿ_ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°_ą¤‘ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°_ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°_ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°".split("_"),monthsShort:"ą¤œą¤¾ą¤Øą„‡._ą¤«ą„‡ą¤¬ą„ą¤°ą„._ą¤®ą¤¾ą¤°ą„ą¤š._ą¤ą¤Ŗą„ą¤°ą¤æ._ą¤®ą„‡._ą¤œą„‚ą¤Ø._ą¤œą„ą¤²ą„ˆ._ą¤‘ą¤—._ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚._ą¤‘ą¤•ą„ą¤Ÿą„‹._ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚._ą¤”ą¤æą¤øą„‡ą¤‚.".split("_"),monthsParseExact:!0,weekdays:"ą¤°ą¤µą¤æą¤µą¤¾ą¤°_ą¤øą„‹ą¤®ą¤µą¤¾ą¤°_ą¤®ą¤‚ą¤—ą¤³ą¤µą¤¾ą¤°_ą¤¬ą„ą¤§ą¤µą¤¾ą¤°_ą¤—ą„ą¤°ą„‚ą¤µą¤¾ą¤°_ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°_ą¤¶ą¤Øą¤æą¤µą¤¾ą¤°".split("_"),weekdaysShort:"ą¤°ą¤µą¤æ_ą¤øą„‹ą¤®_ą¤®ą¤‚ą¤—ą¤³_ą¤¬ą„ą¤§_ą¤—ą„ą¤°ą„‚_ą¤¶ą„ą¤•ą„ą¤°_ą¤¶ą¤Øą¤æ".split("_"),weekdaysMin:"ą¤°_ą¤øą„‹_ą¤®ą¤‚_ą¤¬ą„_ą¤—ą„_ą¤¶ą„_ą¤¶".split("_"),longDateFormat:{LT:"A h:mm ą¤µą¤¾ą¤œą¤¤ą¤¾",LTS:"A h:mm:ss ą¤µą¤¾ą¤œą¤¤ą¤¾",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ą¤µą¤¾ą¤œą¤¤ą¤¾",LLLL:"dddd, D MMMM YYYY, A h:mm ą¤µą¤¾ą¤œą¤¤ą¤¾"},calendar:{sameDay:"[ą¤†ą¤œ] LT",nextDay:"[ą¤‰ą¤¦ą„ą¤Æą¤¾] LT",nextWeek:"dddd, LT",lastDay:"[ą¤•ą¤¾ą¤²] LT",lastWeek:"[ą¤®ą¤¾ą¤—ą„€ą¤²] dddd, LT",sameElse:"L"},relativeTime:{future:"%są¤®ą¤§ą„ą¤Æą„‡",past:"%są¤Ŗą„‚ą¤°ą„ą¤µą„€",s:Hl,ss:Hl,m:Hl,mm:Hl,h:Hl,hh:Hl,d:Hl,dd:Hl,M:Hl,MM:Hl,y:Hl,yy:Hl},preparse:function(e){return e.replace(/[ą„§ą„Øą„©ą„Ŗą„«ą„¬ą„­ą„®ą„Æą„¦]/g,(function(e){return jl[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return El[e]}))},meridiemParse:/ą¤Ŗą¤¹ą¤¾ą¤Ÿą„‡|ą¤øą¤•ą¤¾ą¤³ą„€|ą¤¦ą„ą¤Ŗą¤¾ą¤°ą„€|ą¤øą¤¾ą¤Æą¤‚ą¤•ą¤¾ą¤³ą„€|ą¤°ą¤¾ą¤¤ą„ą¤°ą„€/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¤Ŗą¤¹ą¤¾ą¤Ÿą„‡"===t||"ą¤øą¤•ą¤¾ą¤³ą„€"===t?e:"ą¤¦ą„ą¤Ŗą¤¾ą¤°ą„€"===t||"ą¤øą¤¾ą¤Æą¤‚ą¤•ą¤¾ą¤³ą„€"===t||"ą¤°ą¤¾ą¤¤ą„ą¤°ą„€"===t?e>=12?e:e+12:void 0},meridiem:function(e,t,n){return e>=0&&e<6?"ą¤Ŗą¤¹ą¤¾ą¤Ÿą„‡":e<12?"ą¤øą¤•ą¤¾ą¤³ą„€":e<17?"ą¤¦ą„ą¤Ŗą¤¾ą¤°ą„€":e<20?"ą¤øą¤¾ą¤Æą¤‚ą¤•ą¤¾ą¤³ą„€":"ą¤°ą¤¾ą¤¤ą„ą¤°ą„€"},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ä unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ä un_Lul_Aww_Set_Ott_Nov_Diċ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ä imgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ä im_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ä i_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"fā€™ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"Ä”urnata",dd:"%d Ä”ranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Nl={1:"į",2:"į‚",3:"įƒ",4:"į„",5:"į…",6:"į†",7:"į‡",8:"įˆ",9:"į‰",0:"į€"},Al={"į":"1","į‚":"2","įƒ":"3","į„":"4","į…":"5","į†":"6","į‡":"7","įˆ":"8","į‰":"9","į€":"0"};r.defineLocale("my",{months:"į€‡į€”į€ŗį€”į€į€«į€›į€®_į€–į€±į€–į€±į€¬į€ŗį€į€«į€›į€®_į€™į€į€ŗ_į€§į€•į€¼į€®_į€™į€±_į€‡į€½į€”į€ŗ_į€‡į€°į€œį€­į€Æį€„į€ŗ_į€žį€¼į€‚į€Æį€į€ŗ_į€…į€€į€ŗį€į€„į€ŗį€˜į€¬_į€”į€±į€¬į€€į€ŗį€į€­į€Æį€˜į€¬_į€”į€­į€Æį€į€„į€ŗį€˜į€¬_į€’į€®į€‡į€„į€ŗį€˜į€¬".split("_"),monthsShort:"į€‡į€”į€ŗ_į€–į€±_į€™į€į€ŗ_į€•į€¼į€®_į€™į€±_į€‡į€½į€”į€ŗ_į€œį€­į€Æį€„į€ŗ_į€žį€¼_į€…į€€į€ŗ_į€”į€±į€¬į€€į€ŗ_į€”į€­į€Æ_į€’į€®".split("_"),weekdays:"į€į€”į€„į€ŗį€¹į€‚į€”į€½į€±_į€į€”į€„į€ŗį€¹į€œį€¬_į€”į€„į€ŗį€¹į€‚į€«_į€—į€Æį€’į€¹į€“į€Ÿį€°į€ø_į€€į€¼į€¬į€žį€•į€į€±į€ø_į€žį€±į€¬į€€į€¼į€¬_į€…į€”į€±".split("_"),weekdaysShort:"į€”į€½į€±_į€œį€¬_į€‚į€«_į€Ÿį€°į€ø_į€€į€¼į€¬_į€žį€±į€¬_į€”į€±".split("_"),weekdaysMin:"į€”į€½į€±_į€œį€¬_į€‚į€«_į€Ÿį€°į€ø_į€€į€¼į€¬_į€žį€±į€¬_į€”į€±".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[į€šį€”į€±.] LT [į€™į€¾į€¬]",nextDay:"[į€™į€”į€€į€ŗį€–į€¼į€”į€ŗ] LT [į€™į€¾į€¬]",nextWeek:"dddd LT [į€™į€¾į€¬]",lastDay:"[į€™į€”į€±.į€€] LT [į€™į€¾į€¬]",lastWeek:"[į€•į€¼į€®į€øį€į€²į€·į€žį€±į€¬] dddd LT [į€™į€¾į€¬]",sameElse:"L"},relativeTime:{future:"į€œį€¬į€™į€Šį€ŗį€· %s į€™į€¾į€¬",past:"į€œį€½į€”į€ŗį€į€²į€·į€žį€±į€¬ %s į€€",s:"į€…į€€į€¹į€€į€”į€ŗ.į€”į€”į€Šį€ŗį€øį€„į€šį€ŗ",ss:"%d į€…į€€į€¹į€€į€”į€·į€ŗ",m:"į€į€…į€ŗį€™į€­į€”į€…į€ŗ",mm:"%d į€™į€­į€”į€…į€ŗ",h:"į€į€…į€ŗį€”į€¬į€›į€®",hh:"%d į€”į€¬į€›į€®",d:"į€į€…į€ŗį€›į€€į€ŗ",dd:"%d į€›į€€į€ŗ",M:"į€į€…į€ŗį€œ",MM:"%d į€œ",y:"į€į€…į€ŗį€”į€¾į€…į€ŗ",yy:"%d į€”į€¾į€…į€ŗ"},preparse:function(e){return e.replace(/[įį‚įƒį„į…į†į‡įˆį‰į€]/g,(function(e){return Al[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Nl[e]}))},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"sĆøndag_mandag_tirsdag_onsdag_torsdag_fredag_lĆørdag".split("_"),weekdaysShort:"sĆø._ma._ti._on._to._fr._lĆø.".split("_"),weekdaysMin:"sĆø_ma_ti_on_to_fr_lĆø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i gĆ„r kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",w:"en uke",ww:"%d uker",M:"en mĆ„ned",MM:"%d mĆ„neder",y:"ett Ć„r",yy:"%d Ć„r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Rl={1:"ą„§",2:"ą„Ø",3:"ą„©",4:"ą„Ŗ",5:"ą„«",6:"ą„¬",7:"ą„­",8:"ą„®",9:"ą„Æ",0:"ą„¦"},Fl={"ą„§":"1","ą„Ø":"2","ą„©":"3","ą„Ŗ":"4","ą„«":"5","ą„¬":"6","ą„­":"7","ą„®":"8","ą„Æ":"9","ą„¦":"0"};r.defineLocale("ne",{months:"ą¤œą¤Øą¤µą¤°ą„€_ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤°ą„€_ą¤®ą¤¾ą¤°ą„ą¤š_ą¤…ą¤Ŗą„ą¤°ą¤æą¤²_ą¤®ą¤ˆ_ą¤œą„ą¤Ø_ą¤œą„ą¤²ą¤¾ą¤ˆ_ą¤…ą¤—ą¤·ą„ą¤Ÿ_ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤®ą„ą¤¬ą¤°_ą¤…ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°_ą¤Øą„‹ą¤­ą„‡ą¤®ą„ą¤¬ą¤°_ą¤”ą¤æą¤øą„‡ą¤®ą„ą¤¬ą¤°".split("_"),monthsShort:"ą¤œą¤Ø._ą¤«ą„‡ą¤¬ą„ą¤°ą„._ą¤®ą¤¾ą¤°ą„ą¤š_ą¤…ą¤Ŗą„ą¤°ą¤æ._ą¤®ą¤ˆ_ą¤œą„ą¤Ø_ą¤œą„ą¤²ą¤¾ą¤ˆ._ą¤…ą¤—._ą¤øą„‡ą¤Ŗą„ą¤Ÿ._ą¤…ą¤•ą„ą¤Ÿą„‹._ą¤Øą„‹ą¤­ą„‡._ą¤”ą¤æą¤øą„‡.".split("_"),monthsParseExact:!0,weekdays:"ą¤†ą¤‡ą¤¤ą¤¬ą¤¾ą¤°_ą¤øą„‹ą¤®ą¤¬ą¤¾ą¤°_ą¤®ą¤™ą„ą¤—ą¤²ą¤¬ą¤¾ą¤°_ą¤¬ą„ą¤§ą¤¬ą¤¾ą¤°_ą¤¬ą¤æą¤¹ą¤æą¤¬ą¤¾ą¤°_ą¤¶ą„ą¤•ą„ą¤°ą¤¬ą¤¾ą¤°_ą¤¶ą¤Øą¤æą¤¬ą¤¾ą¤°".split("_"),weekdaysShort:"ą¤†ą¤‡ą¤¤._ą¤øą„‹ą¤®._ą¤®ą¤™ą„ą¤—ą¤²._ą¤¬ą„ą¤§._ą¤¬ą¤æą¤¹ą¤æ._ą¤¶ą„ą¤•ą„ą¤°._ą¤¶ą¤Øą¤æ.".split("_"),weekdaysMin:"ą¤†._ą¤øą„‹._ą¤®ą¤‚._ą¤¬ą„._ą¤¬ą¤æ._ą¤¶ą„._ą¤¶.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡",LTS:"Aą¤•ą„‹ h:mm:ss ą¤¬ą¤œą„‡",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡",LLLL:"dddd, D MMMM YYYY, Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡"},preparse:function(e){return e.replace(/[ą„§ą„Øą„©ą„Ŗą„«ą„¬ą„­ą„®ą„Æą„¦]/g,(function(e){return Fl[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Rl[e]}))},meridiemParse:/ą¤°ą¤¾ą¤¤ą¤æ|ą¤¬ą¤æą¤¹ą¤¾ą¤Ø|ą¤¦ą¤æą¤‰ą¤ą¤øą„‹|ą¤øą¤¾ą¤ą¤/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą¤°ą¤¾ą¤¤ą¤æ"===t?e<4?e:e+12:"ą¤¬ą¤æą¤¹ą¤¾ą¤Ø"===t?e:"ą¤¦ą¤æą¤‰ą¤ą¤øą„‹"===t?e>=10?e:e+12:"ą¤øą¤¾ą¤ą¤"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?"ą¤°ą¤¾ą¤¤ą¤æ":e<12?"ą¤¬ą¤æą¤¹ą¤¾ą¤Ø":e<16?"ą¤¦ą¤æą¤‰ą¤ą¤øą„‹":e<20?"ą¤øą¤¾ą¤ą¤":"ą¤°ą¤¾ą¤¤ą¤æ"},calendar:{sameDay:"[ą¤†ą¤œ] LT",nextDay:"[ą¤­ą„‹ą¤²ą¤æ] LT",nextWeek:"[ą¤†ą¤‰ą¤ą¤¦ą„‹] dddd[,] LT",lastDay:"[ą¤¹ą¤æą¤œą„‹] LT",lastWeek:"[ą¤—ą¤ą¤•ą„‹] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%są¤®ą¤¾",past:"%s ą¤…ą¤—ą¤¾ą¤”ą¤æ",s:"ą¤•ą„‡ą¤¹ą„€ ą¤•ą„ą¤·ą¤£",ss:"%d ą¤øą„‡ą¤•ą„‡ą¤£ą„ą¤”",m:"ą¤ą¤• ą¤®ą¤æą¤Øą„‡ą¤Ÿ",mm:"%d ą¤®ą¤æą¤Øą„‡ą¤Ÿ",h:"ą¤ą¤• ą¤˜ą¤£ą„ą¤Ÿą¤¾",hh:"%d ą¤˜ą¤£ą„ą¤Ÿą¤¾",d:"ą¤ą¤• ą¤¦ą¤æą¤Ø",dd:"%d ą¤¦ą¤æą¤Ø",M:"ą¤ą¤• ą¤®ą¤¹ą¤æą¤Øą¤¾",MM:"%d ą¤®ą¤¹ą¤æą¤Øą¤¾",y:"ą¤ą¤• ą¤¬ą¤°ą„ą¤·",yy:"%d ą¤¬ą¤°ą„ą¤·"},week:{dow:0,doy:6}}); -//! moment.js locale configuration -var Wl="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),Il="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),zl=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],Ul=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;r.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?Il[e.month()]:Wl[e.month()]:Wl},monthsRegex:Ul,monthsShortRegex:Ul,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:zl,longMonthsParse:zl,shortMonthsParse:zl,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"Ć©Ć©n minuut",mm:"%d minuten",h:"Ć©Ć©n uur",hh:"%d uur",d:"Ć©Ć©n dag",dd:"%d dagen",M:"Ć©Ć©n maand",MM:"%d maanden",y:"Ć©Ć©n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var $l="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),Bl="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),ql=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],Vl=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;r.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?Bl[e.month()]:$l[e.month()]:$l},monthsRegex:Vl,monthsShortRegex:Vl,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:ql,longMonthsParse:ql,shortMonthsParse:ql,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"Ć©Ć©n minuut",mm:"%d minuten",h:"Ć©Ć©n uur",hh:"%d uur",d:"Ć©Ć©n dag",dd:"%d dagen",w:"Ć©Ć©n week",ww:"%d weken",M:"Ć©Ć©n maand",MM:"%d maanden",y:"Ć©Ć©n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"sundag_mĆ„ndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"su._mĆ„._ty._on._to._fr._lau.".split("_"),weekdaysMin:"su_mĆ„_ty_on_to_fr_la".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I gĆ„r klokka] LT",lastWeek:"[FĆøregĆ„ande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",w:"ei veke",ww:"%d veker",M:"ein mĆ„nad",MM:"%d mĆ„nader",y:"eit Ć„r",yy:"%d Ć„r"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("oc-lnc",{months:{standalone:"geniĆØr_febriĆØr_marƧ_abril_mai_junh_julhet_agost_setembre_octĆ²bre_novembre_decembre".split("_"),format:"de geniĆØr_de febriĆØr_de marƧ_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octĆ²bre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._marƧ_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"dimenge_diluns_dimars_dimĆØcres_dijĆ²us_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[uĆØi a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[iĆØr a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aquĆ­ %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|ĆØ|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"ĆØ";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var Jl={1:"ą©§",2:"ą©Ø",3:"ą©©",4:"ą©Ŗ",5:"ą©«",6:"ą©¬",7:"ą©­",8:"ą©®",9:"ą©Æ",0:"ą©¦"},Gl={"ą©§":"1","ą©Ø":"2","ą©©":"3","ą©Ŗ":"4","ą©«":"5","ą©¬":"6","ą©­":"7","ą©®":"8","ą©Æ":"9","ą©¦":"0"};r.defineLocale("pa-in",{months:"ąØœąØØąØµąØ°ą©€_ąØ«ąØ¼ąØ°ąØµąØ°ą©€_ąØ®ąØ¾ąØ°ąØš_ąØ…ąØŖą©ąØ°ą©ˆąØ²_ąØ®ąØˆ_ąØœą©‚ąØØ_ąØœą©ąØ²ąØ¾ąØˆ_ąØ…ąØ—ąØøąØ¤_ąØøąØ¤ą©°ąØ¬ąØ°_ąØ…ąØ•ąØ¤ą©‚ąØ¬ąØ°_ąØØąØµą©°ąØ¬ąØ°_ąØ¦ąØøą©°ąØ¬ąØ°".split("_"),monthsShort:"ąØœąØØąØµąØ°ą©€_ąØ«ąØ¼ąØ°ąØµąØ°ą©€_ąØ®ąØ¾ąØ°ąØš_ąØ…ąØŖą©ąØ°ą©ˆąØ²_ąØ®ąØˆ_ąØœą©‚ąØØ_ąØœą©ąØ²ąØ¾ąØˆ_ąØ…ąØ—ąØøąØ¤_ąØøąØ¤ą©°ąØ¬ąØ°_ąØ…ąØ•ąØ¤ą©‚ąØ¬ąØ°_ąØØąØµą©°ąØ¬ąØ°_ąØ¦ąØøą©°ąØ¬ąØ°".split("_"),weekdays:"ąØąØ¤ąØµąØ¾ąØ°_ąØøą©‹ąØ®ąØµąØ¾ąØ°_ąØ®ą©°ąØ—ąØ²ąØµąØ¾ąØ°_ąØ¬ą©ąØ§ąØµąØ¾ąØ°_ąØµą©€ąØ°ąØµąØ¾ąØ°_ąØøąØ¼ą©ą©±ąØ•ąØ°ąØµąØ¾ąØ°_ąØøąØ¼ąØØą©€ąØšąØ°ąØµąØ¾ąØ°".split("_"),weekdaysShort:"ąØąØ¤_ąØøą©‹ąØ®_ąØ®ą©°ąØ—ąØ²_ąØ¬ą©ąØ§_ąØµą©€ąØ°_ąØøąØ¼ą©ąØ•ąØ°_ąØøąØ¼ąØØą©€".split("_"),weekdaysMin:"ąØąØ¤_ąØøą©‹ąØ®_ąØ®ą©°ąØ—ąØ²_ąØ¬ą©ąØ§_ąØµą©€ąØ°_ąØøąØ¼ą©ąØ•ąØ°_ąØøąØ¼ąØØą©€".split("_"),longDateFormat:{LT:"A h:mm ąØµąØœą©‡",LTS:"A h:mm:ss ąØµąØœą©‡",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ąØµąØœą©‡",LLLL:"dddd, D MMMM YYYY, A h:mm ąØµąØœą©‡"},calendar:{sameDay:"[ąØ…ąØœ] LT",nextDay:"[ąØ•ąØ²] LT",nextWeek:"[ąØ…ąØ—ąØ²ąØ¾] dddd, LT",lastDay:"[ąØ•ąØ²] LT",lastWeek:"[ąØŖąØæąØ›ąØ²ą©‡] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ąØµąØæą©±ąØš",past:"%s ąØŖąØæąØ›ąØ²ą©‡",s:"ąØ•ą©ąØ ąØøąØ•ąØæą©°ąØŸ",ss:"%d ąØøąØ•ąØæą©°ąØŸ",m:"ąØ‡ąØ• ąØ®ąØæą©°ąØŸ",mm:"%d ąØ®ąØæą©°ąØŸ",h:"ąØ‡ą©±ąØ• ąØ˜ą©°ąØŸąØ¾",hh:"%d ąØ˜ą©°ąØŸą©‡",d:"ąØ‡ą©±ąØ• ąØ¦ąØæąØØ",dd:"%d ąØ¦ąØæąØØ",M:"ąØ‡ą©±ąØ• ąØ®ąØ¹ą©€ąØØąØ¾",MM:"%d ąØ®ąØ¹ą©€ąØØą©‡",y:"ąØ‡ą©±ąØ• ąØøąØ¾ąØ²",yy:"%d ąØøąØ¾ąØ²"},preparse:function(e){return e.replace(/[ą©§ą©Øą©©ą©Ŗą©«ą©¬ą©­ą©®ą©Æą©¦]/g,(function(e){return Gl[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return Jl[e]}))},meridiemParse:/ąØ°ąØ¾ąØ¤|ąØøąØµą©‡ąØ°|ąØ¦ą©ąØŖąØ¹ąØæąØ°|ąØøąØ¼ąØ¾ąØ®/,meridiemHour:function(e,t){return 12===e&&(e=0),"ąØ°ąØ¾ąØ¤"===t?e<4?e:e+12:"ąØøąØµą©‡ąØ°"===t?e:"ąØ¦ą©ąØŖąØ¹ąØæąØ°"===t?e>=10?e:e+12:"ąØøąØ¼ąØ¾ąØ®"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ąØ°ąØ¾ąØ¤":e<10?"ąØøąØµą©‡ąØ°":e<17?"ąØ¦ą©ąØŖąØ¹ąØæąØ°":e<20?"ąØøąØ¼ąØ¾ąØ®":"ąØ°ąØ¾ąØ¤"},week:{dow:0,doy:6}}); -//! moment.js locale configuration -var Ql="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_paÅŗdziernik_listopad_grudzień".split("_"),Kl="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_paÅŗdziernika_listopada_grudnia".split("_"),Xl=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^paÅŗ/i,/^lis/i,/^gru/i];function Zl(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function eu(e,t,n){var r=e+" ";switch(n){case"ss":return r+(Zl(e)?"sekundy":"sekund");case"m":return t?"minuta":"minutę";case"mm":return r+(Zl(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return r+(Zl(e)?"godziny":"godzin");case"ww":return r+(Zl(e)?"tygodnie":"tygodni");case"MM":return r+(Zl(e)?"miesiące":"miesięcy");case"yy":return r+(Zl(e)?"lata":"lat")}} -//! moment.js locale configuration -function tu(e,t,n){var r=" ";return(e%100>=20||e>=100&&e%100==0)&&(r=" de "),e+r+{ss:"secunde",mm:"minute",hh:"ore",dd:"zile",ww:"săptămĆ¢ni",MM:"luni",yy:"ani"}[n]} -//! moment.js locale configuration -function nu(e,t){var n=e.split("_");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function ru(e,t,n){return"m"===n?t?"Š¼ŠøŠ½ŃƒŃ‚Š°":"Š¼ŠøŠ½ŃƒŃ‚Ńƒ":e+" "+nu({ss:t?"сŠµŠŗуŠ½Š“Š°_сŠµŠŗуŠ½Š“ы_сŠµŠŗуŠ½Š“":"сŠµŠŗуŠ½Š“у_сŠµŠŗуŠ½Š“ы_сŠµŠŗуŠ½Š“",mm:t?"Š¼ŠøŠ½ŃƒŃ‚Š°_Š¼ŠøŠ½ŃƒŃ‚Ń‹_Š¼ŠøŠ½ŃƒŃ‚":"Š¼ŠøŠ½ŃƒŃ‚Ńƒ_Š¼ŠøŠ½ŃƒŃ‚Ń‹_Š¼ŠøŠ½ŃƒŃ‚",hh:"чŠ°Ń_чŠ°ŃŠ°_чŠ°ŃŠ¾Š²",dd:"Š“ŠµŠ½ŃŒ_Š“Š½Ń_Š“Š½ŠµŠ¹",ww:"Š½ŠµŠ“ŠµŠ»Ń_Š½ŠµŠ“ŠµŠ»Šø_Š½ŠµŠ“ŠµŠ»ŃŒ",MM:"Š¼ŠµŃŃŃ†_Š¼ŠµŃŃŃ†Š°_Š¼ŠµŃŃŃ†ŠµŠ²",yy:"Š³Š¾Š“_Š³Š¾Š“Š°_Š»ŠµŃ‚"}[n],+e)}r.defineLocale("pl",{months:function(e,t){return e?/D MMMM/.test(t)?Kl[e.month()]:Ql[e.month()]:Ql},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paÅŗ_lis_gru".split("_"),monthsParse:Xl,longMonthsParse:Xl,shortMonthsParse:Xl,weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:eu,m:eu,mm:eu,h:eu,hh:eu,d:"1 dzień",dd:"%d dni",w:"tydzień",ww:eu,M:"miesiąc",MM:eu,y:"rok",yy:eu},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("pt-br",{months:"janeiro_fevereiro_marƧo_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terƧa-feira_quarta-feira_quinta-feira_sexta-feira_sĆ”bado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sĆ”b".split("_"),weekdaysMin:"do_2ĀŖ_3ĀŖ_4ĀŖ_5ĀŖ_6ĀŖ_sĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [Ć s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [Ć s] HH:mm"},calendar:{sameDay:"[Hoje Ć s] LT",nextDay:"[AmanhĆ£ Ć s] LT",nextWeek:"dddd [Ć s] LT",lastDay:"[Ontem Ć s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[ƚltimo] dddd [Ć s] LT":"[ƚltima] dddd [Ć s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"hĆ” %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mĆŖs",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",invalidDate:"Data invĆ”lida"}), -//! moment.js locale configuration -r.defineLocale("pt",{months:"janeiro_fevereiro_marƧo_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_TerƧa-feira_Quarta-feira_Quinta-feira_Sexta-feira_SĆ”bado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_SĆ”b".split("_"),weekdaysMin:"Do_2ĀŖ_3ĀŖ_4ĀŖ_5ĀŖ_6ĀŖ_SĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje Ć s] LT",nextDay:"[AmanhĆ£ Ć s] LT",nextWeek:"dddd [Ć s] LT",lastDay:"[Ontem Ć s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[ƚltimo] dddd [Ć s] LT":"[ƚltima] dddd [Ć s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"hĆ” %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",w:"uma semana",ww:"%d semanas",M:"um mĆŖs",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}Āŗ/,ordinal:"%dĀŗ",week:{dow:1,doy:4}}),r.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sĆ¢mbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_SĆ¢m".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_SĆ¢".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mĆ¢ine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s Ć®n urmă",s:"cĆ¢teva secunde",ss:tu,m:"un minut",mm:tu,h:"o oră",hh:tu,d:"o zi",dd:tu,w:"o săptămĆ¢nă",ww:tu,M:"o lună",MM:tu,y:"un an",yy:tu},week:{dow:1,doy:7}});var au=[/^яŠ½Š²/i,/^фŠµŠ²/i,/^Š¼Š°Ń€/i,/^Š°Šæр/i,/^Š¼Š°[Š¹Ń]/i,/^ŠøюŠ½/i,/^ŠøюŠ»/i,/^Š°Š²Š³/i,/^сŠµŠ½/i,/^Š¾Šŗт/i,/^Š½Š¾Ń/i,/^Š“ŠµŠŗ/i];r.defineLocale("ru",{months:{format:"яŠ½Š²Š°Ń€Ń_фŠµŠ²Ń€Š°Š»Ń_Š¼Š°Ń€Ń‚Š°_Š°ŠæрŠµŠ»Ń_Š¼Š°Ń_ŠøюŠ½Ń_ŠøюŠ»Ń_Š°Š²Š³ŃƒŃŃ‚Š°_сŠµŠ½Ń‚яŠ±Ń€Ń_Š¾ŠŗтяŠ±Ń€Ń_Š½Š¾ŃŠ±Ń€Ń_Š“ŠµŠŗŠ°Š±Ń€Ń".split("_"),standalone:"яŠ½Š²Š°Ń€ŃŒ_фŠµŠ²Ń€Š°Š»ŃŒ_Š¼Š°Ń€Ń‚_Š°ŠæрŠµŠ»ŃŒ_Š¼Š°Š¹_ŠøюŠ½ŃŒ_ŠøюŠ»ŃŒ_Š°Š²Š³ŃƒŃŃ‚_сŠµŠ½Ń‚яŠ±Ń€ŃŒ_Š¾ŠŗтяŠ±Ń€ŃŒ_Š½Š¾ŃŠ±Ń€ŃŒ_Š“ŠµŠŗŠ°Š±Ń€ŃŒ".split("_")},monthsShort:{format:"яŠ½Š²._фŠµŠ²Ń€._Š¼Š°Ń€._Š°Šæр._Š¼Š°Ń_ŠøюŠ½Ń_ŠøюŠ»Ń_Š°Š²Š³._сŠµŠ½Ń‚._Š¾Šŗт._Š½Š¾ŃŠ±._Š“ŠµŠŗ.".split("_"),standalone:"яŠ½Š²._фŠµŠ²Ń€._Š¼Š°Ń€Ń‚_Š°Šæр._Š¼Š°Š¹_ŠøюŠ½ŃŒ_ŠøюŠ»ŃŒ_Š°Š²Š³._сŠµŠ½Ń‚._Š¾Šŗт._Š½Š¾ŃŠ±._Š“ŠµŠŗ.".split("_")},weekdays:{standalone:"Š²Š¾ŃŠŗрŠµŃŠµŠ½ŃŒŠµ_ŠæŠ¾Š½ŠµŠ“ŠµŠ»ŃŒŠ½ŠøŠŗ_Š²Ń‚Š¾Ń€Š½ŠøŠŗ_срŠµŠ“Š°_чŠµŃ‚Š²ŠµŃ€Š³_ŠæятŠ½ŠøцŠ°_суŠ±Š±Š¾Ń‚Š°".split("_"),format:"Š²Š¾ŃŠŗрŠµŃŠµŠ½ŃŒŠµ_ŠæŠ¾Š½ŠµŠ“ŠµŠ»ŃŒŠ½ŠøŠŗ_Š²Ń‚Š¾Ń€Š½ŠøŠŗ_срŠµŠ“у_чŠµŃ‚Š²ŠµŃ€Š³_ŠæятŠ½Šøцу_суŠ±Š±Š¾Ń‚Ńƒ".split("_"),isFormat:/\[ ?[Š’Š²] ?(?:ŠæрŠ¾ŃˆŠ»ŃƒŃŽ|сŠ»ŠµŠ“ующую|эту)? ?] ?dddd/},weekdaysShort:"Š²Ń_ŠæŠ½_Š²Ń‚_ср_чт_Šæт_сŠ±".split("_"),weekdaysMin:"Š²Ń_ŠæŠ½_Š²Ń‚_ср_чт_Šæт_сŠ±".split("_"),monthsParse:au,longMonthsParse:au,shortMonthsParse:au,monthsRegex:/^(яŠ½Š²Š°Ń€[ья]|яŠ½Š²\.?|фŠµŠ²Ń€Š°Š»[ья]|фŠµŠ²Ń€?\.?|Š¼Š°Ń€Ń‚Š°?|Š¼Š°Ń€\.?|Š°ŠæрŠµŠ»[ья]|Š°Šæр\.?|Š¼Š°[Š¹Ń]|ŠøюŠ½[ья]|ŠøюŠ½\.?|ŠøюŠ»[ья]|ŠøюŠ»\.?|Š°Š²Š³ŃƒŃŃ‚Š°?|Š°Š²Š³\.?|сŠµŠ½Ń‚яŠ±Ń€[ья]|сŠµŠ½Ń‚?\.?|Š¾ŠŗтяŠ±Ń€[ья]|Š¾Šŗт\.?|Š½Š¾ŃŠ±Ń€[ья]|Š½Š¾ŃŠ±?\.?|Š“ŠµŠŗŠ°Š±Ń€[ья]|Š“ŠµŠŗ\.?)/i,monthsShortRegex:/^(яŠ½Š²Š°Ń€[ья]|яŠ½Š²\.?|фŠµŠ²Ń€Š°Š»[ья]|фŠµŠ²Ń€?\.?|Š¼Š°Ń€Ń‚Š°?|Š¼Š°Ń€\.?|Š°ŠæрŠµŠ»[ья]|Š°Šæр\.?|Š¼Š°[Š¹Ń]|ŠøюŠ½[ья]|ŠøюŠ½\.?|ŠøюŠ»[ья]|ŠøюŠ»\.?|Š°Š²Š³ŃƒŃŃ‚Š°?|Š°Š²Š³\.?|сŠµŠ½Ń‚яŠ±Ń€[ья]|сŠµŠ½Ń‚?\.?|Š¾ŠŗтяŠ±Ń€[ья]|Š¾Šŗт\.?|Š½Š¾ŃŠ±Ń€[ья]|Š½Š¾ŃŠ±?\.?|Š“ŠµŠŗŠ°Š±Ń€[ья]|Š“ŠµŠŗ\.?)/i,monthsStrictRegex:/^(яŠ½Š²Š°Ń€[яь]|фŠµŠ²Ń€Š°Š»[яь]|Š¼Š°Ń€Ń‚Š°?|Š°ŠæрŠµŠ»[яь]|Š¼Š°[яŠ¹]|ŠøюŠ½[яь]|ŠøюŠ»[яь]|Š°Š²Š³ŃƒŃŃ‚Š°?|сŠµŠ½Ń‚яŠ±Ń€[яь]|Š¾ŠŗтяŠ±Ń€[яь]|Š½Š¾ŃŠ±Ń€[яь]|Š“ŠµŠŗŠ°Š±Ń€[яь])/i,monthsShortStrictRegex:/^(яŠ½Š²\.|фŠµŠ²Ń€?\.|Š¼Š°Ń€[т.]|Š°Šæр\.|Š¼Š°[яŠ¹]|ŠøюŠ½[ья.]|ŠøюŠ»[ья.]|Š°Š²Š³\.|сŠµŠ½Ń‚?\.|Š¾Šŗт\.|Š½Š¾ŃŠ±?\.|Š“ŠµŠŗ\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Š³.",LLL:"D MMMM YYYY Š³., H:mm",LLLL:"dddd, D MMMM YYYY Š³., H:mm"},calendar:{sameDay:"[Š”ŠµŠ³Š¾Š“Š½Ń, Š²] LT",nextDay:"[Š—Š°Š²Ń‚Ń€Š°, Š²] LT",lastDay:"[Š’чŠµŃ€Š°, Š²] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Š’Š¾] dddd, [Š²] LT":"[Š’] dddd, [Š²] LT";switch(this.day()){case 0:return"[Š’ сŠ»ŠµŠ“ующŠµŠµ] dddd, [Š²] LT";case 1:case 2:case 4:return"[Š’ сŠ»ŠµŠ“ующŠøŠ¹] dddd, [Š²] LT";case 3:case 5:case 6:return"[Š’ сŠ»ŠµŠ“ующую] dddd, [Š²] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Š’Š¾] dddd, [Š²] LT":"[Š’] dddd, [Š²] LT";switch(this.day()){case 0:return"[Š’ ŠæрŠ¾ŃˆŠ»Š¾Šµ] dddd, [Š²] LT";case 1:case 2:case 4:return"[Š’ ŠæрŠ¾ŃˆŠ»Ń‹Š¹] dddd, [Š²] LT";case 3:case 5:case 6:return"[Š’ ŠæрŠ¾ŃˆŠ»ŃƒŃŽ] dddd, [Š²] LT"}},sameElse:"L"},relativeTime:{future:"чŠµŃ€ŠµŠ· %s",past:"%s Š½Š°Š·Š°Š“",s:"Š½ŠµŃŠŗŠ¾Š»ŃŒŠŗŠ¾ сŠµŠŗуŠ½Š“",ss:ru,m:ru,mm:ru,h:"чŠ°Ń",hh:ru,d:"Š“ŠµŠ½ŃŒ",dd:ru,w:"Š½ŠµŠ“ŠµŠ»Ń",ww:ru,M:"Š¼ŠµŃŃŃ†",MM:ru,y:"Š³Š¾Š“",yy:ru},meridiemParse:/Š½Š¾Ń‡Šø|утрŠ°|Š“Š½Ń|Š²ŠµŃ‡ŠµŃ€Š°/i,isPM:function(e){return/^(Š“Š½Ń|Š²ŠµŃ‡ŠµŃ€Š°)$/.test(e)},meridiem:function(e,t,n){return e<4?"Š½Š¾Ń‡Šø":e<12?"утрŠ°":e<17?"Š“Š½Ń":"Š²ŠµŃ‡ŠµŃ€Š°"},dayOfMonthOrdinalParse:/\d{1,2}-(Š¹|Š³Š¾|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-Š¹";case"D":return e+"-Š³Š¾";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var ou=["Ų¬Ł†ŁˆŲ±ŁŠ","ŁŁŠŲØŲ±ŁˆŲ±ŁŠ","Ł…Ų§Ų±Ś†","Ų§Ł¾Ų±ŁŠŁ„","Ł…Ų¦ŁŠ","Ų¬ŁˆŁ†","Ų¬ŁˆŁ„Ų§Ų”Ł","Ų¢ŚÆŲ³Ł½","Ų³ŁŠŁ¾Ł½Ł…ŲØŲ±","Ų¢ŚŖŁ½ŁˆŲØŲ±","Ł†ŁˆŁ…ŲØŲ±","ŚŠŲ³Ł…ŲØŲ±"],iu=["Ų¢Ś†Ų±","Ų³ŁˆŁ…Ų±","Ų§Ś±Ų§Ų±Łˆ","Ų§Ų±ŲØŲ¹","Ų®Ł…ŁŠŲ³","Ų¬Ł…Ų¹","Ś‡Ł†Ś‡Ų±"];r.defineLocale("sd",{months:ou,monthsShort:ou,weekdays:iu,weekdaysShort:iu,weekdaysMin:iu,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ddddŲŒ D MMMM YYYY HH:mm"},meridiemParse:/ŲµŲØŲ­|Ų“Ų§Ł…/,isPM:function(e){return"Ų“Ų§Ł…"===e},meridiem:function(e,t,n){return e<12?"ŲµŲØŲ­":"Ų“Ų§Ł…"},calendar:{sameDay:"[Ų§Ś„] LT",nextDay:"[Ų³Ś€Ų§Ś»ŁŠ] LT",nextWeek:"dddd [Ų§Ś³ŁŠŁ† Ł‡ŁŲŖŁŠ ŲŖŁŠ] LT",lastDay:"[ŚŖŲ§Ł„Ł‡Ł‡] LT",lastWeek:"[ŚÆŲ²Ų±ŁŠŁ„ Ł‡ŁŲŖŁŠ] dddd [ŲŖŁŠ] LT",sameElse:"L"},relativeTime:{future:"%s Ł¾ŁˆŲ”",past:"%s Ų§Ś³",s:"Ś†Ł†ŲÆ Ų³ŁŠŚŖŁ†ŚŠ",ss:"%d Ų³ŁŠŚŖŁ†ŚŠ",m:"Ł‡ŚŖ Ł…Ł†Ł½",mm:"%d Ł…Ł†Ł½",h:"Ł‡ŚŖ ŚŖŁ„Ų§ŚŖ",hh:"%d ŚŖŁ„Ų§ŚŖ",d:"Ł‡ŚŖ ŚŁŠŁ†Ł‡Ł†",dd:"%d ŚŁŠŁ†Ł‡Ł†",M:"Ł‡ŚŖ Ł…Ł‡ŁŠŁ†Łˆ",MM:"%d Ł…Ł‡ŁŠŁ†Ų§",y:"Ł‡ŚŖ Ų³Ų§Ł„",yy:"%d Ų³Ų§Ł„"},preparse:function(e){return e.replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/,/g,"ŲŒ")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("se",{months:"ođđajagemĆ”nnu_guovvamĆ”nnu_njukčamĆ”nnu_cuoŋomĆ”nnu_miessemĆ”nnu_geassemĆ”nnu_suoidnemĆ”nnu_borgemĆ”nnu_čakčamĆ”nnu_golggotmĆ”nnu_skĆ”bmamĆ”nnu_juovlamĆ”nnu".split("_"),monthsShort:"ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skĆ”b_juov".split("_"),weekdays:"sotnabeaivi_vuossĆ”rga_maŋŋebĆ”rga_gaskavahkku_duorastat_bearjadat_lĆ”vvardat".split("_"),weekdaysShort:"sotn_vuos_maŋ_gask_duor_bear_lĆ”v".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s geažes",past:"maŋit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta mĆ”nnu",MM:"%d mĆ”nut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("si",{months:"ą¶¢ą¶±ą·€ą·ą¶»ą·’_ą¶“ą·™ą¶¶ą¶»ą·€ą·ą¶»ą·’_ą¶øą·ą¶»ą·Šą¶­ą·”_ą¶…ą¶“ą·Šā€ą¶»ą·šą¶½ą·Š_ą¶øą·ą¶ŗą·’_ą¶¢ą·–ą¶±ą·’_ą¶¢ą·–ą¶½ą·’_ą¶…ą¶œą·ą·ƒą·Šą¶­ą·”_ą·ƒą·ą¶“ą·Šą¶­ą·ą¶øą·Šą¶¶ą¶»ą·Š_ą¶”ą¶šą·Šą¶­ą·ą¶¶ą¶»ą·Š_ą¶±ą·œą·€ą·ą¶øą·Šą¶¶ą¶»ą·Š_ą¶Æą·™ą·ƒą·ą¶øą·Šą¶¶ą¶»ą·Š".split("_"),monthsShort:"ą¶¢ą¶±_ą¶“ą·™ą¶¶_ą¶øą·ą¶»ą·Š_ą¶…ą¶“ą·Š_ą¶øą·ą¶ŗą·’_ą¶¢ą·–ą¶±ą·’_ą¶¢ą·–ą¶½ą·’_ą¶…ą¶œą·_ą·ƒą·ą¶“ą·Š_ą¶”ą¶šą·Š_ą¶±ą·œą·€ą·_ą¶Æą·™ą·ƒą·".split("_"),weekdays:"ą¶‰ą¶»ą·’ą¶Æą·_ą·ƒą¶³ą·”ą¶Æą·_ą¶…ą¶Ÿą·„ą¶»ą·”ą·€ą·ą¶Æą·_ą¶¶ą¶Æą·ą¶Æą·_ą¶¶ą·Šā€ą¶»ą·„ą·ƒą·Šą¶“ą¶­ą·’ą¶±ą·Šą¶Æą·_ą·ƒą·’ą¶šą·”ą¶»ą·ą¶Æą·_ą·ƒą·™ą¶±ą·ƒą·”ą¶»ą·ą¶Æą·".split("_"),weekdaysShort:"ą¶‰ą¶»ą·’_ą·ƒą¶³ą·”_ą¶…ą¶Ÿ_ą¶¶ą¶Æą·_ą¶¶ą·Šā€ą¶»ą·„_ą·ƒą·’ą¶šą·”_ą·ƒą·™ą¶±".split("_"),weekdaysMin:"ą¶‰_ą·ƒ_ą¶…_ą¶¶_ą¶¶ą·Šā€ą¶»_ą·ƒą·’_ą·ƒą·™".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"a h:mm",LTS:"a h:mm:ss",L:"YYYY/MM/DD",LL:"YYYY MMMM D",LLL:"YYYY MMMM D, a h:mm",LLLL:"YYYY MMMM D [ą·€ą·ą¶±ą·’] dddd, a h:mm:ss"},calendar:{sameDay:"[ą¶…ą¶Æ] LT[ą¶§]",nextDay:"[ą·„ą·™ą¶§] LT[ą¶§]",nextWeek:"dddd LT[ą¶§]",lastDay:"[ą¶Šą¶ŗą·š] LT[ą¶§]",lastWeek:"[ą¶“ą·ƒą·”ą¶œą·’ą¶ŗ] dddd LT[ą¶§]",sameElse:"L"},relativeTime:{future:"%są¶šą·’ą¶±ą·Š",past:"%są¶šą¶§ ą¶“ą·™ą¶»",s:"ą¶­ą¶­ą·Šą¶“ą¶» ą¶šą·’ą·„ą·’ą¶“ą¶ŗ",ss:"ą¶­ą¶­ą·Šą¶“ą¶» %d",m:"ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·”ą·€",mm:"ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·” %d",h:"ą¶“ą·ą¶ŗ",hh:"ą¶“ą·ą¶ŗ %d",d:"ą¶Æą·’ą¶±ą¶ŗ",dd:"ą¶Æą·’ą¶± %d",M:"ą¶øą·ą·ƒą¶ŗ",MM:"ą¶øą·ą·ƒ %d",y:"ą·€ą·ƒą¶»",yy:"ą·€ą·ƒą¶» %d"},dayOfMonthOrdinalParse:/\d{1,2} ą·€ą·ą¶±ą·’/,ordinal:function(e){return e+" ą·€ą·ą¶±ą·’"},meridiemParse:/ą¶“ą·™ą¶» ą·€ą¶»ą·”|ą¶“ą·ƒą·Š ą·€ą¶»ą·”|ą¶“ą·™.ą·€|ą¶“.ą·€./,isPM:function(e){return"ą¶“.ą·€."===e||"ą¶“ą·ƒą·Š ą·€ą¶»ą·”"===e},meridiem:function(e,t,n){return e>11?n?"ą¶“.ą·€.":"ą¶“ą·ƒą·Š ą·€ą¶»ą·”":n?"ą¶“ą·™.ą·€.":"ą¶“ą·™ą¶» ą·€ą¶»ą·”"}}); -//! moment.js locale configuration -var su="januĆ”r_februĆ”r_marec_aprĆ­l_mĆ”j_jĆŗn_jĆŗl_august_september_oktĆ³ber_november_december".split("_"),lu="jan_feb_mar_apr_mĆ”j_jĆŗn_jĆŗl_aug_sep_okt_nov_dec".split("_");function uu(e){return e>1&&e<5}function du(e,t,n,r){var a=e+" ";switch(n){case"s":return t||r?"pĆ”r sekĆŗnd":"pĆ”r sekundami";case"ss":return t||r?a+(uu(e)?"sekundy":"sekĆŗnd"):a+"sekundami";case"m":return t?"minĆŗta":r?"minĆŗtu":"minĆŗtou";case"mm":return t||r?a+(uu(e)?"minĆŗty":"minĆŗt"):a+"minĆŗtami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?a+(uu(e)?"hodiny":"hodĆ­n"):a+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?a+(uu(e)?"dni":"dnĆ­"):a+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?a+(uu(e)?"mesiace":"mesiacov"):a+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?a+(uu(e)?"roky":"rokov"):a+"rokmi"}} -//! moment.js locale configuration -function cu(e,t,n,r){var a=e+" ";switch(n){case"s":return t||r?"nekaj sekund":"nekaj sekundami";case"ss":return a+=1===e?t?"sekundo":"sekundi":2===e?t||r?"sekundi":"sekundah":e<5?t||r?"sekunde":"sekundah":"sekund";case"m":return t?"ena minuta":"eno minuto";case"mm":return a+=1===e?t?"minuta":"minuto":2===e?t||r?"minuti":"minutama":e<5?t||r?"minute":"minutami":t||r?"minut":"minutami";case"h":return t?"ena ura":"eno uro";case"hh":return a+=1===e?t?"ura":"uro":2===e?t||r?"uri":"urama":e<5?t||r?"ure":"urami":t||r?"ur":"urami";case"d":return t||r?"en dan":"enim dnem";case"dd":return a+=1===e?t||r?"dan":"dnem":2===e?t||r?"dni":"dnevoma":t||r?"dni":"dnevi";case"M":return t||r?"en mesec":"enim mesecem";case"MM":return a+=1===e?t||r?"mesec":"mesecem":2===e?t||r?"meseca":"mesecema":e<5?t||r?"mesece":"meseci":t||r?"mesecev":"meseci";case"y":return t||r?"eno leto":"enim letom";case"yy":return a+=1===e?t||r?"leto":"letom":2===e?t||r?"leti":"letoma":e<5?t||r?"leta":"leti":t||r?"let":"leti"}}r.defineLocale("sk",{months:su,monthsShort:lu,weekdays:"nedeľa_pondelok_utorok_streda_Å”tvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_Å”t_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_Å”t_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo Å”tvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulĆŗ nedeľu o] LT";case 1:case 2:case 4:case 5:return"[minulĆ½] dddd [o] LT";case 3:return"[minulĆŗ stredu o] LT";case 6:return"[minulĆŗ sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:du,ss:du,m:du,mm:du,h:du,hh:du,d:du,dd:du,M:du,MM:du,y:du,yy:du},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),r.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejÅ”njo] [nedeljo] [ob] LT";case 3:return"[prejÅ”njo] [sredo] [ob] LT";case 6:return"[prejÅ”njo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejÅ”nji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:cu,ss:cu,m:cu,mm:cu,h:cu,hh:cu,d:cu,dd:cu,M:cu,MM:cu,y:cu,yy:cu},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_NĆ«ntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_NĆ«n_Dhj".split("_"),weekdays:"E Diel_E HĆ«nĆ«_E MartĆ«_E MĆ«rkurĆ«_E Enjte_E Premte_E ShtunĆ«".split("_"),weekdaysShort:"Die_HĆ«n_Mar_MĆ«r_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_MĆ«_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,n){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot nĆ«] LT",nextDay:"[NesĆ«r nĆ«] LT",nextWeek:"dddd [nĆ«] LT",lastDay:"[Dje nĆ«] LT",lastWeek:"dddd [e kaluar nĆ«] LT",sameElse:"L"},relativeTime:{future:"nĆ« %s",past:"%s mĆ« parĆ«",s:"disa sekonda",ss:"%d sekonda",m:"njĆ« minutĆ«",mm:"%d minuta",h:"njĆ« orĆ«",hh:"%d orĆ«",d:"njĆ« ditĆ«",dd:"%d ditĆ«",M:"njĆ« muaj",MM:"%d muaj",y:"njĆ« vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var fu={words:{ss:["сŠµŠŗуŠ½Š“Š°","сŠµŠŗуŠ½Š“Šµ","сŠµŠŗуŠ½Š“Šø"],m:["јŠµŠ“Š°Š½ Š¼ŠøŠ½ŃƒŃ‚","јŠµŠ“Š½Š¾Š³ Š¼ŠøŠ½ŃƒŃ‚Š°"],mm:["Š¼ŠøŠ½ŃƒŃ‚","Š¼ŠøŠ½ŃƒŃ‚Š°","Š¼ŠøŠ½ŃƒŃ‚Š°"],h:["јŠµŠ“Š°Š½ сŠ°Ń‚","јŠµŠ“Š½Š¾Š³ сŠ°Ń‚Š°"],hh:["сŠ°Ń‚","сŠ°Ń‚Š°","сŠ°Ń‚Šø"],d:["јŠµŠ“Š°Š½ Š“Š°Š½","јŠµŠ“Š½Š¾Š³ Š“Š°Š½Š°"],dd:["Š“Š°Š½","Š“Š°Š½Š°","Š“Š°Š½Š°"],M:["јŠµŠ“Š°Š½ Š¼ŠµŃŠµŃ†","јŠµŠ“Š½Š¾Š³ Š¼ŠµŃŠµŃ†Š°"],MM:["Š¼ŠµŃŠµŃ†","Š¼ŠµŃŠµŃ†Š°","Š¼ŠµŃŠµŃ†Šø"],y:["јŠµŠ“Š½Ńƒ Š³Š¾Š“ŠøŠ½Ńƒ","јŠµŠ“Š½Šµ Š³Š¾Š“ŠøŠ½Šµ"],yy:["Š³Š¾Š“ŠøŠ½Ńƒ","Š³Š¾Š“ŠøŠ½Šµ","Š³Š¾Š“ŠøŠ½Š°"]},correctGrammaticalCase:function(e,t){return e%10>=1&&e%10<=4&&(e%100<10||e%100>=20)?e%10==1?t[0]:t[1]:t[2]},translate:function(e,t,n,r){var a,o=fu.words[n];return 1===n.length?"y"===n&&t?"јŠµŠ“Š½Š° Š³Š¾Š“ŠøŠ½Š°":r||t?o[0]:o[1]:(a=fu.correctGrammaticalCase(e,o),"yy"===n&&t&&"Š³Š¾Š“ŠøŠ½Ńƒ"===a?e+" Š³Š¾Š“ŠøŠ½Š°":e+" "+a)}};r.defineLocale("sr-cyrl",{months:"јŠ°Š½ŃƒŠ°Ń€_фŠµŠ±Ń€ŃƒŠ°Ń€_Š¼Š°Ń€Ń‚_Š°ŠæрŠøŠ»_Š¼Š°Ń˜_јуŠ½_јуŠ»_Š°Š²Š³ŃƒŃŃ‚_сŠµŠæтŠµŠ¼Š±Š°Ń€_Š¾ŠŗтŠ¾Š±Š°Ń€_Š½Š¾Š²ŠµŠ¼Š±Š°Ń€_Š“ŠµŃ†ŠµŠ¼Š±Š°Ń€".split("_"),monthsShort:"јŠ°Š½._фŠµŠ±._Š¼Š°Ń€._Š°Šæр._Š¼Š°Ń˜_јуŠ½_јуŠ»_Š°Š²Š³._сŠµŠæ._Š¾Šŗт._Š½Š¾Š²._Š“ŠµŃ†.".split("_"),monthsParseExact:!0,weekdays:"Š½ŠµŠ“ŠµŃ™Š°_ŠæŠ¾Š½ŠµŠ“ŠµŃ™Š°Šŗ_утŠ¾Ń€Š°Šŗ_срŠµŠ“Š°_чŠµŃ‚Š²Ń€Ń‚Š°Šŗ_ŠæŠµŃ‚Š°Šŗ_суŠ±Š¾Ń‚Š°".split("_"),weekdaysShort:"Š½ŠµŠ“._ŠæŠ¾Š½._утŠ¾._срŠµ._чŠµŃ‚._ŠæŠµŃ‚._суŠ±.".split("_"),weekdaysMin:"Š½Šµ_ŠæŠ¾_ут_ср_чŠµ_ŠæŠµ_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[Š“Š°Š½Š°Ń у] LT",nextDay:"[сутрŠ° у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [Š½ŠµŠ“ŠµŃ™Ńƒ] [у] LT";case 3:return"[у] [срŠµŠ“у] [у] LT";case 6:return"[у] [суŠ±Š¾Ń‚Ńƒ] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јучŠµ у] LT",lastWeek:function(){return["[ŠæрŠ¾ŃˆŠ»Šµ] [Š½ŠµŠ“ŠµŃ™Šµ] [у] LT","[ŠæрŠ¾ŃˆŠ»Š¾Š³] [ŠæŠ¾Š½ŠµŠ“ŠµŃ™ŠŗŠ°] [у] LT","[ŠæрŠ¾ŃˆŠ»Š¾Š³] [утŠ¾Ń€ŠŗŠ°] [у] LT","[ŠæрŠ¾ŃˆŠ»Šµ] [срŠµŠ“Šµ] [у] LT","[ŠæрŠ¾ŃˆŠ»Š¾Š³] [чŠµŃ‚Š²Ń€Ń‚ŠŗŠ°] [у] LT","[ŠæрŠ¾ŃˆŠ»Š¾Š³] [ŠæŠµŃ‚ŠŗŠ°] [у] LT","[ŠæрŠ¾ŃˆŠ»Šµ] [суŠ±Š¾Ń‚Šµ] [у] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"Š·Š° %s",past:"ŠæрŠµ %s",s:"Š½ŠµŠŗŠ¾Š»ŠøŠŗŠ¾ сŠµŠŗуŠ½Š“Šø",ss:fu.translate,m:fu.translate,mm:fu.translate,h:fu.translate,hh:fu.translate,d:fu.translate,dd:fu.translate,M:fu.translate,MM:fu.translate,y:fu.translate,yy:fu.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}); -//! moment.js locale configuration -var pu={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],d:["jedan dan","jednog dana"],dd:["dan","dana","dana"],M:["jedan mesec","jednog meseca"],MM:["mesec","meseca","meseci"],y:["jednu godinu","jedne godine"],yy:["godinu","godine","godina"]},correctGrammaticalCase:function(e,t){return e%10>=1&&e%10<=4&&(e%100<10||e%100>=20)?e%10==1?t[0]:t[1]:t[2]},translate:function(e,t,n,r){var a,o=pu.words[n];return 1===n.length?"y"===n&&t?"jedna godina":r||t?o[0]:o[1]:(a=pu.correctGrammaticalCase(e,o),"yy"===n&&t&&"godinu"===a?e+" godina":e+" "+a)}};r.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[proÅ”le] [nedelje] [u] LT","[proÅ”log] [ponedeljka] [u] LT","[proÅ”log] [utorka] [u] LT","[proÅ”le] [srede] [u] LT","[proÅ”log] [četvrtka] [u] LT","[proÅ”log] [petka] [u] LT","[proÅ”le] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:pu.translate,m:pu.translate,mm:pu.translate,h:pu.translate,hh:pu.translate,d:pu.translate,dd:pu.translate,M:pu.translate,MM:pu.translate,y:pu.translate,yy:pu.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"sƶndag_mĆ„ndag_tisdag_onsdag_torsdag_fredag_lƶrdag".split("_"),weekdaysShort:"sƶn_mĆ„n_tis_ons_tor_fre_lƶr".split("_"),weekdaysMin:"sƶ_mĆ„_ti_on_to_fr_lƶ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[IgĆ„r] LT",nextWeek:"[PĆ„] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"fƶr %s sedan",s:"nĆ„gra sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en mĆ„nad",MM:"%d mĆ„nader",y:"ett Ć„r",yy:"%d Ć„r"},dayOfMonthOrdinalParse:/\d{1,2}(\:e|\:a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?":e":1===t||2===t?":a":":e")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"hh:mm A",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"siku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}}); -//! moment.js locale configuration -var hu={1:"ąÆ§",2:"ąÆØ",3:"ąÆ©",4:"ąÆŖ",5:"ąÆ«",6:"ąÆ¬",7:"ąÆ­",8:"ąÆ®",9:"ąÆÆ",0:"ąÆ¦"},mu={"ąÆ§":"1","ąÆØ":"2","ąÆ©":"3","ąÆŖ":"4","ąÆ«":"5","ąÆ¬":"6","ąÆ­":"7","ąÆ®":"8","ąÆÆ":"9","ąÆ¦":"0"};r.defineLocale("ta",{months:"ą®œą®©ą®µą®°ą®æ_ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ_ą®®ą®¾ą®°ąÆą®šąÆ_ą®ą®ŖąÆą®°ą®²ąÆ_ą®®ąÆ‡_ą®œąÆ‚ą®©ąÆ_ą®œąÆ‚ą®²ąÆˆ_ą®†ą®•ą®øąÆą®ŸąÆ_ą®šąÆ†ą®ŖąÆą®ŸąÆ†ą®®ąÆą®Ŗą®°ąÆ_ą®…ą®•ąÆą®ŸąÆ‡ą®¾ą®Ŗą®°ąÆ_ą®Øą®µą®®ąÆą®Ŗą®°ąÆ_ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ".split("_"),monthsShort:"ą®œą®©ą®µą®°ą®æ_ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ_ą®®ą®¾ą®°ąÆą®šąÆ_ą®ą®ŖąÆą®°ą®²ąÆ_ą®®ąÆ‡_ą®œąÆ‚ą®©ąÆ_ą®œąÆ‚ą®²ąÆˆ_ą®†ą®•ą®øąÆą®ŸąÆ_ą®šąÆ†ą®ŖąÆą®ŸąÆ†ą®®ąÆą®Ŗą®°ąÆ_ą®…ą®•ąÆą®ŸąÆ‡ą®¾ą®Ŗą®°ąÆ_ą®Øą®µą®®ąÆą®Ŗą®°ąÆ_ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ".split("_"),weekdays:"ą®žą®¾ą®Æą®æą®±ąÆą®±ąÆą®•ąÆą®•ą®æą®“ą®®ąÆˆ_ą®¤ą®æą®™ąÆą®•ą®ŸąÆą®•ą®æą®“ą®®ąÆˆ_ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆą®•ą®æą®“ą®®ąÆˆ_ą®ŖąÆą®¤ą®©ąÆą®•ą®æą®“ą®®ąÆˆ_ą®µą®æą®Æą®¾ą®“ą®•ąÆą®•ą®æą®“ą®®ąÆˆ_ą®µąÆ†ą®³ąÆą®³ą®æą®•ąÆą®•ą®æą®“ą®®ąÆˆ_ą®šą®©ą®æą®•ąÆą®•ą®æą®“ą®®ąÆˆ".split("_"),weekdaysShort:"ą®žą®¾ą®Æą®æą®±ąÆ_ą®¤ą®æą®™ąÆą®•ą®³ąÆ_ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ_ą®ŖąÆą®¤ą®©ąÆ_ą®µą®æą®Æą®¾ą®“ą®©ąÆ_ą®µąÆ†ą®³ąÆą®³ą®æ_ą®šą®©ą®æ".split("_"),weekdaysMin:"ą®žą®¾_ą®¤ą®æ_ą®šąÆ†_ą®ŖąÆ_ą®µą®æ_ą®µąÆ†_ą®š".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[ą®‡ą®©ąÆą®±ąÆ] LT",nextDay:"[ą®Øą®¾ą®³ąÆˆ] LT",nextWeek:"dddd, LT",lastDay:"[ą®ØąÆ‡ą®±ąÆą®±ąÆ] LT",lastWeek:"[ą®•ą®Ÿą®ØąÆą®¤ ą®µą®¾ą®°ą®®ąÆ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą®‡ą®²ąÆ",past:"%s ą®®ąÆą®©ąÆ",s:"ą®’ą®°ąÆ ą®šą®æą®² ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ",ss:"%d ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ",m:"ą®’ą®°ąÆ ą®Øą®æą®®ą®æą®Ÿą®®ąÆ",mm:"%d ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆ",h:"ą®’ą®°ąÆ ą®®ą®£ą®æ ą®ØąÆ‡ą®°ą®®ąÆ",hh:"%d ą®®ą®£ą®æ ą®ØąÆ‡ą®°ą®®ąÆ",d:"ą®’ą®°ąÆ ą®Øą®¾ą®³ąÆ",dd:"%d ą®Øą®¾ą®ŸąÆą®•ą®³ąÆ",M:"ą®’ą®°ąÆ ą®®ą®¾ą®¤ą®®ąÆ",MM:"%d ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆ",y:"ą®’ą®°ąÆ ą®µą®°ąÆą®Ÿą®®ąÆ",yy:"%d ą®†ą®£ąÆą®ŸąÆą®•ą®³ąÆ"},dayOfMonthOrdinalParse:/\d{1,2}ą®µą®¤ąÆ/,ordinal:function(e){return e+"ą®µą®¤ąÆ"},preparse:function(e){return e.replace(/[ąÆ§ąÆØąÆ©ąÆŖąÆ«ąÆ¬ąÆ­ąÆ®ąÆÆąÆ¦]/g,(function(e){return mu[e]}))},postformat:function(e){return e.replace(/\d/g,(function(e){return hu[e]}))},meridiemParse:/ą®Æą®¾ą®®ą®®ąÆ|ą®µąÆˆą®•ą®±ąÆˆ|ą®•ą®¾ą®²ąÆˆ|ą®Øą®£ąÆą®Ŗą®•ą®²ąÆ|ą®Žą®±ąÆą®Ŗą®¾ą®ŸąÆ|ą®®ą®¾ą®²ąÆˆ/,meridiem:function(e,t,n){return e<2?" ą®Æą®¾ą®®ą®®ąÆ":e<6?" ą®µąÆˆą®•ą®±ąÆˆ":e<10?" ą®•ą®¾ą®²ąÆˆ":e<14?" ą®Øą®£ąÆą®Ŗą®•ą®²ąÆ":e<18?" ą®Žą®±ąÆą®Ŗą®¾ą®ŸąÆ":e<22?" ą®®ą®¾ą®²ąÆˆ":" ą®Æą®¾ą®®ą®®ąÆ"},meridiemHour:function(e,t){return 12===e&&(e=0),"ą®Æą®¾ą®®ą®®ąÆ"===t?e<2?e:e+12:"ą®µąÆˆą®•ą®±ąÆˆ"===t||"ą®•ą®¾ą®²ąÆˆ"===t||"ą®Øą®£ąÆą®Ŗą®•ą®²ąÆ"===t&&e>=10?e:e+12},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("te",{months:"ą°œą°Øą°µą°°ą°æ_ą°«ą°æą°¬ą±ą°°ą°µą°°ą°æ_ą°®ą°¾ą°°ą±ą°šą°æ_ą°ą°Ŗą±ą°°ą°æą°²ą±_ą°®ą±‡_ą°œą±‚ą°Øą±_ą°œą±ą°²ą±ˆ_ą°†ą°—ą°øą±ą°Ÿą±_ą°øą±†ą°Ŗą±ą°Ÿą±†ą°‚ą°¬ą°°ą±_ą°…ą°•ą±ą°Ÿą±‹ą°¬ą°°ą±_ą°Øą°µą°‚ą°¬ą°°ą±_ą°”ą°æą°øą±†ą°‚ą°¬ą°°ą±".split("_"),monthsShort:"ą°œą°Ø._ą°«ą°æą°¬ą±ą°°._ą°®ą°¾ą°°ą±ą°šą°æ_ą°ą°Ŗą±ą°°ą°æ._ą°®ą±‡_ą°œą±‚ą°Øą±_ą°œą±ą°²ą±ˆ_ą°†ą°—._ą°øą±†ą°Ŗą±._ą°…ą°•ą±ą°Ÿą±‹._ą°Øą°µ._ą°”ą°æą°øą±†.".split("_"),monthsParseExact:!0,weekdays:"ą°†ą°¦ą°æą°µą°¾ą°°ą°‚_ą°øą±‹ą°®ą°µą°¾ą°°ą°‚_ą°®ą°‚ą°—ą°³ą°µą°¾ą°°ą°‚_ą°¬ą±ą°§ą°µą°¾ą°°ą°‚_ą°—ą±ą°°ą±ą°µą°¾ą°°ą°‚_ą°¶ą±ą°•ą±ą°°ą°µą°¾ą°°ą°‚_ą°¶ą°Øą°æą°µą°¾ą°°ą°‚".split("_"),weekdaysShort:"ą°†ą°¦ą°æ_ą°øą±‹ą°®_ą°®ą°‚ą°—ą°³_ą°¬ą±ą°§_ą°—ą±ą°°ą±_ą°¶ą±ą°•ą±ą°°_ą°¶ą°Øą°æ".split("_"),weekdaysMin:"ą°†_ą°øą±‹_ą°®ą°‚_ą°¬ą±_ą°—ą±_ą°¶ą±_ą°¶".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ą°Øą±‡ą°”ą±] LT",nextDay:"[ą°°ą±‡ą°Ŗą±] LT",nextWeek:"dddd, LT",lastDay:"[ą°Øą°æą°Øą±ą°Ø] LT",lastWeek:"[ą°—ą°¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ą°²ą±‹",past:"%s ą°•ą±ą°°ą°æą°¤ą°‚",s:"ą°•ą±Šą°Øą±ą°Øą°æ ą°•ą±ą°·ą°£ą°¾ą°²ą±",ss:"%d ą°øą±†ą°•ą°Øą±ą°²ą±",m:"ą°’ą°• ą°Øą°æą°®ą°æą°·ą°‚",mm:"%d ą°Øą°æą°®ą°æą°·ą°¾ą°²ą±",h:"ą°’ą°• ą°—ą°‚ą°Ÿ",hh:"%d ą°—ą°‚ą°Ÿą°²ą±",d:"ą°’ą°• ą°°ą±‹ą°œą±",dd:"%d ą°°ą±‹ą°œą±ą°²ą±",M:"ą°’ą°• ą°Øą±†ą°²",MM:"%d ą°Øą±†ą°²ą°²ą±",y:"ą°’ą°• ą°øą°‚ą°µą°¤ą±ą°øą°°ą°‚",yy:"%d ą°øą°‚ą°µą°¤ą±ą°øą°°ą°¾ą°²ą±"},dayOfMonthOrdinalParse:/\d{1,2}ą°µ/,ordinal:"%dą°µ",meridiemParse:/ą°°ą°¾ą°¤ą±ą°°ą°æ|ą°‰ą°¦ą°Æą°‚|ą°®ą°§ą±ą°Æą°¾ą°¹ą±ą°Øą°‚|ą°øą°¾ą°Æą°‚ą°¤ą±ą°°ą°‚/,meridiemHour:function(e,t){return 12===e&&(e=0),"ą°°ą°¾ą°¤ą±ą°°ą°æ"===t?e<4?e:e+12:"ą°‰ą°¦ą°Æą°‚"===t?e:"ą°®ą°§ą±ą°Æą°¾ą°¹ą±ą°Øą°‚"===t?e>=10?e:e+12:"ą°øą°¾ą°Æą°‚ą°¤ą±ą°°ą°‚"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"ą°°ą°¾ą°¤ą±ą°°ą°æ":e<10?"ą°‰ą°¦ą°Æą°‚":e<17?"ą°®ą°§ą±ą°Æą°¾ą°¹ą±ą°Øą°‚":e<20?"ą°øą°¾ą°Æą°‚ą°¤ą±ą°°ą°‚":"ą°°ą°¾ą°¤ą±ą°°ą°æ"},week:{dow:0,doy:6}}), -//! moment.js locale configuration -r.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_JuƱu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var _u={0:"-уŠ¼",1:"-уŠ¼",2:"-юŠ¼",3:"-юŠ¼",4:"-уŠ¼",5:"-уŠ¼",6:"-уŠ¼",7:"-уŠ¼",8:"-уŠ¼",9:"-уŠ¼",10:"-уŠ¼",12:"-уŠ¼",13:"-уŠ¼",20:"-уŠ¼",30:"-юŠ¼",40:"-уŠ¼",50:"-уŠ¼",60:"-уŠ¼",70:"-уŠ¼",80:"-уŠ¼",90:"-уŠ¼",100:"-уŠ¼"};r.defineLocale("tg",{months:{format:"яŠ½Š²Š°Ń€Šø_фŠµŠ²Ń€Š°Š»Šø_Š¼Š°Ń€Ń‚Šø_Š°ŠæрŠµŠ»Šø_Š¼Š°Š¹Šø_ŠøюŠ½Šø_ŠøюŠ»Šø_Š°Š²Š³ŃƒŃŃ‚Šø_сŠµŠ½Ń‚яŠ±Ń€Šø_Š¾ŠŗтяŠ±Ń€Šø_Š½Š¾ŃŠ±Ń€Šø_Š“ŠµŠŗŠ°Š±Ń€Šø".split("_"),standalone:"яŠ½Š²Š°Ń€_фŠµŠ²Ń€Š°Š»_Š¼Š°Ń€Ń‚_Š°ŠæрŠµŠ»_Š¼Š°Š¹_ŠøюŠ½_ŠøюŠ»_Š°Š²Š³ŃƒŃŃ‚_сŠµŠ½Ń‚яŠ±Ń€_Š¾ŠŗтяŠ±Ń€_Š½Š¾ŃŠ±Ń€_Š“ŠµŠŗŠ°Š±Ń€".split("_")},monthsShort:"яŠ½Š²_фŠµŠ²_Š¼Š°Ń€_Š°Šæр_Š¼Š°Š¹_ŠøюŠ½_ŠøюŠ»_Š°Š²Š³_сŠµŠ½_Š¾Šŗт_Š½Š¾Ń_Š“ŠµŠŗ".split("_"),weekdays:"яŠŗшŠ°Š½Š±Šµ_Š“ушŠ°Š½Š±Šµ_сŠµŃˆŠ°Š½Š±Šµ_чŠ¾Ń€ŃˆŠ°Š½Š±Šµ_ŠæŠ°Š½Ņ·ŃˆŠ°Š½Š±Šµ_Ņ·ŃƒŠ¼ŃŠŠ°_шŠ°Š½Š±Šµ".split("_"),weekdaysShort:"яшŠ±_Š“шŠ±_сшŠ±_чшŠ±_ŠæшŠ±_Ņ·ŃƒŠ¼_шŠ½Š±".split("_"),weekdaysMin:"яш_Š“ш_сш_чш_Šæш_Ņ·Š¼_шŠ±".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Š˜Š¼Ń€ÓÆŠ· сŠ¾Š°Ń‚Šø] LT",nextDay:"[Š¤Š°Ń€Š“Š¾ сŠ¾Š°Ń‚Šø] LT",lastDay:"[Š”ŠøрÓÆŠ· сŠ¾Š°Ń‚Šø] LT",nextWeek:"dddd[Šø] [Ņ³Š°Ń„Ń‚Š°Šø Š¾ŃŠ½Š“Š° сŠ¾Š°Ń‚Šø] LT",lastWeek:"dddd[Šø] [Ņ³Š°Ń„Ń‚Š°Šø Š³ŃƒŠ·Š°ŃˆŃ‚Š° сŠ¾Š°Ń‚Šø] LT",sameElse:"L"},relativeTime:{future:"Š±Š°ŃŠŠ“Šø %s",past:"%s ŠæŠµŃˆ",s:"яŠŗчŠ°Š½Š“ сŠ¾Š½Šøя",m:"яŠŗ Š“Š°Ņ›ŠøŅ›Š°",mm:"%d Š“Š°Ņ›ŠøŅ›Š°",h:"яŠŗ сŠ¾Š°Ń‚",hh:"%d сŠ¾Š°Ń‚",d:"яŠŗ рÓÆŠ·",dd:"%d рÓÆŠ·",M:"яŠŗ Š¼Š¾Ņ³",MM:"%d Š¼Š¾Ņ³",y:"яŠŗ сŠ¾Š»",yy:"%d сŠ¾Š»"},meridiemParse:/шŠ°Š±|суŠ±Ņ³|рÓÆŠ·|Š±ŠµŠ³Š¾Ņ³/,meridiemHour:function(e,t){return 12===e&&(e=0),"шŠ°Š±"===t?e<4?e:e+12:"суŠ±Ņ³"===t?e:"рÓÆŠ·"===t?e>=11?e:e+12:"Š±ŠµŠ³Š¾Ņ³"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"шŠ°Š±":e<11?"суŠ±Ņ³":e<16?"рÓÆŠ·":e<19?"Š±ŠµŠ³Š¾Ņ³":"шŠ°Š±"},dayOfMonthOrdinalParse:/\d{1,2}-(уŠ¼|юŠ¼)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(_u[e]||_u[t]||_u[n])},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("th",{months:"ąø”ąøąø£ąø²ąø„ąø”_ąøąøøąø”ąø ąø²ąøžąø±ąø™ąø˜ą¹Œ_ąø”ąøµąø™ąø²ąø„ąø”_ą¹€ąø”ąø©ąø²ąø¢ąø™_ąøžąø¤ąø©ąø ąø²ąø„ąø”_ąø”ąø“ąø–ąøøąø™ąø²ąø¢ąø™_ąøąø£ąøąøŽąø²ąø„ąø”_ąøŖąø“ąø‡ąø«ąø²ąø„ąø”_ąøąø±ąø™ąø¢ąø²ąø¢ąø™_ąø•ąøøąø„ąø²ąø„ąø”_ąøžąø¤ąøØąøˆąø“ąøąø²ąø¢ąø™_ąø˜ąø±ąø™ąø§ąø²ąø„ąø”".split("_"),monthsShort:"ąø”.ąø„._ąø.ąøž._ąø”ąøµ.ąø„._ą¹€ąø”.ąø¢._ąøž.ąø„._ąø”ąø“.ąø¢._ąø.ąø„._ąøŖ.ąø„._ąø.ąø¢._ąø•.ąø„._ąøž.ąø¢._ąø˜.ąø„.".split("_"),monthsParseExact:!0,weekdays:"ąø­ąø²ąø—ąø“ąø•ąø¢ą¹Œ_ąøˆąø±ąø™ąø—ąø£ą¹Œ_ąø­ąø±ąø‡ąø„ąø²ąø£_ąøžąøøąø˜_ąøžąø¤ąø«ąø±ąøŖąøšąø”ąøµ_ąøØąøøąøąø£ą¹Œ_ą¹€ąøŖąø²ąø£ą¹Œ".split("_"),weekdaysShort:"ąø­ąø²ąø—ąø“ąø•ąø¢ą¹Œ_ąøˆąø±ąø™ąø—ąø£ą¹Œ_ąø­ąø±ąø‡ąø„ąø²ąø£_ąøžąøøąø˜_ąøžąø¤ąø«ąø±ąøŖ_ąøØąøøąøąø£ą¹Œ_ą¹€ąøŖąø²ąø£ą¹Œ".split("_"),weekdaysMin:"ąø­ąø²._ąøˆ._ąø­._ąøž._ąøžąø¤._ąøØ._ąøŖ.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY ą¹€ąø§ąø„ąø² H:mm",LLLL:"ąø§ąø±ąø™ddddąø—ąøµą¹ˆ D MMMM YYYY ą¹€ąø§ąø„ąø² H:mm"},meridiemParse:/ąøą¹ˆąø­ąø™ą¹€ąø—ąøµą¹ˆąø¢ąø‡|ąø«ąø„ąø±ąø‡ą¹€ąø—ąøµą¹ˆąø¢ąø‡/,isPM:function(e){return"ąø«ąø„ąø±ąø‡ą¹€ąø—ąøµą¹ˆąø¢ąø‡"===e},meridiem:function(e,t,n){return e<12?"ąøą¹ˆąø­ąø™ą¹€ąø—ąøµą¹ˆąø¢ąø‡":"ąø«ąø„ąø±ąø‡ą¹€ąø—ąøµą¹ˆąø¢ąø‡"},calendar:{sameDay:"[ąø§ąø±ąø™ąø™ąøµą¹‰ ą¹€ąø§ąø„ąø²] LT",nextDay:"[ąøžąø£ąøøą¹ˆąø‡ąø™ąøµą¹‰ ą¹€ąø§ąø„ąø²] LT",nextWeek:"dddd[ąø«ąø™ą¹‰ąø² ą¹€ąø§ąø„ąø²] LT",lastDay:"[ą¹€ąø”ąø·ą¹ˆąø­ąø§ąø²ąø™ąø™ąøµą¹‰ ą¹€ąø§ąø„ąø²] LT",lastWeek:"[ąø§ąø±ąø™]dddd[ąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§ ą¹€ąø§ąø„ąø²] LT",sameElse:"L"},relativeTime:{future:"ąø­ąøµąø %s",past:"%sąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§",s:"ą¹„ąø”ą¹ˆąøąøµą¹ˆąø§ąø“ąø™ąø²ąø—ąøµ",ss:"%d ąø§ąø“ąø™ąø²ąø—ąøµ",m:"1 ąø™ąø²ąø—ąøµ",mm:"%d ąø™ąø²ąø—ąøµ",h:"1 ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡",hh:"%d ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡",d:"1 ąø§ąø±ąø™",dd:"%d ąø§ąø±ąø™",w:"1 ąøŖąø±ąø›ąø”ąø²ąø«ą¹Œ",ww:"%d ąøŖąø±ąø›ąø”ąø²ąø«ą¹Œ",M:"1 ą¹€ąø”ąø·ąø­ąø™",MM:"%d ą¹€ąø”ąø·ąø­ąø™",y:"1 ąø›ąøµ",yy:"%d ąø›ąøµ"}}); -//! moment.js locale configuration -var yu={1:"'inji",5:"'inji",8:"'inji",70:"'inji",80:"'inji",2:"'nji",7:"'nji",20:"'nji",50:"'nji",3:"'Ć¼nji",4:"'Ć¼nji",100:"'Ć¼nji",6:"'njy",9:"'unjy",10:"'unjy",30:"'unjy",60:"'ynjy",90:"'ynjy"};r.defineLocale("tk",{months:"Ɲanwar_Fewral_Mart_Aprel_MaĆ½_IĆ½un_IĆ½ul_Awgust_SentĆ½abr_OktĆ½abr_NoĆ½abr_Dekabr".split("_"),monthsShort:"Ɲan_Few_Mar_Apr_MaĆ½_IĆ½n_IĆ½l_Awg_Sen_Okt_NoĆ½_Dek".split("_"),weekdays:"Ɲekşenbe_Duşenbe_Sişenbe_Ƈarşenbe_Penşenbe_Anna_Şenbe".split("_"),weekdaysShort:"Ɲek_Duş_Siş_Ƈar_Pen_Ann_Şen".split("_"),weekdaysMin:"Ɲk_Dş_Sş_Ƈr_Pn_An_Şn".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugĆ¼n sagat] LT",nextDay:"[ertir sagat] LT",nextWeek:"[indiki] dddd [sagat] LT",lastDay:"[dĆ¼Ć½n] LT",lastWeek:"[geƧen] dddd [sagat] LT",sameElse:"L"},relativeTime:{future:"%s soň",past:"%s Ć¶Åˆ",s:"birnƤƧe sekunt",m:"bir minut",mm:"%d minut",h:"bir sagat",hh:"%d sagat",d:"bir gĆ¼n",dd:"%d gĆ¼n",M:"bir aĆ½",MM:"%d aĆ½",y:"bir Ć½yl",yy:"%d Ć½yl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'unjy";var n=e%10,r=e%100-n,a=e>=100?100:null;return e+(yu[n]||yu[r]||yu[a])}},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}}); -//! moment.js locale configuration -var gu="pagh_waā€™_chaā€™_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");function vu(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"leS":-1!==e.indexOf("jar")?t.slice(0,-3)+"waQ":-1!==e.indexOf("DIS")?t.slice(0,-3)+"nem":t+" pIq"}function bu(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"Huā€™":-1!==e.indexOf("jar")?t.slice(0,-3)+"wen":-1!==e.indexOf("DIS")?t.slice(0,-3)+"ben":t+" ret"}function Mu(e,t,n,r){var a=wu(e);switch(n){case"ss":return a+" lup";case"mm":return a+" tup";case"hh":return a+" rep";case"dd":return a+" jaj";case"MM":return a+" jar";case"yy":return a+" DIS"}}function wu(e){var t=Math.floor(e%1e3/100),n=Math.floor(e%100/10),r=e%10,a="";return t>0&&(a+=gu[t]+"vatlh"),n>0&&(a+=(""!==a?" ":"")+gu[n]+"maH"),r>0&&(a+=(""!==a?" ":"")+gu[r]),""===a?"pagh":a}r.defineLocale("tlh",{months:"teraā€™ jar waā€™_teraā€™ jar chaā€™_teraā€™ jar wej_teraā€™ jar loS_teraā€™ jar vagh_teraā€™ jar jav_teraā€™ jar Soch_teraā€™ jar chorgh_teraā€™ jar Hut_teraā€™ jar waā€™maH_teraā€™ jar waā€™maH waā€™_teraā€™ jar waā€™maH chaā€™".split("_"),monthsShort:"jar waā€™_jar chaā€™_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar waā€™maH_jar waā€™maH waā€™_jar waā€™maH chaā€™".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[waā€™leS] LT",nextWeek:"LLL",lastDay:"[waā€™Huā€™] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:vu,past:bu,s:"puS lup",ss:Mu,m:"waā€™ tup",mm:Mu,h:"waā€™ rep",hh:Mu,d:"waā€™ jaj",dd:Mu,M:"waā€™ jar",MM:Mu,y:"waā€™ DIS",yy:Mu},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}); -//! moment.js locale configuration -var ku={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'Ć¼ncĆ¼",4:"'Ć¼ncĆ¼",100:"'Ć¼ncĆ¼",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};function Lu(e,t,n,r){var a={s:["viensas secunds","'iensas secunds"],ss:[e+" secunds",e+" secunds"],m:["'n mĆ­ut","'iens mĆ­ut"],mm:[e+" mĆ­uts",e+" mĆ­uts"],h:["'n Ć¾ora","'iensa Ć¾ora"],hh:[e+" Ć¾oras",e+" Ć¾oras"],d:["'n ziua","'iensa ziua"],dd:[e+" ziuas",e+" ziuas"],M:["'n mes","'iens mes"],MM:[e+" mesen",e+" mesen"],y:["'n ar","'iens ar"],yy:[e+" ars",e+" ars"]};return r||t?a[n][0]:a[n][1]} -//! moment.js locale configuration -//! moment.js locale configuration -function Du(e,t){var n=e.split("_");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function Yu(e,t,n){return"m"===n?t?"хŠ²ŠøŠ»ŠøŠ½Š°":"хŠ²ŠøŠ»ŠøŠ½Ńƒ":"h"===n?t?"Š³Š¾Š“ŠøŠ½Š°":"Š³Š¾Š“ŠøŠ½Ńƒ":e+" "+Du({ss:t?"сŠµŠŗуŠ½Š“Š°_сŠµŠŗуŠ½Š“Šø_сŠµŠŗуŠ½Š“":"сŠµŠŗуŠ½Š“у_сŠµŠŗуŠ½Š“Šø_сŠµŠŗуŠ½Š“",mm:t?"хŠ²ŠøŠ»ŠøŠ½Š°_хŠ²ŠøŠ»ŠøŠ½Šø_хŠ²ŠøŠ»ŠøŠ½":"хŠ²ŠøŠ»ŠøŠ½Ńƒ_хŠ²ŠøŠ»ŠøŠ½Šø_хŠ²ŠøŠ»ŠøŠ½",hh:t?"Š³Š¾Š“ŠøŠ½Š°_Š³Š¾Š“ŠøŠ½Šø_Š³Š¾Š“ŠøŠ½":"Š³Š¾Š“ŠøŠ½Ńƒ_Š³Š¾Š“ŠøŠ½Šø_Š³Š¾Š“ŠøŠ½",dd:"Š“ŠµŠ½ŃŒ_Š“Š½Ń–_Š“Š½Ń–Š²",MM:"Š¼Ń–ŃŃŃ†ŃŒ_Š¼Ń–ŃŃŃ†Ń–_Š¼Ń–ŃŃŃ†Ń–Š²",yy:"ріŠŗ_рŠ¾ŠŗŠø_рŠ¾ŠŗіŠ²"}[n],+e)}function Tu(e,t){var n={nominative:"Š½ŠµŠ“іŠ»Ń_ŠæŠ¾Š½ŠµŠ“іŠ»Š¾Šŗ_Š²Ń–Š²Ń‚Š¾Ń€Š¾Šŗ_сŠµŃ€ŠµŠ“Š°_чŠµŃ‚Š²ŠµŃ€_Šæā€™ŃŃ‚Š½Šøця_суŠ±Š¾Ń‚Š°".split("_"),accusative:"Š½ŠµŠ“іŠ»ŃŽ_ŠæŠ¾Š½ŠµŠ“іŠ»Š¾Šŗ_Š²Ń–Š²Ń‚Š¾Ń€Š¾Šŗ_сŠµŃ€ŠµŠ“у_чŠµŃ‚Š²ŠµŃ€_Šæā€™ŃŃ‚Š½Šøцю_суŠ±Š¾Ń‚Ńƒ".split("_"),genitive:"Š½ŠµŠ“іŠ»Ń–_ŠæŠ¾Š½ŠµŠ“іŠ»ŠŗŠ°_Š²Ń–Š²Ń‚Š¾Ń€ŠŗŠ°_сŠµŃ€ŠµŠ“Šø_чŠµŃ‚Š²ŠµŃ€Š³Š°_Šæā€™ŃŃ‚Š½Šøці_суŠ±Š¾Ń‚Šø".split("_")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\[[Š’Š²Š£Ńƒ]\]) ?dddd/.test(t)?"accusative":/\[?(?:Š¼ŠøŠ½ŃƒŠ»Š¾Ń—|Š½Š°ŃŃ‚ŃƒŠæŠ½Š¾Ń—)? ?\] ?dddd/.test(t)?"genitive":"nominative"][e.day()]:n.nominative}function Su(e){return function(){return e+"Š¾"+(11===this.hours()?"Š±":"")+"] LT"}}r.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_EylĆ¼l_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Ƈarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pzt_Sal_Ƈar_Per_Cum_Cmt".split("_"),weekdaysMin:"Pz_Pt_Sa_Ƈa_Pe_Cu_Ct".split("_"),meridiem:function(e,t,n){return e<12?n?"ƶƶ":"ƖƖ":n?"ƶs":"ƖS"},meridiemParse:/ƶƶ|ƖƖ|ƶs|ƖS/,isPM:function(e){return"ƶs"===e||"ƖS"===e},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugĆ¼n saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dĆ¼n] LT",lastWeek:"[geƧen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s ƶnce",s:"birkaƧ saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gĆ¼n",dd:"%d gĆ¼n",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var n=e%10,r=e%100-n,a=e>=100?100:null;return e+(ku[n]||ku[r]||ku[a])}},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("tzl",{months:"Januar_Fevraglh_MarƧ_AvrĆÆu_Mai_GĆ¼n_Julia_Guscht_Setemvar_ListopƤts_Noemvar_Zecemvar".split("_"),monthsShort:"Jan_Fev_Mar_Avr_Mai_GĆ¼n_Jul_Gus_Set_Lis_Noe_Zec".split("_"),weekdays:"SĆŗladi_LĆŗneƧi_Maitzi_MĆ”rcuri_XhĆŗadi_ViĆ©nerƧi_SĆ”turi".split("_"),weekdaysShort:"SĆŗl_LĆŗn_Mai_MĆ”r_XhĆŗ_ViĆ©_SĆ”t".split("_"),weekdaysMin:"SĆŗ_LĆŗ_Ma_MĆ”_Xh_Vi_SĆ”".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM [dallas] YYYY",LLL:"D. MMMM [dallas] YYYY HH.mm",LLLL:"dddd, [li] D. MMMM [dallas] YYYY HH.mm"},meridiemParse:/d\'o|d\'a/i,isPM:function(e){return"d'o"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?"d'o":"D'O":n?"d'a":"D'A"},calendar:{sameDay:"[oxhi Ć ] LT",nextDay:"[demĆ  Ć ] LT",nextWeek:"dddd [Ć ] LT",lastDay:"[ieiri Ć ] LT",lastWeek:"[sĆ¼r el] dddd [lasteu Ć ] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:Lu,ss:Lu,m:Lu,mm:Lu,h:Lu,hh:Lu,d:Lu,dd:Lu,M:Lu,MM:Lu,y:Lu,yy:Lu},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),r.defineLocale("tzm-latn",{months:"innayr_brĖ¤ayrĖ¤_marĖ¤sĖ¤_ibrir_mayyw_ywnyw_ywlywz_É£wÅ”t_Å”wtanbir_ktĖ¤wbrĖ¤_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_brĖ¤ayrĖ¤_marĖ¤sĖ¤_ibrir_mayyw_ywnyw_ywlywz_É£wÅ”t_Å”wtanbir_ktĖ¤wbrĖ¤_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asiįøyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asiįøyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asiįøyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minuįø",mm:"%d minuįø",h:"saɛa",hh:"%d tassaɛin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}}), -//! moment.js locale configuration -r.defineLocale("tzm",{months:"āµ‰āµāµā“°āµ¢āµ”_ā“±āµ•ā“°āµ¢āµ•_āµŽā“°āµ•āµš_āµ‰ā“±āµ”āµ‰āµ”_āµŽā“°āµ¢āµ¢āµ“_āµ¢āµ“āµāµ¢āµ“_āµ¢āµ“āµāµ¢āµ“āµ£_āµ–āµ“āµ›āµœ_āµ›āµ“āµœā“°āµā“±āµ‰āµ”_ā“½āµŸāµ“ā“±āµ•_āµāµ“āµ”ā“°āµā“±āµ‰āµ”_ā“·āµ“āµŠāµā“±āµ‰āµ”".split("_"),monthsShort:"āµ‰āµāµā“°āµ¢āµ”_ā“±āµ•ā“°āµ¢āµ•_āµŽā“°āµ•āµš_āµ‰ā“±āµ”āµ‰āµ”_āµŽā“°āµ¢āµ¢āµ“_āµ¢āµ“āµāµ¢āµ“_āµ¢āµ“āµāµ¢āµ“āµ£_āµ–āµ“āµ›āµœ_āµ›āµ“āµœā“°āµā“±āµ‰āµ”_ā“½āµŸāµ“ā“±āµ•_āµāµ“āµ”ā“°āµā“±āµ‰āµ”_ā“·āµ“āµŠāµā“±āµ‰āµ”".split("_"),weekdays:"ā“°āµ™ā“°āµŽā“°āµ™_ā“°āµ¢āµā“°āµ™_ā“°āµ™āµ‰āµā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°āµ™āµ‰āµŽāµ”ā“°āµ™_ā“°āµ™āµ‰ā“¹āµ¢ā“°āµ™".split("_"),weekdaysShort:"ā“°āµ™ā“°āµŽā“°āµ™_ā“°āµ¢āµā“°āµ™_ā“°āµ™āµ‰āµā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°āµ™āµ‰āµŽāµ”ā“°āµ™_ā“°āµ™āµ‰ā“¹āµ¢ā“°āµ™".split("_"),weekdaysMin:"ā“°āµ™ā“°āµŽā“°āµ™_ā“°āµ¢āµā“°āµ™_ā“°āµ™āµ‰āµā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°ā“½āµ”ā“°āµ™_ā“°āµ™āµ‰āµŽāµ”ā“°āµ™_ā“°āµ™āµ‰ā“¹āµ¢ā“°āµ™".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ā“°āµ™ā“·āµ… ā““] LT",nextDay:"[ā“°āµ™ā“½ā“° ā““] LT",nextWeek:"dddd [ā““] LT",lastDay:"[ā“°āµšā“°āµāµœ ā““] LT",lastWeek:"dddd [ā““] LT",sameElse:"L"},relativeTime:{future:"ā“·ā“°ā“·āµ… āµ™ āµ¢ā“°āµ %s",past:"āµ¢ā“°āµ %s",s:"āµ‰āµŽāµ‰ā“½",ss:"%d āµ‰āµŽāµ‰ā“½",m:"āµŽāµ‰āµāµ“ā“ŗ",mm:"%d āµŽāµ‰āµāµ“ā“ŗ",h:"āµ™ā“°āµ„ā“°",hh:"%d āµœā“°āµ™āµ™ā“°āµ„āµ‰āµ",d:"ā“°āµ™āµ™",dd:"%d oāµ™āµ™ā“°āµ",M:"ā“°āµ¢oāµ“āµ”",MM:"%d āµ‰āµ¢āµ¢āµ‰āµ”āµ",y:"ā“°āµ™ā“³ā“°āµ™",yy:"%d āµ‰āµ™ā“³ā“°āµ™āµ"},week:{dow:6,doy:12}}), -//! moment.js locale configuration -r.defineLocale("ug-cn",{months:"ŁŠŲ§Ł†Ū‹Ų§Ų±_ŁŪŪ‹Ų±Ų§Ł„_Ł…Ų§Ų±ŲŖ_Ų¦Ų§Ł¾Ų±ŪŁ„_Ł…Ų§ŁŠ_Ų¦Ł‰ŁŠŪ‡Ł†_Ų¦Ł‰ŁŠŪ‡Ł„_Ų¦Ų§Ū‹ŲŗŪ‡Ų³ŲŖ_Ų³ŪŁ†ŲŖŪ•ŲØŁ‰Ų±_Ų¦Ū†ŁƒŲŖŪ•ŲØŁ‰Ų±_Ł†ŁˆŁŠŲ§ŲØŁ‰Ų±_ŲÆŪŁƒŲ§ŲØŁ‰Ų±".split("_"),monthsShort:"ŁŠŲ§Ł†Ū‹Ų§Ų±_ŁŪŪ‹Ų±Ų§Ł„_Ł…Ų§Ų±ŲŖ_Ų¦Ų§Ł¾Ų±ŪŁ„_Ł…Ų§ŁŠ_Ų¦Ł‰ŁŠŪ‡Ł†_Ų¦Ł‰ŁŠŪ‡Ł„_Ų¦Ų§Ū‹ŲŗŪ‡Ų³ŲŖ_Ų³ŪŁ†ŲŖŪ•ŲØŁ‰Ų±_Ų¦Ū†ŁƒŲŖŪ•ŲØŁ‰Ų±_Ł†ŁˆŁŠŲ§ŲØŁ‰Ų±_ŲÆŪŁƒŲ§ŲØŁ‰Ų±".split("_"),weekdays:"ŁŠŪ•ŁƒŲ“Ū•Ł†ŲØŪ•_ŲÆŪˆŲ“Ū•Ł†ŲØŪ•_Ų³Ū•ŁŠŲ“Ū•Ł†ŲØŪ•_Ś†Ų§Ų±Ų“Ū•Ł†ŲØŪ•_Ł¾Ū•ŁŠŲ“Ū•Ł†ŲØŪ•_Ų¬ŪˆŁ…Ū•_Ų“Ū•Ł†ŲØŪ•".split("_"),weekdaysShort:"ŁŠŪ•_ŲÆŪˆ_Ų³Ū•_Ś†Ų§_Ł¾Ū•_Ų¬Ūˆ_Ų“Ū•".split("_"),weekdaysMin:"ŁŠŪ•_ŲÆŪˆ_Ų³Ū•_Ś†Ų§_Ł¾Ū•_Ų¬Ūˆ_Ų“Ū•".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰",LLL:"YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰ŲŒ HH:mm",LLLL:"ddddŲŒ YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰ŲŒ HH:mm"},meridiemParse:/ŁŠŪŲ±Ł‰Ł… ŁƒŪŚ†Ū•|Ų³Ū•Ś¾Ū•Ų±|Ś†ŪˆŲ“ŲŖŁ‰Ł† ŲØŪ‡Ų±Ū‡Ł†|Ś†ŪˆŲ“|Ś†ŪˆŲ“ŲŖŁ‰Ł† ŁƒŪŁŠŁ‰Ł†|ŁƒŪ•Ś†/,meridiemHour:function(e,t){return 12===e&&(e=0),"ŁŠŪŲ±Ł‰Ł… ŁƒŪŚ†Ū•"===t||"Ų³Ū•Ś¾Ū•Ų±"===t||"Ś†ŪˆŲ“ŲŖŁ‰Ł† ŲØŪ‡Ų±Ū‡Ł†"===t?e:"Ś†ŪˆŲ“ŲŖŁ‰Ł† ŁƒŪŁŠŁ‰Ł†"===t||"ŁƒŪ•Ś†"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"ŁŠŪŲ±Ł‰Ł… ŁƒŪŚ†Ū•":r<900?"Ų³Ū•Ś¾Ū•Ų±":r<1130?"Ś†ŪˆŲ“ŲŖŁ‰Ł† ŲØŪ‡Ų±Ū‡Ł†":r<1230?"Ś†ŪˆŲ“":r<1800?"Ś†ŪˆŲ“ŲŖŁ‰Ł† ŁƒŪŁŠŁ‰Ł†":"ŁƒŪ•Ś†"},calendar:{sameDay:"[ŲØŪˆŚÆŪˆŁ† Ų³Ų§Ų¦Ū•ŲŖ] LT",nextDay:"[Ų¦Ū•ŲŖŪ• Ų³Ų§Ų¦Ū•ŲŖ] LT",nextWeek:"[ŁƒŪŁ„Ū•Ų±ŁƒŁ‰] dddd [Ų³Ų§Ų¦Ū•ŲŖ] LT",lastDay:"[ŲŖŪ†Ł†ŪˆŚÆŪˆŁ†] LT",lastWeek:"[Ų¦Ų§Ł„ŲÆŁ‰Ł†Ł‚Ł‰] dddd [Ų³Ų§Ų¦Ū•ŲŖ] LT",sameElse:"L"},relativeTime:{future:"%s ŁƒŪŁŠŁ‰Ł†",past:"%s ŲØŪ‡Ų±Ū‡Ł†",s:"Ł†Ū•Ś†Ś†Ū• Ų³ŪŁƒŁˆŁ†ŲŖ",ss:"%d Ų³ŪŁƒŁˆŁ†ŲŖ",m:"ŲØŁ‰Ų± Ł…Ł‰Ł†Ū‡ŲŖ",mm:"%d Ł…Ł‰Ł†Ū‡ŲŖ",h:"ŲØŁ‰Ų± Ų³Ų§Ų¦Ū•ŲŖ",hh:"%d Ų³Ų§Ų¦Ū•ŲŖ",d:"ŲØŁ‰Ų± ŁƒŪˆŁ†",dd:"%d ŁƒŪˆŁ†",M:"ŲØŁ‰Ų± Ų¦Ų§ŁŠ",MM:"%d Ų¦Ų§ŁŠ",y:"ŲØŁ‰Ų± ŁŠŁ‰Ł„",yy:"%d ŁŠŁ‰Ł„"},dayOfMonthOrdinalParse:/\d{1,2}(-ŁƒŪˆŁ†Ł‰|-Ų¦Ų§ŁŠ|-Ś¾Ū•Ł¾ŲŖŪ•)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"-ŁƒŪˆŁ†Ł‰";case"w":case"W":return e+"-Ś¾Ū•Ł¾ŲŖŪ•";default:return e}},preparse:function(e){return e.replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/,/g,"ŲŒ")},week:{dow:1,doy:7}}),r.defineLocale("uk",{months:{format:"січŠ½Ń_Š»ŃŽŃ‚Š¾Š³Š¾_Š±ŠµŃ€ŠµŠ·Š½Ń_ŠŗŠ²Ń–Ń‚Š½Ń_трŠ°Š²Š½Ń_чŠµŃ€Š²Š½Ń_Š»ŠøŠæŠ½Ń_сŠµŃ€ŠæŠ½Ń_Š²ŠµŃ€ŠµŃŠ½Ń_Š¶Š¾Š²Ń‚Š½Ń_Š»ŠøстŠ¾ŠæŠ°Š“Š°_Š³Ń€ŃƒŠ“Š½Ń".split("_"),standalone:"січŠµŠ½ŃŒ_Š»ŃŽŃ‚ŠøŠ¹_Š±ŠµŃ€ŠµŠ·ŠµŠ½ŃŒ_ŠŗŠ²Ń–Ń‚ŠµŠ½ŃŒ_трŠ°Š²ŠµŠ½ŃŒ_чŠµŃ€Š²ŠµŠ½ŃŒ_Š»ŠøŠæŠµŠ½ŃŒ_сŠµŃ€ŠæŠµŠ½ŃŒ_Š²ŠµŃ€ŠµŃŠµŠ½ŃŒ_Š¶Š¾Š²Ń‚ŠµŠ½ŃŒ_Š»ŠøстŠ¾ŠæŠ°Š“_Š³Ń€ŃƒŠ“ŠµŠ½ŃŒ".split("_")},monthsShort:"січ_Š»ŃŽŃ‚_Š±ŠµŃ€_ŠŗŠ²Ń–Ń‚_трŠ°Š²_чŠµŃ€Š²_Š»ŠøŠæ_сŠµŃ€Šæ_Š²ŠµŃ€_Š¶Š¾Š²Ń‚_Š»Šøст_Š³Ń€ŃƒŠ“".split("_"),weekdays:Tu,weekdaysShort:"Š½Š“_ŠæŠ½_Š²Ń‚_ср_чт_Šæт_сŠ±".split("_"),weekdaysMin:"Š½Š“_ŠæŠ½_Š²Ń‚_ср_чт_Šæт_сŠ±".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:Su("[Š”ьŠ¾Š³Š¾Š“Š½Ń– "),nextDay:Su("[Š—Š°Š²Ń‚Ń€Š° "),lastDay:Su("[Š’чŠ¾Ń€Š° "),nextWeek:Su("[Š£] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return Su("[ŠœŠøŠ½ŃƒŠ»Š¾Ń—] dddd [").call(this);case 1:case 2:case 4:return Su("[ŠœŠøŠ½ŃƒŠ»Š¾Š³Š¾] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"Š·Š° %s",past:"%s тŠ¾Š¼Ńƒ",s:"Š“ŠµŠŗіŠ»ŃŒŠŗŠ° сŠµŠŗуŠ½Š“",ss:Yu,m:Yu,mm:Yu,h:"Š³Š¾Š“ŠøŠ½Ńƒ",hh:Yu,d:"Š“ŠµŠ½ŃŒ",dd:Yu,M:"Š¼Ń–ŃŃŃ†ŃŒ",MM:Yu,y:"ріŠŗ",yy:Yu},meridiemParse:/Š½Š¾Ń‡Ń–|рŠ°Š½Šŗу|Š“Š½Ń|Š²ŠµŃ‡Š¾Ń€Š°/,isPM:function(e){return/^(Š“Š½Ń|Š²ŠµŃ‡Š¾Ń€Š°)$/.test(e)},meridiem:function(e,t,n){return e<4?"Š½Š¾Ń‡Ń–":e<12?"рŠ°Š½Šŗу":e<17?"Š“Š½Ń":"Š²ŠµŃ‡Š¾Ń€Š°"},dayOfMonthOrdinalParse:/\d{1,2}-(Š¹|Š³Š¾)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-Š¹";case"D":return e+"-Š³Š¾";default:return e}},week:{dow:1,doy:7}}); -//! moment.js locale configuration -var xu=["Ų¬Ł†ŁˆŲ±ŪŒ","ŁŲ±ŁˆŲ±ŪŒ","Ł…Ų§Ų±Ś†","Ų§Ł¾Ų±ŪŒŁ„","Ł…Ų¦ŪŒ","Ų¬ŁˆŁ†","Ų¬ŁˆŁ„Ų§Ų¦ŪŒ","Ų§ŚÆŲ³ŲŖ","Ų³ŲŖŁ…ŲØŲ±","Ų§Ś©ŲŖŁˆŲØŲ±","Ł†ŁˆŁ…ŲØŲ±","ŲÆŲ³Ł…ŲØŲ±"],Pu=["Ų§ŲŖŁˆŲ§Ų±","Ł¾ŪŒŲ±","Ł…Ł†ŚÆŁ„","ŲØŲÆŚ¾","Ų¬Ł…Ų¹Ų±Ų§ŲŖ","Ų¬Ł…Ų¹Ū","ŪŁŲŖŪ"];return r.defineLocale("ur",{months:xu,monthsShort:xu,weekdays:Pu,weekdaysShort:Pu,weekdaysMin:Pu,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ddddŲŒ D MMMM YYYY HH:mm"},meridiemParse:/ŲµŲØŲ­|Ų“Ų§Ł…/,isPM:function(e){return"Ų“Ų§Ł…"===e},meridiem:function(e,t,n){return e<12?"ŲµŲØŲ­":"Ų“Ų§Ł…"},calendar:{sameDay:"[Ų¢Ų¬ ŲØŁˆŁ‚ŲŖ] LT",nextDay:"[Ś©Ł„ ŲØŁˆŁ‚ŲŖ] LT",nextWeek:"dddd [ŲØŁˆŁ‚ŲŖ] LT",lastDay:"[ŚÆŲ°Ų“ŲŖŪ Ų±ŁˆŲ² ŲØŁˆŁ‚ŲŖ] LT",lastWeek:"[ŚÆŲ°Ų“ŲŖŪ] dddd [ŲØŁˆŁ‚ŲŖ] LT",sameElse:"L"},relativeTime:{future:"%s ŲØŲ¹ŲÆ",past:"%s Ł‚ŲØŁ„",s:"Ś†Ł†ŲÆ Ų³ŪŒŚ©Ł†Śˆ",ss:"%d Ų³ŪŒŚ©Ł†Śˆ",m:"Ų§ŪŒŚ© Ł…Ł†Ł¹",mm:"%d Ł…Ł†Ł¹",h:"Ų§ŪŒŚ© ŚÆŚ¾Ł†Ł¹Ū",hh:"%d ŚÆŚ¾Ł†Ł¹Ū’",d:"Ų§ŪŒŚ© ŲÆŁ†",dd:"%d ŲÆŁ†",M:"Ų§ŪŒŚ© Ł…Ų§Ū",MM:"%d Ł…Ų§Ū",y:"Ų§ŪŒŚ© Ų³Ų§Ł„",yy:"%d Ų³Ų§Ł„"},preparse:function(e){return e.replace(/ŲŒ/g,",")},postformat:function(e){return e.replace(/,/g,"ŲŒ")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("uz",{months:"яŠ½Š²Š°Ń€_фŠµŠ²Ń€Š°Š»_Š¼Š°Ń€Ń‚_Š°ŠæрŠµŠ»_Š¼Š°Š¹_ŠøюŠ½_ŠøюŠ»_Š°Š²Š³ŃƒŃŃ‚_сŠµŠ½Ń‚яŠ±Ń€_Š¾ŠŗтяŠ±Ń€_Š½Š¾ŃŠ±Ń€_Š“ŠµŠŗŠ°Š±Ń€".split("_"),monthsShort:"яŠ½Š²_фŠµŠ²_Š¼Š°Ń€_Š°Šæр_Š¼Š°Š¹_ŠøюŠ½_ŠøюŠ»_Š°Š²Š³_сŠµŠ½_Š¾Šŗт_Š½Š¾Ń_Š“ŠµŠŗ".split("_"),weekdays:"ŠÆŠŗшŠ°Š½Š±Š°_Š”ŃƒŃˆŠ°Š½Š±Š°_Š”ŠµŃˆŠ°Š½Š±Š°_Š§Š¾Ń€ŃˆŠ°Š½Š±Š°_ŠŸŠ°Š¹ŃˆŠ°Š½Š±Š°_Š–ŃƒŠ¼Š°_ŠØŠ°Š½Š±Š°".split("_"),weekdaysShort:"ŠÆŠŗш_Š”ŃƒŃˆ_Š”ŠµŃˆ_Š§Š¾Ń€_ŠŸŠ°Š¹_Š–ŃƒŠ¼_ŠØŠ°Š½".split("_"),weekdaysMin:"ŠÆŠŗ_Š”Ńƒ_Š”Šµ_Š§Š¾_ŠŸŠ°_Š–Ńƒ_ŠØŠ°".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Š‘ŃƒŠ³ŃƒŠ½ сŠ¾Š°Ń‚] LT [Š“Š°]",nextDay:"[Š­Ń€Ń‚Š°Š³Š°] LT [Š“Š°]",nextWeek:"dddd [ŠŗуŠ½Šø сŠ¾Š°Ń‚] LT [Š“Š°]",lastDay:"[ŠšŠµŃ‡Š° сŠ¾Š°Ń‚] LT [Š“Š°]",lastWeek:"[Š£Ń‚Š³Š°Š½] dddd [ŠŗуŠ½Šø сŠ¾Š°Ń‚] LT [Š“Š°]",sameElse:"L"},relativeTime:{future:"ŠÆŠŗŠøŠ½ %s ŠøчŠøŠ“Š°",past:"Š‘Šøр Š½ŠµŃ‡Š° %s Š¾Š»Š“ŠøŠ½",s:"фурсŠ°Ń‚",ss:"%d фурсŠ°Ń‚",m:"Š±Šøр Š“Š°ŠŗŠøŠŗŠ°",mm:"%d Š“Š°ŠŗŠøŠŗŠ°",h:"Š±Šøр сŠ¾Š°Ń‚",hh:"%d сŠ¾Š°Ń‚",d:"Š±Šøр ŠŗуŠ½",dd:"%d ŠŗуŠ½",M:"Š±Šøр Š¾Š¹",MM:"%d Š¾Š¹",y:"Š±Šøр Š¹ŠøŠ»",yy:"%d Š¹ŠøŠ»"},week:{dow:1,doy:7}}), -//! moment.js locale configuration -r.defineLocale("vi",{months:"thĆ”ng 1_thĆ”ng 2_thĆ”ng 3_thĆ”ng 4_thĆ”ng 5_thĆ”ng 6_thĆ”ng 7_thĆ”ng 8_thĆ”ng 9_thĆ”ng 10_thĆ”ng 11_thĆ”ng 12".split("_"),monthsShort:"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12".split("_"),monthsParseExact:!0,weekdays:"chį»§ nhįŗ­t_thį»© hai_thį»© ba_thį»© tĘ°_thį»© năm_thį»© sĆ”u_thį»© bįŗ£y".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?"sa":"SA":n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[HĆ“m nay lĆŗc] LT",nextDay:"[NgĆ y mai lĆŗc] LT",nextWeek:"dddd [tuįŗ§n tį»›i lĆŗc] LT",lastDay:"[HĆ“m qua lĆŗc] LT",lastWeek:"dddd [tuįŗ§n trĘ°į»›c lĆŗc] LT",sameElse:"L"},relativeTime:{future:"%s tį»›i",past:"%s trĘ°į»›c",s:"vĆ i giĆ¢y",ss:"%d giĆ¢y",m:"mį»™t phĆŗt",mm:"%d phĆŗt",h:"mį»™t giį»",hh:"%d giį»",d:"mį»™t ngĆ y",dd:"%d ngĆ y",w:"mį»™t tuįŗ§n",ww:"%d tuįŗ§n",M:"mį»™t thĆ”ng",MM:"%d thĆ”ng",y:"mį»™t năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("x-pseudo",{months:"J~ƔƱĆŗĆ”~rĆ½_F~Ć©brĆŗ~Ć”rĆ½_~MĆ”rc~h_Ɓp~rĆ­l_~MĆ”Ć½_~JĆŗƱƩ~_JĆŗl~Ć½_ƁĆŗ~gĆŗst~_SĆ©p~tĆ©mb~Ć©r_Ɠ~ctĆ³b~Ć©r_Ƒ~Ć³vĆ©m~bĆ©r_~DĆ©cĆ©~mbĆ©r".split("_"),monthsShort:"J~ƔƱ_~FĆ©b_~MĆ”r_~Ɓpr_~MĆ”Ć½_~JĆŗƱ_~JĆŗl_~ƁĆŗg_~SĆ©p_~Ɠct_~Ć‘Ć³v_~DĆ©c".split("_"),monthsParseExact:!0,weekdays:"S~ĆŗƱdĆ”~Ć½_MĆ³~ƱdĆ”Ć½~_TĆŗĆ©~sdĆ”Ć½~_WĆ©d~ƱƩsd~Ć”Ć½_T~hĆŗrs~dĆ”Ć½_~FrĆ­d~Ć”Ć½_S~Ć”tĆŗr~dĆ”Ć½".split("_"),weekdaysShort:"S~ĆŗƱ_~MĆ³Ć±_~TĆŗĆ©_~WĆ©d_~ThĆŗ_~FrĆ­_~SĆ”t".split("_"),weekdaysMin:"S~Ćŗ_MĆ³~_TĆŗ_~WĆ©_T~h_Fr~_SĆ”".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~Ć³dĆ”~Ć½ Ć”t] LT",nextDay:"[T~Ć³mĆ³~rrĆ³~w Ć”t] LT",nextWeek:"dddd [Ć”t] LT",lastDay:"[Ɲ~Ć©st~Ć©rdĆ”~Ć½ Ć”t] LT",lastWeek:"[L~Ć”st] dddd [Ć”t] LT",sameElse:"L"},relativeTime:{future:"Ć­~Ʊ %s",past:"%s Ć”~gĆ³",s:"Ć” ~fĆ©w ~sĆ©cĆ³~Ʊds",ss:"%d s~Ć©cĆ³Ć±~ds",m:"Ć” ~mƭƱ~ĆŗtĆ©",mm:"%d m~ƭƱĆŗ~tĆ©s",h:"Ć”~Ʊ hĆ³~Ćŗr",hh:"%d h~Ć³Ćŗrs",d:"Ć” ~dĆ”Ć½",dd:"%d d~Ć”Ć½s",M:"Ć” ~mĆ³Ć±~th",MM:"%d m~Ć³Ć±t~hs",y:"Ć” ~Ć½Ć©Ć”r",yy:"%d Ć½~Ć©Ć”rs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("yo",{months:"Sįŗ¹Ģrįŗ¹Ģ_EĢ€reĢ€leĢ€_įŗørįŗ¹Ģ€naĢ€_IĢ€gbeĢ_EĢ€bibi_OĢ€kuĢ€du_Agįŗ¹mo_OĢ€guĢn_Owewe_į»ŒĢ€waĢ€raĢ€_BeĢluĢ_į»ŒĢ€pįŗ¹Ģ€Ģ€".split("_"),monthsShort:"Sįŗ¹Ģr_EĢ€rl_įŗørn_IĢ€gb_EĢ€bi_OĢ€kuĢ€_Agįŗ¹_OĢ€guĢ_Owe_į»ŒĢ€waĢ€_BeĢl_į»ŒĢ€pįŗ¹Ģ€Ģ€".split("_"),weekdays:"AĢ€iĢ€kuĢ_AjeĢ_IĢ€sįŗ¹Ģgun_į»Œjį»ĢruĢ_į»Œjį»Ģbį»_įŗøtiĢ€_AĢ€baĢmįŗ¹Ģta".split("_"),weekdaysShort:"AĢ€iĢ€k_AjeĢ_IĢ€sįŗ¹Ģ_į»Œjr_į»Œjb_įŗøtiĢ€_AĢ€baĢ".split("_"),weekdaysMin:"AĢ€iĢ€_Aj_IĢ€s_į»Œr_į»Œb_įŗøt_AĢ€b".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[OĢ€niĢ€ ni] LT",nextDay:"[į»ŒĢ€la ni] LT",nextWeek:"dddd [į»Œsįŗ¹Ģ€ toĢn'bį»] [ni] LT",lastDay:"[AĢ€na ni] LT",lastWeek:"dddd [į»Œsįŗ¹Ģ€ toĢlį»Ģ] [ni] LT",sameElse:"L"},relativeTime:{future:"niĢ %s",past:"%s kį»jaĢ",s:"iĢ€sįŗ¹juĢ aayaĢ die",ss:"aayaĢ %d",m:"iĢ€sįŗ¹juĢ kan",mm:"iĢ€sįŗ¹juĢ %d",h:"waĢkati kan",hh:"waĢkati %d",d:"į»jį»Ģ kan",dd:"į»jį»Ģ %d",M:"osuĢ€ kan",MM:"osuĢ€ %d",y:"į»duĢn kan",yy:"į»duĢn %d"},dayOfMonthOrdinalParse:/į»jį»Ģ\s\d{1,2}/,ordinal:"į»jį»Ģ %d",week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("zh-cn",{months:"äø€ęœˆ_äŗŒęœˆ_äø‰ęœˆ_å››ęœˆ_äŗ”ęœˆ_å…­ęœˆ_äøƒęœˆ_å…«ęœˆ_ä¹ęœˆ_åęœˆ_十äø€ęœˆ_十äŗŒęœˆ".split("_"),monthsShort:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),weekdays:"ę˜ŸęœŸę—„_ꘟꜟäø€_ꘟꜟäŗŒ_ꘟꜟäø‰_ę˜ŸęœŸå››_ꘟꜟäŗ”_ę˜ŸęœŸå…­".split("_"),weekdaysShort:"å‘Øę—„_å‘Øäø€_å‘ØäŗŒ_å‘Øäø‰_å‘Ø四_å‘Øäŗ”_å‘Ø六".split("_"),weekdaysMin:"ę—„_äø€_äŗŒ_äø‰_四_äŗ”_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY幓M꜈Dę—„",LLL:"YYYY幓M꜈Dę—„Ahē‚¹mm分",LLLL:"YYYY幓M꜈Dę—„ddddAhē‚¹mm分",l:"YYYY/M/D",ll:"YYYY幓M꜈Dę—„",lll:"YYYY幓M꜈Dę—„ HH:mm",llll:"YYYY幓M꜈Dę—„dddd HH:mm"},meridiemParse:/凌ę™Ø|ę—©äøŠ|äøŠåˆ|äø­åˆ|äø‹åˆ|ꙚäøŠ/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌ę™Ø"===t||"ę—©äøŠ"===t||"äøŠåˆ"===t?e:"äø‹åˆ"===t||"ꙚäøŠ"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌ę™Ø":r<900?"ę—©äøŠ":r<1130?"äøŠåˆ":r<1230?"äø­åˆ":r<1800?"äø‹åˆ":"ꙚäøŠ"},calendar:{sameDay:"[今天]LT",nextDay:"[ę˜Žå¤©]LT",nextWeek:function(e){return e.week()!==this.week()?"[äø‹]dddLT":"[ęœ¬]dddLT"},lastDay:"[ę˜Ø天]LT",lastWeek:function(e){return this.week()!==e.week()?"[äøŠ]dddLT":"[ęœ¬]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(ę—„|꜈|å‘Ø)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ę—„";case"M":return e+"꜈";case"w":case"W":return e+"å‘Ø";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几ē§’",ss:"%d ē§’",m:"1 分钟",mm:"%d 分钟",h:"1 å°ę—¶",hh:"%d å°ę—¶",d:"1 天",dd:"%d 天",w:"1 å‘Ø",ww:"%d å‘Ø",M:"1 äøŖ꜈",MM:"%d äøŖ꜈",y:"1 幓",yy:"%d 幓"},week:{dow:1,doy:4}}), -//! moment.js locale configuration -r.defineLocale("zh-hk",{months:"äø€ęœˆ_äŗŒęœˆ_äø‰ęœˆ_å››ęœˆ_äŗ”ęœˆ_å…­ęœˆ_äøƒęœˆ_å…«ęœˆ_ä¹ęœˆ_åęœˆ_十äø€ęœˆ_十äŗŒęœˆ".split("_"),monthsShort:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),weekdays:"ę˜ŸęœŸę—„_ꘟꜟäø€_ꘟꜟäŗŒ_ꘟꜟäø‰_ę˜ŸęœŸå››_ꘟꜟäŗ”_ę˜ŸęœŸå…­".split("_"),weekdaysShort:"週ꗄ_週äø€_週äŗŒ_週äø‰_週四_週äŗ”_週六".split("_"),weekdaysMin:"ę—„_äø€_äŗŒ_äø‰_四_äŗ”_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY幓M꜈Dę—„",LLL:"YYYY幓M꜈Dę—„ HH:mm",LLLL:"YYYY幓M꜈Dę—„dddd HH:mm",l:"YYYY/M/D",ll:"YYYY幓M꜈Dę—„",lll:"YYYY幓M꜈Dę—„ HH:mm",llll:"YYYY幓M꜈Dę—„dddd HH:mm"},meridiemParse:/凌ę™Ø|ę—©äøŠ|äøŠåˆ|äø­åˆ|äø‹åˆ|ꙚäøŠ/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌ę™Ø"===t||"ę—©äøŠ"===t||"äøŠåˆ"===t?e:"äø­åˆ"===t?e>=11?e:e+12:"äø‹åˆ"===t||"ꙚäøŠ"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌ę™Ø":r<900?"ę—©äøŠ":r<1200?"äøŠåˆ":1200===r?"äø­åˆ":r<1800?"äø‹åˆ":"ꙚäøŠ"},calendar:{sameDay:"[今天]LT",nextDay:"[ę˜Žå¤©]LT",nextWeek:"[äø‹]ddddLT",lastDay:"[ę˜Ø天]LT",lastWeek:"[äøŠ]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(ę—„|꜈|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ę—„";case"M":return e+"꜈";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"å¹¾ē§’",ss:"%d ē§’",m:"1 分鐘",mm:"%d 分鐘",h:"1 å°ę™‚",hh:"%d å°ę™‚",d:"1 天",dd:"%d 天",M:"1 å€‹ęœˆ",MM:"%d å€‹ęœˆ",y:"1 幓",yy:"%d 幓"}}), -//! moment.js locale configuration -r.defineLocale("zh-mo",{months:"äø€ęœˆ_äŗŒęœˆ_äø‰ęœˆ_å››ęœˆ_äŗ”ęœˆ_å…­ęœˆ_äøƒęœˆ_å…«ęœˆ_ä¹ęœˆ_åęœˆ_十äø€ęœˆ_十äŗŒęœˆ".split("_"),monthsShort:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),weekdays:"ę˜ŸęœŸę—„_ꘟꜟäø€_ꘟꜟäŗŒ_ꘟꜟäø‰_ę˜ŸęœŸå››_ꘟꜟäŗ”_ę˜ŸęœŸå…­".split("_"),weekdaysShort:"週ꗄ_週äø€_週äŗŒ_週äø‰_週四_週äŗ”_週六".split("_"),weekdaysMin:"ę—„_äø€_äŗŒ_äø‰_四_äŗ”_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"YYYY幓M꜈Dę—„",LLL:"YYYY幓M꜈Dę—„ HH:mm",LLLL:"YYYY幓M꜈Dę—„dddd HH:mm",l:"D/M/YYYY",ll:"YYYY幓M꜈Dę—„",lll:"YYYY幓M꜈Dę—„ HH:mm",llll:"YYYY幓M꜈Dę—„dddd HH:mm"},meridiemParse:/凌ę™Ø|ę—©äøŠ|äøŠåˆ|äø­åˆ|äø‹åˆ|ꙚäøŠ/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌ę™Ø"===t||"ę—©äøŠ"===t||"äøŠåˆ"===t?e:"äø­åˆ"===t?e>=11?e:e+12:"äø‹åˆ"===t||"ꙚäøŠ"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌ę™Ø":r<900?"ę—©äøŠ":r<1130?"äøŠåˆ":r<1230?"äø­åˆ":r<1800?"äø‹åˆ":"ꙚäøŠ"},calendar:{sameDay:"[今天] LT",nextDay:"[ę˜Žå¤©] LT",nextWeek:"[äø‹]dddd LT",lastDay:"[ę˜Ø天] LT",lastWeek:"[äøŠ]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(ę—„|꜈|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ę—„";case"M":return e+"꜈";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"å¹¾ē§’",ss:"%d ē§’",m:"1 分鐘",mm:"%d 分鐘",h:"1 å°ę™‚",hh:"%d å°ę™‚",d:"1 天",dd:"%d 天",M:"1 å€‹ęœˆ",MM:"%d å€‹ęœˆ",y:"1 幓",yy:"%d 幓"}}), -//! moment.js locale configuration -r.defineLocale("zh-tw",{months:"äø€ęœˆ_äŗŒęœˆ_äø‰ęœˆ_å››ęœˆ_äŗ”ęœˆ_å…­ęœˆ_äøƒęœˆ_å…«ęœˆ_ä¹ęœˆ_åęœˆ_十äø€ęœˆ_十äŗŒęœˆ".split("_"),monthsShort:"1꜈_2꜈_3꜈_4꜈_5꜈_6꜈_7꜈_8꜈_9꜈_10꜈_11꜈_12꜈".split("_"),weekdays:"ę˜ŸęœŸę—„_ꘟꜟäø€_ꘟꜟäŗŒ_ꘟꜟäø‰_ę˜ŸęœŸå››_ꘟꜟäŗ”_ę˜ŸęœŸå…­".split("_"),weekdaysShort:"週ꗄ_週äø€_週äŗŒ_週äø‰_週四_週äŗ”_週六".split("_"),weekdaysMin:"ę—„_äø€_äŗŒ_äø‰_四_äŗ”_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY幓M꜈Dę—„",LLL:"YYYY幓M꜈Dę—„ HH:mm",LLLL:"YYYY幓M꜈Dę—„dddd HH:mm",l:"YYYY/M/D",ll:"YYYY幓M꜈Dę—„",lll:"YYYY幓M꜈Dę—„ HH:mm",llll:"YYYY幓M꜈Dę—„dddd HH:mm"},meridiemParse:/凌ę™Ø|ę—©äøŠ|äøŠåˆ|äø­åˆ|äø‹åˆ|ꙚäøŠ/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌ę™Ø"===t||"ę—©äøŠ"===t||"äøŠåˆ"===t?e:"äø­åˆ"===t?e>=11?e:e+12:"äø‹åˆ"===t||"ꙚäøŠ"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌ę™Ø":r<900?"ę—©äøŠ":r<1130?"äøŠåˆ":r<1230?"äø­åˆ":r<1800?"äø‹åˆ":"ꙚäøŠ"},calendar:{sameDay:"[今天] LT",nextDay:"[ę˜Žå¤©] LT",nextWeek:"[äø‹]dddd LT",lastDay:"[ę˜Ø天] LT",lastWeek:"[äøŠ]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(ę—„|꜈|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ę—„";case"M":return e+"꜈";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"å¹¾ē§’",ss:"%d ē§’",m:"1 分鐘",mm:"%d 分鐘",h:"1 å°ę™‚",hh:"%d å°ę™‚",d:"1 天",dd:"%d 天",M:"1 å€‹ęœˆ",MM:"%d å€‹ęœˆ",y:"1 幓",yy:"%d 幓"}}),r.locale("en"),r}()})),i.register("YChVI",(function(e,t){ -//! moment.js -//! version : 2.29.4 -//! authors : Tim Wood, Iskren Chernev, Moment.js contributors -//! license : MIT -//! momentjs.com -e.exports=function(){"use strict";var t,n;function r(){return t.apply(null,arguments)}function a(e){t=e}function o(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function u(e){return void 0===e}function d(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function f(e,t){var n,r=[],a=e.length;for(n=0;n>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}var N=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,A=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,R={},F={};function W(e,t,n,r){var a=r;"string"==typeof r&&(a=function(){return this[r]()}),e&&(F[e]=a),t&&(F[t[0]]=function(){return H(a.apply(this,arguments),t[1],t[2])}),n&&(F[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function I(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function z(e){var t,n,r=e.match(N);for(t=0,n=r.length;t=0&&A.test(e);)e=e.replace(A,r),A.lastIndex=0,n-=1;return e}var B={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function q(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(N).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])}var V="Invalid date";function J(){return this._invalidDate}var G="%d",Q=/\d{1,2}/;function K(e){return this._ordinal.replace("%d",e)}var X={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Z(e,t,n,r){var a=this._relativeTime[n];return x(a)?a(e,t,n,r):a.replace(/%d/i,e)}function ee(e,t){var n=this._relativeTime[e>0?"future":"past"];return x(n)?n(t):n.replace(/%s/i,t)}var te={};function ne(e,t){var n=e.toLowerCase();te[n]=te[n+"s"]=te[t]=e}function re(e){return"string"==typeof e?te[e]||te[e.toLowerCase()]:void 0}function ae(e){var t,n,r={};for(n in e)s(e,n)&&(t=re(n))&&(r[t]=e[n]);return r}var oe={};function ie(e,t){oe[e]=t}function se(e){var t,n=[];for(t in e)s(e,t)&&n.push({unit:t,priority:oe[t]});return n.sort((function(e,t){return e.priority-t.priority})),n}function le(e){return e%4==0&&e%100!=0||e%400==0}function ue(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function de(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=ue(t)),n}function ce(e,t){return function(n){return null!=n?(pe(this,e,n),r.updateOffset(this,t),this):fe(this,e)}}function fe(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&le(e.year())&&1===e.month()&&29===e.date()?(n=de(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Ze(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function he(e){return x(this[e=re(e)])?this[e]():this}function me(e,t){if("object"==typeof e){var n,r=se(e=ae(e)),a=r.length;for(n=0;n68?1900:2e3)};var _t=ce("FullYear",!0);function yt(){return le(this.year())}function gt(e,t,n,r,a,o,i){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,a,o,i),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,a,o,i),s}function vt(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function bt(e,t,n){var r=7+t-n;return-(7+vt(e,0,r).getUTCDay()-t)%7+r-1}function Mt(e,t,n,r,a){var o,i,s=1+7*(t-1)+(7+n-r)%7+bt(e,r,a);return s<=0?i=mt(o=e-1)+s:s>mt(e)?(o=e+1,i=s-mt(e)):(o=e,i=s),{year:o,dayOfYear:i}}function wt(e,t,n){var r,a,o=bt(e.year(),t,n),i=Math.floor((e.dayOfYear()-o-1)/7)+1;return i<1?r=i+kt(a=e.year()-1,t,n):i>kt(e.year(),t,n)?(r=i-kt(e.year(),t,n),a=e.year()+1):(a=e.year(),r=i),{week:r,year:a}}function kt(e,t,n){var r=bt(e,t,n),a=bt(e+1,t,n);return(mt(e)-r+a)/7}function Lt(e){return wt(e,this._week.dow,this._week.doy).week}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),ne("week","w"),ne("isoWeek","W"),ie("week",5),ie("isoWeek",5),je("w",we),je("ww",we,ge),je("W",we),je("WW",we,ge),We(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=de(e)}));var Dt={dow:0,doy:6};function Yt(){return this._week.dow}function Tt(){return this._week.doy}function St(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function xt(e){var t=wt(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Pt(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}function Ct(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Ot(e,t){return e.slice(t,7).concat(e.slice(0,t))}W("d",0,"do","day"),W("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),W("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),W("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),ne("day","d"),ne("weekday","e"),ne("isoWeekday","E"),ie("day",11),ie("weekday",11),ie("isoWeekday",11),je("d",we),je("e",we),je("E",we),je("dd",(function(e,t){return t.weekdaysMinRegex(e)})),je("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),je("dddd",(function(e,t){return t.weekdaysRegex(e)})),We(["dd","ddd","dddd"],(function(e,t,n,r){var a=n._locale.weekdaysParse(e,r,n._strict);null!=a?t.d=a:_(n).invalidWeekday=e})),We(["d","e","E"],(function(e,t,n,r){t[r]=de(e)}));var Et="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),jt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ht="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Nt=Ee,At=Ee,Rt=Ee;function Ft(e,t){var n=o(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ot(n,this._week.dow):e?n[e.day()]:n}function Wt(e){return!0===e?Ot(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function It(e){return!0===e?Ot(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function zt(e,t,n){var r,a,o,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=h([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(a=ze.call(this._weekdaysParse,i))?a:null:"ddd"===t?-1!==(a=ze.call(this._shortWeekdaysParse,i))?a:null:-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:"dddd"===t?-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._shortWeekdaysParse,i))||-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:"ddd"===t?-1!==(a=ze.call(this._shortWeekdaysParse,i))||-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._minWeekdaysParse,i))?a:null:-1!==(a=ze.call(this._minWeekdaysParse,i))||-1!==(a=ze.call(this._weekdaysParse,i))||-1!==(a=ze.call(this._shortWeekdaysParse,i))?a:null}function Ut(e,t,n){var r,a,o;if(this._weekdaysParseExact)return zt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=h([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}}function $t(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Pt(e,this.localeData()),this.add(e-t,"d")):t}function Bt(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function qt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Ct(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Vt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Nt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Jt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=At),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Gt(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Rt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qt(){function e(e,t){return t.length-e.length}var t,n,r,a,o,i=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),r=Ae(this.weekdaysMin(n,"")),a=Ae(this.weekdaysShort(n,"")),o=Ae(this.weekdays(n,"")),i.push(r),s.push(a),l.push(o),u.push(r),u.push(a),u.push(o);i.sort(e),s.sort(e),l.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+i.join("|")+")","i")}function Kt(){return this.hours()%12||12}function Xt(){return this.hours()||24}function Zt(e,t){W(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function en(e,t){return t._meridiemParse}function tn(e){return"p"===(e+"").toLowerCase().charAt(0)}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Kt),W("k",["kk",2],0,Xt),W("hmm",0,0,(function(){return""+Kt.apply(this)+H(this.minutes(),2)})),W("hmmss",0,0,(function(){return""+Kt.apply(this)+H(this.minutes(),2)+H(this.seconds(),2)})),W("Hmm",0,0,(function(){return""+this.hours()+H(this.minutes(),2)})),W("Hmmss",0,0,(function(){return""+this.hours()+H(this.minutes(),2)+H(this.seconds(),2)})),Zt("a",!0),Zt("A",!1),ne("hour","h"),ie("hour",13),je("a",en),je("A",en),je("H",we),je("h",we),je("k",we),je("HH",we,ge),je("hh",we,ge),je("kk",we,ge),je("hmm",ke),je("hmmss",Le),je("Hmm",ke),je("Hmmss",Le),Fe(["H","HH"],qe),Fe(["k","kk"],(function(e,t,n){var r=de(e);t[qe]=24===r?0:r})),Fe(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),Fe(["h","hh"],(function(e,t,n){t[qe]=de(e),_(n).bigHour=!0})),Fe("hmm",(function(e,t,n){var r=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r)),_(n).bigHour=!0})),Fe("hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r,2)),t[Je]=de(e.substr(a)),_(n).bigHour=!0})),Fe("Hmm",(function(e,t,n){var r=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r))})),Fe("Hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[qe]=de(e.substr(0,r)),t[Ve]=de(e.substr(r,2)),t[Je]=de(e.substr(a))}));var nn=/[ap]\.?m?\.?/i,rn=ce("Hours",!0);function an(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var on,sn={calendar:E,longDateFormat:B,invalidDate:V,ordinal:G,dayOfMonthOrdinalParse:Q,relativeTime:X,months:et,monthsShort:tt,week:Dt,weekdays:Et,weekdaysMin:Ht,weekdaysShort:jt,meridiemParse:nn},ln={},un={};function dn(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=hn(a.slice(0,t).join("-")))return r;if(n&&n.length>=t&&dn(a,n)>=t-1)break;t--}o++}return on}function pn(e){return null!=e.match("^[^/\\\\]*$")}function hn(t){var n=null;if(void 0===ln[t]&&e&&e.exports&&pn(t))try{n=on._abbr,(void 0)("./locale/"+t),mn(n)}catch(e){ln[t]=null}return ln[t]}function mn(e,t){var n;return e&&((n=u(t)?gn(e):_n(e,t))?on=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),on._abbr}function _n(e,t){if(null!==t){var n,r=sn;if(t.abbr=e,null!=ln[e])S("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=ln[e]._config;else if(null!=t.parentLocale)if(null!=ln[t.parentLocale])r=ln[t.parentLocale]._config;else{if(null==(n=hn(t.parentLocale)))return un[t.parentLocale]||(un[t.parentLocale]=[]),un[t.parentLocale].push({name:e,config:t}),null;r=n._config}return ln[e]=new O(C(r,t)),un[e]&&un[e].forEach((function(e){_n(e.name,e.config)})),mn(e),ln[e]}return delete ln[e],null}function yn(e,t){if(null!=t){var n,r,a=sn;null!=ln[e]&&null!=ln[e].parentLocale?ln[e].set(C(ln[e]._config,t)):(null!=(r=hn(e))&&(a=r._config),t=C(a,t),null==r&&(t.abbr=e),(n=new O(t)).parentLocale=ln[e],ln[e]=n),mn(e)}else null!=ln[e]&&(null!=ln[e].parentLocale?(ln[e]=ln[e].parentLocale,e===mn()&&mn(e)):null!=ln[e]&&delete ln[e]);return ln[e]}function gn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return on;if(!o(e)){if(t=hn(e))return t;e=[e]}return fn(e)}function vn(){return Y(ln)}function bn(e){var t,n=e._a;return n&&-2===_(e).overflow&&(t=n[$e]<0||n[$e]>11?$e:n[Be]<1||n[Be]>Ze(n[Ue],n[$e])?Be:n[qe]<0||n[qe]>24||24===n[qe]&&(0!==n[Ve]||0!==n[Je]||0!==n[Ge])?qe:n[Ve]<0||n[Ve]>59?Ve:n[Je]<0||n[Je]>59?Je:n[Ge]<0||n[Ge]>999?Ge:-1,_(e)._overflowDayOfYear&&(tBe)&&(t=Be),_(e)._overflowWeeks&&-1===t&&(t=Qe),_(e)._overflowWeekday&&-1===t&&(t=Ke),_(e).overflow=t),e}var Mn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,wn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,kn=/Z|[+-]\d\d(?::?\d\d)?/,Ln=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Dn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Yn=/^\/?Date\((-?\d+)/i,Tn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Sn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function xn(e){var t,n,r,a,o,i,s=e._i,l=Mn.exec(s)||wn.exec(s),u=Ln.length,d=Dn.length;if(l){for(_(e).iso=!0,t=0,n=u;tmt(o)||0===e._dayOfYear)&&(_(e)._overflowDayOfYear=!0),n=vt(o,0,e._dayOfYear),e._a[$e]=n.getUTCMonth(),e._a[Be]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=i[t]=r[t];for(;t<7;t++)e._a[t]=i[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[qe]&&0===e._a[Ve]&&0===e._a[Je]&&0===e._a[Ge]&&(e._nextDay=!0,e._a[qe]=0),e._d=(e._useUTC?vt:gt).apply(null,i),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[qe]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(_(e).weekdayMismatch=!0)}}function Wn(e){var t,n,r,a,o,i,s,l,u;null!=(t=e._w).GG||null!=t.W||null!=t.E?(o=1,i=4,n=An(t.GG,e._a[Ue],wt(Gn(),1,4).year),r=An(t.W,1),((a=An(t.E,1))<1||a>7)&&(l=!0)):(o=e._locale._week.dow,i=e._locale._week.doy,u=wt(Gn(),o,i),n=An(t.gg,e._a[Ue],u.year),r=An(t.w,u.week),null!=t.d?((a=t.d)<0||a>6)&&(l=!0):null!=t.e?(a=t.e+o,(t.e<0||t.e>6)&&(l=!0)):a=o),r<1||r>kt(n,o,i)?_(e)._overflowWeeks=!0:null!=l?_(e)._overflowWeekday=!0:(s=Mt(n,r,a,o,i),e._a[Ue]=s.year,e._dayOfYear=s.dayOfYear)}function In(e){if(e._f!==r.ISO_8601)if(e._f!==r.RFC_2822){e._a=[],_(e).empty=!0;var t,n,a,o,i,s,l,u=""+e._i,d=u.length,c=0;for(l=(a=$(e._f,e._locale).match(N)||[]).length,t=0;t0&&_(e).unusedInput.push(i),u=u.slice(u.indexOf(n)+n.length),c+=n.length),F[o]?(n?_(e).empty=!1:_(e).unusedTokens.push(o),Ie(o,n,e)):e._strict&&!n&&_(e).unusedTokens.push(o);_(e).charsLeftOver=d-c,u.length>0&&_(e).unusedInput.push(u),e._a[qe]<=12&&!0===_(e).bigHour&&e._a[qe]>0&&(_(e).bigHour=void 0),_(e).parsedDateParts=e._a.slice(0),_(e).meridiem=e._meridiem,e._a[qe]=zn(e._locale,e._a[qe],e._meridiem),null!==(s=_(e).era)&&(e._a[Ue]=e._locale.erasConvertYear(s,e._a[Ue])),Fn(e),bn(e)}else Hn(e);else xn(e)}function zn(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function Un(e){var t,n,r,a,o,i,s=!1,l=e._f.length;if(0===l)return _(e).invalidFormat=!0,void(e._d=new Date(NaN));for(a=0;athis?this:e:g()}));function Xn(e,t){var n,r;if(1===t.length&&o(t[0])&&(t=t[0]),!t.length)return Gn();for(n=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function wr(){if(!u(this._isDSTShifted))return this._isDSTShifted;var e,t={};return M(t,this),(t=qn(t))._a?(e=t._isUTC?h(t._a):Gn(t._a),this._isDSTShifted=this.isValid()&&ur(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function kr(){return!!this.isValid()&&!this._isUTC}function Lr(){return!!this.isValid()&&this._isUTC}function Dr(){return!!this.isValid()&&this._isUTC&&0===this._offset}r.updateOffset=function(){};var Yr=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Tr=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function Sr(e,t){var n,r,a,o=e,i=null;return sr(e)?o={ms:e._milliseconds,d:e._days,M:e._months}:d(e)||!isNaN(+e)?(o={},t?o[t]=+e:o.milliseconds=+e):(i=Yr.exec(e))?(n="-"===i[1]?-1:1,o={y:0,d:de(i[Be])*n,h:de(i[qe])*n,m:de(i[Ve])*n,s:de(i[Je])*n,ms:de(lr(1e3*i[Ge]))*n}):(i=Tr.exec(e))?(n="-"===i[1]?-1:1,o={y:xr(i[2],n),M:xr(i[3],n),w:xr(i[4],n),d:xr(i[5],n),h:xr(i[6],n),m:xr(i[7],n),s:xr(i[8],n)}):null==o?o={}:"object"==typeof o&&("from"in o||"to"in o)&&(a=Cr(Gn(o.from),Gn(o.to)),(o={}).ms=a.milliseconds,o.M=a.months),r=new ir(o),sr(e)&&s(e,"_locale")&&(r._locale=e._locale),sr(e)&&s(e,"_isValid")&&(r._isValid=e._isValid),r}function xr(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Pr(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Cr(e,t){var n;return e.isValid()&&t.isValid()?(t=pr(t,e),e.isBefore(t)?n=Pr(e,t):((n=Pr(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Or(e,t){return function(n,r){var a;return null===r||isNaN(+r)||(S(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),a=n,n=r,r=a),Er(this,Sr(n,r),e),this}}function Er(e,t,n,a){var o=t._milliseconds,i=lr(t._days),s=lr(t._months);e.isValid()&&(a=null==a||a,s&&ut(e,fe(e,"Month")+s*n),i&&pe(e,"Date",fe(e,"Date")+i*n),o&&e._d.setTime(e._d.valueOf()+o*n),a&&r.updateOffset(e,i||s))}Sr.fn=ir.prototype,Sr.invalid=or;var jr=Or(1,"add"),Hr=Or(-1,"subtract");function Nr(e){return"string"==typeof e||e instanceof String}function Ar(e){return k(e)||c(e)||Nr(e)||d(e)||Fr(e)||Rr(e)||null==e}function Rr(e){var t,n,r=i(e)&&!l(e),a=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],u=o.length;for(t=0;tn.valueOf():n.valueOf()9999?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):x(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+6e4*this.utcOffset()).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ea(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r,a="moment",o="";return this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",o="Z"),e="["+a+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",r=o+'[")]',this.format(e+t+n+r)}function ta(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)}function na(e,t){return this.isValid()&&(k(e)&&e.isValid()||Gn(e).isValid())?Sr({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ra(e){return this.from(Gn(),e)}function aa(e,t){return this.isValid()&&(k(e)&&e.isValid()||Gn(e).isValid())?Sr({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function oa(e){return this.to(Gn(),e)}function ia(e){var t;return void 0===e?this._locale._abbr:(null!=(t=gn(e))&&(this._locale=t),this)}r.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",r.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var sa=D("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",(function(e){return void 0===e?this.localeData():this.locale(e)}));function la(){return this._locale}var ua=1e3,da=60*ua,ca=60*da,fa=3506328*ca;function pa(e,t){return(e%t+t)%t}function ha(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-fa:new Date(e,t,n).valueOf()}function ma(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-fa:Date.UTC(e,t,n)}function _a(e){var t,n;if(void 0===(e=re(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?ma:ha,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=pa(t+(this._isUTC?0:this.utcOffset()*da),ca);break;case"minute":t=this._d.valueOf(),t-=pa(t,da);break;case"second":t=this._d.valueOf(),t-=pa(t,ua)}return this._d.setTime(t),r.updateOffset(this,!0),this}function ya(e){var t,n;if(void 0===(e=re(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?ma:ha,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=ca-pa(t+(this._isUTC?0:this.utcOffset()*da),ca)-1;break;case"minute":t=this._d.valueOf(),t+=da-pa(t,da)-1;break;case"second":t=this._d.valueOf(),t+=ua-pa(t,ua)-1}return this._d.setTime(t),r.updateOffset(this,!0),this}function ga(){return this._d.valueOf()-6e4*(this._offset||0)}function va(){return Math.floor(this.valueOf()/1e3)}function ba(){return new Date(this.valueOf())}function Ma(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function wa(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ka(){return this.isValid()?this.toISOString():null}function La(){return y(this)}function Da(){return p({},_(this))}function Ya(){return _(this).overflow}function Ta(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Sa(e,t){var n,a,o,i=this._eras||gn("en")._eras;for(n=0,a=i.length;n=0)return l[r]}function Pa(e,t){var n=e.since<=e.until?1:-1;return void 0===t?r(e.since).year():r(e.since).year()+(t-e.offset)*n}function Ca(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;e(o=kt(e,r,a))&&(t=o),Ka.call(this,e,t,n,r,a))}function Ka(e,t,n,r,a){var o=Mt(e,t,n,r,a),i=vt(o.year,0,o.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}function Xa(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}W("N",0,0,"eraAbbr"),W("NN",0,0,"eraAbbr"),W("NNN",0,0,"eraAbbr"),W("NNNN",0,0,"eraName"),W("NNNNN",0,0,"eraNarrow"),W("y",["y",1],"yo","eraYear"),W("y",["yy",2],0,"eraYear"),W("y",["yyy",3],0,"eraYear"),W("y",["yyyy",4],0,"eraYear"),je("N",Ra),je("NN",Ra),je("NNN",Ra),je("NNNN",Fa),je("NNNNN",Wa),Fe(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,r){var a=n._locale.erasParse(e,r,n._strict);a?_(n).era=a:_(n).invalidEra=e})),je("y",Se),je("yy",Se),je("yyy",Se),je("yyyy",Se),je("yo",Ia),Fe(["y","yy","yyy","yyyy"],Ue),Fe(["yo"],(function(e,t,n,r){var a;n._locale._eraYearOrdinalRegex&&(a=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Ue]=n._locale.eraYearOrdinalParse(e,a):t[Ue]=parseInt(e,10)})),W(0,["gg",2],0,(function(){return this.weekYear()%100})),W(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),Ua("gggg","weekYear"),Ua("ggggg","weekYear"),Ua("GGGG","isoWeekYear"),Ua("GGGGG","isoWeekYear"),ne("weekYear","gg"),ne("isoWeekYear","GG"),ie("weekYear",1),ie("isoWeekYear",1),je("G",xe),je("g",xe),je("GG",we,ge),je("gg",we,ge),je("GGGG",Ye,be),je("gggg",Ye,be),je("GGGGG",Te,Me),je("ggggg",Te,Me),We(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=de(e)})),We(["gg","GG"],(function(e,t,n,a){t[a]=r.parseTwoDigitYear(e)})),W("Q",0,"Qo","quarter"),ne("quarter","Q"),ie("quarter",7),je("Q",ye),Fe("Q",(function(e,t){t[$e]=3*(de(e)-1)})),W("D",["DD",2],"Do","date"),ne("date","D"),ie("date",9),je("D",we),je("DD",we,ge),je("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),Fe(["D","DD"],Be),Fe("Do",(function(e,t){t[Be]=de(e.match(we)[0])}));var Za=ce("Date",!0);function eo(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}W("DDD",["DDDD",3],"DDDo","dayOfYear"),ne("dayOfYear","DDD"),ie("dayOfYear",4),je("DDD",De),je("DDDD",ve),Fe(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=de(e)})),W("m",["mm",2],0,"minute"),ne("minute","m"),ie("minute",14),je("m",we),je("mm",we,ge),Fe(["m","mm"],Ve);var to=ce("Minutes",!1);W("s",["ss",2],0,"second"),ne("second","s"),ie("second",15),je("s",we),je("ss",we,ge),Fe(["s","ss"],Je);var no,ro,ao=ce("Seconds",!1);for(W("S",0,0,(function(){return~~(this.millisecond()/100)})),W(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),W(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),W(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),W(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),W(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),W(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),ne("millisecond","ms"),ie("millisecond",16),je("S",De,ye),je("SS",De,ge),je("SSS",De,ve),no="SSSS";no.length<=9;no+="S")je(no,Se);function oo(e,t){t[Ge]=de(1e3*("0."+e))}for(no="S";no.length<=9;no+="S")Fe(no,oo);function io(){return this._isUTC?"UTC":""}function so(){return this._isUTC?"Coordinated Universal Time":""}ro=ce("Milliseconds",!1),W("z",0,0,"zoneAbbr"),W("zz",0,0,"zoneName");var lo=w.prototype;function uo(e){return Gn(1e3*e)}function co(){return Gn.apply(null,arguments).parseZone()}function fo(e){return e}lo.add=jr,lo.calendar=zr,lo.clone=Ur,lo.diff=Qr,lo.endOf=ya,lo.format=ta,lo.from=na,lo.fromNow=ra,lo.to=aa,lo.toNow=oa,lo.get=he,lo.invalidAt=Ya,lo.isAfter=$r,lo.isBefore=Br,lo.isBetween=qr,lo.isSame=Vr,lo.isSameOrAfter=Jr,lo.isSameOrBefore=Gr,lo.isValid=La,lo.lang=sa,lo.locale=ia,lo.localeData=la,lo.max=Kn,lo.min=Qn,lo.parsingFlags=Da,lo.set=me,lo.startOf=_a,lo.subtract=Hr,lo.toArray=Ma,lo.toObject=wa,lo.toDate=ba,lo.toISOString=Zr,lo.inspect=ea,"undefined"!=typeof Symbol&&null!=Symbol.for&&(lo[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),lo.toJSON=ka,lo.toString=Xr,lo.unix=va,lo.valueOf=ga,lo.creationData=Ta,lo.eraName=Ca,lo.eraNarrow=Oa,lo.eraAbbr=Ea,lo.eraYear=ja,lo.year=_t,lo.isLeapYear=yt,lo.weekYear=$a,lo.isoWeekYear=Ba,lo.quarter=lo.quarters=Xa,lo.month=dt,lo.daysInMonth=ct,lo.week=lo.weeks=St,lo.isoWeek=lo.isoWeeks=xt,lo.weeksInYear=Ja,lo.weeksInWeekYear=Ga,lo.isoWeeksInYear=qa,lo.isoWeeksInISOWeekYear=Va,lo.date=Za,lo.day=lo.days=$t,lo.weekday=Bt,lo.isoWeekday=qt,lo.dayOfYear=eo,lo.hour=lo.hours=rn,lo.minute=lo.minutes=to,lo.second=lo.seconds=ao,lo.millisecond=lo.milliseconds=ro,lo.utcOffset=mr,lo.utc=yr,lo.local=gr,lo.parseZone=vr,lo.hasAlignedHourOffset=br,lo.isDST=Mr,lo.isLocal=kr,lo.isUtcOffset=Lr,lo.isUtc=Dr,lo.isUTC=Dr,lo.zoneAbbr=io,lo.zoneName=so,lo.dates=D("dates accessor is deprecated. Use date instead.",Za),lo.months=D("months accessor is deprecated. Use month instead",dt),lo.years=D("years accessor is deprecated. Use year instead",_t),lo.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",_r),lo.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",wr);var po=O.prototype;function ho(e,t,n,r){var a=gn(),o=h().set(r,t);return a[n](o,e)}function mo(e,t,n){if(d(e)&&(t=e,e=void 0),e=e||"",null!=t)return ho(e,t,n,"month");var r,a=[];for(r=0;r<12;r++)a[r]=ho(e,r,n,"month");return a}function _o(e,t,n,r){"boolean"==typeof e?(d(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,d(t)&&(n=t,t=void 0),t=t||"");var a,o=gn(),i=e?o._week.dow:0,s=[];if(null!=n)return ho(t,(n+i)%7,r,"day");for(a=0;a<7;a++)s[a]=ho(t,(a+i)%7,r,"day");return s}function yo(e,t){return mo(e,t,"months")}function go(e,t){return mo(e,t,"monthsShort")}function vo(e,t,n){return _o(e,t,n,"weekdays")}function bo(e,t,n){return _o(e,t,n,"weekdaysShort")}function Mo(e,t,n){return _o(e,t,n,"weekdaysMin")}po.calendar=j,po.longDateFormat=q,po.invalidDate=J,po.ordinal=K,po.preparse=fo,po.postformat=fo,po.relativeTime=Z,po.pastFuture=ee,po.set=P,po.eras=Sa,po.erasParse=xa,po.erasConvertYear=Pa,po.erasAbbrRegex=Na,po.erasNameRegex=Ha,po.erasNarrowRegex=Aa,po.months=ot,po.monthsShort=it,po.monthsParse=lt,po.monthsRegex=pt,po.monthsShortRegex=ft,po.week=Lt,po.firstDayOfYear=Tt,po.firstDayOfWeek=Yt,po.weekdays=Ft,po.weekdaysMin=It,po.weekdaysShort=Wt,po.weekdaysParse=Ut,po.weekdaysRegex=Vt,po.weekdaysShortRegex=Jt,po.weekdaysMinRegex=Gt,po.isPM=tn,po.meridiem=an,mn("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===de(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=D("moment.lang is deprecated. Use moment.locale instead.",mn),r.langData=D("moment.langData is deprecated. Use moment.localeData instead.",gn);var wo=Math.abs;function ko(){var e=this._data;return this._milliseconds=wo(this._milliseconds),this._days=wo(this._days),this._months=wo(this._months),e.milliseconds=wo(e.milliseconds),e.seconds=wo(e.seconds),e.minutes=wo(e.minutes),e.hours=wo(e.hours),e.months=wo(e.months),e.years=wo(e.years),this}function Lo(e,t,n,r){var a=Sr(t,n);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function Do(e,t){return Lo(this,e,t,1)}function Yo(e,t){return Lo(this,e,t,-1)}function To(e){return e<0?Math.floor(e):Math.ceil(e)}function So(){var e,t,n,r,a,o=this._milliseconds,i=this._days,s=this._months,l=this._data;return o>=0&&i>=0&&s>=0||o<=0&&i<=0&&s<=0||(o+=864e5*To(Po(s)+i),i=0,s=0),l.milliseconds=o%1e3,e=ue(o/1e3),l.seconds=e%60,t=ue(e/60),l.minutes=t%60,n=ue(t/60),l.hours=n%24,i+=ue(n/24),s+=a=ue(xo(i)),i-=To(Po(a)),r=ue(s/12),s%=12,l.days=i,l.months=s,l.years=r,this}function xo(e){return 4800*e/146097}function Po(e){return 146097*e/4800}function Co(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=re(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+xo(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Po(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}}function Oo(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*de(this._months/12):NaN}function Eo(e){return function(){return this.as(e)}}var jo=Eo("ms"),Ho=Eo("s"),No=Eo("m"),Ao=Eo("h"),Ro=Eo("d"),Fo=Eo("w"),Wo=Eo("M"),Io=Eo("Q"),zo=Eo("y");function Uo(){return Sr(this)}function $o(e){return e=re(e),this.isValid()?this[e+"s"]():NaN}function Bo(e){return function(){return this.isValid()?this._data[e]:NaN}}var qo=Bo("milliseconds"),Vo=Bo("seconds"),Jo=Bo("minutes"),Go=Bo("hours"),Qo=Bo("days"),Ko=Bo("months"),Xo=Bo("years");function Zo(){return ue(this.days()/7)}var ei=Math.round,ti={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function ni(e,t,n,r,a){return a.relativeTime(t||1,!!n,e,r)}function ri(e,t,n,r){var a=Sr(e).abs(),o=ei(a.as("s")),i=ei(a.as("m")),s=ei(a.as("h")),l=ei(a.as("d")),u=ei(a.as("M")),d=ei(a.as("w")),c=ei(a.as("y")),f=o<=n.ss&&["s",o]||o0,f[4]=r,ni.apply(null,f)}function ai(e){return void 0===e?ei:"function"==typeof e&&(ei=e,!0)}function oi(e,t){return void 0!==ti[e]&&(void 0===t?ti[e]:(ti[e]=t,"s"===e&&(ti.ss=t-1),!0))}function ii(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,a=!1,o=ti;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(a=e),"object"==typeof t&&(o=Object.assign({},ti,t),null!=t.s&&null==t.ss&&(o.ss=t.s-1)),r=ri(this,!a,o,n=this.localeData()),a&&(r=n.pastFuture(+this,r)),n.postformat(r)}var si=Math.abs;function li(e){return(e>0)-(e<0)||+e}function ui(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,a,o,i,s,l=si(this._milliseconds)/1e3,u=si(this._days),d=si(this._months),c=this.asSeconds();return c?(e=ue(l/60),t=ue(e/60),l%=60,e%=60,n=ue(d/12),d%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",a=c<0?"-":"",o=li(this._months)!==li(c)?"-":"",i=li(this._days)!==li(c)?"-":"",s=li(this._milliseconds)!==li(c)?"-":"",a+"P"+(n?o+n+"Y":"")+(d?o+d+"M":"")+(u?i+u+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var di=ir.prototype;return di.isValid=ar,di.abs=ko,di.add=Do,di.subtract=Yo,di.as=Co,di.asMilliseconds=jo,di.asSeconds=Ho,di.asMinutes=No,di.asHours=Ao,di.asDays=Ro,di.asWeeks=Fo,di.asMonths=Wo,di.asQuarters=Io,di.asYears=zo,di.valueOf=Oo,di._bubble=So,di.clone=Uo,di.get=$o,di.milliseconds=qo,di.seconds=Vo,di.minutes=Jo,di.hours=Go,di.days=Qo,di.weeks=Zo,di.months=Ko,di.years=Xo,di.humanize=ii,di.toISOString=ui,di.toString=ui,di.toJSON=ui,di.locale=ia,di.localeData=la,di.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ui),di.lang=sa,W("X",0,0,"unix"),W("x",0,0,"valueOf"),je("x",xe),je("X",Oe),Fe("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),Fe("x",(function(e,t,n){n._d=new Date(de(e))})), -//! moment.js -r.version="2.29.4",a(Gn),r.fn=lo,r.min=Zn,r.max=er,r.now=tr,r.utc=h,r.unix=uo,r.months=yo,r.isDate=c,r.locale=mn,r.invalid=g,r.duration=Sr,r.isMoment=k,r.weekdays=vo,r.parseZone=co,r.localeData=gn,r.isDuration=sr,r.monthsShort=go,r.weekdaysMin=Mo,r.defineLocale=_n,r.updateLocale=yn,r.locales=vn,r.weekdaysShort=bo,r.normalizeUnits=re,r.relativeTimeRounding=ai,r.relativeTimeThreshold=oi,r.calendarFormat=Ir,r.prototype=lo,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},r}()})),i.register("89wqa",(function(t,n){ -/** - * @license React - * react-jsx-runtime.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -var r,a,o;e(t.exports,"Fragment",(()=>r),(e=>r=e)),e(t.exports,"jsx",(()=>a),(e=>a=e)),e(t.exports,"jsxs",(()=>o),(e=>o=e));var s=i("8NFma"),l=Symbol.for("react.element"),u=Symbol.for("react.fragment"),d=Object.prototype.hasOwnProperty,c=s.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,f={key:!0,ref:!0,__self:!0,__source:!0};function p(e,t,n){var r,a={},o=null,i=null;for(r in void 0!==n&&(o=""+n),void 0!==t.key&&(o=""+t.key),void 0!==t.ref&&(i=t.ref),t)d.call(t,r)&&!f.hasOwnProperty(r)&&(a[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===a[r]&&(a[r]=t[r]);return{$$typeof:l,type:e,key:o,ref:i,props:a,_owner:c.current}}r=u,a=p,o=p})),i.register("8NFma",(function(e,t){"use strict";e.exports=i("j1rj6")})),i.register("j1rj6",(function(t,n){ -/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -var r,a,o,i,s,l,u,d,c,f,p,h,m,_,y,g,v,b,M,w,k,L,D,Y,T,S,x,P,C,O,E,j,H,N,A;e(t.exports,"Children",(()=>r),(e=>r=e)),e(t.exports,"Component",(()=>a),(e=>a=e)),e(t.exports,"Fragment",(()=>o),(e=>o=e)),e(t.exports,"Profiler",(()=>i),(e=>i=e)),e(t.exports,"PureComponent",(()=>s),(e=>s=e)),e(t.exports,"StrictMode",(()=>l),(e=>l=e)),e(t.exports,"Suspense",(()=>u),(e=>u=e)),e(t.exports,"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED",(()=>d),(e=>d=e)),e(t.exports,"cloneElement",(()=>c),(e=>c=e)),e(t.exports,"createContext",(()=>f),(e=>f=e)),e(t.exports,"createElement",(()=>p),(e=>p=e)),e(t.exports,"createFactory",(()=>h),(e=>h=e)),e(t.exports,"createRef",(()=>m),(e=>m=e)),e(t.exports,"forwardRef",(()=>_),(e=>_=e)),e(t.exports,"isValidElement",(()=>y),(e=>y=e)),e(t.exports,"lazy",(()=>g),(e=>g=e)),e(t.exports,"memo",(()=>v),(e=>v=e)),e(t.exports,"startTransition",(()=>b),(e=>b=e)),e(t.exports,"unstable_act",(()=>M),(e=>M=e)),e(t.exports,"useCallback",(()=>w),(e=>w=e)),e(t.exports,"useContext",(()=>k),(e=>k=e)),e(t.exports,"useDebugValue",(()=>L),(e=>L=e)),e(t.exports,"useDeferredValue",(()=>D),(e=>D=e)),e(t.exports,"useEffect",(()=>Y),(e=>Y=e)),e(t.exports,"useId",(()=>T),(e=>T=e)),e(t.exports,"useImperativeHandle",(()=>S),(e=>S=e)),e(t.exports,"useInsertionEffect",(()=>x),(e=>x=e)),e(t.exports,"useLayoutEffect",(()=>P),(e=>P=e)),e(t.exports,"useMemo",(()=>C),(e=>C=e)),e(t.exports,"useReducer",(()=>O),(e=>O=e)),e(t.exports,"useRef",(()=>E),(e=>E=e)),e(t.exports,"useState",(()=>j),(e=>j=e)),e(t.exports,"useSyncExternalStore",(()=>H),(e=>H=e)),e(t.exports,"useTransition",(()=>N),(e=>N=e)),e(t.exports,"version",(()=>A),(e=>A=e));var R=Symbol.for("react.element"),F=Symbol.for("react.portal"),W=Symbol.for("react.fragment"),I=Symbol.for("react.strict_mode"),z=Symbol.for("react.profiler"),U=Symbol.for("react.provider"),$=Symbol.for("react.context"),B=Symbol.for("react.forward_ref"),q=Symbol.for("react.suspense"),V=Symbol.for("react.memo"),J=Symbol.for("react.lazy"),G=Symbol.iterator;var Q={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},K=Object.assign,X={};function Z(e,t,n){this.props=e,this.context=t,this.refs=X,this.updater=n||Q}function ee(){}function te(e,t,n){this.props=e,this.context=t,this.refs=X,this.updater=n||Q}Z.prototype.isReactComponent={},Z.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},Z.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},ee.prototype=Z.prototype;var ne=te.prototype=new ee;ne.constructor=te,K(ne,Z.prototype),ne.isPureReactComponent=!0;var re=Array.isArray,ae=Object.prototype.hasOwnProperty,oe={current:null},ie={key:!0,ref:!0,__self:!0,__source:!0};function se(e,t,n){var r,a={},o=null,i=null;if(null!=t)for(r in void 0!==t.ref&&(i=t.ref),void 0!==t.key&&(o=""+t.key),t)ae.call(t,r)&&!ie.hasOwnProperty(r)&&(a[r]=t[r]);var s=arguments.length-2;if(1===s)a.children=n;else if(1r),(e=>r=e)),e(t.exports,"createPortal",(()=>a),(e=>a=e)),e(t.exports,"createRoot",(()=>o),(e=>o=e)),e(t.exports,"findDOMNode",(()=>s),(e=>s=e)),e(t.exports,"flushSync",(()=>l),(e=>l=e)),e(t.exports,"hydrate",(()=>u),(e=>u=e)),e(t.exports,"hydrateRoot",(()=>d),(e=>d=e)),e(t.exports,"render",(()=>c),(e=>c=e)),e(t.exports,"unmountComponentAtNode",(()=>f),(e=>f=e)),e(t.exports,"unstable_batchedUpdates",(()=>p),(e=>p=e)),e(t.exports,"unstable_renderSubtreeIntoContainer",(()=>h),(e=>h=e)),e(t.exports,"version",(()=>m),(e=>m=e));var _=i("8NFma"),y=i("clk2u");function g(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n